@charset "UTF-8";


/*-----------------------------------------------------------

  =Global Layout

-----------------------------------------------------------*/
:root {
  --color-primary: #08a3ab;
  --color-primary-rgb: 112, 192, 135;
  --color-secondary: #fa7e55;
  --color-secondary-rgb: 112, 192, 135;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-black: #222;
  --color-black-rgb: 0, 0, 0;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  color: #222;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
}
body{
  background: #fff;
  width: 100%;
  font-size: 1.6rem;
  font-feature-settings: 'palt' 1;
  letter-spacing:.08em;
  line-height: 2;
}

@media only screen and ( max-width:960px) {
  body{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  body {
    min-width: 320px;
  }
}

/* Instrument Serif*/
.f-en{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* Frame Format
---------------------------------*/
#wrapper {
  width: 100%;
  position: relative;
  padding-top:13rem;
}
.inner {
  max-width: 124rem;
  margin: 0px auto;
  padding: 0 2rem;
}
.wrap {
  padding: 11rem 0;
}

@media screen and ( max-width:1280px) {
  #wrapper {
    padding-top: 6rem;
  }
  .wrap {
    padding:7rem 0 ;
  }
}


/* Font Format
---------------------------------*/
.section-heading{
  text-align: center;
  margin-bottom:4rem;
}
.section-heading .en{
  display: inline-block;
  border-bottom: 1px solid var(--color-primary);
  color:var(--color-primary);
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.section-heading .jp {
  display: block;
  font-size: 4rem;
  font-weight:700;
  line-height: 1.44;
  margin-top: 5px;
}
@media only screen and (max-width: 960px) {
  .section-heading{
    margin-bottom:2rem;
  }
  .section-heading .en{
    font-size: 1.3rem;
  }
  .section-heading .jp {
    font-size: 2.8rem;
    margin-top: 3px;
  }
}


/* Header
------------------------------------------------------- */
#header {
  background: rgba(255,255,255, 1);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 9;
  transition: .5s;
}
@media screen and (min-width: 1281px) {
  #header{
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 130px;
    padding:0 3rem;
  }
  #header .logo{
    width: 210px;
    height: auto;
    padding: 38px 0px;
    transition: .5s;
  }
  #toggle {
    display:none;
  }
  #header.scroll{
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
  }
  #subnav{
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }
  #subnav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
  }
  #subnav ul li {
    margin: 0 5px;
  }
  #subnav .sub-nav-item.tel{
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  #subnav .sub-nav-item.tel .num{
    color: var(--color-primary);
    font-family: "Montserrat", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-left:30px;
    text-align: left;
    letter-spacing: .09em;
  }
  #subnav .sub-nav-item.tel .num::before{
    background: url(../img/icon-tel-green.svg) 0 0 no-repeat;
    background-size: 100%;
    content: '';
    display: block;
    height: 24px;
    left: 0;
    position: absolute;
    top: calc(50% - 12px);
    width: 24px;
  }
  #subnav .sub-nav-item.tel .txt {
    font-size: 1rem;
    padding-top: .3rem;
    line-height: 1;
    letter-spacing:.04em;
  }
  #subnav .suvnav-btn a{
    color: #fff;
    font-weight: 700;
    display: block;
    padding: 1rem 2rem;
    border-radius: 6rem;
    transition: 0.3s;
    width: 180px;
    text-align: center;
  }
  #subnav .suvnav-btn .txt{
    position: relative;
    padding-left:30px;
  }
  #subnav .suvnav-btn .txt::before{
    background-size: cover;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0px;
  }
  #subnav .suvnav-btn.chat .txt::before{
    background-image: url(../img/ico-chat-w.svg);
  }
  #subnav .suvnav-btn.requet .txt::before{
    background-image: url(../img/ico-request-w.svg);
  }
  #subnav .suvnav-btn.chat a{
    background-color: #08A3AB;
    border:2px solid #08A3AB;
  }
  #subnav .suvnav-btn.requet a{
    background-color: #FA443D;
    border:2px solid #FA443D;
  }
  #subnav .suvnav-btn.chat a:hover{
    background-color: #56CAD0;
    border:2px solid #56CAD0;
  }
  #subnav .suvnav-btn.requet a:hover{
    background-color: #FF9C98;
    border:2px solid #FF9C98;
  }
}

@media screen and ( max-width:1280px) {
  #header{
    height: 60px;
    background: rgba(255,255,255, 1);
  }
  #header .header-in{
    display: block;
    width: 100%;
    overflow: hidden;
    height: 60px;

  }
  #header .logo{
    width: 170px;
    height: auto;
    padding:15px 20px;
  }
  #subnav{
    display: none;
  }
}

@media screen and (min-width: 1281px) {
  #gnav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  #gnav .gnav-list{
    display: flex;
    align-items: center;
  }
  #gnav .gnav-list .nav-item{
    margin: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align:center;
  }
  #gnav .nav-item:last-child{
    margin: 0 0 0 20px;
  }
  #gnav .nav-item a{
    display: inline-block;
    position: relative;
  }
  #gnav .nav-item a:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 2px;
    left: 0;
    background: -moz-linear-gradient(left, #111 50%, #333);
    background: -webkit-linear-gradient(left, #111 50%, #333);
    background: linear-gradient(to right, #111 50%, #333);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  #gnav .nav-item a:hover{
    opacity:1;
    color:#a3a3a3;
  }
  #gnav .nav-item a:hover:after{
    -webkit-transform-origin:left top;
    transform-origin:left top;
    -webkit-transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform:scaleX(1);transform:scaleX(1);
  }
  .gnav-offer-sp,.gnav-utility-sp{
    display: none;
  }
}

@media screen and (max-width: 1280px) {
  #panel-btn {
    background:var(--color-primary);
    display:inline-block;
    height:60px;
    position:absolute;
    right:0px;
    top:0;
    width:60px;
  }
  #toggle {
    display:block;
    float:right;
    margin:0 10px 0 0;
  }
  #panel-btn:hover {
    opacity:0.6;
    -moz-opacity:.6;
    filter:alpha(opacity=60);
  }
  #panel-btn-icon {
    width:20px;
    height:1px;
    margin:-1px 0px 0px -10px;
    position:absolute;
    top:50%;
    left:50%;
    background-color:#fff;
    display:block;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    transition: .1s;
  }
  #panel-btn-icon:before, #panel-btn-icon:after {
    width:20px;
    height:1px;
    background-color:#fff;
    position:absolute;
    top:50%;
    left:0;
    display:block;
    content:"";
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
  }
  #panel-btn-icon:before{
  margin-top:-7px;
  }
  #panel-btn-icon:after {
    margin-top:5px;
  }
  #panel-btn .close{
    background:transparent;
  }
  #panel-btn .close:before, #panel-btn .close:after {
    margin-top:-1px;
  }
  #panel-btn .close:before {
    -webkit-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    transform:rotate(-45deg);
  }
  #panel-btn .close:after {
    -webkit-transform:rotate(-135deg);
    -ms-transform:rotate(-135deg);
    transform:rotate(-135deg);
  }
  #gnav {
    display: block;
    position: fixed;
    width:100%;
    z-index:99;
    margin:0px 0 0;
    padding:0 0 30px;
    background:#fff;
    height: 100dvh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav .gnav-list{
    border-top: rgba(0,0,0,.06) solid 1px;
  }
  #gnav .gnav-list {
    width:100%;
    margin:0;
    padding:0;
    line-height:1.3;
    display: grid;
  }
  #gnav .gnav-list .nav-item:nth-child(odd){
    border-right: rgba(0,0,0,.06) solid 1px;
  }
  #gnav .gnav-list .nav-item{
    border-bottom: rgba(0,0,0,.06) solid 1px;
  }
  #gnav .gnav-list a {
    padding:2rem 2rem;
    display:block;
    font-size: 1.3rem;
    font-weight: 700;
    color:#222;
    text-decoration:none;
    border:none;
    line-height:1.6;
    position: relative;
  }
  #gnav .nav-item a:after {
    content: '';
    width: 5px;
    height: 5px;
    margin-top: -.3rem;
    border-top: solid 2px rgba(36, 45, 96, .4);
    border-right: solid 2px rgba(36, 45, 96, .4);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 2rem;
  }
  #gnav .nav-item a:hover  {
    background:#edf6f6;
    color: #00abba;
  }
  .gnav-offer-sp{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    margin: 30px auto 0;
  }
  .gnav-offer-sp li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.4rem .5rem  .8rem!important;
  }
  .gnav-offer-sp li span{
    padding-top: 2.4rem;
    position: relative;
    font-size: 1.3rem;
    font-weight: 700;
  }
  .gnav-offer-sp span::before{
    background-size: cover;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: calc(50% - 10px);
  }
  .gnav-offer-sp .gnav-tel span::before{
    background-image: url(../img/ico-tel-green.svg);
  }
  .gnav-offer-sp .gnav-chat span::before{
    background-image: url(../img/ico-chat-w.svg);
  }
  .gnav-offer-sp .gnav-request span::before{
    background-image: url(../img/ico-request-w.svg);
  }
  .gnav-offer-sp .gnav-tel a{
    background-color: #fff;
    border:2px solid #08A3AB;
    color: #08A3AB!important;
  }
  .gnav-offer-sp .gnav-tel a:hover{
    background-color: #edf6f6;
  }
  .gnav-offer-sp .gnav-chat a{
    background-color: #08A3AB;
    border:2px solid #08A3AB;
    color: #fff!important;
  }
  .gnav-offer-sp .gnav-chat a:hover{
    background-color: #56CAD0;
    border:2px solid #56CAD0;
  }
  .gnav-offer-sp .gnav-request a{
    background-color: #FA443D;
    border:2px solid #FA443D;
    color: #fff!important;
  }
  .gnav-offer-sp .gnav-request a:hover {
    background-color: #FF9C98;
    border:2px solid #FF9C98;
  }
  .gnav-utility-sp{
    border-top:none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:3rem 0;
  }
  .gnav-utility-sp li{
    font-size: 13px;
    position: relative;
    text-align: center;
    padding-left:28px;
  }
  .gnav-utility-sp li {
    margin: 0 20px;
  }
  .gnav-utility-sp li:not(:first-child)::after {
    position: absolute;
    top: 50%;
    left: -20px;
    display: block;
    content: "";
    width: 1px;
    height: 16px;
    margin-top: -8px;
    border-left: 1px #888 solid;
  }
  .gnav-utility-sp li a:hover{
    /* opacity: .3; */
    color: #00abba;
  }
  .gnav-utility-sp li:last-child {
    margin-right: 0px;
  }
  .gnav-utility-sp li::before{
    background-size: 20px 20px;
    content: '';
    height: 20px;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
    vertical-align: middle;
    width: 20px;
  }
  .gnav-utility-sp li.btn-corpo::before{
    background: url(../img/ico-corpo.svg);
  }
  .gnav-utility-sp li.btn-mypage::before{
    background: url(../img/ico-mypage.svg);
  }
}



/* mv
--------------------------------------*/
#mv {
  background-image: url(../img/mv-bg_pc.webp)  ;
  background-position:50% 50% ;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f5f5f5;
  position: relative;
}
#mv .inner{
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding:6rem 2rem;
  position: relative;
}
#mv .txt-item{
  width: 55%;
  text-align: center;
}
#mv .mv-subcatch{
  position: relative;
  display: inline-block;
  border-radius: 60px;
  margin: 0 0 16px;
  padding: 1rem 2.4rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.44;
  background: var(--color-primary);
}
#mv .mv-subcatch:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -9px;
  border: 9px solid transparent;
  border-top: 9px solid var(--color-primary);;
}
#mv .mv-catch{
  color:#222;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.5;
}
#mv .mv-catch .main{
  color:var(--color-primary);
  font-size: 5.8rem;
  display: inline;
  background: linear-gradient(#08a3ab, #08a3ab) 0 100% / 100% 6px no-repeat;
}
#mv .mv-catch .middle{
  font-size: 2.6rem;
  line-height: 2;
  position: relative;
  bottom:-1rem;
}
#mv .mv-object{
  max-width: 500px;
  margin:3rem auto 0;
}
.mv-baloon{
  position: absolute;
  bottom:-80px;
  right:100px;
  width:200px;
  z-index: 1;
}
.mv-pic-sp{
  display: none;
}
@media screen and (max-width: 960px) {
  #mv {
    background: #f9f9f9;
    background-image: none;
  }
  #mv .inner{
    padding:0;
  }
  #mv .txt-item{
    padding:2rem 2rem 0;
    width: 100%;
    text-align: center;
  }
  #mv .mv-subcatch{
    margin: 0 0 16px;
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
  }
  #mv .mv-catch{
    font-size: 1.4rem;
    line-height: 1.66;
  }
  #mv .mv-catch .main{
    font-size: 3.6rem;
    background: linear-gradient(#08a3ab, #08a3ab) 0 100% / 100% 4px no-repeat;
    top:0;
  }
  #mv .mv-catch .middle{
    font-size: 2rem;
    line-height: 1.2;
  }
  #mv .mv-object{
    max-width: 500px;
    margin:4rem auto 0;
  }
  .mv-baloon{
    position: absolute;
    bottom:-30px;
    right:10px;
    width:150px;
    z-index: 1;
  }
  .mv-pic-sp{
    display: block;
  }
}

/* Right-btn
--------------------------------------*/
#right-btns{
  display: block;
  top: 22%;
  right: 0;
  width: 6rem;
  position: fixed;
  z-index: 5;
}
#right-btns ul{
  background-color: #fff;
  border-radius: 1rem 0 0 1rem;
  padding: 3rem 0;
  box-shadow: rgba(0, 0, 0, .16) 0px 1px 6px;
}
#right-btns li a {
  display: inline-flex;
  align-items: center;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  writing-mode: vertical-rl;
  padding-top:28px;
  position: relative;
}
#right-btns ul li a::before{
  background-size: 20px 20px;
  content: '';
  height: 20px;
  position: absolute;
  right: calc(50% - 10px);
  top: 0;
  vertical-align: middle;
  width: 20px;
}
#right-btns li a:hover{
  color: #00abba;
}
#right-btns ul li.btn-corpo a::before{
  background: url(../img/ico-corpo.svg);
}
#right-btns ul li.btn-mypage a::before{
  background: url(../img/ico-mypage.svg);
}
#right-btns ul li.btn-corpo a::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 2rem auto 1rem;
  background-color: #888;
}
@media screen and (max-width: 1280px) {
  #right-btns{
    display: none;
  }
}


/* offer
--------------------------------------*/
.offer-block {
  background-color: #FFF462;
  padding: 6rem 0 7rem;
  line-height: 1.44;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.offer-block.mv-offer{
  padding: 3rem 0 4rem;
  line-height: 1.44;
}
.offer-block .inner{
  max-width: 940px;
}
.offer-block .heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.66;
  position: relative;
}
.offer-block .heading span {
  display: inline;
  padding-bottom: 2px;
  background: linear-gradient(#222, #222) 0 100% / 100% 4px no-repeat;
}
.offer-list{
  margin-top:2rem;
}
.offer-btn a {
  color: #fff;
  display: block;
  padding: 2rem 2rem;
  border-radius: 1.6rem;
  transition: 0.2s ease-in-out;
  text-align: center;
  position: relative;
  border: 3px solid #222;
  box-shadow: 0px 6px 0px 0px rgba(17, 17, 17, 1);
}
.offer-btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  background: url(../img/offer-btn-arrow.svg) center / cover;
  transform: translateY(-50%);
}
.offer-btn span{
  position: relative;
  padding-left:4rem;
  font-size:2.4rem;
  font-weight: 700;
}
.offer-btn span::before{
  background-size: cover;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: calc(50% - 16px);
  left: 0px;
}
.offer-btn.chat a {
  background-color: #08A3AB;
}
.offer-btn.request a {
  background-color: #FA443D;
}
.offer-btn.chat a:hover{
  background-color: #56CAD0;
}
.offer-btn.request a:hover {
  background-color: #FF9C98;
}
.offer-btn.chat span::before{
  background-image: url(../img/ico-chat-w.svg);
}
.offer-btn.request span::before{
  background-image: url(../img/ico-request-w.svg);
}
.offer-block .bottom-heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom:1rem;
}
.offer-block .offer-tel{
  margin-top:3rem;
}
.offer-block .offer-tel a{
  display: block;
}
.offer-block .offer-tel .num {
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding-left: 40px;
  display: inline-block;
  letter-spacing: .04em;
}
.offer-block .offer-tel .num::before {
  background: url(../img/icon-tel-green.svg) 0 0 no-repeat;
  background-size: 100%;
  content: '';
  display: block;
  height: 36px;
  left: 0;
  position: absolute;
  top: calc(50% - 18px);
  width: 36px;
}
.offer-block .offer-tel .txt {
  font-size: 1.4rem;
  padding-top: .8rem;
  line-height: 1.55;
}

@media screen and (min-width: 961px) {
  .offer-btn a:hover{
    transform: translateY(3px);
    box-shadow: none;
  }
}
@media screen and (max-width: 960px) {
  .offer-block {
    padding: 3rem 0 4rem;
  }
  .offer-block.mv-offer{
    padding: 4rem 0 3rem;
  }
  .offer-block .heading {
    font-size: 1.8rem;
  }
  .offer-block .heading span {
    background: linear-gradient(#222, #222) 0 100% / 100% 2px no-repeat;
  }
  .offer-btn span::before{
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
  }
  .offer-list.grid-col-2{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  .offer-btn a {
    padding: 2rem 2rem;
    border: 3px solid #222;
    box-shadow: 0px 3px 0px 0px rgba(17, 17, 17, 1);
  }
  .offer-btn span{
    padding-left:3rem;
    font-size:1.8rem;
  }
  .offer-btn a:active{
    transform: scale(.95);
    opacity: .6;
  }
  .offer-block .bottom-heading {
    font-size: 2.2rem;
    line-height: 1.22;
    margin-bottom:1rem;
  }
  .offer-block .offer-tel a:active{
    transform: scale(.95);
  }
  .offer-block .offer-tel .num {
    font-size: 3rem;
    padding-left: 3rem;
  }
  .offer-block .offer-tel .num::before {
    height: 24px;
    top: calc(50% - 12px);
    width: 24px;
  }
  .offer-block .offer-tel .txt {
    font-size: 1.2rem;
  }
}


/* Campaign
--------------------------------------*/
.mv-campaign{
  padding:5rem 2rem;
  max-width: 80rem;
  margin:0 auto;
}
.mv-campaign .mv-campaign-img{
  border-radius: 2rem;
  overflow: hidden;
  border:3px solid var(--color-primary);
}
@media screen and (max-width: 960px) {
  .mv-campaign{
    padding:3rem 2rem;
  }
}



.commission{
  background-color: #E5F6F6;
  padding:7rem 0 6rem;
  text-align: center;
}
.commission .heading{
  color:var(--color-primary);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom:2.4rem;
}
.commission .heading .tx-underline{
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 16px no-repeat;
}
.commission .lead-copy{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
/* commission-list */
.commission-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 2rem;
  margin-top:4rem;
}
.commission-list-item{
  background-color: #fff;
  border-radius: 1rem;
  padding:2rem 2rem 3rem;
  text-align: center;
}
.commission-list-item .img{
  max-width: 110px;
  margin:0 auto 2rem;
}
.commission-list-item .txt-ttl{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
}
.commission-list-item .txt-ttl .tx-underline{
  color: var(--color-primary);
  font-size: 4rem;
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 16px no-repeat;
}
.commission-list-item .caption{
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  opacity: .6;
  margin-top:1rem;
}
@media screen and (max-width: 960px) {
  .commission{
    padding:4rem 0;
  }
  .commission .heading{
    font-size: 2.8rem;
    margin-bottom:2.4rem;
  }
  .commission .heading .tx-underline{
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
  }
  .commission .lead-copy{
    font-size: 1.4rem;
  }
  .commission-list{
    grid-template-columns: repeat(1, 1fr);
    margin-top:3rem;
  }
  .commission-list-item{
    padding:1.6rem;
    display: flex;
    align-items: center;
  }
  .commission-list-item .img{
    max-width: 80px;
    flex-shrink: 0;
    margin:0;
  }
  .commission-list-item .img img{
    width: 64px;
    height: 64px;
  }
  .commission-list-item .txt{
    padding: 0 0 0 2rem;
    flex-grow: 1;
  }
  .commission-list-item .txt-ttl{
    font-size: 1.4rem;
    text-align: left;
  }
  .commission-list-item .txt-ttl .tx-underline{
    font-size: 2.4rem;
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 8px no-repeat;
  }
  .commission-list-item .caption{
    text-align: left;
  }
}


/* Feature
--------------------------------------*/
#feature{
  background-color:#FFFEEA ;
  overflow: hidden;
  padding:6rem 0 11rem;
}
/* feature-intro */
.feature-intro{
  background-color: #08A3AB;
  border-radius: 4rem;
  margin:0 auto 10rem;
  max-width: 168rem;
  padding:7rem 0;
  overflow: hidden;
}
.feature-intro-box{
  background-color: #fff;
  border-radius: 1.6rem;
  padding:0 6rem 5rem ;
  position: relative;
  text-align: center;
}
.feature-intro-box::before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 60px 0 60px;
  border-color: #fff transparent transparent transparent;
}
.feature-intro-box .sub-heading{
  background-color: #FFF462;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.22;
  padding: 1.6rem 2rem;
  display: inline-block;
  border-radius: 40px;
  position: relative;
  top:-3rem;
  margin-bottom:-4rem;
}
.feature-intro-box .heading{
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom:2.4rem;
  position: relative;
  top:-10px;
}
.feature-intro-box .heading span{
  font-size: 2rem;
}
.feature-intro-box .heading .tx-underline{
  color:var(--color-primary);
  background: linear-gradient(#08a3ab, #08a3ab) 0 100% / 100% 5px no-repeat;
}
.feature-intro-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap:  2.4rem;
  align-items: center;
}
.feature-intro-list .item{
  display: flex;
  align-items: center;
}
.feature-intro-list .item .item-pic {
  overflow: hidden;
  flex-shrink: 0;
  width: 80px;
}
.feature-intro-list .item .item-txt {
  font-size: 1.8rem;
  padding: 0 0 0 1.4rem;
  line-height: 1.44;
  flex-grow: 1;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #feature{
    padding:4rem 0 7rem;
  }
  .feature-intro{
    border-radius: 2rem;
    margin:0 auto 6rem;
    padding:4rem 0;
  }
  .feature-intro-box{
    padding:0 2rem 2rem ;
  }
  .feature-intro-box .sub-heading{
    font-size: 1.4rem;
    padding: 1.6rem 2rem;
    margin-bottom:  2rem;
    top:-2rem;
    margin-bottom:-1rem;
  }
  .feature-intro-box .heading{
    font-size: 3rem;
    margin-bottom:2.4rem;
  }
  .feature-intro-box .heading .tx-underline{
    position: relative;
    top:-.5rem;
  }
  .feature-intro-box .heading span{
    font-size: 1.6rem;
  }
  .feature-intro-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-intro-list .item .item-pic {
    overflow: hidden;
    flex-shrink: 0;
    width: 70px;
  }
  .feature-intro-list .item .item-txt {
    font-size: 1.4rem;
  }
}

.feature-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 240px;
  position: relative;
  text-align: center;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
.feature-heading .ttl{
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.44;
  color:#fff;

}
.feature-heading .ttl .tx-underline{
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
}
.feature-heading .feature-heading__loop-wrap {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 0;
}
.feature-heading .feature-heading__loop-text {
  -webkit-animation: textLoop 6s linear infinite;
  animation: textLoop6s linear infinite;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18rem;
  font-weight: 700;
  white-space: pre;
  line-height: 1;
  letter-spacing: 0;
  -webkit-animation: textLoop 30s linear infinite;
  animation: textLoop 30s linear infinite;
  padding-right: 6rem;
  opacity: .08;
}
@-webkit-keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@media screen and (max-width: 960px) {
  .feature-heading {
    height: 140px;
  }
  .feature-heading .ttl{
    font-size: 2.4rem;
  }
  .feature-heading .ttl .tx-underline{
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 5px no-repeat;
  }
  .feature-heading .feature-heading__loop-text {
    font-size: 10rem;
    padding-right: 4rem;
  }

}


/* feature-nav-list */
.feature-nav-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 4rem;
  align-items: center;
}
.feature-nav-list .item a{
  position: relative;
  background-color: #fff;
  border:4px solid #333;
  border-radius: 1.6rem;
  padding:3rem 2rem;
  text-align: center;
  display: grid;
  grid-row: span 1;
  gap: 2px;
  grid-template-rows: subgrid;
}
.feature-nav-list .item a::after {
  position: absolute;
  content: "";
  bottom:-20px;
  left: 50%;
  width: 32px;
  height: 32px;
  background: url(../img/feature-nav-list-arrow.svg) center / cover;
  transform: translateX(-50%);
}
.feature-nav-list .item a:hover{
  transform: translateY(-6px);
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.4);
}
.feature-nav-list .item .num {
  width: 6rem;
  height: 6rem;
  background: #FFF462;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 100%;
  position: absolute;
  left: -2rem;
  top: -2rem;
}
.feature-nav-list .item .ttl{
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.55;
}
.feature-nav-list .item .ttl strong{
  font-size: 2.8rem;
}
.feature-nav-list .item .ttl .tx-underline{
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
}
@media screen and (max-width: 960px) {
  .feature-nav-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-nav-list .item .num {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    left: -1.6rem;
    top: -1.6rem;
  }
  .feature-nav-list .item .ttl{
    font-size: 1.4rem;
  }
  .feature-nav-list .item .ttl strong{
    font-size: 2rem;
  }
  .feature-nav-list .item .ttl .tx-underline{
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
  }
}


/* feature-list*/
.feature-list .item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 3px 20px 5px rgba(181, 162, 15, .047);
  position: relative;
  padding: 6rem;
}
.feature-list .item:nth-of-type(n+2) {
  margin-top: 6rem;
}
.feature-list .item .num {
  width: 8rem;
  height: 8rem;
  background: #FFF462;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border-radius: 100%;
  position: absolute;
  left: -2rem;
  top: -2rem;
}
.feature-list__heading{
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom:3.6rem;
  text-align: center;
}
.feature-list__heading strong{
  color:var(--color-primary);
  font-size: 4.6rem;
}
.feature-list__heading .tx-underline{
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 16px no-repeat;
}
.feature-list .item .lead-copy{
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .feature-list .item {
    padding: 4rem 2rem 3rem;
  }
  .feature-list .item .num {
    width: 5rem;
    height:5rem;
    font-size: 2rem;
    left: -1.6rem;
    top: -1.6rem;
  }
  .feature-list__heading{
    font-size: 1.8rem;
    margin-bottom:2rem;
  }
  .feature-list__heading strong{
    font-size: 2.4rem;
  }
  .feature-list__heading .tx-underline{
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 8px no-repeat;
  }
  .feature-list .item .lead-copy{
    font-size: 1.4rem;
  }
}


/* case-data*/
.case-data {
  margin-top:3rem;
}
.case-data .result {
  font-size: 1.4rem;
}
.case-data .result .money {
  margin: 0 0 1.4rem;
  padding: 0 0 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-data .result .money.before {
  color: #b5b5b5;
  background: url(../img/case-price-arrow.svg) no-repeat right 90px bottom;
  background-size: 18px auto;
}
.case-data .result .money.after {
  border-bottom: solid 1px #D3D3D3;
  color: var(--color-primary);
}
.case-data .result .money.compariment {
  color: #FA533D;
}
.case-data .result .money .heading {
  font-weight: 700;
  width: 7rem;
  padding: 1rem 1rem;
  border-radius: .6rem;
  text-align: center;
}
.case-data .result .money.before .heading {
  background-color: #B6B6B6;
  color: #fff;
}
.case-data .result .money.after .heading {
  background-color: #08A3AA;
  color: #fff;
}
.case-data .result .money.compariment .heading {
  background-color: #FA533D;
  color: #fff;
}
.case-data .result .money .price {
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: right;
}
.case-data .result .money .unit {
  margin: 0 0 0 .5rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: right;
}
.case-data .result .reduction {
  display: block;
  width: 100%;
  padding: .8rem 2rem;
  border-radius: .6rem;
  background-color: #FFEDE9;
  color: #FA533D;
  text-align: center;
}
.case-data .result .reduction .txt-num{
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.22;
}
.case-data .result .reduction .txt-num .unit {
  font-size: 2.8rem;
}
@media screen and (max-width: 960px) {
  .case-data .result {
    font-size: 1.2rem;
  }
  .case-data .result .money .heading {
    padding: .5rem .5rem;
  }
  .case-data .result .money {
    justify-content: space-between;
  }
  .case-data .result .money .price {
    font-size: 3rem;
  }
  .case-data .result .reduction .txt-num{
    font-size: 3.0rem;
  }
  .case-data .result .reduction .txt-num .unit {
    font-size: 1.8rem;
  }
}


/* price-more-box */
.price-more-box{
  text-align: left;
  padding: 2.5rem 2rem;
  background-color: var(--color-primary);
  border-radius: .8rem;
  transition: .3s;
  margin-top:4rem;
}
.price-more-box .more-box-head{
  position: relative;
  cursor: pointer;
}
.price-more-box .heading{
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  text-align: center;
}
.price-more-box .toggle_icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  padding: 10px;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
.price-more-box .toggle_icon:before,
.price-more-box .toggle_icon:after {
  display: block;
  content: '';
  background-color: var(--color-primary);
  position: absolute;
  width: 15px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.price-more-box .toggle_icon:before {
  width: 2px;
  height: 15px;
}
.price-more-box.selected .toggle_icon:before {
  content: normal;
}
.price-more-box.selected{
  background-color: #E6F6F7;
}
.price-more-box.selected .heading{
  color: var(--color-primary);
}
.price-more-box.selected .toggle_icon:before,
.price-more-box.selected .toggle_icon:after {
  background-color: #fff;
}
.price-more-box.selected .toggle_icon {
  background-color: var(--color-primary);
}

.price-more-box .accordion-body {
  display: none;
}

.price-more-box .more-box-body {
  background-color: #fff;
  margin-top: 1rem;
  border-radius: .5rem;
  padding: 4rem 4rem  4rem;
}
.more-box-body .box-2row{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.more-box-body .box-2row .item01{
  width: 460px;
  padding:0;
  line-height: 1.44;
}
.more-box-body .box-2row .item02{
  width:480px;
  padding:0 2rem;
  line-height: 1.44;
}

.more-box-body .bottom{
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
  margin-top:3rem;
  padding-top:3rem;
  margin-bottom:3rem;
  padding-bottom:3rem;
}
.more-box-body .ttl{
  color:var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
}
.more-box-body .paragraph-1{
  font-size: 1.2rem;
}
.more-box-body .paragraph-1:last-child{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px dotted #ddd;
}
@media screen and (max-width: 960px) {
  .price-more-box{
    padding: 1rem 1rem;
    margin-top:3rem;
  }
  .price-more-box .more-box-head{
    padding:1rem;
  }
  .price-more-box .heading{
    font-size: 1.5rem;
  }
  .price-more-box .toggle_icon {
    width: 20px;
    height: 20px;
    padding: 10px;
  }
  .price-more-box .toggle_icon:before,
  .price-more-box .toggle_icon:after {
    width: 10px;
    height: 2px;
  }
  .price-more-box .toggle_icon:before {
    width: 2px;
    height: 10px;
  }
  .price-more-box .more-box-body {
    padding: 2rem 1.6rem;
    font-size: 1.2rem;
  }
  .more-box-body .box-2row .item01{
    width: 100%;
    padding:0 2rem 0 0;
  }
  .more-box-body .box-2row .item02{
    width: 100%;
    padding:0;
  }
  .more-box-body .ttl{
    font-size: 1.4rem;
    margin-bottom:.8rem;
  }
}

/* plan-list */
.plan-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  row-gap: 4rem;
  align-items: center;
  margin-top:4rem;
}
.plan-list-item .item-box{
  border:2px solid #CDE9F8;
  border-radius: 1rem;
  overflow: hidden;
}
.plan-list-item.day-plan .item-box{
  border:2px solid #FEEACC;
}
.plan-list-item.night-plan .item-box{
  border:2px solid #E4E7F3;
}
.plan-list-item .item-baloon{
  position: relative;
  color: #fff;
  background-color: #0091DB;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  height: 70px;
  position: relative;
  margin-bottom:.6rem;
  z-index: 1;
  line-height: 1.22;
  text-align: center;
}
.plan-list-item .item-baloon span{
 font-size: 1.4rem;
}
.plan-list-item .item-baloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #0091DB transparent transparent transparent;
}
.plan-list-item.day-plan .item-baloon {
  background-color: #F39800;
}
.plan-list-item.day-plan .item-baloon::before {
  border-color: #F39800 transparent transparent transparent;
}
.plan-list-item.night-plan .item-baloon {
  background-color: #7C85C1;
}
.plan-list-item.night-plan .item-baloon::before {
  border-color: #7C85C1 transparent transparent transparent;
}
.plan-list-item .item-header {
  position: relative;
  padding: 2.4rem;
  background-color: #E5F5FC;
  text-align: center;
}
.plan-list-item.day-plan .item-header {
  background-color: #FEF5E5;
}
.plan-list-item.night-plan .item-header {
  background-color: #F2F3FA;
}
.plan-list-item .item-header .ttl {
  background-color: #0091DB;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.22;
  padding: 1.2rem 2.4rem;
  display: inline-block;
  border-radius: 4rem;
  margin-bottom: 1rem;
}
.plan-list-item.day-plan .item-header .ttl{
  background-color: #F39800;
}
.plan-list-item.night-plan .item-header .ttl{
  background-color: #7C85C1;
}
.plan-list-item .item-header .area{
  font-weight: 700;
}
.plan-list-item .item-header .area span{
  position: relative;
  padding-left: 2rem;
}
.plan-list-item .item-header span::before{
  background-size: cover;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 0;
  background-image: url(../img/plan-area-icon.svg) ;
}
.plan-list-item .item-header .meta{
  font-size: 1.4rem;
  line-height: 1.44;
}
.plan-list-item .item-body{
  padding:2rem 2rem 3rem;
}
.plan-list-item .item-body .chart-img{
  width: 100%;
  margin:0 auto;
}
.plan-list-item .item-body .chart-img img{
  width: 100%;
}
@media screen and (max-width: 960px) {
  .plan-list{
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
    margin-top:3rem;
  }
  .plan-list-item .item-baloon span{
    font-size: 1.2rem;
   }
   .plan-list-item .item-header {
    padding: 1.6rem;
  }
  .plan-list-item .item-header .ttl{
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
    margin-bottom: 1.2rem;
  }
  .plan-list-item .item-header .meta{
    font-size: 1.2rem;
  }
  .plan-list-item .item-body{
    padding:2rem 1rem 3rem;
  }
  .plan-list-item .item-body .chart-img{
    width: 80%;
    margin:0 auto;
  }
}


.plan-diagnosis-list{
  background-color: #fff;
  border-radius: .5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  row-gap: 3rem;
  margin-top: 4rem;
}
.plan-diagnosis-list .img{
  border-radius: .5rem;
  overflow: hidden;
}
.plan-diagnosis-list .ttl{
  margin-top:2rem;
  font-size: 1.8rem;
  line-height: 1.66;
  text-align: center;
}
.plan-diagnosis-list .ttl strong{
  font-size: 2rem;
  font-weight: 700;
}
.plan-diagnosis-list .ttl .tx-underline{
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
}
@media screen and (max-width: 960px) {
  .plan-diagnosis-list{
    margin-top: 2.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
  .plan-diagnosis-list .ttl{
    margin-top:2rem;
    font-size: 1.4rem;
  }
  .plan-diagnosis-list .ttl strong{
    font-size: 1.6rem;
  }
  .plan-diagnosis-list .ttl .tx-underline{
    background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 5px no-repeat;
  }
}


.result-more-box{
  text-align: left;
  padding: 2.5rem 2rem;
  background-color: #E6F6F7;
  border-radius: 1rem;
  transition: .3s;
  margin-top: 4rem;
}
.result-more-box__heading{
  color:var(--color-primary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.44;
  margin-bottom:1.6rem;
  text-align: center;
}
.result-more-box__body{
  background-color: #fff;
  padding:3rem;
  border-radius: .5rem;
}
.evaluation-list{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.evaluation-list .evaluation-list-item{
  margin: 0 2rem 2rem;
  text-align: center;
}
.evaluation-list .evaluation-list-item img{
  zoom: .5;
}
.evaluation-list .lineup01 {
  width: 60%;
  margin:0 auto 4rem;
}
@media screen and (max-width: 960px) {
  .result-more-box{
    padding: 1rem 1rem;
    margin-top: 2.4rem;
  }
  .result-more-box__heading{
    font-size: 1.6rem;
    margin-bottom:1.2rem;
  }
  .result-more-box__body{
    padding:1rem 1rem;
  }
  .evaluation-list .evaluation-list-item{
    margin: 0;
    text-align: center;
  }
  .evaluation-list .lineup01 {
    width: 100%;
    margin:0 auto ;
  }
  .evaluation-list .lineup02 {
    margin:2rem auto ;
  }
  .evaluation-list .lineup03 {
    width: 60%;
    margin:0 auto;
  }
}
.shareholder-list{
  display: flex;
  justify-content: space-between;
  justify-items: center;
  padding: 3rem 6rem;
  align-items: flex-end;
}
@media screen and (max-width: 960px) {
  .shareholder-list {
    flex-direction: column;
    align-items:flex-start;
    width: 100%;
    padding: 2rem 2rem;
    text-align: left;
  }
}

.development-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3rem;
  row-gap: 1rem;
}
.development-list-item.sp{
  display: none;
}
.development-list-item.pc{
  display: block;
  text-align: center;
}
.development-list-item.pc .title{
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.22;
  margin:4rem 0 3rem;
}
.development-list-item.pc .title span{
  font-size: 4rem;
}
.development-list-item .paragraph-1{
  margin-top:2.4rem;
  text-align: left;
  font-size: 1.2rem;
}
.development-list-item .base-box{
  text-align: center;
}
.development-list-item .base-box:not(:first-child){
  margin-top:1rem;
}
.development-list-item .base-box .ttl{
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-radius:.5rem .5rem 0 0;
  background-color: #ECA616;
}
.development-list-item .base-box .body{
  background-color: #FFF5E5;
  padding:1rem 1rem;
  border-radius: 0 0 .5rem .5rem;
}
.development-list-item .base-box.base02 .ttl{
  background-color: #01663D;
}
.development-list-item .base-box.base02 .body{
  background-color: #E8F2EE;
}
.development-list-item .base-box.base03 .ttl{
  background-color: #563989;
}
.development-list-item .base-box.base03 .body{
  background-color: #F0EEF6;
}
.development-list-item .base-box.base04 .ttl{
  background-color: #015B7A;
}
.development-list-item .base-box.base04 .body{
  background-color: #E8F1F3;
}
.development-list-item .base-box.base05 .ttl{
  background-color: #1A8BCD;
}
.development-list-item .base-box.base05 .body{
  background-color: #EBF5FB;
}
.development-list-item .base-box.base06 .ttl{
  background-color: #C2191F;
}
.development-list-item .base-box.base06 .body{
  background-color: #FAEBEB;
}
.development-list-item .base-box .subttl{
  font-weight: 700;
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  line-height: 1.22;
  margin-bottom:.6rem;
}
.development-list-item .base-box .subttl span{
  font-size: 2.4rem;
}
.development-list-item .base-box .pic img{
  border-radius: .4rem;
  overflow: hidden;
}
.development-list-item .base-box .caption{
  margin-top:.6rem;
  font-size:1rem;
  letter-spacing: 0;
}
.development-list-item .base-box .development-2row{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
  row-gap: 1rem;
}
.development-list-item .base-box .development-1row{
  width: 50%;
  margin:0 auto;
}
@media screen and (max-width: 960px) {
  .development-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .development-list-item.sp{
    display: block;
    text-align: center;
    margin-bottom:1rem;
  }
  .development-list-item.pc{
    display: none;
  }
  .development-list-item.sp .title{
    font-family: "Montserrat","Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin:0rem 0 2rem;
    line-height: 1.22;
  }
  .development-list-item.sp .title span{
    font-size: 2.8rem;
  }
  .development-list-item .paragraph-1{
    margin-top:1.6rem;
    text-align: left;
    font-size: 1.2rem;
  }
}


/* Plan
--------------------------------------*/
#plan{
  background-color: #FAFAFA;
}
#plan .lead-copy{
  text-align: center;
  margin-bottom:4rem;
}
#plan .plan-lineup .plan-lineup-item{
  border: 4px solid #CBE9F8;
  background-color: #fff;
  border-radius: 1rem;
  position: relative;
  padding: 6rem;
}
#plan .plan-lineup .plan-lineup-item:nth-of-type(n+2) {
  margin-top: 5rem;
}
#plan .plan-lineup .plan-lineup-item.day-plan{
  border: 4px solid #FEEACB;
}
#plan .plan-lineup .plan-lineup-item.night-plan{
  border: 4px solid #E3E6F2;
}
@media screen and (max-width: 960px) {
  #plan .lead-copy{
    margin-bottom:2rem;
  }
  #plan .plan-lineup .plan-lineup-item{
    border: 2px solid #CBE9F8;
    padding: 2rem 2rem 3rem;
  }
  #plan .plan-lineup .plan-lineup-item.day-plan{
    border: 2px solid #FEEACB;
  }
  #plan .plan-lineup .plan-lineup-item.night-plan{
    border: 2px solid #E3E6F2;
  }
}


.plan-lineup-item-header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan-lineup-item-header .txt-row {
  width: 55%;
}
.plan-lineup-item-header .pic-row {
  width: 40%;
}
.plan-lineup-item-header-ttl{
  margin-bottom:2rem;
}
.plan-lineup-item-header-ttl .subttl{
  background-color: #0091DB;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.22;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  display: inline-block;
  border-radius: 4rem;
  margin-bottom: 1rem;
}
.plan-lineup-item-header-ttl .ttl{
  color:#0091DB;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.33;
}
.plan-lineup-item-header-recommend{
  background: rgba(0,145,219,0.1);
  border-radius: 1rem;
  padding:2rem 3rem 3rem;
}
.plan-lineup-item-header-recommend .txt{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom:1rem;
}
.plan-lineup-item-header-recommend .check-list li {
  line-height: 1.44;
  letter-spacing: .01em;
  padding-left: 26px;
  position: relative;
  margin: 0 ;
}
.plan-lineup-item-header-recommend .check-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0px;
  width: 20px;
  height: 20px;
  background-image: url(../img/plan-check-icon-basic.svg) ;
  background-position: 50%;
  background-size: contain;
  transform: translateY(-50%);
}
.plan-lineup-item-header-recommend .check-list li:nth-child(n+2){
  margin-top:1.2rem;
}
.plan-lineup-item-header .pic-row img{
  border-radius: 1rem;
  overflow: hidden;
}
.day-plan .plan-lineup-item-header-ttl .subttl{
  background-color: #F4A015;
}
.day-plan .plan-lineup-item-header-ttl .ttl{
  color:#F4A015;
}
.day-plan .plan-lineup-item-header-recommend{
  background: rgba(243,152,0,0.1);
}
.day-plan .plan-lineup-item-header-recommend .check-list li::before {
  background-image: url(../img/plan-check-icon-day.svg) ;
}

.night-plan .plan-lineup-item-header-ttl .subttl{
  background-color: #7C84C1;
}
.night-plan .plan-lineup-item-header-ttl .ttl{
  color:#7C84C1;
}
.night-plan .plan-lineup-item-header-recommend{
  background: rgba(124,132,193,0.1);
}
.night-plan .plan-lineup-item-header-recommend .check-list li::before {
  background-image: url(../img/plan-check-icon-night.svg) ;
}



@media screen and (max-width: 960px) {
  .plan-lineup-item-header .txt-row {
    width: 100%;
    position: relative;
    top:-2rem;
    margin-bottom:-2rem;
  }
  .plan-lineup-item-header .pic-row {
    width: 100%;
  }
  .plan-lineup-item-header-ttl{
    margin-bottom:2rem;
    text-align: center;
  }
  .plan-lineup-item-header-ttl .subttl{
    font-size: 1.2rem;
    padding: 1rem 1.6rem;
    margin-bottom: 1rem;
  }
  .plan-lineup-item-header-ttl .ttl{
    font-size: 2.4rem;
  }
  .plan-lineup-item-header-recommend{
    padding:2rem 1.6rem;
  }
  .plan-lineup-item-header-recommend .txt{
    font-size: 1.4rem;
    margin-bottom:1rem;
    text-align: center;
  }
  .plan-lineup-item-header-recommend .check-list li {
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .plan-lineup-item-header-recommend .check-list li::before {
    width: 14px;
    height: 14px;
  }
}

.plan-area-content {
  margin-top: 6rem;
}
.plan-lineup-subttl{
  position: relative;
  display: flex;
  align-items: center;
  font-size:2.4rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 1.8rem;
  margin-bottom:1.4rem;
}
.plan-lineup-subttl::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 6px;
  height: 100%;
  background-color: #0191DB;
}
#plan .plan-lineup-item.day-plan .plan-lineup-subttl::before{
  background-color: #F4A015;
}
#plan .plan-lineup-item.night-plan .plan-lineup-subttl::before{
  background-color: #7C84C1;
}
.plan-lineup-txt{
  margin-bottom:2rem;
  line-height: 1.44;
}

.scrollable-text {
  margin-bottom:1.6rem;
  font-size: 1.3rem;
  text-align: center;
}
.scrollable-text > span {
  position: relative;
  display: inline-block;
  padding-left: 2.4rem;
}
.scrollable-text > span::before {
  content: "";
  position: absolute;
  left: -4px;
  width: 22px;
  height: 23px;
  background-image: url(../img/scroll-icon-basic.svg);
  background-repeat: no-repeat;
}
.day-plan .scrollable-text > span::before {
  background-image: url(../img/scroll-icon-day.svg);
}
.night-plan .scrollable-text > span::before {
  background-image: url(../img/scroll-icon-night.svg);
}

@media screen and (min-width: 961px) {
  .scrollable-text{
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .plan-area-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top:1px solid #EBEBEB;
  }
  .plan-lineup-subttl{
    font-size:1.8rem;
    padding-left: 1.8rem;
    margin-bottom:1.4rem;
  }
  .plan-area-content .js-tab-nav {
    margin: 0 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: auto;
    width: auto !important;
  }
  .js-tab-nav ul {
    white-space: nowrap;
  }
}

/* タブメニュー */
.js-tab-nav ul{
  display: flex;
  gap: 4px;
}
.js-tab-nav-item  {
  border-radius: .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 2rem 1rem;
  text-align: center;
  display: block;
  background-color: #E8E8E8;
  cursor: pointer;
  transition: all .1s;
}
/* タブパネル */
.tab-panel {
 width: 100%;
 margin-top:.5rem;
}
.js-tab-content {
  padding: 2rem;
  border-radius: .5rem;
  display: none;
}
.js-tab-content.is-show {
  display: block;
  animation-name: displayAnime;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#plan .plan-lineup .basic-plan .js-tab-nav-item.is-active {
  background-color: #E5F5FC;
  color: #0191DB;
}
#plan .plan-lineup .basic-plan .js-tab-content{
  background-color: #E5F5FC;
}
#plan .plan-lineup .day-plan .js-tab-nav-item.is-active {
  background-color: #FEF5E5;
  color: #F39800;
}
#plan .plan-lineup .day-plan .js-tab-content{
  background-color: #FEF5E5;
}
#plan .plan-lineup .night-plan .js-tab-nav-item.is-active {
  background-color: #F2F3FA;
  color: #7C85C1;
}
#plan .plan-lineup .night-plan .js-tab-content{
  background-color: #F2F3FA;
}
#plan .plan-lineup .tab-panel{
  margin-bottom:1.6rem;
}
#plan .plan-lineup .plan-area-content .paragraph-1,
#plan .plan-lineup .plan-area-content .paragraph-2  {
  font-size: 1.2rem;
}
@media screen and (max-width: 960px) {
  .js-tab-content {
    padding: 1rem;
  }
}

/* 料金表 */
#plan .price-table{
  width: 100%;
  background-color: #fff;
  border:1px solid #EBEBEB;
  font-size: 1.6rem;
}
#plan .price-table tr{
  border-bottom:1px solid #EBEBEB;
}
#plan .price-table th{
  padding: 1.6rem 2rem;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}
#plan .price-table thead th{
  font-weight: 700;
}
#plan .price-table thead th:first-child{
  border-right:1px solid #EBEBEB;
}
#plan .price-table td{
  padding: 1.6rem 2rem;
  line-height: 1.2;
  vertical-align: middle;
}
#plan .price-table tbody th.basic_price {
  background: #F7F7F7;
  text-align: left;
}
#plan .price-table tbody td.contract,
#plan .price-table tbody td.ampere {
  width:13%;
  border-left:1px solid #EBEBEB;
  text-align: center;
}
#plan .price-table tbody td.price {
  width: 40%;
  text-align: center;
  border-left:1px solid #EBEBEB;
  background-color: #FFFEE3;
}
#plan .basic-plan .price-table thead th {
  background: #0091DB;
  color:#fff;
}
#plan .day-plan .price-table thead th {
  background: #F39801;
  color:#fff;
}
#plan .night-plan .price-table thead th {
  background: #7C84C1;
  color:#fff;
}
#plan .price-table .sup{
  font-size: 60%;
  vertical-align: top;
}
@media screen and (max-width: 960px) {
  #plan .price-table{
    font-size: 1.2rem;
  }
  #plan .price-table thead th,
  #plan .price-table tbody th {
    width: auto;
    white-space: normal;
  }
  #plan .price-table th{
    padding:1.4rem .6rem;
  }
  #plan .price-table td{
    padding:1.4rem 1.6rem;
  }
  #plan .price-table tbody td.contract,
  #plan .price-table tbody td.ampere {
    width: auto;
  }
  #plan .price-table tbody td.price {
    width: auto;
  }
}
#plan .offer-btn{
  margin:4rem auto 0;
  max-width: 440px;
}
#plan .offer-btn a {
  padding: 1.6rem;
}
#plan .offer-btn span {
  font-size: 2rem;
  padding-left:3rem;
}
#plan .offer-btn span::before {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
}
@media screen and (max-width: 960px) {
  #plan .offer-btn{
    margin:4rem auto 0;
    width:100%;
  }
  #plan .offer-btn span {
    font-size: 1.6rem;
  }
}



.other-plan{
  margin-top:6rem;
}
.other-plan .ttl{
  font-size:2.4rem;
  font-weight: 700;
  margin-bottom:1.6rem;
  line-height: 1.22;
  padding-left:1.8rem;
  position: relative;
}
.other-plan .ttl::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 6px;
  height: 100%;
  background-color: var(--color-primary)
}
.other-plan .img{
  max-width: 960px;
  margin:2.4rem auto 0;
}
.other-plan .img .tx-caption{
  margin-top:1rem;
  text-align: right;
}
.other-plan .img .tx-caption a{
	color: #08A3AB;
  text-decoration: underline;
}
.other-plan .img .tx-caption a:focus,
.other-plan .img .tx-caption a:active,
.other-plan .img .tx-caption a:hover {
	color: #08A3AB;
  text-decoration: none;
}

.price-explanation{
  padding:5rem 0;
}
.price-explanation .ttl{
  font-size:1.8rem;
  font-weight: 700;
  margin-bottom:1rem;
  line-height: 1.22;
}
.price-explanation .txt{
  font-size: 1.4rem;
  line-height: 1.66;
}
.price-explanation .ttl:not(:first-child){
  margin-top:4rem;
}
.price-explanation .txt a{
	color: #08A3AB;
  text-decoration: underline;
}
.price-explanation .txt a:focus,
.price-explanation .txt a:active,
.price-explanation .txt a:hover {
	color: #08A3AB;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .other-plan .ttl{
    font-size:1.6rem;
    margin-bottom:1rem;
  }
  .price-explanation .ttl{
    font-size:1.6rem;
  }
}



/*Voice
--------------------------------------*/
#voice .section-heading{
  margin-bottom:8rem;
}
.voice-caption{
  margin-top:2rem;
  text-align: center;
  font-size: 1.2rem;
}
.voice-list .item {
  background-color: #fff;
  border:2px solid #E3E3E3;
  border-radius: 1rem;
  padding: 0 3rem 3rem;
  text-align: center;
}
.voice-list .item .img{
  width: 90px;
  height:90px;
  position: relative;
  top:-45px;
  left:calc(50% - 45px);
  margin-bottom:-25px;
}
.voice-list .item .ttl{
  color:var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom:1.6rem;
}
.voice-list .item .txt{
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  #voice .section-heading{
    margin-bottom:6rem;
  }
  .voice-list .item {
    padding: 0 2rem 2rem;
  }
  .voice-list .item:not(:first-child){
    margin-top:5rem;
  }
  .voice-list .item .img{
    width: 70px;
    height:70px;
    position: relative;
    top:-35px;
    left:calc(50% - 35px);
    margin-bottom:-15px;
  }
  .voice-list .item .ttl{
    font-size: 1.6rem;
    margin-bottom:1rem;
  }
}


/*Flox
--------------------------------------*/
#flow{
  background-color: #FAFAFA;
}
.flow-list .item{
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, .08) 0 3px 8px;
  padding:4rem 4rem;
  display: grid;
  grid-template-columns: 34.2% 62.0%;
  gap: 3.8%;
  position: relative;
}
.flow-list .item:nth-of-type(n+2){
  margin-top:6rem;
}
.flow-list .item:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/flow-arrow.svg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.flow-list .item .pic-row img{
  border-radius: 1rem;
  overflow: hidden;
}
.flow-list .item .txt-row .num{
  color: var(--color-primary);
  font-family: "Montserrat","Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left:24px;
  line-height: 1;
}
.flow-list .item .txt-row .num::before{
  content: '';
  width: 15px;
  height: 2px;
  top: 50%;
  left: 0;
  position: absolute;
  background-color: var(--color-primary);
}
.flow-list .item .txt-row .num span{
  font-size: 2.4rem;
}
.flow-list .item .txt-row .ttl{
  font-size: 2.4rem;
  font-weight: 700;
  margin:1rem 0 2rem;
  line-height: 1.44;
}
.flow-list .item .txt-row .txt .tx-underline {
  font-weight: 700;
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 10px no-repeat;
}
#flow .offer-btn{
  margin-top:3rem;
  width: 300px;
}
#flow .offer-btn a {
  padding: 1.3rem 1.6rem;
  box-shadow: 0px 2px 0px 0px rgba(17, 17, 17, 1);
}
#flow .offer-btn span {
  font-size: 1.6rem;
  padding-left:3rem;
}
#flow .offer-btn span::before {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
}
@media screen and (max-width: 960px) {
  .flow-list .item{
    display: block;
    padding:2rem 2rem 3rem;
  }
  .flow-list .item .txt-row{
    margin-top:2.4rem
  }
  .flow-list .item .txt-row .num{
    font-size: 1.2rem;
  }
  .flow-list .item .txt-row .num span{
    font-size: 1.8rem;
  }
  .flow-list .item .txt-row .ttl{
    font-size: 2rem;
    margin:.6rem 0 1rem;
  }
  #flow .offer-btn{
    width:100%;
  }
  #flow .offer-btn span {
    font-size: 1.4rem;
  }
}


/*Faq
--------------------------------------*/
#faq{
  background-color: #c8e7e9;
}
#faq .faq_contents{
  text-align: left;
  background-color: #fff;
  border-radius: 1rem;
  transition: .3s;
}
#faq .faq_contents:not(:first-child){
  margin-top: 2rem;
}
#faq .faq-head {
  position: relative;
  cursor: pointer;
  padding: 2.5rem 4rem;
}
#faq .faq-head .ttl{
  font-size:2.4rem;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
  padding-left:4rem;
}
#faq .faq-head .ttl:before {
  content: "Q";
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 0;
  top: -.5rem;
  font-size: 3.2rem;
  color: var(--color-primary);
}
#faq .toggle_icon {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  padding: 10px;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}
#faq .toggle_icon:before,
#faq .toggle_icon:after {
  display: block;
  content: '';
  background-color: #fff;
  position: absolute;
  width: 15px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#faq .toggle_icon:before {
  width: 2px;
  height: 15px;
}
#faq .faq-head.selected .toggle_icon:before {
  content: normal;
}
#faq .faq_contents dd.accordion-body {
  display: none;
}
#faq .faq-body {
  line-height: 1.66;
  border-top:1px solid #ddd;
  padding: 3rem 4rem;
}
#faq .faq-body .tx-caption {
  font-size: 1.6rem;
}
.faq-body-txt{
  position: relative;
  padding-left: 4rem;
}
.faq-body-txt::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  margin: auto;
  height: 40px;
  line-height: 40px;
  color: var(--color-secondary);
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#faq .faq-body .faq-body-ttl {
  font-size:1.8rem;
  margin-bottom: .5rem;
  line-height: 1.44;
  font-weight: 700;
}
#faq .faq-body p{
  margin-bottom: 2em;
}
#faq .faq-body p.less{
  margin-bottom: 0 !important;
}
#faq .faq-body .mb2{
  margin-bottom: 2em!important;
}
#faq .faq-body p:last-child {
  margin-bottom: 0 !important;
}
#faq .faq-body a {
  color: var(--color-primary);
  text-decoration: underline;
}
#faq .faq-body a:focus,
#faq .faq-body a:active,
#faq .faq-body a:hover {
  text-decoration: none;
}
#faq .faq-body .paragraph-1{
  margin-top:.4rem;
  margin-bottom: 0;
  font-size:  1.4rem;
}
#faq .faq-body dl{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#faq .faq-body dt {
  width: 4rem;
}
#faq .faq-body dd {
  width: calc( 100% - 4rem );
}
#faq .faq-body .faq-body-attension{
  color:#777;
  margin-bottom:2rem;
}
#faq .faq-body .faq-body-attension p{
  margin-bottom: 0 !important;
}
#faq .faq-body .disc-list li::before {
  background-color: #777;
}
#faq .faq-body .faq-img{
  margin:0 0 2rem;
}
#faq .faq-body .tx-caption{
  /* color:#666; */
  font-size:  1.4rem;
}

@media screen and ( max-width:960px) {
  #faq .faq-head {
    padding: 2rem 5rem 2rem 2rem;
  }
  #faq .faq-head .ttl{
    font-size:1.6rem;
    padding-left:2.6rem;
  }
  #faq .faq-head .ttl:before {
    top: -.2rem;
    font-size: 2rem;
  }
  .faq-body-txt::before {
    font-size: 2rem;
  }
  #faq .faq-body{
    padding: 2rem;
  }
  #faq .toggle_icon {
    width: 20px;
    height: 20px;
    padding: 10px;
    right: 2rem;
  }
  #faq .toggle_icon:before,
  #faq .toggle_icon:after {
    width: 10px;
    height: 2px;
  }
  #faq .toggle_icon:before {
    width: 2px;
    height: 10px;
  }
  .faq-body-txt{
    position: relative;
    padding-left: 2.8rem;
  }
  #faq .faq_contents dd {
    display: none;
    padding-bottom:2rem;
  }
  #faq .faq-body .faq-body-ttl {
    font-size:1.4rem;
    margin-bottom: 1rem;
  }
  #faq .faq-body .tx-caption {
    font-size: 1.2rem;
  }
  #faq .faq-body .paragraph-1{
    font-size:  1.2rem;
  }
}


/*Campaign
--------------------------------------*/
#campaign{
  padding:8rem 0;
}
#campaign .inner{
  max-width:108rem;
  margin: 0 auto;
}
#campaign .campaign-catch{
  font-size:1.8rem;
  font-weight: 700;
  margin-bottom:4rem;
  line-height: 1.66;
  text-align: center;
}
#campaign .campaign-catch span{
  font-size:2.8rem;
  font-family: "Montserrat", sans-serif;
}
/* .campaign-row .pic-row{
  width: 50%;
} */

.campaign-row .pic-row img{
  border-radius: 2.4rem;
  overflow: hidden;
  border:3px solid var(--color-primary);
}
/* .campaign-row .txt-row{
  width: 45%;
} */
.campaign-row .txt-row{
  margin-top:6rem;
}
.campaign-row .txt-row .campaing-ttl{
  border-radius: .8rem;
  background-color: #F5F5F5;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  padding: 1.4rem 2rem 1.4rem 2.4rem;
  position: relative;
}
.campaign-row .txt-row .campaing-ttl:not(:first-child){
  margin-top: 5rem;
}
.campaign-row .txt-row .campaing-ttl:before {
  content: "";
  display: block;
  position: absolute;
  inset: 1.2rem auto 1.2rem 1rem;
  width: .4rem;
  background: var(--color-primary);
}
.campaign-row .txt-row .campaing-subttl{
  font-size: 1.8rem;
  font-weight: 700;
  padding:2rem 0 1.6rem;
  border-bottom: 1px solid #ddd;
  margin-bottom:1rem;
}
.campaign-row .txt-row .campaing-smallttl{
  display: inline;
  font-weight: 700;
  margin-bottom:1.6rem;
  color: var(--color-primary);
  background: linear-gradient(#FFF462, #FFF462) 0 100% / 100% 4px no-repeat;
}
.campaign-row .txt-row a {
  color: var(--color-primary);
  text-decoration: underline;
}
.campaign-row .txt-row a:focus,
.campaign-row .txt-row a:active,
.campaign-row .txt-row a:hover {
  text-decoration: none;
}

@media screen and ( max-width:960px) {
  #campaign{
    padding:5rem 0 8rem;
  }
  #campaign .campaign-catch{
    font-size:1.6rem;
    margin-bottom:2rem;
  }
  .campaign-row .txt-row{
    margin-top:5rem;
  }
  .campaign-row .txt-row .campaing-ttl{
    font-size: 1.8rem;
  }
  .campaign-row .txt-row .campaing-subttl{
    font-size: 1.6rem;
  }
}


#footer{
  padding:10rem 2rem;
  text-align: center;
}
#footer .footer-logo{
  max-width: 340px;
  margin:0 auto 3rem;
}
#footer .copyright{
  font-size: 1.2rem;
}
@media screen and ( max-width:960px) {
  #footer{
    padding:2rem 2rem ;
    text-align: center;
  }
  #footer .footer-logo{
    max-width: 240px;
    margin:0 auto 2rem;
  }
}


@media screen and ( min-width:961px) {
  #fix-cta{
    position: fixed;
    bottom: -250px;
    right:20px;
    z-index: 2;
    transition: 0.3s ease all;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, .16) 0px 0px 16px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 240px;
  }
  #fix-cta.show {
    bottom: 20px;
  }
  .fix-content-list li{
    margin-bottom:0;
  }
  .fix-content-list li:nth-of-type(n+2) {
    margin-top: 10px;
  }
  .fix-content-list .btn-tel{
    display: none;
  }
  .fix-content-list li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 20px;
    position: relative;
  }
  .fix-content-list .btn-chat a {
    background-color: #08A3AB;
    border:2px solid #222;
    color: #fff !important;
  }
  .fix-content-list .btn-request a {
    background-color: #FA453D;
    border:2px solid #222;
    color: #fff !important;
  }
  .fix-content-list .btn-tel a {
    background-color: #fff;
    border:2px solid #08A3AB;
    color: #08A3AB !important;
  }
  .fix-content-list li .btn-txt{
    padding-left:24px;
    position: relative;
  }
  .fix-content-list li .btn-txt::before{
    background-size: cover;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: calc(50% - 10px);
    left: 0px;
  }
  .fix-content-list li.btn-chat .btn-txt::before{
    background-image: url(../img/ico-chat-w.svg);
  }
  .fix-content-list li.btn-request .btn-txt::before{
    background-image: url(../img/ico-request-w.svg);
  }
  .fix-content-list li.btn-tel .btn-txt::before{
    background-image: url(../img/ico-tel-green.svg);
  }
  .fix-content-list .btn-chat a:hover{
    background-color: #56CAD0;
    border:2px solid #222;
  }
  .fix-content-list .btn-request a:hover{
    background-color: #FF9C98;
    border:2px solid #222;
  }
  .fix-content-list .btn-tel a:hover{
    background-color: #edf6f6;
  }
}

@media screen and ( max-width:960px) {
  #footer{
    margin-bottom:100px;
  }
  #fix-cta{
    position: fixed;
    bottom: -250px;
    left:0px;
    z-index: 2;
    transition: 0.3s ease all;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, .16) 0px 0px 16px;
    padding:10px 5px 15px;
    background-color: #FFF462;
    width: 100%;
  }
  #fix-cta.show {
    bottom: 0px;
  }
  .fix-content-list{
    display:flex ;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .fix-content-list li{
    width: 32.3%;
    margin-bottom:0;
  }
  .fix-content-list li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 8px;
    padding: 12px 10px;
    position: relative;
    transition: transform .2s;
  }
  .fix-content-list .btn-chat a {
    background-color: #08A3AB;
    border:2px solid #222;
    color: #fff !important;
  }
  .fix-content-list .btn-request a {
    background-color: #FA453D;
    border:2px solid #222;
    color: #fff !important;
  }
  .fix-content-list .btn-tel a {
    background-color: #fff;
    border:2px solid #222;
    color: #08A3AB !important;
  }
  .fix-content-list li .btn-txt{
    padding-left:18px;
    position: relative;
  }
  .fix-content-list li .btn-txt::before{
    background-size: cover;
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    left: 0px;
  }
  .fix-content-list li.btn-chat .btn-txt::before{
    background-image: url(../img/ico-chat-w.svg);
  }
  .fix-content-list li.btn-request .btn-txt::before{
    background-image: url(../img/ico-request-w.svg);
  }
  .fix-content-list li.btn-tel .btn-txt::before{
    background-image: url(../img/ico-tel-green.svg);
  }
  .fix-content-list .btn-chat a:hover,
  .fix-content-list .btn-chat a:active{
    background-color: #56CAD0;
    border:2px solid #222;
  }
  .fix-content-list .btn-request a:hover,
  .fix-content-list .btn-request a:active{
    background-color: #FF9C98;
    border:2px solid #222;
  }
  .fix-content-list .btn-tel a:hover,
  .fix-content-list .btn-tel a:active{
    background-color: #edf6f6;
  }
  .fix-content-list li a:active{
    transform: scale(.95);
  }
}
