@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  サイト全体共通css
=================================================================== */
/* fontsize YUI
10px = 77% 11px = 85% 12px = 93% 13px = 100%
14px = 108% 15px = 116% 16px = 123.1% 17px = 131%
18px = 138.5% 19px = 146.5% 20px = 153.9% 21px = 161.6%
22px = 167% 23px = 174% 24px = 182% 25px = 189% 26px = 197% */
/*----------------------------------------------------------------------------------
		 								body、リンク色etc
------------------------------------------------------------------------------------*/
/* pc sp */
@media only screen and (min-width: 870px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .pc {
    display: block;
  }
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 869px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
/* style */
.fw-b {
  font-weight: bold;
}

.ta-c {
  text-align: center !important;
}

.ta-l {
  text-align: left;
}

.ta-r {
  text-align: right;
}

/* 基本リンク色 */
a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
  transition: all 0.5s ease;
}

a:hover {
  opacity: 0.65;
  transition: all 0.5s ease;
}

body {
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #2e2e2e;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
}

main {
  padding-top: 50px;
}

.plan-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  z-index: 50;
  background-color: red;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .plan-wrapper {
    width: 300px;
  }
}
@media only screen and (max-width: 869px) {
  .plan-wrapper {
    width: 300px;
    bottom: 10px;
    right: 3%;
    max-width: 55%;
  }
}
.plan-wrapper .plan-bnr {
  box-shadow: 2px 7px 16px -6px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}
.plan-wrapper .plan-bnr .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  cursor: pointer;
}
@media only screen and (max-width: 869px) {
  .plan-wrapper .plan-bnr .close-btn {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }
}
.plan-wrapper .plan-bnr a {
  display: block;
}
.plan-wrapper .fix-img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 10px;
}

/*----------------------------------------------------------------------------------
		 								header 
------------------------------------------------------------------------------------*/
#header {
  z-index: 3;
  position: fixed;
  width: 100%;
  height: 50px;
  background-color: #2e2e2e;
}
#header a {
  color: #fff;
}
#header .header_logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  width: 106px;
  height: 26px;
}
@media only screen and (max-width: 869px) {
  #header .header_logo {
    left: 20px;
    width: 106px;
    height: 28px;
  }
}
#header .header_logo img {
  width: 100%;
}
#header .h-tel-sp {
  position: absolute;
  inset: 12px 70px auto auto;
  font-size: 16px;
}
#header .h-tel-sp a {
  color: #ed2d25;
}
#header .globalNavi {
  position: absolute;
  top: 0;
  right: 450px;
  bottom: 0;
  height: 17px;
  display: flex;
  margin: auto;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  #header .globalNavi {
    right: 290px;
  }
}
@media only screen and (max-width: 869px) {
  #header .globalNavi {
    position: static;
    margin-top: 50px;
    display: block;
    text-align: center;
  }
}
#header .globalNavi li {
  font-size: 12px;
  font-weight: bold;
}
@media only screen and (max-width: 869px) {
  #header .globalNavi li {
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
}
#header .globalNavi li a {
  color: #fff;
}
#header .globalNavi li + li {
  margin-left: 38px;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  #header .globalNavi li + li {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 869px) {
  #header .globalNavi li + li {
    margin-left: 0;
  }
}
#header .globalNavi li.h-tel {
  color: #ed2d25;
  text-align: center;
  font-size: 15px;
  margin-top: -2px;
}

.downloadBtn {
  z-index: 9;
  position: fixed;
  top: 7px;
  right: 235px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 36px;
  color: #fff;
  background-color: #008c63;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.15em;
  border-radius: 40px;
  font-weight: bold;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .downloadBtn {
    right: 135px;
    width: 140px;
    font-size: 10px;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 869px) {
  .downloadBtn {
    display: none;
  }
}
.downloadBtn .tablet-br {
  display: none;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .downloadBtn .tablet-br {
    display: block;
  }
}

.contactBtn {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  color: #fff;
  background-color: #ed2d25;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .contactBtn {
    width: 120px;
    font-size: 11px;
    line-height: 1.4;
  }
  .contactBtn span {
    display: none;
  }
}
@media only screen and (max-width: 869px) {
  .contactBtn {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 13px;
    display: none;
  }
}
.contactBtn br {
  display: none;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .contactBtn br {
    display: block;
  }
}

.studio-contact {
  display: none;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .studio-contact {
    display: none;
  }
}
@media only screen and (max-width: 869px) {
  .studio-contact {
    display: block;
    border: 0;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 8;
  }
  .studio-contact .telNum {
    width: 50%;
    float: left;
    background-color: #fff;
    color: #000;
    padding: 15px 0;
    font-weight: bold;
    font-size: 15px;
  }
  .studio-contact .dlBtn {
    width: 50%;
    float: left;
    background-color: #008c63;
    color: #fff;
    padding: 15px 0;
    font-weight: bold;
    font-size: 14px;
  }
  .studio-contact .dlBtn a {
    color: #fff;
  }
  .studio-contact .mailBtn {
    width: 50%;
    float: left;
    background-color: #ed2d25;
    padding: 15px 0;
    font-weight: bold;
    font-size: 15px;
  }
  .studio-contact .mailBtn a {
    color: #fff;
  }
}

/*----------------------------------------------------------------------------------
		 								footer 
------------------------------------------------------------------------------------*/
#commonLinkSec {
  background-color: #252525;
  padding: 120px 20px 148px;
}
@media only screen and (max-width: 869px) and (max-width: 869px) {
  #commonLinkSec {
    padding: 80px 0 0;
  }
}
#commonLinkSec h5 {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-align: center;
}
#commonLinkSec ul {
  display: flex;
  width: 1088px;
  margin: 20px auto 0;
}
@media only screen and (max-width: 869px) {
  #commonLinkSec ul {
    display: block;
    width: 100%;
  }
}
#commonLinkSec ul li {
  width: 33.3%;
}
@media only screen and (max-width: 869px) {
  #commonLinkSec ul li {
    width: 100%;
  }
}
#commonLinkSec ul li img {
  width: 100%;
}

#footer {
  box-sizing: border-box;
  width: 100%;
  padding: 85px 20px 80px;
  color: #fff;
  background-color: #000;
}
@media only screen and (max-width: 869px) {
  #footer {
    padding: 100px 20px 86px;
  }
}
#footer .footer_inner {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1080px;
  margin: 0 auto;
}
@media only screen and (max-width: 869px) {
  #footer .footer_inner {
    display: block;
  }
}
#footer .footer_left {
  width: calc(100% - 384px);
}
@media only screen and (max-width: 869px) {
  #footer .footer_left {
    margin-top: 98px;
    width: 100%;
  }
}
#footer .footer_right {
  width: 384px;
}
@media only screen and (max-width: 869px) {
  #footer .footer_right {
    width: 100%;
  }
}
#footer .footer_logo {
  width: 195px;
}
#footer .footer_logo img {
  width: 100%;
}
#footer .footer_adress {
  margin-top: 57px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05 em;
  line-height: 2;
}
#footer .footer_left_bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
#footer .footer_snsList {
  display: inline-flex;
}
#footer .footer_snsList li i {
  font-size: 24px;
  color: #fff;
}
#footer .footer_snsList li:first-child {
  position: relative;
  top: -3px;
  margin-right: 21px;
}
#footer .footer_snsList li:first-child img {
  width: 22px;
}
#footer .footer_privacy {
  margin-left: 21px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
#footer .footer_privacy a {
  color: #fff;
  text-decoration: underline;
}
#footer .footer_copyRight {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.5;
}
#footer .footer_copyRight sub {
  font-size: 18px;
}
#footer .footer_management span {
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 15px;
  padding: 0 10px;
  font-size: 13px;
}
#footer .footer_company {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
#footer .footer_company img {
  width: 54px;
  margin-right: 21px;
}
#footer .footer_info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px #fff;
}
#footer .footer_info dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#footer .footer_info dl dt {
  width: 75px;
  padding: 2px 0;
}
#footer .footer_info dl dd {
  width: calc(100% - 75px);
  padding: 2px 0;
}
#footer .footer_info dl dd a {
  color: #fff;
  text-decoration: underline;
}

.plan-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  z-index: 50;
}
@media only screen and (min-width: 870px) and (max-width: 1119px) {
  .plan-wrapper {
    width: 300px;
  }
}
@media only screen and (max-width: 869px) {
  .plan-wrapper {
    width: 300px;
    bottom: 10px;
    right: 3%;
    max-width: 55%;
  }
}
.plan-wrapper .plan-bnr {
  border-radius: 10px;
}
.plan-wrapper .plan-bnr .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 20px;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  cursor: pointer;
}
@media only screen and (max-width: 869px) {
  .plan-wrapper .plan-bnr .close-btn {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }
}
.plan-wrapper .plan-bnr a {
  display: block;
}
.plan-wrapper .fix-img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 10px;
}/*# sourceMappingURL=common.css.map */