@charset "utf-8";
/* ===============================================
# 共通
=============================================== */
/* ボタン
----------------------------------------------- */
.cmn_btn__link {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 5px #c34e00;
  border-radius: 5px;
  text-align: center;
  color: #fff;
  padding: 12px 70px 12px;
}
.cmn_btn__link.orange {
  padding-bottom: 0;
  color:#fff;
  background-color: #ff6600;
}
.cmn_btn__link.blue {
  background-color: #0daaf3;
  background: url(../img/ico_link_blue.svg) no-repeat center right 30px, #0daaf3;
  background-size: 36px;
  box-shadow: 0 5px #0b79ad;
}
.cmn_btn__link--subtxt {
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: dotted 2px #fff;
  padding-bottom: 1px;
}
.cmn_btn__link--maintxt {
  display: inline-block;
  padding-top: 3px;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: 500;
}
.cmn_btn__link--txt {
  display: block;
  padding-top: 2px;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.cmn_btn__link--tel {
  display: flex;
  gap: 0 8px;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-family: var(--font-in);
}
.cmn_btn__link--tel img{
  width: 16px;
}
@media screen and (max-width :834px){
  .cmn_btn__link {
    max-width: 345px;
    background-color: #ffa200;
    background: url(../img/ico_link.svg) no-repeat center right 10px, #ffa200;
    background-size: 18px;
    box-shadow: 0 3px #c34e00;
    border-radius: 3px;
    padding: 7px 30px 7px;
  }
  .cmn_btn__link.orange {
    background-color: #ff6600;
    background: url(../img/ico_link.svg) no-repeat center right 10px, #ff6600;
    background-size: 18px;
  }
  .cmn_btn__link.blue {
    background-color: #0daaf3;
    background: url(../img/ico_link_blue.svg) no-repeat center right 10px, #0daaf3;
    background-size: 18px;
  }
  .cmn_btn__link--subtxt {
    font-size: 12.5px;
    font-size: 1.25rem;
  }
  .cmn_btn__link--maintxt {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 1px;
  }
  .cmn_btn__link--txt {
    font-size: 1.3rem;
    padding-top: 1px;
  }  
  .cmn_btn__link--tel {
    gap: 0 4px;
    font-size: 2.4rem;
    letter-spacing:0;
  }
  .cmn_btn__link--tel img{
    width: 13px;
  }  
}

.cmn_btn__attention {
  width: 580px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff372;
  background-size: 36px;
  border-radius: 100px;
  color: #00a7d6;
  z-index: 1;
  text-align: center;
  box-shadow: 0 8px #00a7d6;
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
}
.cmn_btn__attention::after {
  content: "";
  display: block;
  width: 73px;
  height: 89px;
  background: url(../img/ico_hand.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 31px;
  bottom: -21px;
}
.cmn_btn__attention--txt {
  padding: 0 42px 0 94px;
  position: relative;
}
.cmn_btn__attention--txt::before {
  content: "今すぐ";
  color: #fff;
  border-radius: 100px;
  background-color: #00a7d6;
  font-size: 20px;
  padding:  0 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.cmn_btn__attention--txt::after {
  content: "";
  display: block;
  width: 20px;
  height: 46px;
  background: url(../img/ico_dot.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .cmn_btn__attention  {
    width: 100%;
    max-width: 345px;
    height: 62px;
    font-size: 1.8rem;
    box-shadow: 0 3px #00a7d6;
  }
  .cmn_btn__attention::after {
    width: 46px;
    height: 56px;
    right: 16px;
    bottom: -14px;
  }
  .cmn_btn__attention--txt {
    padding: 0 43px 0 55px;
  }
  .cmn_btn__attention--txt::before {
    font-size: 12px;
    padding: 2px 7px;
  }
  .cmn_btn__attention--txt::after {
    width: 13px;
    height: 30px;
    right: 27px;
  }
}

/* リスト
----------------------------------------------- */
.cmn_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
}
.cmn_list li{
  flex: 1;
}
.cmn_list li .img{
  position: relative;
}
.cmn_list li .img::after{
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(13, 170, 243,0.6);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
.cmn_list li .txt .ttl{
  font-size: 3.4rem;
  text-align: center;
  font-weight: 700;
  border-bottom: 1px solid #54c3f1;
  padding: 13px 0;
}
.cmn_list li .txt .sub{
  padding-top: 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
@media screen and (max-width :834px) {
  .cmn_list{
    flex-direction: column;
    gap:32px 30px;
    margin: 0 auto;
    max-width: 252px;
  }
  .cmn_list li .img::after{
    width: 40px;
    height: 40px;
  }
  .cmn_list li .txt .ttl{
    font-size: 2.5rem;
    padding: 10px 0;
  }
  .cmn_list li .txt .sub{
    padding-top: 13px;
    font-size: 1.5rem;
    line-height: 1.667;
  }
}
/* ※テキスト
----------------------------------------------- */
.cmn_txt__kome {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
}
.cmn_txt__kome::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width :834px){
  .cmn_txt__kome {
    font-size: 12px;
    font-size: 1.2rem;
    padding-left: 0;
  }
  .cmn_txt__kome::before {
    position: static;
  }
}
/* ===============================================
# ヘッダー
=============================================== */
header .logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 1;
}
@media screen and (max-width :1024px){
  header .logo {
    width: 120px;
  }
}
@media screen and (max-width :834px){
  header .logo {
    width: 75px;
    top: 15px;
    left: 20px;
  }
}
/* ===============================================
# プロモ
=============================================== */
.sec_promo .area_mainimg {
  width: 100%;
  overflow: hidden;
}
.sec_promo .area_mainimg img {
  width: 100%;
}

@media screen and (max-width :834px){


}
/* ===============================================
# キャンペーン
=============================================== */
.sec_campaign {
  padding-top:70px;
  padding-bottom: 104px;
  background: url(../img/bg_campaign_deco.png) no-repeat top center,url(../img/bg_campaign.png) no-repeat center center;
  background-size: 100% auto,cover;
}
.sec_campaign .inner{
  max-width: 1442px;
  text-align: center;
}
.sec_campaign .sec_ttl {
  text-align: center;
  margin-bottom: 89px;
}
.sec_campaign .txt+.sec_ttl{
  margin-top: 102px;
}
.sec_campaign h3.sec_ttl{
  margin-bottom: 0;
}
.sec_campaign h3.sec_ttl+.txt{
  margin-top: -35px;
}
@media screen and (max-width :834px){
  .sec_campaign {
    padding-top:75px;
    padding-bottom: 50px;
    background: url(../img/bg_campaign_deco_sp.png) no-repeat top center,url(../img/bg_campaign_sp.png) no-repeat center center;
    background-size: 100% auto,cover;
  }
  .sec_campaign .inner{
    width: 100%;
  }
  .sec_campaign .sec_ttl {
    margin-bottom:40px;
  }
  .sec_campaign .txt+.sec_ttl{
    margin-top: 40px;
  }
  .sec_campaign h3.sec_ttl+.txt{
    margin-top: 50px;
  }
}
/* ===============================================
# 体験
=============================================== */
.sec_experience {
  background-color: #e4f7ff;
  padding-top: 66px;
  padding-bottom: 100px;
}
.sec_experience .inner{
  max-width: 1229px;
}
.sec_experience .area_campaign__ttl {
  position: relative;
  text-align: center;
  z-index: 1;
}
.sec_experience .area_campaign__bnr {
  position: relative;
  z-index: 0;
  margin-top: -129px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width :834px){
  .sec_experience {
    padding-top:50px;
    padding-bottom: 50px;
  }
  .sec_experience .inner{
    width: 100%;
  }
  .sec_experience .area_campaign__bnr {
    margin-top: -65px;
    margin-bottom:35px;
  }
  .sec_experience .area_campaign__btn--txt {
    margin-top: 10px;
    text-align: left;
  }
}

/* ===============================================
# sec_area
=============================================== */
.sec_area .sec_ttl_top {
  text-align: center;
  font-size: 6.0rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  margin-bottom: 65px;
}
.sec_area .sec_ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 25px;
}
.sec_area .set_ttl_area {
  text-align: center;
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 25px;
}
.sec_area .sec_lead {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.3;
}
.sec_area .list_image {
  display:flex;
}
.sec_area .list_image>li {
  width: 25%;
  position: relative;
}
.sec_area .list_image>li img{
  width: 100%;
}
/*gym*/
.area_gym{
  padding-top: 90px;
  background: url(../img/bg_sec_area.jpg)no-repeat center top;
  background-size: cover
}
.area_gym > .inner{
  max-width: 1300px;
}
.area_gym_ttl{
  max-width: 1300px;
  padding-bottom: 49px;
}
.area_gym_ttl >*{
  position: relative;
  z-index: 1;
}
.area_gym_ttl::before{
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 69px);
  background-color: rgba(255, 255, 255,0.80);
  z-index: 0;
}
/* gym（追加） */
.area_gym_more {
  background-color: #e0f5fd;
  padding-top: 80px;
}
.area_gym_more .inner {
  max-width: 1200px;
}
.area_gym_more .box_gym {
  display: flex;
  align-items: flex-end;
}
.area_gym_more .box_gym + .box_gym {
  margin-top: 30px;
}
.area_gym_more .box_gym .txt_box {
  flex: 0 0 760px;
}
.area_gym_more .box_gym .txt_box .item_ttl {
  display: flex;
  align-items: center;
}
.area_gym_more .box_gym .txt_box .item_ttl .ttl {
  font-size: 3.4rem;
  padding-right: 31px;
  font-weight: 700;
}
.area_gym_more .box_gym .txt_box .item_ttl .txt {
  font-size: 2.0rem;
  border-left: 1px solid #54c3f1;
  padding-left: 31px;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.area_gym_more .box_gym .txt_box .list_features {
  padding-top: 7.95%;
  gap: 24px;
  display: flex;
}
.area_gym_more .box_gym .txt_box .list_features .feature {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 223px;
  height: 223px;
  background-color: #fff372;
  border-radius: 50%;
  color: #00a7d6;
  font-size: 2.2rem;
  line-height: 1.36;
  letter-spacing: -0.04em;
  font-weight: 700;
}
.area_gym_more .box_gym .img_box {
  padding-right: 3.3%;
  flex: 0 1 auto;
}
.area_gym_more .box_gym .img_box .image {
  position: relative;
}
.area_gym_more .box_gym .img_box .image::after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(13, 170, 243,0.6);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
/*studio*/
.area_studio{
  padding-top: 160px;
  padding-bottom: 100px;
  background-color: #e4f7ff;
  background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
}
.area_studio .inner{
  max-width: 1200px;
}
.area_studio .sec_lead{
  margin-bottom: 70px;
}
/*pool*/
.area_pool{
  padding-top: 100px;
  background-color: rgb(66, 189, 216);
}
.area_pool .set_ttl_area{
  color: #fff;
  margin-bottom: 45px;
}
.area_pool .sec_lead{
  max-width: 500px;
  margin: 0 auto 70px;
}

.area_pool .img img{
  width: 100%;
}
/*bath*/
.area_bath{
  padding-top: 85px;
  background-color: #fffeeb;
}
.area_bath .set_ttl_area{
  font-size: 4.8rem;
  font-weight: 600;
  color: #ed6d34;
  margin-bottom: 25px;
  font-family: var(--font-shi);
  line-height: 1.333;
}
.area_bath .sec_lead{
  margin-bottom: 50px;
}

.area_bath .img img{
  width: 100%;
}
@media (max-width :1280px){
  .sec_area .sec_ttl_top span{
    display: block;
  }
  .area_gym{
    background-image: url(../img/bg_sec_area_sp.jpg);
  }  
  /* gym（追加） */
  .area_gym_more .box_gym .txt_box {
    flex: 0 1 65%;
  }
  .area_gym_more .box_gym .txt_box .item_ttl {
    display: block;
  }
  .area_gym_more .box_gym .txt_box .item_ttl .ttl {
    font-size: 2.9rem;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .area_gym_more .box_gym .txt_box .item_ttl .txt {
    font-size: 2.0rem;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #00a7d6;
    padding-top: 10px;
    display: inline-block;
  }
  .area_gym_more .box_gym .txt_box .list_features {
    padding-top: 30px;
    gap: 24px;
  }
  .area_gym_more .box_gym .txt_box .list_features .feature {
  width: 180px;
  height: 180px;
  font-size: 1.8rem;
  }
  .area_gym_more .box_gym .img_box {
    padding-right: 3.3%;
    flex: 0 1 35%;
  }
}

@media screen and (max-width :834px) {
  .sec_area .sec_ttl_top {
    font-size: 3.5rem;
    line-height: 1.143;
    margin-bottom: 37px;
  }
  .sec_area .sec_ttl {
    margin-bottom: 27px;
  }
  .sec_area .sec_ttl img{
    height: 57.5px;
    width: auto;
  }
  .sec_area .set_ttl_area {
    font-size:2.7rem;
    margin-bottom: 13px;
  }
  .sec_area .sec_lead {
    font-size: 1.4rem;
    line-height: 1.643;
  }
  .sec_area .list_image {
    flex-wrap: wrap;
  }
  .sec_area .list_image>li {
    width: 50%;
  }
  .sec_area .list_image>li:nth-child(n+3){
    width: calc(100% / 3);
  }
  /*gym*/
  .area_gym{
    padding-top: 52px;
  }
  .area_gym_ttl{
    padding-bottom: 18px;
  }
  .area_gym_ttl::before{
    height: calc(100% - 25px);
  }
  /* gym（追加） */
  .area_gym_more {
    padding-top: 35px;
  }
  .area_gym_more .box_gym {
    display: block;
  }
  .area_gym_more .box_gym + .box_gym {
    margin-top: 40px;
  }
  .area_gym_more .box_gym .txt_box {
    width: 100%;
  }
  .area_gym_more .box_gym .txt_box .item_ttl {
    display: block;
    max-width: 252px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .area_gym_more .box_gym .txt_box .item_ttl .ttl {
    font-size: 2.5rem;
    padding-right: 0;
    padding-bottom: 15px;
  }
  .area_gym_more .box_gym .txt_box .item_ttl .txt {
    font-size: 1.5rem;
    border-top: 1px solid #54c3f1;
    border-left: none;
    text-align: left;
    padding-left: 0;
  }
  .area_gym_more .box_gym .txt_box .list_features {
    padding-top: 25px;
    gap: 11px;
    justify-content: center;
  }
  .area_gym_more .box_gym .txt_box .list_features .feature {
    width: 107px;
    height: 107px;
    font-size: 1.1rem;
    line-height: 1.36;
  }
  .area_gym_more .box_gym .img_box {
    margin-right: 0;
    margin-top: 35px;
    width: 100%;
    max-width: 252px;
    margin-left: auto;
    margin-right: auto;
  }
  .area_gym_more .box_gym .img_box .image {
    position: relative;
  }
  .area_gym_more .box_gym .img_box .image::after {
    width: 40px;
    height: 40px;
  }
  /*studio*/
  .area_studio{
    padding-top: 45px;
    padding-bottom: 45px;
    background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  }
  .area_studio .sec_lead{
    margin-bottom: 30px;
  }

  /*pool*/
  .area_pool{
    padding-top: 48px;
  }
  .area_pool .set_ttl_area{
    margin-bottom: 35px;
  }
  .area_pool .sec_ttl{
    margin-bottom: 10px;
  }
  .area_pool .sec_ttl img{
    height: 53px;
  }
  .area_pool .sec_lead{
    max-width: 303px;
    margin: 0 auto 35px;
  }
  /*bath*/
  .area_bath{
    padding-top: 40px;
  }
  .area_bath .set_ttl_area{
    font-size: 2.7rem;
    margin-bottom: 8px;
    line-height: 1.481;
    letter-spacing: -0.04em;
  }
  .area_bath .sec_lead{
    margin-bottom: 30px;
    
  }
}
@media screen and (max-width :374px) {
    .area_gym_more .box_gym .txt_box .list_features .feature {
      width: 90px;
      height: 90px;
      font-size: 1.0rem;
      line-height: 1.36;
  }
}
/* ===============================================
# sec_point
=============================================== */
.sec_point .inner{
  max-width: 1200px;
}
.sec_point > div{
  padding: 100px 0;
}
.sec_point .sec_ttl{
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 55px;
  text-align: center;
}
.sec_point .sec_ttl .blue{
  color: #00a7d6;
}
.sec_point .cmn_list li .txt .ttl{
  padding: 25px 0 25px;
  font-size: 2.3rem;
  line-height: 1.417;
}
.sec_point .cmn_list li .txt .ttl span{
  display: inline-block;
}
.sec_point .cmn_list li .txt .sub{
  font-size: 1.6rem;
  line-height: 1.438;
}
/* area_faq ------------*/
.sec_point .area_faq .sec_ttl > span{
  display:inline-block;
  padding-left:48px ;
  background: url(../img/ico_beginner.png)no-repeat left center;
}
.sec_point .area_faq .cmn_list li{
  padding: 20px 3.75% 30px;
  background-color: #e4f7ff;
  background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
}
.sec_point .area_faq .cmn_list li .img{
  text-align: center;
}
.sec_point .area_faq .cmn_list li .img img{
  width: auto;
  height: 169px;
}
.sec_point .area_faq .cmn_list li .img::after{
  display: none;
}
/* area_relief ------------*/
.sec_point .area_relief{
  padding-top: 90px;
  background-color: #e4f7ff;
  background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
}
/* area_schedule ------------*/
.sec_point .area_schedule{
  background-color: #ffffe4;  
}
@media (max-width :1024px) {
  .sec_point .sec_ttl{
    font-size: 3.8rem;
  }
  .sec_point .cmn_list li .txt .ttl{
    font-size: 1.8rem;
  }  
}
@media screen and (max-width :834px) {
  .sec_point > div{
    padding: 40px 0;
  }
  .sec_point .sec_ttl{
    font-size: 2.7rem;
    line-height: 1.481;
    font-feature-settings: "palt";
    margin-bottom: 30px;
  } 
  .sec_point .cmn_list li .txt .ttl{
    padding: 20px 0 20px;
    font-size: 2rem;
    line-height: 1.215;
  }
  .sec_point .cmn_list li .txt .sub{
    padding-top: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  /* area_faq ------------*/
  .sec_point .area_faq{
    padding-bottom: 50px;
  }
  .sec_point .area_faq .sec_ttl > span{
    padding-left:26px ;
    background-size: 20px auto;
  }
  .sec_point .area_faq .cmn_list{
    gap: 15px 0;
    max-width: 345px;
  }
  .sec_point .area_faq .cmn_list li{
    padding: 15px 13.5% 25px;
    background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);    
  }
  .sec_point .area_faq .cmn_list li .img img{
    height: 108px;
  }
  .sec_point .area_faq .cmn_list li .txt .ttl{
    padding: 15px 0 20px;
  }

  /* area_relief ------------*/
  .sec_point .area_relief{
    padding-top: 40px;
    background-image: -moz-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgba(0,165,168,0.2) 0%, rgba(244,244,244,0) 100%);
  }
  /* area_schedule ------------*/
  .sec_point .area_schedule{
    background-color: #ffffe4;  
  }  
}
/* ===============================================
# sec_voice
=============================================== */
.sec_voice {
  padding-top: 92px;
  padding-bottom: 50px;
}
.sec_voice .inner {
  max-width: 1200px;
}
.sec_voice .sec_ttl {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
.sec_voice .sec_ttl .blue {
  color: #00a7d6;
}
.sec_voice .sec_lead {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 26px;
}
.sec_voice .area_voice {
  margin-top: 48px;
}
.sec_voice .area_voice + .area_voice {
  margin-top: 50px;
}
.sec_voice .area_voice .ttl_area {
  text-align: center;
}
.sec_voice .area_voice .ttl_area span {
  padding: 0 48px 3px;
  font-size: 3.0rem;
  font-weight: bold;
  position: relative
}
.sec_voice .area_voice .ttl_area span::before,
.sec_voice .area_voice .ttl_area span::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #00a7d6;
  position: absolute;
  top: 50%;
}
.sec_voice .area_voice .ttl_area span::before {
  left: 0;
  transform: translateY(-50%) rotate(76deg);
}
.sec_voice .area_voice .ttl_area span::after {
  right: 0;
  transform: translateY(-50%) rotate(-76deg);
}
.sec_voice .area_voice .box_voices {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.sec_voice .area_voice .box_voices .voice {
  display: flex;
  align-items: flex-start;
  width: 47%;
}
.sec_voice .area_voice .box_voices .image_box {
  padding-right: 17px;
  width: 24.8%;
}
.sec_voice .area_voice .box_voices .image_box .txt {
  text-align: center;
  color: #00a7d6;
  font-weight: 700;
  font-size: 18px;
}
.sec_voice .area_voice .box_voices .txt_box {
  position: relative;
  border-radius: 14px;
  padding: 22px 23px 24px;
  background-color: #e4f7ff;
  border-radius: 14px;
  width: 75.2%;
}
.sec_voice .area_voice .box_voices .txt_box::before {
  content: "";
  display: block;
  width: 12px;
  height: 10px;
  background-color: #e4f7ff;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  position: absolute;
  top: 45px;
  right: 100%;
}
.sec_voice .area_voice .box_voices .txt_box .txt {
  font-size: 1.8rem;
  line-height: 1.78; 
}
@media screen and (max-width :1024px) {
  .sec_voice .sec_ttl {
    font-size: 4.6rem;
  }
  .sec_voice .area_voice .box_voices {
    display: block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .sec_voice .area_voice .box_voices .voice {
    width: 100%;
  }
  .sec_voice .area_voice .box_voices .voice + .voice {
    margin-top: 20px;
  }
}
@media screen and (max-width :834px) {
  .sec_voice {
    padding-top: 92px;
    padding-bottom: 50px;
  }
  .sec_voice .sec_ttl {
    font-size: 2.7rem;
    line-height: 1.48;
    white-space: nowrap;
  }
  .sec_voice .sec_lead {
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: left;
  }
  .sec_voice .area_voice {
    margin-top: 35px;
  }
  .sec_voice .area_voice + .area_voice {
    margin-top: 35px;
  }
  .sec_voice .area_voice .ttl_area span {
    padding: 0 25px 3px;
    font-size: 2.1rem;
  }
  .sec_voice .area_voice .ttl_area span::before,
  .sec_voice .area_voice .ttl_area span::after {
    width: 28px;
    height: 2px;
  }
  .sec_voice .area_voice .box_voices {
    display: block;
    margin-top: 25px;
    max-width: 450px;
  }
  .sec_voice .area_voice .box_voices .voice {
    width: 100%;
  }
  .sec_voice .area_voice .box_voices .voice + .voice {
    margin-top: 20px;
  }
  .sec_voice .area_voice .box_voices .image_box {
    padding-right: 14px;
    width: 30.4%;
  }
  .sec_voice .area_voice .box_voices .image_box .txt {
    font-size: 15px;
  }
  .sec_voice .area_voice .box_voices .txt_box {
    padding: 15px 15px 12px;
    width: 69.6%;
  }
  .sec_voice .area_voice .box_voices .txt_box::before {
    width: 11px;
    height: 10px;
    top: 28px;
  }
  .sec_voice .area_voice .box_voices .txt_box .txt {
    font-size: 1.5rem;
    line-height: 1.6; 
  }
}
@media screen and (max-width :374px) {
  .sec_voice .sec_ttl {
    white-space: normal;
  }
  .sec_voice .area_voice .ttl_area span {
    font-size: 1.7rem;
  }
}
/* ===============================================
# sec_flow
=============================================== */
.sec_flow{
  padding: 100px 0;
  background-size: auto auto;
  background-color: rgba(215, 240, 252, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 15px, rgba(228, 247, 255, 1) 15px, rgba(228, 247, 255, 1) 30px );
}
.sec_flow .sec_ttl{
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 55px;
  text-align: center;
}
.sec_flow .sec_ttl img{
  width: 45px;
  margin-right: 12px;
  vertical-align: middle;
}
.sec_flow .sec_ttl .blue{
  color: #00a7d6;
}

.sec_flow .list_flow {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding-left: 30px;
}
.sec_flow .list_flow::before{
  content: "";
  display: block;
  background-size: 2px 8px;
  background-image: -moz-linear-gradient(to bottom, #596164, #596164 4px, transparent 4px, transparent 8px);
  background-image: -webkit-linear-gradient(to bottom, #596164, #596164 4px, transparent 4px, transparent 8px);
  background-image: linear-gradient(to bottom, #596164, #596164 4px, transparent 4px, transparent 8px);
  background-repeat: repeat-y;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
}

.sec_flow .list_flow li{
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px 30px 20px 0;
  display: flex;
  align-items: center;
  gap: 0 53px;
  box-shadow: 0px 10px 20px 0px rgba(187, 187, 187, 0.12);
}
.sec_flow .list_flow li + li{
  margin-top: 30px;
}

.sec_flow .list_flow li .box_img{
  width: 130px;
}
.sec_flow .list_flow li .box_img img{
  width: 160px;
  max-width: inherit;
  transform: translateX(-26px);
}
.sec_flow .list_flow li .box_txt{
  flex: 1;
}
.sec_flow .list_flow li .box_txt .ttl_flow_step{
  color: #00a7d6;
  font-family: var(--font-in);
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}
.sec_flow .list_flow li .box_txt .txt_flow{
  margin-top: 9px;
  font-size: 2.4rem;
  font-weight: 500;
}
.sec_flow .list_flow li .box_txt .txt_note{
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width :834px) {
  .sec_flow{
    padding: 40px 0 50px;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 7px, rgba(228, 247, 255, 1) 7px, rgba(228, 247, 255, 1) 14px );
  }
  .sec_flow .sec_ttl{
    font-size:2.7rem;
    line-height: 1.481;
    margin-bottom: 30px;
  }
  .sec_flow .sec_ttl img{
    width: 25px;
    margin-right: 7px;
    margin-top:-0.2em;
  }
  .sec_flow .list_flow {
    max-width: 690px;
    padding-left: 15px;
  }
  .sec_flow .list_flow li{
    border-radius: 6px;
    gap: 0 35px;
    box-shadow: 0px 5px 10px 0px rgba(187, 187, 187, 0.12);
  }
  .sec_flow .list_flow li .box_img{
    width: 70px;
  }
  .sec_flow .list_flow li .box_img img{
    width: 100px;
    transform: translateX(-15px);
  }
  .sec_flow .list_flow li .box_txt .txt_flow{
    margin-top:14px;
    font-size: 1.6rem;
    line-height: 1.313;
  }  
  .sec_flow .list_flow li .box_txt .txt_note{
    font-size: 1.3rem;
  }  
}
/* ===============================================
# 申し込みはこちら
=============================================== */
.sec_contact {
  position: relative;
  padding: 50px 0;
  background: url(../img/bg_campaign.png) no-repeat center center;
  background-size: cover;
}
.sec_contact::after{
  content: '';
  width: 100%;
  height: 130%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_campaign_deco.png) no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.sec_contact .inner{
  padding: 50px 20px 40px;
  background-color: #fff;
}
.sec_contact .area_txt {
  text-align: center;
  margin-top: 27px;
}
.sec_contact .area_txt +*{
  margin-top: 45px;
}
.sec_contact .area_txt__txt {
  display: inline-block;
}
@media screen and (max-width :834px){
  .sec_contact {
    padding: 35px 0;
    background-image: url(../img/bg_campaign_sp.png);
  }
  .sec_contact::after{
    background-image: url(../img/bg_campaign_deco_sp.png);
    z-index: 0;
  }
  .sec_contact .inner{
    z-index: 1;
    padding: 20px 15px 20px;
  }
  .sec_contact .area_txt {
    text-align: left;
    margin-top: 15px;
  }
  .sec_contact .area_txt +*{
    margin-top: 20px;
  }
}
/* ===============================================
# キャンペーン注意事項
=============================================== */
.sec_notice {
  background-color: #505050;
  padding-top: 27px;
  padding-bottom: 50px;
}
.sec_notice .ttl_sec {
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 10px;
}
.sec_notice .list_notion>li {
  position: relative;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
.sec_notice .list_notion>li:before {
  content: "※";
}
@media screen and (max-width :834px){
  .sec_notice {
    padding-top: 17px;
    padding-bottom: 23px;
  }
  .sec_notice .ttl_sec {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .sec_notice .list_notion>li {
    font-size: 12.5px;
    font-size: 1.25rem;

  }

}
/* ===============================================
# btn_counseling
=============================================== */
.btn_counseling{
  position: fixed;
  right:20px;
  top: 20px;
  z-index: 10;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn_counseling a{
  width: 320px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  justify-content: center;
  background-color: #ff6600;
  border-radius: 100px;
  color: #fff;
  z-index: 1;
  text-align: center;
}
.btn_counseling a p{
  text-align: center;
  line-height: 1;
}
.btn_counseling a .txt{
  font-size: 1.6rem;
  display: block;
  white-space: nowrap;
}
.btn_counseling a .tel{
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

@media screen and (max-width: 834px){
  .btn_counseling{
    right:50%;
    top: auto;
    bottom: 5px;
    transform: translateX(50%);
  }
  .btn_counseling a{
    width: 300px;
    max-width: 100%;
    height:62px;
  }
  .btn_counseling a .txt{
    font-size: 1.2rem;
  }
  .btn_counseling a .tel{
    margin-top:2px;
    font-size: 2rem;
  }
}
/* ===============================================
# フッター
=============================================== */
footer {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
footer .logo {
  display: inline-block;
}
@media screen and (max-width :834px){
  footer {
    padding-top: 10px;
    padding-bottom: 70px;
  }
  footer .logo {
    width: 75px;
  }
}