@charset "UTF-8";
/* --------------------------------------------------
	commnon
-------------------------------------------------- */
html {
  scroll-padding-top: 80px; 
  scroll-behavior: smooth;
}
body,main{
  font-family: "Zen Maru Gothic", sans-serif!important;
}

.header__scroll:not(.is-fixed) .logo-img{
  display: none;
}

.l-header .header__scroll.is-fixed .nav-btn{
  position: relative;
  top: auto;
  right: auto;
}

.sup {
  position: relative;
  top: -0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}
.color02{
  color: #F19C6D;
}
.noto{
  font-family: "Noto Sans JP", sans-serif;
}
a.arrow::after{
  position: absolute;
  right: 1.5rem;
  top: 50%;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 8px ;
  width: 8px;
  border-color: #5A4335;
  transform: rotate(-45deg);
  transform: rotate(-45deg) translateY(-50%);

}
.ttl{
  text-align: center;
  margin-bottom: 5rem;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .l-header{
    overflow: visible;
  }
  .ttl{
    font-size: 2.2rem;
  }
}
.ttl.under_arrow{
  padding-bottom: 2rem;
  position:relative;
}

.ttl.under_arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 12px;
  background: 
    linear-gradient(to right,#F2A57B 45%, transparent 45%, transparent 55%, #F2A57B 55%);
  background-size: 100% 2px; /* 線の太さを2pxに設定 */
  background-repeat: no-repeat;
  background-position: bottom;
  width: 250px;
}
.ttl-sub{
  font-size: 1.4rem;
  margin-top: 1rem;
  text-align: center;
  font-weight: 700;
  color: #F2A57B;
}
/* 中央の折れ曲がったツノ部分 */
.ttl.under_arrow::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 15px;
  height: 12px;
  border-right: 3px solid #F2A57B; /* ツノの右側 */
  transform: translateX(-50%) skewX(-45deg); /* 斜めに傾ける */
}
.ttl span{
  font-size: 80%;
}


.c-lead-txt {
  margin-bottom: 3rem;
  line-height: 1.6;
}

.section-squre{
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  opacity: 0.4;
  width: 400px;
  height: 400px;
  border-radius: 50px;
  position: absolute;
  top: -250px;
  right: -200px;
  z-index: 0;
}
.section-squre.left{
  left: -200px;
  right: auto;
}
@media screen and (max-width: 768px) {
  .section-squre{
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
  }
  .section-squre.left{
    left: -70px;
    right: auto;
  }
}

/* header
---------------------------------------------------------------------------- */
.l-header{
  position: relative;
}
.header__inner{
  background-color: #FFFFFF;
  border-bottom: 1px solid #E1E1E1;
  color: #4F3F39;
}
.l-header .nav__wrapper .nav__inner .g-menu__items:not(:last-child){
  border-bottom: 1px dashed #F2A57B;
}
/* sec-fv
---------------------------------------------------------------------------- */
.sec-fv {
  position: relative;
  padding: 3rem 0 7rem;
  height: calc(100svh - 100px);
  max-height: 900px;
  width: 100%;
  margin-bottom: 60px;
  background-image: url('../images/stretch/fv_bg.svg');
  background-position: center bottom;
  background-repeat: repeat-x;
}
/* 画像の基本設定 */
.sec-fv .fv_img {
  width: 51%;
  max-width: 720px;
  height: auto;
  position: absolute;
  right: 5%;
  top: 15%;
  box-shadow: 4px 8px 12px 0px #00000033;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec-fv .slider-item{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    height: 100svh;
  }
}
.sec-fv::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 72%;
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  opacity: 0.4;
  z-index: 1;
}
.sec-fv::after{
  content: '';
  position: absolute;
  top: 80px;
  right: 0;
  width: 220px;
  height: 320px;
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  opacity: 0.4;
  z-index: 3;
}
.sec-fv .fv__inner{
  width: 60%;
  position: relative;
  z-index: 2;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10%;
}
@media screen and (max-width: 767px) {
  .sec-fv{
    padding: 1.5rem 0 1rem;
    margin-bottom: 0;
    height: calc(100svh - 30px);
    background: none;
  }
  .sec-fv .slider{
    width: 100%;
    height: 100%;
    object-position: center top;
  }
  .sec-fv .fv__inner{
    width: 100%;
    padding:0 20px;
    justify-content: space-between;
  }
  .sec-fv::before{
    width: 131px;
    height: 94px;
    top:28px;
    z-index:3;  
  }
}
.sec-fv .fv_logo_wrap {
  display:flex;
  justify-content: center;
  margin-bottom: 3rem;
  position:relative;
  z-index: 2;
}
.sec-fv .fv_logo_wrap .logo-img{
  width: 190px;
}
.sec-fv .fv__inner .fv_station{
  font-size: 2.7rem;
  font-weight: 700;
  display:inline-block;
  align-items: baseline;
  background: #4F3F39;
  padding: 8px 20px;
  font-weight: 900;
  color: #FFFFFF;
  font-size: 2.9rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .l-header .nav-btn{
    z-index: 4;
  }
  .sec-fv .fv_logo_wrap .logo-img{
    width: 143px;
  }
  .sec-fv .fv_logo_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    justify-content: start;
    margin-left: 20px;
    position: relative;
    z-index: 3;
  }
  .sec-fv .fv_logo_wrap .fv_station{
    font-size: 1.7rem;
  }
  .l-header .nav__wrapper .nav__inner .g-menu__items{
    font-weight: 700;
    font-size: 1.5rem;
  }
}
.sec-fv .fv_main-catch_wrap{
  position: relative;
}
.sec-fv .fv_main-catch__sub{
  font-size: 2.2rem;
  font-weight: 700;
  background: #fff;
  display: inline-block;
  z-index: 4;
  border-width: 0px 3px 3px 0px;
  border-style: solid;
  border-color: #F19C6D;
  padding: 1.2rem 2.1rem;
  margin-bottom: 5rem;
}
.sec-fv .fv_main-catch__sub span{
  font-size: 2.8rem;
}
.sec-fv .fv_main-catch{
  line-height: 1.3;
  display: inline-flex;
  flex-direction: column;
  align-items: end;
  margin-bottom: 4rem;
}
.sec-fv .fv_main-catch__main{
  font-size: 5.4rem;
  font-weight: 700;
  color:#fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1.2;
}
.sec-fv .fv_main-catch__main .noto{
  text-shadow: 0px 1.5px 6px rgba(0, 0, 0, 0.5);
}
.sec-fv .fv_main-catch__main .accent{
  font-size: 8.9rem;
text-shadow: 
  0px 0px 4px #F28B54, 
  0px 0px 10px #F28B54, 
  0px 0px 18px rgba(242, 139, 84, 0.8);
}
@media screen and (max-width: 767px) {
  .sec-fv .fv_main-catch_wrap{
    margin-top: auto;
  }
  .sec-fv .fv_main-catch__sub{
    font-size: 1.6rem;
    left: -20px;
    padding: 0.3rem 3rem 0.3rem 20px;
    margin-bottom:5px;
    position: relative;
  }
  .sec-fv .fv_main-catch__sub span{
    font-size: 2.2rem;
  }
  .sec-fv .fv_main-catch{
    padding: 0 10px;
    display: inline-block;
    margin-bottom:0;
  }
  .sec-fv .fv_main-catch__main{
    font-size: 3.0rem;
  }
  .sec-fv .fv_main-catch__main.pt{
    padding-top: 7rem;
  }
  .sec-fv .fv_main-catch__main .num{
    font-size: 4.2rem;
  }
  .sec-fv .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    margin: 0 0 0 auto;
  }
  .sec-fv .fv__inner .fv_station{
    font-size: 1.6rem;
    padding: 8px;
  }
  .sec-fv .fv_main-catch__main .accent{
    font-size: 4.5rem;
  }
}
.sec-fv .fv_icon_wrap{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 2rem;
}
.sec-fv .fv_icon_wrap img{
  max-width: 230px;
  width: calc((100% - 20px)/ 3)
}
.sec-fv .note{
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec-fv .fv_icon_wrap{
    margin-left: 0;
    gap: 0;
  }
  .sec-fv .fv_icon_wrap img{
    width: calc(100% / 3);
  }
  .sec-fv .note{
    font-size: 1rem;
    margin-top: 1rem;
  }
  .sec-fv::after{
    z-index: 1;
    width: 156px;
    height: 252px;
    bottom: 0;
    top: auto;
  }
  .sec-fv .fv_img{
    width: 90%;
    left: 0;
    top: 0;
    right: auto;
  }
  .sec-fv + .sp-bg{
    background-image: url('../images/stretch/fv_bg.svg');
    background-size: cover;
    padding: 0 0 3rem;
  }
}

/* first-box-wrap
---------------------------------------------------------------------------- */
.first-box-wrap .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 1.2rem;
  margin: 0 auto;
  flex-direction: row;
}
.first-box-wrap .box {
  position: relative;
  width: calc((100% - 1.2rem) / 2);
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0px 2px 4px 0px #00000026;
  padding: 1.5rem 2.0rem;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}
.first-box-wrap .box::after{
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: transparent #4F3F39 transparent transparent;
  filter: drop-shadow(1px 2px 2px 0px rgba(0,0,0,0.3));
  z-index: 2;
}

.first-box-wrap .box .ttl {
  text-align: center;
  font-size: clamp(1.4rem, 0.969rem + 1.97vw, 2.2rem);
  line-height: 1.15;
  font-weight: 900;
  padding-bottom: 3px;
  border-bottom: 1px solid #4F3F39;
  margin-bottom:1rem;
}
.first-box-wrap .box .txt {
  text-align: center;
  font-size: clamp(2.2rem, 1.123rem + 4.92vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.182px;
  font-weight: 700;
}
.first-box-wrap .box .txt .small01 {
  font-size: 1.8rem;
}
.first-box-wrap .box .txt .small02 {
  font-size: clamp(1.2rem, 0.877rem + 1.48vw, 1.8rem);
  line-height: 120%;
}

.first-box-wrap .box:nth-of-type(2) .txt .small02 {
  position: relative;
  margin-left: -0.4rem;
}
.first-box-wrap .box:nth-of-type(2) .txt .sup {
  top: -0.2rem;
  margin-left: -0.6rem;
}
@media screen and (max-width: 767px) {
  .first-box-wrap .box__inner {
    padding: 2.7rem 0 1.5rem 0;
  }
  .first-box-wrap .box{
    padding: 1.5rem 1.0rem;
  }
  .first-box-wrap .box .ttl{
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .first-box-wrap .box .txt{
    font-size: 2.2rem;
  }
  .first-box-wrap .box .txt .small02{
    font-size: 1.2rem;
  }
}

/* page-nav__wrap
---------------------------------------------------------------------------- */
.page-nav__wrap {
  position: relative;
  margin-top: 3rem;
  box-sizing: border-box;
}
.page-nav__wrap .page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  padding: 0.6rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #4F3F39;
  box-shadow: 0px 0px 6px -3px #00000026;
}
.page-nav__wrap .page-nav__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
  gap: 16px 0;
  width: calc((100% - 4px) / 5);
  padding: 0.5rem 0;
}
.page-nav__wrap .page-nav__btn .ico {
  text-align: center;
}
.page-nav__wrap .page-nav__btn .ico img {
  width: auto;
  height: 35px;
}
.page-nav__wrap .page-nav__btn .txt {
  text-align: center;
  font-size: clamp(1rem, 0.53rem + 2.03vw, 1.8rem);
  line-height: 0.9866;
  letter-spacing: -0.2px;
  font-weight: 700;
  padding-bottom: 25px;
}
.page-nav__wrap .page-nav__btn:after {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 1rem;
  width: 1rem;
  border-color: #5A4335;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .page-nav__wrap .page-nav__btn {
    gap: 0.8rem 0;
  }
  .page-nav__wrap .page-nav__btn .txt{
    font-size: 1.0rem;
    padding-bottom:15px;
  }
  .page-nav__wrap .page-nav__btn:after {
    height: 0.5rem;
    width: 0.5rem;
  }
  .page-nav__wrap .page-nav__btn .ico img {
    height: 20px;
  }
}
.page-nav__wrap .page-nav__btn:last-of-type .txt {
  letter-spacing: -1.2px;
  padding-bottom: 16px;
}
.page-nav__wrap .page-nav__btn:not(:last-of-type) {
  border-right: 1px solid #B1A7A0;
}

/* cta_wrap
---------------------------------------------------------------------------- */
.cta_wrap {
  position: relative;
  margin: 3.6rem auto 5rem auto;
  z-index: 3;
}

/* sec-about
---------------------------------------------------------------------------- */
.sec-about {
  position: relative;
  padding: 7rem 0;
  z-index: 1;
}
.sec-about .about-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  gap: 5.3rem 0;
  gap: 2rem;
  margin-bottom: 10rem;
}
.sec-about .about-box .box-img {
  position: relative;
  width: 60%;
  padding-right: 3rem;
  padding-bottom: 2rem;
}
.sec-about .about-box .box-img::after{
  content: '';
  width: calc(100% - 3rem);
  height: calc(100% - 2rem);
  position: absolute;
  right: 0;
  bottom: 0;
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
}
.sec-about .about-box .box-img .img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sec-about .about-box .box-img .img img{
  aspect-ratio: 315 / 194;
  object-fit:cover;
}
.sec-about .about-box .box-img .img-txt .name {
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
  display: flex;
  align-items: end;
  gap: 5px;
}
.sec-about .about-box .box-img .img-txt .name span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
}
.sec-about .about-box .box-txt{
  flex: 1;
}
.sec-about .about-box .box-txt .txt {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.8px;
  font-weight: 500;
}
.sec-about .about-box .box-txt .txt + .txt {
  margin-top: 2rem;
}
.sec-about .about-info {
  display: flex;
  gap: 1.4rem 3rem;
  margin-bottom: 5rem;
}
.sec-about .about-info .info-box .time-tbl td{
  vertical-align: middle;
}
.sec-about .about-info .info-box .time-tbl td .maru{
background-color: #644B3D; 
width: 15px;
height: 15px;
  border-radius: 50%;     
  display: block;
  margin: auto;
}
.sec-about .about-info .info-box .time-tbl td .batsu{
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: #ACA19A;
clip-path: polygon(
    10% 0%, 0% 10%, 40% 50%, 0% 90%, 10% 100%, 50% 60%, 
    90% 100%, 100% 90%, 60% 50%, 100% 10%, 90% 0%, 50% 40%
  );
  position: relative;
  top: 2px;
}

@media (max-width: 767px) {
  .sec-about{
    padding: 0 0 14rem;
  }
  .stretch_top .sec-about{
    padding: 0 0 7rem;
  }
  .stretch-list .sec-about{
    padding: 0 0 3rem;
  }
  .sec-about .about-box {
    flex-direction: column;
    margin-bottom: 4rem;
  }
  .sec-about .about-box .box-img{
    width: 100%;
  }
  .sec-about .about-box .box-img .img-txt .name{
    flex-direction: column;
    align-items: flex-start;
  }
}
.sec-about .about-info .info-box {
  border-radius: 0.8rem;
  padding: 0.5rem;
  background: #FFFBF3;
  width: calc(50% - 1.5rem);
  position: relative;
  margin-top: 1rem;
}
.sec-about .about-info .info-box.-access .box__inner {
  padding-top: 5.4rem;
  height: 100%;
}
.sec-about .about-info .info-box .box__inner {
  position: relative;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid #F2A57B;
}
.sec-about .about-info .info-box .ttl {
  position: absolute;
  left: 0;
  top: -1.0rem;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-right: 3px solid #F2A57B;
  border-bottom: 3px solid #F2A57B;
  background: #fff;
  z-index: 2;
  min-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media (max-width: 767px) {
  .sec-about .about-info .info-box.-access .box__inner{
    padding-top: 3rem;
  }
  .sec-about .about-info .info-box .ttl {
    font-size: 1.7rem;
  }
}
.sec-about .about-info .info-box .ttl:before {
  display: block;
  content: "";
  width: 2rem;
  height: 2rem;
   background-size: contain;
}
.sec-about .about-info .info-box.-time .ttl::before {
    background: url(../images/common/ico_clock_b.svg) center / contain no-repeat;
}
.sec-about .about-info .info-box.-access .ttl::before {
    background: url(../images/common/ico_pin_b.svg) center / contain no-repeat ;
}
@media (max-width: 767px) {
  .sec-about .about-info .info-box .ttl:before {
    width: 16px;
    height: 16px;
  }
}
.sec-about .about-info .info-box .time-tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
}
.sec-about .about-info .info-box .time-tbl th, .sec-about .about-info .info-box .time-tbl td {
  padding: 1rem 0;
  border-bottom: 1px solid #5A4335;
  box-sizing: border-box;
  text-align: center;
}
.sec-about .about-info .info-box .time-tbl tbody th {
  width: 9.5rem;
}
.sec-about .about-info .info-box .time-tbl th {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.sec-about .about-info .info-box .time-tbl td {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.sec-about .about-info .info-box .txt {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.sec-about .about-info .info-box .c-links-wrap {
  margin-top: 1.3rem;
}
.sec-about .gmap {
  margin: 1.6rem 0 1rem 0;
  width: 100%;
  aspect-ratio: 67/44;
}
@media screen and (max-width: 768px) {
  .sec-about .about-info{
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .sec-about .about-info .info-box{
    width: 100%;
  }
}
.sec-about .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.8rem;
}
.sec-about .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0 1.1rem;
  margin-bottom: 7rem;
}
.sec-about .btn_wrap .gmap_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  flex-direction: column;
  width: calc(50% - 0.55rem);
  max-width: 372px;
  height: 5rem;
  padding: 1.5rem 2.5rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -0.182px;
  font-weight: 700;
  border-radius: 0.8rem;
  background: #FEE4D5;
  border: 1px solid #4F3F39;
  box-shadow: 0px 4px 6px 0px #00000026;
}

.sec-about .btn_wrap .gmap_btn.-white {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .sec-about .btn_wrap .c-links-wrap .links {
    font-weight: 500;
  }
}
.sec-about .btn_wrap .gmap_btn.-white:after {
}
.sec-about .gyms_nearby {
  position: relative;
  margin: 0 auto;
  padding: 4rem 2rem;
  max-width: 770px;
  background:url('../images/stretch/fv_bg.svg') repeat center center;
  border: 1px solid #4F3F39;
  background-size: cover;
}
.sec-about .gyms_nearby .ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec-about .gyms_nearby .ttl {
    font-size: 1.7rem;
    margin-bottom: 0;
  }
}
.sec-about .gyms_nearby .ttl .ribon {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  display: inline-block;
  width: 30.8rem;
  margin: 0 auto;
  padding: 0.5rem 2.3rem 0.6rem 2.3rem;
  background: #4F3F39;
  border-radius: 50px;
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0;
}
.sec-about .gyms_nearby .gym_box__links {
  position: relative;
  display: block;
  border-radius: 0.4rem;
  background: #FEE4D5;
  padding: 1.6rem 2rem 1.5rem;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sec-about .gyms_nearby .gym_box__links .name {
  font-size: 1.8rem;
  line-height: 1.4285714286;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.sec-about .gyms_nearby .gym_box__links .txt {
  font-size: 1.4rem;
  line-height: 1.3333333333;
  font-weight: 500;
}

.sec-about .gyms_nearby .gym_box + .gym_box {
  margin-top: 1.2rem;
}
.sec-about .gyms_nearby .c-links-wrap {
  margin-top: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-about .gyms_nearby .gym_box__links .name{
    font-size: 1.4rem;
  }
  .sec-about .gyms_nearby .gym_box__links .txt{
    font-size: 1.2rem;
  }
  .sec-about .gyms_nearby .gym_box__links{
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 1.1rem 1.5rem;
  }
}

/* sec-worries
---------------------------------------------------------------------------- */
.sec-worries{
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  padding: 5rem 0;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .sec-worries{
    margin-top: 0;
  }
}
.sec-worries .worries-wrap {
  padding-top: 3rem;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec-worries .worries-wrap {
    padding-top: 28rem;
  }
}
.sec-worries .worries-wrap .worries-box {
  position: relative;
}
.sec-worries .worries-wrap .worries-box .worries-img {
  position: absolute;
  top: -22rem;
  left: 50%;
  width: 40%;
  height: auto;
  transform: translateX(-50%);
}
.sec-worries .worries-wrap .worries-box .box-ttl {
  text-align: center; 
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
text-shadow: 
    /* 四隅の深い角 */
    3px  3px 0 #fff, -3px -3px 0 #fff,
    -3px  3px 0 #fff,  3px -3px 0 #fff,
    /* 上下左右 */
    0px  3px 0 #fff,  0px -3px 0 #fff,
   -3px  0px 0 #fff,  3px  0px 0 #fff,
    /* 隙間を埋めるための中間座標 */
    1px  3px 0 #fff, -1px  3px 0 #fff,
    1px -3px 0 #fff, -1px -3px 0 #fff,
    3px  1px 0 #fff, -3px  1px 0 #fff,
    3px -1px 0 #fff, -3px -1px 0 #fff,
    2px  3px 0 #fff, -2px  3px 0 #fff,
    2px -3px 0 #fff, -2px -3px 0 #fff,
    3px  2px 0 #fff, -3px  2px 0 #fff,
    3px -2px 0 #fff, -3px -2px 0 #fff;
}

.sec-worries .worries-wrap .worries-box .box-ttl .color03 {
  font-size: 3.2rem;
}
.sec-worries .worries-wrap .worries-box .box-ttl .dotted{
  position: relative;
  display: inline-block;
  margin-top: 1em;
}
.sec-worries .worries-wrap .worries-box .box-ttl .dotted::before{
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  
  /* 点の大きさと形 */
  width: 6px;
  height: 6px;
  background-color: #F2A57B;
  border-radius: 50%;
  box-shadow: 
    3px  3px 0 #fff, -3px -3px 0 #fff,
    -3px  3px 0 #fff,  3px -3px 0 #fff,
    0px  3px 0 #fff,  0px -3px 0 #fff,
   -3px  0px 0 #fff,  3px  0px 0 #fff,
    1px  3px 0 #fff, -1px  3px 0 #fff,
    1px -3px 0 #fff, -1px -3px 0 #fff,
    3px  1px 0 #fff, -3px  1px 0 #fff,
    3px -1px 0 #fff, -3px -1px 0 #fff,
    2px  3px 0 #fff, -2px  3px 0 #fff,
    2px -3px 0 #fff, -2px -3px 0 #fff,
    3px  2px 0 #fff, -3px  2px 0 #fff,
    3px -2px 0 #fff, -3px -2px 0 #fff;
}
.sec-worries .worries-wrap .worries-box .check-list{
  max-width: 500px;
  margin: 0 auto;
}
.sec-worries .worries-wrap .worries-box .check-list li {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: 0.07px;
  font-weight: 700;
  background: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0.8rem 2rem;
  gap: 8px;
}
.sec-worries .worries-wrap .worries-box .check-list li:before {
  content: "";
  background: url("../images/common/ico_check_p.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.9rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.sec-worries .worries-wrap .worries-box .check-list li + li {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .sec-worries .worries-wrap .worries-box .check-list li {
    font-size: 1.6rem;
    padding: 0.4rem 1rem;
    line-height: 1.5;
    letter-spacing: -0.15px;
  }
}
.sec-worries .worries-wrap .lead {
  padding: 4rem 0;
  position: relative;
  margin: 3rem auto 4rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 
    /* 四隅の深い角 */
    3px  3px 0 #fff, -3px -3px 0 #fff,
    -3px  3px 0 #fff,  3px -3px 0 #fff,
    /* 上下左右 */
    0px  3px 0 #fff,  0px -3px 0 #fff,
   -3px  0px 0 #fff,  3px  0px 0 #fff,
    /* 隙間を埋めるための中間座標 */
    1px  3px 0 #fff, -1px  3px 0 #fff,
    1px -3px 0 #fff, -1px -3px 0 #fff,
    3px  1px 0 #fff, -3px  1px 0 #fff,
    3px -1px 0 #fff, -3px -1px 0 #fff,
    2px  3px 0 #fff, -2px  3px 0 #fff,
    2px -3px 0 #fff, -2px -3px 0 #fff,
    3px  2px 0 #fff, -3px  2px 0 #fff,
    3px -2px 0 #fff, -3px -2px 0 #fff;
}
.sec-worries .worries-wrap .curved-bg {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 120px;
  background-color: rgba(255, 147, 88, 0.3);
  border-radius: 0 0 50% 50% / 0 0 30% 30%;
  z-index: -1;
}
.sec-worries .worries-wrap .lead .lead-txt01 {
  font-size: 2.4rem;
  text-shadow: 0px 4px 6px 0px #00000026;
}
.sec-worries .worries-wrap .lead .lead-txt02 {
  font-size: 3.2rem;
}
.sec-worries .worries-wrap .lead .strong {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
}
.sec-worries .worries-wrap .reason-text{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-worries .worries-wrap {
    width: 100%;
    padding-top: 0;
  }
  .sec-worries .worries-wrap .worries-box .worries-img{
    width: 70%;
    top: -13rem;
  }
  .sec-worries .worries-wrap .worries-box .box-ttl{
    font-size: 2.0rem;
  }
  .sec-worries .worries-wrap .reason-text{
    text-align: left;
    font-size: 1.6rem;
  }
  .sec-worries .worries-wrap .lead{
    margin-bottom: 1rem;
    padding: 2rem 0 3.3rem;
  }
}


/* sec-reason
---------------------------------------------------------------------------- */
.sec-reason {
  padding: 4rem 0 8rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sec-reason {
    padding: 2rem 0 10rem 0;
  }
}
.sec-reason .reason-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
.sec-reason .reason-list .reason-item{
  width: calc((100% - 4rem) / 3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sec-reason .reason-list .reason-item .reason-card{
  border-radius: 8px;
  position: relative;
  width: 90%;
  margin: 0 auto 0 0;
  z-index: 2;
}
.sec-reason .reason-list .reason-item .reason-title{
  position: relative;
  z-index: 3;
  width: 100%;
}
.sec-reason .reason-list .reason-item .menu-title{
  background: linear-gradient(166.07deg, #FFD29B 4.01%, #FFF5DD 100%);
  padding: 1rem 0.5rem 1rem 1rem;
  text-align: left;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.6;
  margin:-3rem auto 1rem;
  position: relative;
  z-index: 3;
  letter-spacing: 0;
  width: 94%;
}
.sec-reason .reason-list .reason-item .reason-num{
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.7;
  position: absolute;
  top: -6.5rem;
  left: 5%;
  z-index: 4;
}
.sec-reason .reason-list .reason-item .reason-content{
  background:#FFFBF3;
  padding: 1rem;
  width: 100%;
  margin:0 0 0 auto;
  padding: 2rem;
  font-weight: 500;
  padding-top: 14rem;
  margin-top: -14rem;
  line-height: 1.7;
  flex: 1;
  position: relative;
}

.sec-compare {
  padding: 4rem 0 8rem 0;
}
.sec-compare .ttl{
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .sec-reason .reason-list .reason-item{
    width: 100%;
  }
}


/* sec-before_after
---------------------------------------------------------------------------- */
.sec-before_after {
  padding: 0 0 1rem 0;
}
.sec-before_after .c-title{
  margin-top: 12.8rem;
}
@media screen and (max-width: 768px) {
  .sec-before_after {
    position: relative;
    overflow:hidden;
  }
  .sec-before_after .c-title{
    margin-top: 2rem;
  }
  .sec-before_after .section-squre{
    background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
    opacity: 0.4;
    top: -87px;
  }
  .sec-before_after .ttl.under_arrow{
    padding-bottom: 1rem;
    margin-bottom: 1.4rem;
  }
}
.sec-before_after .c-lead-txt{
  font-weight: 700;
}
.sec-before_after .ttl.under_arrow::before{
  content: none;
}
.sec-before_after .ttl.under_arrow::after{
  background: #F2A57B;
  width: 40px;
  height: 2px;
}
.sec-before_after .slide-wrap {
  position: relative;
  margin-top: 3rem;
}
.sec-before_after .slide-wrap .before_after_slider{
  padding: 0 2px;
}

.sec-before_after .slide-wrap .before_after_slider .slide-item {
  position: relative;
  padding: 2.5rem 2rem;
  background: #FFFBF3;
  border: 1px solid #4F3F39;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .img-flex {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 1rem;
  margin-bottom: 1rem;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .img-flex .img {
  position: relative;
  width: calc((100% - 1rem) / 2);
  aspect-ratio: 141/200;
  border-radius: 0.8rem;
  overflow: hidden;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .img-flex .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .img-flex:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url("../images/gym/arrow.svg") no-repeat center center;
  background-size: 100% auto;
  width: 2.2rem;
  height: 2.5rem;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .ttl-wrap {
  margin-bottom: 1rem;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .ttl-wrap .ttl {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: -0.439px;
  font-weight: 700;
  margin-bottom: 1rem;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .ttl-wrap .ttl span {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 2.3rem 0.6rem 2.3rem;
  background: #F19C6D;
  border-radius: 50px;
  color: #fff;
  z-index: 1;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .cat-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0.5rem 0.5rem;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .cat-list li {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.25rem 1.5rem;
  border-radius: 1.5rem;
  border: 1.45px solid #E6D8D2;
  background: #fff;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .period {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 0.8rem;
  padding-bottom: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid #F2A57B;
  box-sizing: border-box;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .period-ttl {
  font-size: 1.4rem;
 font-weight: 700;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .period-txt {
  font-size: 1.4rem;
  font-weight: 700;
}
.sec-before_after .slide-wrap .before_after_slider .slide-item .txt {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 700;
  word-break: initial;
}
@media screen and (min-width: 768px) {
    .before_after_slider .slick-slide {
        margin: 0 10px; /* 左右に10pxずつで間隔が20pxになります */
    }
   
    .before_after_slider .slick-list {
        margin: 0 -10px;
    }
}
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-prev, 
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  overflow-x: 2;
  cursor: pointer;
}
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-prev:after, 
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-next:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: url("../images/common/arrow_slide.svg") no-repeat center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-prev {
  left: -1.5rem;
}
.sec-before_after .slide-wrap .before_after_arrow-box .before_after_arrow-next {
  right: -1.5rem;
  transform: scale(-1, 1) translateY(-50%);
}
.sec-before_after .note {
  margin-top: 1rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 500;
}
.sec-before_after .before_after_dotted-box .slick-dots,
.sec-trainer .trainer_dotted-box .slick-dots {
  position: relative;
  bottom: 0;
}
.sec-before_after .before_after_dotted-box .slick-dots li,
.sec-trainer .trainer_dotted-box .slick-dots li {
  width: 2.2rem;
  height: 2px;
  margin: 0 0.15rem;
}
.sec-before_after .before_after_dotted-box .slick-dots li button,
.sec-trainer .trainer_dotted-box .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #BFB7B0;
}
.sec-before_after .before_after_dotted-box .slick-dots li button:before,
.sec-trainer .trainer_dotted-box .slick-dots li button:before {
  display: none;
}
.sec-before_after .before_after_dotted-box .slick-dots li.slick-active button,
.sec-trainer .trainer_dotted-box .slick-dots li.slick-active button {
  background: #5A4335;
}

/* sec-features
---------------------------------------------------------------------------- */
.sec-features {
  padding: 8rem 0 9.5rem 0;
  box-sizing: border-box;
}
.sec-features .bg{
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  padding: 4rem 2rem 8rem;
}
.sec-features .lead {
  position: relative;
  text-align: center;
  margin-bottom: 10rem;
}
.sec-features .lead .lead-txt {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
  z-index: 2;
}

.sec-features .lead .strong {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
}


.sec-features .lead:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6rem;
  margin: 0 auto;
  display: block;
  content: "";
  background: url("../images/stretch/arrow02.svg") no-repeat center bottom;
  background-size: 100% auto;
  width: 23.6rem;
  height: 6.3rem;
}

.sec-features h2{
  font-size: 2.8rem;
}
.sec-features .box-features_list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.sec-features .box-features {
  background: #fff;
  box-shadow: 0 0.4rem 0.6rem 0 rgba(0, 0, 0, 0.1);
 width: calc((100% - 4rem) / 3);
  position: relative;
  padding: 2rem;
}

.sec-features .box-features .box__inner .box-ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #F2A57B;
  font-weight: 700;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
  border-bottom: 2px dotted #F2A57B;
}
.sec-features .box-features .box__inner .box-ttl:before, .sec-features .box-features .box__inner .box-ttl:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -0.4rem;
  display: block;
  content: "";
}
.sec-features .box-features .box__inner .box-ttl:before {
  left: 1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  background-size: 100% auto !important;
  z-index: 2;
}
.sec-features .box-features .box__inner .box-txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .sec-features{
    padding: 3rem 0 4rem;
  }
  .sec-features .box-features {
    width: 100%;
  }
  .sec-features .box-features_list{
    flex-direction: column;
  }
  .sec-features .box-features .box__inner .box-txt{
    font-size: 1.4rem;
  }
}
.sec-features .habit-box {
  position: relative;
  padding: 7.7rem 1.5rem 2rem 1.5rem;
  border: 0.4rem solid #FEE4D5;
  background: #fff;
  width: 75%;
  margin: 8rem auto 0;
}
.sec-features .habit-box__ttl {
  position: absolute;
  top: -2.2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 29.5rem;
  padding: 1.2rem 1rem 1.8rem 1rem;
  border: 1px solid #5A4335;
  background: #fff;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.07px;
  font-weight: 700;
}
.sec-features .habit-box__ttl .small {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  letter-spacing: -0.312px;
  font-weight: 700;
}

.sec-features .habit-box .habit-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: stretch;
  gap: 0 1.15rem;
}
.sec-features .habit-box .habit-flex .flex-box {
  width: calc((100% - 2.3rem) / 3);
}
.sec-features .habit-box .habit-flex .flex-box .ico {
  width: 4rem;
  margin: 0 auto;
}
.sec-features .habit-box .habit-flex .flex-box .ttl {
  margin-top: 0.8rem;
  margin-bottom:0.8rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  letter-spacing: -0.15px;
  font-weight: 700;
}
.sec-features .habit-box .habit-flex .flex-box .txt {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec-features .habit-box {
    width: 100%;
  }
}
.sec-features .tebura-wrap {
  margin-top: 8rem;
}
.sec-features .tebura-wrap .tebura__ttl {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.0714285714;
  letter-spacing: 0.07px;
  font-weight: 700;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom:1.5rem;
}
.sec-features .tebura-wrap .tebura__ttl::after{
  content: '';
  background: #F2A57B;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sec-features .tebura-wrap .tebura__ttl .small {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: -0.312px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sec-features .tebura-wrap .tebura-flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0 1rem;
}
.sec-features .tebura-wrap .tebura-flex .flex-box {
  width: calc((100% - 2rem) / 3);
  display: flex;
  flex-direction: column;
}
.sec-features .tebura-wrap .tebura-flex .flex-box .box-img {
  aspect-ratio: 105/105;
  overflow: hidden;
}
.sec-features .tebura-wrap .tebura-flex .flex-box .box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-features .tebura-wrap .tebura-flex .flex-box .img-txt {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 700;
  color: #F2A57B;
  background: #FFFBF3;
  padding: 0.5rem 0.6rem;
  height: 100%;
  flex: 1;
}
.sec-features .tebura-wrap .txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec-features .tebura-wrap .tebura-flex .flex-box .img-txt {
    font-size: 1.4rem;
  }
}
/* sec-trainer
---------------------------------------------------------------------------- */
.sec-trainer {
  padding: 7rem 0 4rem;
  background: #FFFBF3;
}
.sec-trainer .ttl{
  font-size: 2.8rem;
}
.sec-trainer .ttl h2{
  line-height: 1.4;
}
.trainer-box{
  display: flex;
  align-items: end;
  margin-bottom: 4rem;
}
.trainer-box .trainer-img{
  width: 70%;
  padding-bottom: 4rem;
}
.trainer-box .trainer-content{
  width: 70%;
  margin-left: -20%;
}
.trainer-box .trainer-title{
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  padding:2rem 4rem 2rem 4rem;
  line-height: 1.2;
  background: linear-gradient(166.07deg, #FFD29B 4.01%, #FFF5DD 100%);
}

.trainer-box .trainer-content .trainer-txt{
  line-height: 1.6;
  font-size: 1.6rem;
  font-weight: 500;
  background: #fff;
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .trainer-box{
    align-items: start;
  }
  .trainer-box .trainer-title{
    margin-bottom: 4rem;
    padding: 1rem 2rem 1rem 2rem;
  }
  .trainer-box .trainer-content{
    padding: 4rem 2rem;
  }
  .trainer-box .trainer-img{
    padding: 0;
  }
  .trainer-box .trainer-content .trainer-txt{
    padding: 0;
  }

}

.trainer_slider .trainer-item_content{
  background: #fff;
  padding: 3rem 1rem 1rem;
  position: relative;
  font-weight: 500;
}
.trainer_slider .slick-slide {
    margin: 0 10px; /* 左右に10pxずつで間隔が20pxになります */
    border-radius: 8px 8px;  
}
.trainer_slider .slick-slide .trainer-item_img img{
  border-radius: 8px 8px 0 0;  
  aspect-ratio:158 / 190;
  object-fit: cover;
}
.trainer_slider .slick-list {
    margin: 0 -10px;
}
.trainer_slider .slick-slide .trainer-name{
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #F2A57B;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  color: #fff;
  white-space: nowrap;
}
.sec-trainer .slide-wrap{
  position: relative;
}
.sec-trainer .trainer_arrow-box .trainer_arrow-prev, 
.sec-trainer .trainer_arrow-box .trainer_arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  overflow-x: 2;
  cursor: pointer;
}
.sec-trainer .slide-wrap .trainer_arrow-box .trainer_arrow-prev:after, 
.sec-trainer .slide-wrap .trainer_arrow-box .trainer_arrow-next:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: url("../images/stretch/arrow_slide.svg") no-repeat center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.sec-trainer .slide-wrap .trainer_arrow-box .trainer_arrow-prev {
  left: -1.5rem;
}
.sec-trainer .slide-wrap .trainer_arrow-box .trainer_arrow-next {
  right: -1.5rem;
  transform: scale(-1, 1) translateY(-50%);
}
@media (max-width: 768px) {
  .trainer-box{
    flex-direction: column;
  }
  .trainer-box .trainer-img{
    width: 100%;
    position :relative;
  }
  .trainer-box .trainer-content{
    width: 100%;
    position: relative;
    margin: 0;
    background: #fff;
    padding-top: 5rem;
  }
  .trainer-box .trainer-title{
    font-size: 2.0rem;
    text-align: center;
    margin: 0 auto 2rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width:90%;
  }
  .trainer-box .trainer-title .c-line-yellow{
    font-size: 2.4rem;
  }
  .trainer_slider .slick-slide .trainer-name{
    font-size: 1.3rem;
    top: -1.4rem;
  }
  .trainer_slider .trainer-item_content{
    font-size: 1.2rem;
  }
}
/* sec-review
---------------------------------------------------------------------------- */
.sec-review {
  padding: 4rem 0 7rem 0;
}
.sec-review .l-inner{
  background: linear-gradient(180deg, transparent 13%, #EFE4DF 13%);
  text-align: center;
  padding-bottom: 3rem;
}
.sec-review .c-title{
  background: #fff;
  border: 1px solid #4F3F39;
  padding: 1.5rem 2rem;
  display: inline-block;
  margin: 0 auto;
}
.sec-review .c-title::before{
  content: none;
}
.sec-review .wp-gr .grw-row{
  flex-direction: column;
  align-items: center!important;
}
.sec-review .grw-row .grw-content{
  width: 100%!important;
}
.sec-review .wp-gr .wp-google-powered{
  display: none;
}
.sec-review .grw-row .grw-header{
  width: 100%;
}
.sec-review .wp-gr span{
  margin: 0 auto;
}
.sec-review .rpi .rpi-dots{
  gap: 3px!important;
}
.sec-review .rpi .rpi-dots-wrap{
  width: 50%!important;
}
.sec-review .rpi-dots .rpi-dot{
  width: 22px!important;
  height: 2px!important;
  border-radius: 0!important;
  transform: scale(1)!important;
}
.sec-review .rpi-dots .rpi-dot.active{
  background-color: #5A4335!important;
}
.sec-review .rpi .rpi-ltgt{
  background: url('../images/stretch/arrow_slide.svg') no-repeat center center!important;
  background-size: contain!important;
}
.sec-review .rpi .rpi-ltgt.rpi-gt{
  transform: rotate(180deg)!important;
}
.sec-review .rpi .rpi-ltgt::after, .sec-review .rpi .rpi-lt::before{
  background-color: transparent!important;
}

/* sec-menu
---------------------------------------------------------------------------- */
.sec-menu {
  padding: 5.5rem 0 7rem 0;
  position: relative;
  overflow: hidden;
}
.sec-menu .section-squre{
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
  top: -70px;
  right: -70px;
  opacity: 0.4;
}
.sec-menu .ttl{
  font-size: 2.8rem;
  line-height: 1.4;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.sec-menu .ttl.under_arrow::before{
  content: none;
}
.sec-menu .ttl.under_arrow::after{
  width: 40px;
  height: 2px;
  background: #F2A57B;
}
.sec-menu .c-lead-txt{
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 5rem;
}
.sec-menu .menu-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem 2rem;
  margin-top: 4rem;
}
.sec-menu .menu-list .menu-item{
  width: calc((100% - 6rem) / 4);
  position: relative;
  text-align: center;
}
.sec-menu .menu-list .menu-item .menu-title{
  font-size: 1.8rem;
  font-weight: 700;
  background: #fff;
  border: 1px solid #4F3F39;
  padding: 0.6rem 2rem;
  border-radius: 3rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.sec-menu .menu-list .menu-item .mneu-content{
  position: relative;
  padding: 1.5rem 1rem 1.5rem;
  background: #FFFBF3;
  font-weight: 500;
  text-align: left;
  line-height: 1.6
}
.sec-menu .menu-list .menu-item .mneu-content a.links{
  position: relative;
  text-align: right;
  margin-right: 2rem;
  text-decoration: underline;
  display: block;
}
.sec-menu .menu-list .menu-item .mneu-content a.links::after{
  right: -2rem;
}
.sec-menu .note{
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
  line-height: 1.6;
  font-size: 1.2rem;
}
.sec-menu .note span{
  text-align: left;
  display: inline-block;
}
@media (max-width: 768px) {
  .sec-menu{
    padding: 4rem 0 3rem;
  }
  .sec-menu .menu-list{
    gap: 3rem 1rem ;
  }
  .sec-menu .menu-list .menu-item{
    width: calc(50% - 0.5rem);
  }
  .sec-menu .menu-list .menu-item .menu-title{
    font-size: 1.4rem;
    padding: 0.3rem 1.5rem;
  }
  .sec-menu .menu-list .menu-item .mneu-content{
    padding: 1rem 1rem 1.5rem;
  }
   .sec-menu .menu-list .menu-item .menu-text{
    font-size: 1.4rem;
   }
  .sec-menu .note{
    font-size: 1.2rem;
    text-align: left;
  }
}

/* sec-fee
---------------------------------------------------------------------------- */
.sec-fee {
  padding: 4rem 0 0;
}
.sec-fee .bg{
  padding:  5rem 0;
  background: linear-gradient(166.07deg, #FFC077 16.47%, rgba(255, 245, 221, 0.3) 100%);
}
.sec-fee .ttl{
  font-size: 2.8rem;
  margin-bottom: 3.2rem;
}
.sec-fee .c-title::before{
  content: none;
}
.sec-fee .fee-list{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem 2rem;
  margin: 3rem auto 3rem;
}
.sec-fee .fee-list .fee-item{
  background: #fff;
  border-radius: 8px;
  padding: 5rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  width: calc((100% - 6rem) / 3);
}
.sec-fee .fee-list .fee-item:nth-child(4){
  padding-top: 3rem;
}
.sec-fee .fee-list .fee-item .fee-title{
  position: absolute;
  font-size: 1.8rem;
  text-align:center;
  margin: 0 auto 1rem;
  font-weight: 700;
  line-height: 1.2;
  font-weight: 700;
  background :#FFFBF3;
  padding: 0.3rem 2.2rem 0.5rem 2rem;
  border-right: 3px solid #F2A57B;
  border-bottom: 3px solid #F2A57B;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.2;
  white-space: nowrap;
  display: inline-block;
}
.sec-fee .fee-list .fee-item:nth-child(3){
  padding-top: 6rem;
}
.sec-fee .fee-list .fee-item .fee-title span{
  font-size: 1.4rem;
}
.sec-fee .fee-list .fee-item .fee-price{
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px dotted #F2A57B;
  font-weight: 700;
}
.sec-fee .fee-list .fee-item:last-child .fee-price{
  border-bottom: none;
}
.sec-fee .fee-list .fee-item .fee-price .num-price{
  font-size: 3.6rem;
  font-weight: 700;
}
.sec-fee .fee-list .fee-item .fee-txt{
  line-height: 1.4;
  font-weight: 500;
}
  .sec-fee .option-text{
    font-size: 1.4rem;
    line-height: 1.4;
    width: 100%;
    margin-bottom: 5rem;
  }

@media (max-width: 768px) {
  .sec-fee .c-title{
    width: 100%;
  }
  .sec-fee .fee-list .fee-item{
    width: 100%;
  }
  .sec-fee .option-text .ml{
    margin-left:28px;
  }
}
.sec-fee .payment_wrapper{
  max-width: 600px;
  margin: 0 auto;
}
.sec-fee .payment_wrapper p{
  font-weight: 500;
}
.sec-fee .payment_wrapper .c-title{
  background: linear-gradient(90deg, rgba(90, 67, 53, 0) 0%, #5A4335 12.5%, #5A4335 83.65%, rgba(90, 67, 53, 0) 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .sec-fee .payment_wrapper .c-title{
    font-size: 1.8rem;
    padding: 1rem;
  }
  .sec-fee .payment_wrapper .c-title + .c-lead-txt{
    text-align: left;
  }
  .sec-fee .payment_wrapper p{
    margin-bottom: 1rem;
  }
}
.sec-fee .payment_wrapper .mb{
  margin-bottom: 2rem;
}
.sec-fee .payment_wrapper .credit_card{
  display: block;
  margin: 0 auto 2rem 0;
  width: 100%;
  max-width: 600px;
}
.sec-fee .payment_wrapper .note{
  font-size: 75%;
}

/* sec-compare
---------------------------------------------------------------------------- */
.sec-compare table{
  width: 100%;
  margin: 4rem auto 0;
}
.sec-compare table th,
.sec-compare table td{
  padding: 1.5rem 1rem;
  font-size: 1.8rem;
  line-height: 1.6;
}

.sec-compare table th{
  font-weight: 700;
  text-align: center;
  border-radius: 8px 8px 0 0;
  background: #EFE4DF;
  border: 1px solid #fff;
}
.sec-compare table th.element-th{
  background:#F2A57B;
  color: #fff;
}
.sec-compare table th.blank{
  border:none;
  background: transparent;
}
.sec-compare table th:not(.blank){
  width: 27%;
}
.sec-compare .row-th{
  font-weight: 700;
  text-align: center;
  border: 1px solid #BFB7B0;
  background: #FFFBF3;
  vertical-align: middle;

}
.sec-compare table td{
  border: 1px solid #BFB7B0;
  background: #F8F8F8;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}
.sec-compare table td img{
  width: 50%;
  margin: 0 auto 1rem;
  max-width: 60px;
  height: auto;
  width: 40px;
}
.sec-compare table td .strong{
  font-size: 2.0rem;
}
.sec-compare table td.element-column{
  color: #B5860E;
  border-left: 3px solid #F2A57B;
  border-right: 3px solid #F2A57B;
  background: #fff;
}
.sec-compare table tr:last-child td.element-column{
  border-bottom: 3px solid #F2A57B;
}
.sec-compare table td .note{
  font-size: 1.4rem;
  color: inherit;
}
.sec-compare table td .td-column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec-compare table td .td-column img{
  height: 40px;
}
.sec-compare table td .td-column .td-text{
  flex: 1;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec-compare{
    padding: 4rem 0 1rem;
  }
  .sec-compare table th,.sec-compare table td{
    padding: 1.2rem 0.3rem;
    font-size: 1.2rem;
  }
  
  .sec-compare .row-th{
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.5rem 0;
    letter-spacing: 0;
  }
  .sec-compare table td .strong{
    font-size: 1.4rem;
  }
}

/* sec-access
---------------------------------------------------------------------------- */
.sec-access {
  padding: 4rem 0 8rem 0;
  box-sizing: border-box;
  position: relative; 
  overflow: hidden;
}
.sec-access .ttl.under_arrow::before{
  content: none;
}
.sec-access .ttl.under_arrow::after{
  width: 40px;
  height: 2px;
  background: #F2A57B;
}
@media screen and (max-width: 768px) {
  .sec-access .ttl{
    font-size: 2.8rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.sec-access .c-lead-txt{
  font-size: 1.8rem;
  font-weight: 700;
}
.sec-access .access-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  padding: 1rem;
  border-radius: 0.9rem;
  background: #FFFBF3;
}
.sec-access .access-box + .access-box {
  margin-top: 1rem;
}
.sec-access .access-box .box-img {
  position: relative;
  width: 40%;
  aspect-ratio: 128/96;
  overflow: hidden;
}
.sec-access .access-box .box-img .num {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  border-radius: 0 0 0.8rem 0;
  background: #F2A57B;
  color: #fff;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .sec-access .access-list{
    display: flex;
    justify-content: start;
    gap: 2rem 2rem;
    flex-wrap: wrap;
  }
  .sec-access .access-box{
    flex-direction: column;
    width: calc((100% - 4rem) / 3);
    gap: 1.6rem;
  }
  .sec-access .access-box + .access-box{
    margin: 0;
  }
  .sec-access .access-box .box-img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-access{
    padding: 4rem 0;
  }
  .sec-access .access-box .box-img .num {
    width: 3rem;
    height: 3rem;
    font-size: 1.6rem;
  }
}
.sec-access .access-box .box-img .popup-link {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.sec-access .access-box .box-img .ico {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 3.2rem;
  height: 3.2rem;
  box-shadow: 0 0.4rem 0.6rem -0.1rem rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  z-index: 2;
  pointer-events: none;
  border-radius: 100%;
}
.sec-access .access-box .box-txt {
  flex: 1;
  padding-left: 1.6rem;
  box-sizing: border-box;
}
.sec-access .access-box .box-txt p {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 500;
}

.sec-gallery{
  background: #FFFBF3;
  padding: 6rem 0;
}
@media screen and (max-width: 768px) {
  .sec-gallery .ttl{
    font-size: 2.8rem;
    margin-bottom: 2.2rem;
  }
}
.sec-gallery .equipment-wrap {
  margin-top: 8.2rem;
}
@media screen and (max-width: 768px) {
  .sec-gallery .equipment-wrap {
    margin-top: 0;
  }
}
.sec-gallery .equipment-wrap .ttl {
  text-align: center;
  margin-bottom: 2.2rem;
}
.sec-gallery .equipment-wrap .slider-main_wrap {
  position: relative;
  margin-top: 2.8rem;
}
.sec-gallery .equipment-wrap .slider-main_wrap .slider-main .main-img {
  aspect-ratio: 335/251;
  border-radius: 0.8rem;
  overflow: hidden;
}
.sec-gallery .equipment-wrap .slider-main_wrap .slider-main .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-prev, .sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  overflow-x: 2;
  cursor: pointer;
}
.sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-prev:after, .sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-next:after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: url("../images/common/arrow_slide.svg") no-repeat center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-prev {
  left: -1.5rem;
}
.sec-gallery .equipment-wrap .slider-main_wrap .arrow-box .arrow-next {
  right: -1.5rem;
  transform: scale(-1, 1) translateY(-50%);
}
.sec-gallery .equipment-wrap .thumb-list {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: stretch;
  gap: 0.8rem 0.8rem;
}
.sec-gallery .equipment-wrap .thumb-list .thumb-img {
  width: calc((100% - 5.6rem) / 8);
  aspect-ratio: 78/78;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
.sec-gallery .equipment-wrap .thumb-list .thumb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .sec-gallery{
    padding: 4rem 0;
  }
  .sec-gallery .equipment-wrap .thumb-list .thumb-img {
    width: calc((100% - 2.4rem) / 4);
  }
}
.sec-gallery .equipment-wrap .note-list {
  margin-top: 2rem;
}
.sec-gallery .equipment-wrap .note-list li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  padding-left: 1.8rem;
  box-sizing: border-box;
}
.sec-gallery .equipment-wrap .note-list li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "●";
}

/* sec-flow
---------------------------------------------------------------------------- */
.sec-flow {
  position: relative;
  padding: 4.7rem 0 8rem 0;
  overflow: hidden;
}
.sec-flow .ttl.under_arrow::before{
  content: none;
}
.sec-flow .ttl.under_arrow::after{
  width: 40px;
  height: 2px;
  background: #F2A57B;
}
@media screen and (max-width: 768px) {
  .sec-flow .ttl{
    font-size: 2.8rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
.sec-flow .c-lead-txt{
  font-size: 1.8rem;
  font-weight: 700;
}

.sec-flow .flow-title {
  position: absolute;
  top: -2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto 2rem auto;
  width: 23.6rem;
  text-align: center;
  padding: 0.5rem 0.5rem 0.8rem 0.5rem;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.07px;
  font-weight: 700;
  background: #fff;
  border: 1px solid #000;
  background: #FFF;
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.25);
}
.sec-flow .flow-title:before {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0px 0px;
  border-color: #5A4335 transparent transparent transparent;
}
.sec-flow .flow-list{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.sec-flow .flow-list .flow-box{
  width: calc(50% - 1.5rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .sec-flow .flow-list .flow-box{
    width: 100%;
  }
}
.sec-flow .flow-box .box-img {
  position: relative;
  width: calc(100% - 7.5rem);
  margin: 0 auto 0 0;
  box-shadow: 0 0.4rem 0.6rem 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.sec-flow .flow-box .box-ttl{
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 2rem;
}
.sec-flow .flow-box .num {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(242, 165, 123, 0.5);
  z-index: 3;
  position: absolute;
  left: 3rem;
  top: 23rem;
}
.sec-flow .flow-box .box-txt {
  position: relative;
  width: calc(100% - 2.5rem);
  margin: -5.4rem 0 0 auto;
  padding: 6rem 2.2rem 2.2rem 2.2rem;
  background: #fff;
  border: 1px solid #4F3F39;
  z-index: 1;
  background: linear-gradient(#FFFBF3 55%, transparent 55% )
}
.sec-flow .flow-box:nth-child(3) .box-txt,
.sec-flow .flow-box:nth-child(4) .box-txt{
  background: linear-gradient(#FFFBF3 60%, transparent 60% )
}
.sec-flow .flow-box .box-txt .ttl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom:0;
  line-height: 1.4;
  text-align: left;
  padding-left: 40px;
}
.sec-flow .flow-box .box-txt .txt {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 500;
}
.sec-flow .flow-box .box-txt .txt a {
  text-decoration: underline;
}
.sec-flow .btn_wrap {
  margin: 2.8rem auto 0 auto;
}
@media screen and (max-width: 767px) {
  .sec-flow{
    padding: 4rem 0 0;
  }
  .sec-flow .flow-box .box-img{
    width: 90%;
  }
  .sec-flow .flow-box .num{
    top: 16rem;
    left: 2.5rem;
  }
  .sec-flow .flow-box .box-txt{
    width: 96%;
  }
  .sec-flow .flow-box .box-txt .ttl{
    padding-left: 37px;
  }
}
/* sec-faq
---------------------------------------------------------------------------- */
.sec-faq {
  position: relative;
  padding: 7rem 0 13rem 0;
  background: #FFFBF3;
}
.sec-faq .c-title {
  margin-bottom: 2rem;
}
.sec-faq .c-title:before {
  display: none;
}
.sec-faq .faq-box + .faq-box {
  margin-top: 2rem;
}
.sec-faq .faq-box__ttl {
  position: relative;
  padding: 1.3rem 3.8rem 1.3rem 4.2rem;
  border-radius: 0.8rem;
  background: #fff;
  box-sizing: border-box;
  cursor: pointer;
}
.sec-faq .faq-box__ttl .ico {
  position: absolute;
  left: 1.25rem;
  top: 1.2rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.15px;
  font-weight: 700;
  color: #F2A57B;
}
.sec-faq .faq-box__ttl .txt {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: -0.15px;
  font-weight: 700;
}
.sec-faq .faq-box__ttl:before, .sec-faq .faq-box__ttl:after {
  position: absolute;
  right: 1rem;
  top: 1.4rem;
  display: block;
  content: "";
  background: #5A4335;
}
.sec-faq .faq-box__ttl:before {
  margin-top: 0.9rem;
  width: 2rem;
  height: 1px;
}
.sec-faq .faq-box__ttl:after {
  margin-right: 1rem;
  width: 1px;
  height: 2rem;
}
.sec-faq .faq-box__ttl.open:after {
  display: none;
}
.sec-faq .faq-box__txt {
  position: relative;
  padding: 1.4rem 1.3rem 0 4.2rem;
  box-sizing: border-box;
}
.sec-faq .faq-box__txt .ico {
  position: absolute;
  top: 1.4rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: stretch;
  width: 2.6rem;
  height: 2.6rem;
  text-align: center;
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.15px;
  font-weight: 700;
  border-radius: 100%;
  background: #5A4335;
}
.sec-faq .faq-box__txt .txt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
.sec-faq .faq-box__txt .txt a {
  text-decoration: underline;
}
.sec-faq .faq-box .acd_cnts {
  display: none;
}
@media screen and (max-width: 767px) {
  .sec-faq{
    padding: 4rem 0;
  }
}
/* sec-application
---------------------------------------------------------------------------- */
.sec-application {
  padding: 8rem 0 4rem 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sec-application {
    padding: 4rem 0 2rem 0;
  }
}
.sec-application .application_wrap .application-box {
  padding: 3rem 2rem;
  border-radius: 0.8rem;
  box-sizing: border-box;
  background: #EFE4DF
}
.sec-application .application_wrap .application-box .box-ttl {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.3509583333;
  font-weight: 700;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 2rem;
  box-sizing: border-box;
}
.sec-application .carousel.custom-form-carousel .contact__radio label{
  background: #fff;
}
.sec-application .application_wrap .application-box .box-ttl span {
  display: block;
  font-size: 2rem;
  line-height: 1.62115;
  font-weight: 700;
}
.sec-application .application_wrap .application-box .contact__form{
  border:none;
  background: none;
}
.sec-application .form_style .btn_wrap .form_btn{
  background-color: #F2A57B;
}
@media screen and (max-width: 767px) {
  .sec-application .application_wrap .application-box{
    padding: 3rem 2rem;
  }
  .sec-application .application_wrap .application-box .contact__form{
    padding: 0;
  }
  .form_style .carousel.custom-form-carousel input[type=radio] + span:before{
    width: 20px;
    height:  20px;;
  }
  .form_style .carousel.custom-form-carousel input[type=radio]:checked + span:after{
    width: 12px;
    height: 12px;
  }
  .sec-application .form_style .btn_wrap .form_btn{
    margin: 0 auto;
    width: 100%;
  }
  .sec-application .form_style .btn_wrap .arrow-left,.sec-application .form_style .btn_wrap .arrow-right{
    flex: 1;
  }
}

/* section
---------------------------------------------------------------------------- */
.section {
  padding: 4rem 0 8rem 0;
  box-sizing: border-box;
}
.section h2{
  font-family: "Zen Maru Gothic", sans-serif;
  border-color: #F2A57B;
}
.section h3{
  background: #FAEEE9;
}
.section h4{
  border-color: #F2A57B;
}
.section strong{
  color: #F2A57B;
}
.section table thead th{
  background: #FAEEE9;
}
.section ul li:before{
  background: url("../images/stretch/ico_check_s.svg") no-repeat center center;
}
.section table tbody th{
  background: #FAEEE9;
  font-weight: 400;
}


/* sec-media
---------------------------------------------------------------------------- */
.sec-media{
  padding: 0 0 7rem;
  position: relative; 
}
.sec-media .sec-media-ttl{
  text-align: center;
}
.sec-media .section-squre{
  top: auto;
  bottom: -5rem;
}
.sec-media .sec-media-ttl .ribon {
  display: inline-block;
  width: 30.8rem;
  margin: 0 auto 3rem;
  padding: 1rem 2.3rem 1rem 2.3rem;
  font-size: 1.7rem;
  font-weight: 700;
  background: #4F3F39;
  border-radius: 50px;
  color: #fff;
  text-align:center;
}
.sec-media .media-list{
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem 1.7rem
}
.sec-media .media-item{
  width: calc((100% - 1.7rem * 3) / 4);
  background: #fff;
  padding: 1rem 1.9rem 2rem;
}
.sec-media .media-item .media-ttl{
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0;
}
.sec-media .media-item:last-of-type{
  padding: 1.5rem 1.2rem 2rem;
}

@media (max-width: 767px) {
  .stretch_top .sec-media{
    padding-bottom: 16rem;
  }
  .sec-media .media-item{
    width: calc((100% - 1.7rem) / 2);
  }
}

/* sec-storelist
---------------------------------------------------------------------------- */
.sec-shoplist{
  padding: 13.6rem 0 5rem;
}
.stretch_top .sec-shoplist .parent-list .parent-item{
  background: #FFFBF3;
  border-radius: 5px;
  border: 1px solid #F2A57B;
}
.stretch_top .sec-shoplist .sec-gym-list .post-list li{
  width: calc((100% - 2rem) / 2);
}
.stretch_top .sec-shoplist .sec-gym-list .post-list li a {
  text-align: left;
  line-height: 1.6;
}
.stretch_top .sec-shoplist .parent-section .parent-area-ttl{
    background: #FFFBF3;
    border: 1px solid #F2A57B;
    border-bottom: 3px solid #F2A57B;
    text-align: center;
    display: block;
    color: #4F3F39;
}
.stretch_top .sec-gym-list .post-list li a .store-name{
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.8;
}
.stretch_top .sec-gym-list .post-list li a .link-button{
  background:#F3B08B;
}
.stretch_top .sec-gym-list .post-list li a .link-button::after{
  border-color: transparent transparent transparent #ffffff;
}
@media (max-width: 767px) {
  .sec-shoplist{
    padding: 7rem 0 5rem;
  }
.stretch_top .sec-shoplist .sec-gym-list .post-list li{
  width: 100%;
}
}

/* TOP 口コミスライダー
---------------------------------------------------------------------------- */
.stretch_top .google-reviews-slider {
    padding: 0 20px;
}
@media (max-width: 767px) {
  .stretch_top .google-reviews-slider {
    padding: 10px;
  }
}
.stretch_top .review-stars{
	display: flex;
  margin-bottom: 8px;
}
.stretch_top .review-stars img{
	width: 17px;
	height: 17px;
}
.stretch_top .review-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    margin: 10px;
    min-height: 220px;
    position: relative;
}
.stretch_top .reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.stretch_top .reviewer-icon {
    width: 40px;
    height: 40px;
    background: #4A5565;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
}
.stretch_top .reviewer-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
}
.stretch_top .review-text {
    font-size: 14px;
    line-height: 1.4;
		text-align: left;
    height: 130px;
    overflow-y: scroll;
    margin-bottom: 12px;
}
.stretch_top .sec-review .note{
  color: #99A1AF;
  font-size: 12px;
  letter-spacing: 0;
}
.stretch_top .review-wrapper {
    position: relative;
}
.stretch_top .review_arrow-box {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.stretch_top .slick-dotted.slick-slider{
  margin-bottom: 0;
}
.stretch_top .review_arrow-box .review_arrow-prev, 
.stretch_top .review_arrow-box .review_arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.4rem;
  height: 3.4rem;
  overflow-x: 2;
  cursor: pointer;
}
.stretch_top .review_arrow-box .review_arrow-prev:after, 
.stretch_top .review_arrow-box .review_arrow-next:after {  position: absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  background: url("../images/stretch/arrow_slide.svg") no-repeat center center;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}
.stretch_top .review_arrow-box .review_arrow-prev {
  left: 0;
}
.stretch_top .review_arrow-box .review_arrow-next {
  right: 0;
  transform: scale(-1, 1) translateY(-50%);
}
.stretch_top .review_dotted-box .slick-dots {
  position: relative;
  bottom: 0;
}
.stretch_top .review_dotted-box .slick-dots li{
  width: 2.2rem;
  height: 2px;
  margin: 0 0.15rem;
}
.stretch_top .review_dotted-box .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background: #BFB7B0;
}
.stretch_top .review_dotted-box .slick-dots li button:before{
  display: none;
}
.stretch_top .review_dotted-box .slick-dots li.slick-active button{
  background: #5A4335;
}

