@charset "UTF-8";
/* CSS Document */


/*ヘッダー*/
.header {
  height: 90px;
  width: 100%;
  background-color: #fffffd;  /*トップページは無し*/
}

.header-content-wrapper{
  max-width: 1580px;              /*1520px + padding30+30px*/
  margin: 0 auto;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.header-content-wrapper h1 {
  padding: 30px 0 0 30px;
  position: absolute;
  left: 0;
  font-size: 3rem;
  text-transform: capitalize;
}
.header-content-wrapper h1 a{
  text-decoration: none;
}

.header-content-wrapper nav {
    display: block;
    text-align: right;
  }
  .header-content-wrapper nav ul {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    margin-top: 35px;
    line-height: 2rem;
  }
.header-content-wrapper nav li{
  border-right: 2px solid #333;
}
.header-content-wrapper nav li:nth-child(5) {
   border: none;
}

.header-content-wrapper nav li a {
    display: block;
    padding: 0 30px;
    text-decoration: none;
    font-size: 1.8rem;
    text-transform: uppercase;
  }

.nav-contact {
  display: none;
}

@media screen and (max-width:1200px){
  
  body {
    padding-top: 90px;
  }
  .header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  }
}


@media screen and (max-width:768px){
  
  body {
    padding-top: 60px;
  }
   .header {
    height: 60px;
  }
  .header-content-wrapper h1 {
    padding: 20px 0 0 30px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:374px) {
  .header-content-wrapper h1 {
    font-size: 1.4rem;
  }
}



/*ハンバーガーメニュー*/
.openbtn {
  display: none;
}

@media screen and (max-width:1200px){
  
 /*========= ナビゲーションのためのCSS ===============*/
  
  
#g-nav{
     /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
	z-index: 999;
    /*ナビのスタート位置と形状*/
	top: 90px;
  right: -120%;
	width:100%;
  height: calc(100vh - 90px);/*ナビの高さ*/
	background: rgba(236,211,211,0.9);
    /*動き*/
	transition: all 0.3s;
}
  
  /*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
	right: 0;
}
  /*ナビゲーション*/
#g-nav ul {
    display: block;
    position: absolute;
    z-index: 999;
    top:80px;
    left:70px;
}
  .nav-contact {
    display: block;
    color: #333;
  }
 
  
  
  /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  display: block;
	position: relative;
	cursor: pointer;
  width: 45px;
  height:90px;
  margin: 0 30px 0 auto;
}
  
  /*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    height: 2px;
	background: #333;
  	width: 100%;
  }


.openbtn span:nth-of-type(1) {
  left: 0;
	top:30px;	
}

.openbtn span:nth-of-type(2) {
  left: 0;
	top:40px;
}
  .openbtn span:nth-of-type(2)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:2px;
	left:2px;
	color: #333;
	font-size: 1.3rem;
	text-transform: uppercase;
}
  
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-25deg);
}

.openbtn.active span:nth-of-type(2){
    transform: translateY(-6px) rotate(25deg);
}

.openbtn.active span:nth-of-type(2)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-25deg);
	top:5px;
  left: 10px;
	
}
  
  /*リストのレイアウト設定*/

#g-nav li{
  text-align: left;
  border: none;
}

#g-nav li a{
	padding:20px 0;
  display: inline-block;
 }

}



@media screen and (max-width:768px){
  
  #g-nav{
	top: 60px;
	width:100%;
  height: calc(100vh - 60px);/*ナビの高さ*/
    /*動き*/
	transition: all 0.3s;
}
  
  
  .openbtn {
    width: 30px;
    height: 60px;
  }
  
  
.openbtn span:nth-of-type(1) {
	top:20px;	
}
.openbtn span:nth-of-type(2) {
	top:27px;
}
  .openbtn span:nth-of-type(2)::after {
	left:0;
	color: #333;
	font-size: 0.9rem;
}
  
  
  .openbtn.active span:nth-of-type(1) {
    transform: translateY(1px) rotate(-25deg);
}

.openbtn.active span:nth-of-type(2){
    transform: translateY(-6px) rotate(25deg);
}

.openbtn.active span:nth-of-type(2)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-25deg);
	top:5px;
  left: 7px;
	
 }
}




/*トップページ*/
.section-top {
  width: 100%;
  position: relative;
}
.section-top__image {
  width: 92vw;
  height: auto;
  background-image: url("../images/pilates/pilates_main.png");
  aspect-ratio: 177 / 70;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-top h2 {
  position: absolute;
  /*  font-size: 4rem;*/
  font-size: 3.2vw;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);        /*テキスト中央寄せ*/
  color: #FFF;
  font-family: 'Montserrat', sans-serif; 
  text-transform: uppercase;
}

.section-top h2 span {     /*フェードアップに必要*/
  display: block;
}

.section-top ul {
  writing-mode: vertical-rl;
  position: absolute;
  right: 3%;
  bottom:0;
  display: flex;
  list-style: none;
  line-height: 2rem;
}

.section-top li:first-child {
  border-bottom: 2px solid #333;
}
.section-top ul li a{
  text-decoration: none;
  padding: 30px 0;
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
}




@media screen and (max-width:1200px){
  
  .section-top h2{
    font-size: 3rem;
  } 
}

@media screen and (max-width:768px){
  
  .section-top__image {
    width: 100%;
    height: 240px;
  }
  
  .section-top ul {
    right: 25px;
  }
  .section-top ul li a {
    padding: 15px 0;
    font-size: 1.5rem;
    color: #fff;
  }
  
  .section-top li:first-child {
  border-bottom: 2px solid #fff;
}
}






/*ピラティス*/
.section-pilates {
  padding: 220px 18.7% 0;
}

.pilates__wrapper {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto;
}

.pilates__image-wrapper {
  position: relative;
}

.pilates_img1 {
  width: 28.64vw;
height: 28.64vw;
  object-fit: cover;
  border-top-left-radius:18%;
  max-width: 600px;
  max-height: 600px;
}

.pilates_img2 {
  position: absolute;
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  left: -15%;
  bottom: -15%;
  max-width: 250px;
  max-height: 250px;
}

.sp-title {
  
  display: none;
  
}

.pilates__text-wrapper {
  
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-pilates__text {
  padding-right: 80px;
  text-align: left;
}
.section-pilates__text h3 {
  font-family: 'Montserrat', sans-serif; 
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 70px;
  font-size: 3rem;
  position: relative;
}


.pilates_lead {
  padding: 180px 30px 0;
  
}

.lead2 {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.underline {
  display: inline;
  background-image: linear-gradient(transparent 70%, #f0beb2 0%);
}
.fontsize1 {
  font-size: 1.7rem;
}
.fontsize2 {
  font-size: 1.9rem;
}

.lead2::after {
  content: '';
    display: inline-block;
    width: 180px;
    height: 120px;
    background-image: url("../images/pilates/pilates_lead_deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: -40px;
}


.lead1 {
  position: relative;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.7rem;
  padding-bottom: 50px;
}

.lead1::after {
  content: '';
    display: inline-block;
    width: 20px;
    height: 30px;
    background-image: url("../images/pilates/lead1_deco.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    bottom: 60px;
    left: 120px;
}


@media screen and (max-width:1200px){
  
  .pilates__wrapper {
    
    display: block;
  }
  
  .sp-title {          /*見出し*/
    
    display: block;
    width: 100%;
    height: 28.64vw;
    position: relative;
   
  }
  
  .sp-title h3 {
     font-size: 2rem;
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase;
    position: absolute;
    top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  }
  
  
  .sp__image-wrapper {
    display: flex;
  }
  
   .pilates_img2 {
  position: absolute;
  width: 14vw;
  height: 14vw;
  left: -7vw;
  bottom: -4vw;
}
  
  .section-pilates__text {
    
    padding: 110px 30px 0;
  }
  
  .section-pilates__text h3 {
    
    display: none;
  }
  
  .section-pilates__text p {
    font-size: 1.5rem;
  }
  
  .pilates_lead {
    padding: 80px 30px 0;
  }
  
  .lead2 {
    font-size: 1.5rem;
    text-align: left;
  }
  
  .fontsize1 {
    font-size: 1.6rem;
  }
  .fontsize2 {
    font-size: 1.8rem;
  }
  
  .lead2::after {
  content: '';
    width: 160px;
    height: 120px;
    right: -50px;
    bottom: -40px;
}
  .lead1 {
    font-size: 1.6rem;
    padding-bottom: 30px;
  }
  .lead1::after {
    width: 20px;
    height: 30px;
    bottom: 45px;
    left: 110px
    
  }
}

@media screen and (max-width:768px){
  
  .section-pilates {
    
    padding:100px 0 0;
  }
  
  .pilates_img1{     /* 250 / 390*/
  width: 64.1vw;
  height: 64.1vw;
    max-width: 320px;
    max-height: 320px;
  }
  
  .pilates_img2 {
  position: absolute;
  width: 30vw;
  height: 30vw;
  max-width: 150px;
    max-height: 150px;
  left: -10vw;
  bottom: -8vw;
}
  
  .sp-title {
    max-height: 320px;
    height: 64.1vw;
  }
  
  
  .lead2::after {
  content: '';
    width: 120px;
    height: 100px;
    right: 0;
    bottom: -110px;
}
}




/*レッスン料金*/
/*
.section-menu {
  padding: 220px 18.75% 140px;
}

.section-menu__wrapper {
   display: flex;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto;
}

.section-menu__image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.image-wrapper {
  width: 100%;
}

.section-menu__image img{
  width: 24vw;             
  height: 16.8vw;            
  object-fit: cover;
  display: block;
  margin: 60px auto 60px 0;
  max-width: 500px;
  max-height: 330px;
  
}
 

.section-menu__image img:nth-child(2){
  margin: 60px 0 60px auto;
}



.section-menu__text {
  max-width: 440px;
  margin-left: 6.25vw;
  min-width: 400px;
  width: 70%;
}
.section-menu__text h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  padding-bottom: 80px;
}
.section-menu__text dl {
  text-align: left;
}
.section-menu__lesson {
  margin-bottom: 150px;
}

.section-menu__lesson dt{
  font-size: 1.8rem;
  padding-bottom: 20px;
}

.section-menu__lesson dt::before {
  content: "";
	display: inline-block;
	border: 4px solid transparent;
	border-left: 6px solid #333;
	padding: 0;
	margin: 0 5px 0 0;
	top: -3px;
	position: relative;
}

.section-menu__lesson dd{
  margin-bottom: 80px;
}

.section-menu__price dl{           
  font-size: 1.8rem;
  display: flex;
  flex-flow: wrap;
}
.section-menu__price dl dt {
  width: 40%;
  margin-bottom: 3.12vw;
}
.section-menu__price dl dd {
  width: 60%;
  text-align: right;
  padding-left: 10px;
  margin-bottom: 3.12vw;
}

.section-menu__price dl dt:first-child + dd {
  position: relative;
}
.section-menu__price dl dt:first-child + dd::after{
  content: url("../images/pilates/check.png");
  position: absolute; 
  top:-40px;
  right: -100px
}

.section-menu__price dl dd:last-child,.section-menu__price dl dt:last-of-type {
  margin-bottom: 1.56vw;
}
.section-menu__price p {
  text-align: right;
}



.section-menu h3 {              
  display: flex;
  align-items: center;
}
.section-menu h3::before {
  border-top: 2px solid #333;
  content: "";
  width: 100%;
  margin-right: 40px;
}





@media screen and (max-width:1200px){
  
  .section-menu__wrapper {
    display: block;
  }
  
  .section-menu__image img {
    
    margin: 0 0 40px;
    width: 100%;
    height: 43.82vw;   
    max-width: initial;
    max-height: initial;
  }
  
  .section-menu__image img:nth-child(2) {
    margin: 0 0 40px;
  }
  
  .section-menu__image img:last-child {
    margin: 0;
  }
  
  .section-menu__text {
    
    padding-bottom: 100px;
    max-width: inherit;
    width: 100%;
    margin-left: 0;
  }
  
  .section-menu__text h3 {
    font-size: 2rem;
    text-align: left;
     padding-bottom: 60px;
  }
  
  .section-menu__lesson {
    margin-bottom: 160px;
  }
  
  
  
.section-menu h3::before {              
  content: none;
 }
  .section-menu h3::after {              
  border-top: 2px solid #333;
  content: "";
  width: 100%;
  margin-left: 30px;
 }
 
  .section-menu__lesson dt {
    font-size: 1.6rem;
    
  }
  
  .section-menu__lesson dd {
    font-size: 1.5rem;
  }

  
  .section-menu__price dl {
    font-size: 1.6rem;
  }

  .section-menu__price p {
    font-size: 1.5rem;
  }
  

  
}



@media screen and (max-width:768px){
  
  .section-menu {
    padding: 150px 0 30px;
  }  
  
  .section-menu__text {
    padding: 0 30px 80px;
    min-width: auto;
  }
  
  .section-menu__image img {
    
     margin: 0 0 20px;
    height: 70vw;
  }
  
  .section-menu__image img:nth-child(2) {
    margin: 0 0 20px;
  }
  
  .section-menu__price dl {
    
    display: block;
  }
  
  .section-menu__price dl dt {
    width: auto;
    margin-bottom: 10px
  }
  .section-menu__price dl dt:last-of-type {
    margin-bottom: 10px;
  }
  
  .section-menu__price dl dd {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 60px;
    width: 100%;
  }
  
  .section-menu__price dl dd:first-of-type {
    width: 60%;
  }
  
  
  .section-menu__price dl dd:last-child {
  margin-bottom: 10px;
  }
  
  .section-menu__price dl dt:first-child + dd::after{
    
    left: 180px;
  }
  
  .pc_br {
    display: none;
  }
}
*/


/*レッスン*/
.section-menu {
  padding: 220px 18.75% 140px;
}

.section-menu__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-menu h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 60px;
}

.section-menu__lesson-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15%;
  row-gap: 80px;
  margin-top: 40px
}

.lesson__image {
  width: 100%;
  aspect-ratio: 550 / 350;
  border-radius: 15px;
}

.lesson__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.lesson__text {
  text-align: left;
  margin-top: 30px;
  font-size: 1.4rem;
  padding: 0 10px;
}
.lesson__text h4 {
  font-size: 1.8rem;
  padding-bottom: 5px;
  border-bottom: 2px solid #333333;
  margin-bottom: 30px;
}

.lesson__description span {
  display: block;
  margin: 20px 0 20px 120px;
  position: relative;
}
.lesson__description span::before {
  content: url("../images/yoga/point.png");    
  position: absolute; 
  left: -105px;
  top: -10px;
}
.section-menu__text {
  text-align: right;
  margin-top: 60px;
}

@media screen and (max-width:1200px){
  .section-menu {
  padding-top: 150px;
  }
.section-menu h3 {
  font-size: 2rem;
  padding-bottom: 60px;
}
  
  .section-menu__lesson-grid {
  grid-template-columns: 1fr;
/*  margin-top: 40px;*/
  margin: 20px auto 0;
  max-width: 500px;
}
}


@media screen and (max-width:768px){
  .section-menu {
  padding: 100px 30px 100px;
  }
  .section-menu h3 {
  padding-bottom: 30px;
}
  .section-menu__text {
  text-align: left;
  font-size: 1.4rem;
}
  .lesson__image {
  width: 100%;
  aspect-ratio: 550 / 350;
  border-radius: 10px;
}

.lesson__image img {
  border-radius: 10px;
}
   .lesson__text {
  margin-top: 15px;
}
  .lesson__text h4 {
  font-size: 1.6rem;
    margin-bottom: 15px;
    
}
  .section-menu__lesson-grid {
  row-gap: 60px;
/*  margin-top: 40px;*/
}

  .lesson__description span {
  margin: 20px 0 20px 100px;
}
.lesson__description span::before {
  top: -5px;
}
  

 }


/*料金*/


.section-menu__price {
  margin-top: 120px
}

.section-menu__price h3 {
  padding-bottom: 15px;
  border-bottom: 2px solid #333333;
  margin-bottom: 60px;
}


.lesson-price__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15%;
  row-gap: 40px;
  font-size: 1.5rem;
}
.lesson-price {
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.price {
  width: 195px;
}

.price-deco {
  position: relative;
}

.price-deco::after {
  content: url("../images/pilates/check.png");
  position: absolute; 
  top:-30px;
  right: -50px
}

@media screen and (max-width:1200px){
  .lesson-price__wrap {
  grid-template-columns: 1fr;
  column-gap: 15%;
  row-gap: 40px;
    max-width: 500px;
    margin: 0 auto;
}
}


@media screen and (max-width:768px){
  .lesson-price {
  font-size: 1.5rem;
    display: block
}
  .lesson-price__wrap {
    max-width: 400px;
  }
  .price {
    padding-left: 20px;
    width: auto;
  }
  
  .price-deco::after {
  right: 30px
}
 }





/*お客様の声*/
.section-voice {
  background-color: #f0beb2;
  padding: 40px 18.75% 80px;        
}
.section-voice h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-voice ul {
  list-style: none;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
}
.section-voice ul li{
  width: 280px;
  margin-right: auto;
  padding-right: 40px;
}
.section-voice ul li:last-child{
  margin-right: 0;
  padding-right: 0;
  width: 240px
}
.section-voice ul li img{
  height: 50px;
  margin-bottom: 45px;
}
.section-voice ul li div{
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.section-voice ul li p {
  font-size: 1.4rem;
  text-align: left;
}



@media screen and (max-width:1200px){
  
  
  
  .section-voice h3 {
    font-size: 2rem;
    padding-bottom: 60px;
  }
  
  .section-voice ul {
    max-width: inherit;
    width: 100%;
    display: block;
  }
  
  .section-voice ul li {
    
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    max-width: 500px;
  }
  
  .section-voice ul li:last-child {
    
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    max-width: 500px;
  }
}


@media screen and (max-width:768px){
  
   .section-voice {
    padding: 30px;
  }
  
}

  
/*voice装飾ウェーブ*/
.wave1{
    background-color: #fffffd;
    width: 100%;
    height: 160px;
    position: relative;
}
.wave1::after{
    content: "";
    background-image: url("../images/pilates/wave1_pilates.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 160px;
    position: absolute;
    left: 0;
    bottom: 0;
}
  
.wave2{
    background-color: #fffffd;
    width: 100%;
    height: 160px;
    position: relative;
}
.wave2::after{
    content: "";
    background-image: url("../images/pilates/wave2_pilates.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 160px;
    position: absolute;
    left: 0;
    top: 0;
}


@media screen and (max-width:768px){
  .wave1 {
    height: 100px;
  }
  .wave1::after {
    height: 100px;
  }
  
  .wave2 {
    height: 100px;
  }
  .wave2::after {
    height: 100px;
  }
}
  
  
  


/*インストラクター*/
.section-instructor {
  padding: 0 18.75% 120px;       
  margin-top: 140px;
}
.section-instructor h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-instructor ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
/*  justify-content: space-between;*//*インストラクター３人用*/
  justify-content: space-around;
  flex-wrap: wrap;
}

.section-instructor ul li {
  width: 33%;                 
  display: inline-block;
  margin-top: 60px;
}


.section-instructor img{
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}
.section-instructor__text {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
}
.section-instructor__text h4{
  font-size: 2rem;
  font-weight: normal;
  margin-top: 20px;
  
}
.section-instructor__text h4 a{
 text-decoration: none;
  
}
.instructor-more a{
  font-family:  'Montserrat', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid #333;
  margin-top: 60px;
}

.instructor-more {
  text-align: right;
  max-width: 1200px;
  margin: 60px auto 0;
}



@media screen and (max-width:1200px){
  
  .section-instructor h3 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  
  .section-instructor ul {
    max-width: 600px;
  }
  
  
  .section-instructor ul li {
    margin-top: 40px;
  }
    
  .section-instructor img {
    width: 130px;
    height: 130px;
}
  
  
  .section-instructor__text h4{
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .instructor-more a {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
}


@media screen and (max-width:768px){
  
  .section-instructor {
    
    padding: 0 30px 70px;
    margin-top: 50px;
  }
  
  .section-instructor ul {
    display: block;
  }
  
  .section-instructor ul li {
    width: 100%;
  }
  
  
  .instructor-more {
    margin-top: 40px;
  }
  
  .section-instructor img {
    width: 140px;
    height: 140px;
  }

}





/*スケジュール*/
.section-schedule {
  padding: 0 18.75% 220px;      
}
.section-schedule h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-schedule p {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}


@media screen and (max-width:1200px){
  
  .section-schedule h3  {
    font-size: 2rem;
    padding-bottom: 60px;
  }
}


@media screen and (max-width:768px){
  
  .section-schedule {
    padding: 0 30px 150px;
  }  
  
}





/*スタジオ*/
.section-studio {
  padding: 0 18.75% 220px;        
}
.section-studio h3{
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  padding-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-studio__text1,.section-studio__text2 {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  height: 26px;
}
.section-studio__text1 {
  margin: 0 auto;
}

.section-studio__text2 {
  margin: 60px auto 0;
}

.section-studio p{
  font-size: 1.8rem;
  display: inline;
  position: absolute;
  left: 0;
}
.section-studio a{
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid #333;
  position: absolute;
  right: 0;
}
.section-studio a:visited{
  color: #333;
}

.section-studio__text2 span {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(240, 190, 178, 0.6); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  font-size: 1.4rem;
  padding-left: 10px;
}



@media screen and (max-width:1200px){
  
  .section-studio h3 {
    font-size: 2rem;
    padding-bottom: 60px;
  }
  
  .section-studio__text1,.section-studio__text2 {
    height: auto;
  }
  
  .section-studio__text2 {
  margin: 40px auto 0;
}
  
  .section-studio p {
    font-size: 1.5rem;
    display: block;
    position: static;
    text-align: left;
    padding-bottom: 20px;
  }
  
  .studio-more {
    text-align: right;
  }
  .section-studio a {
    font-size: 1.4rem;
    position: static;
  }
  .section-studio__text2 span {
    font-size: 1.2rem;
  }
}


@media screen and (max-width:768px){
  
  .section-studio {
    padding: 0 30px 100px;
  }
  
}

/*フッター*/
.footer {
  background-color: #f0beb2;
}


/*フッターウェーブ*/
.wave__footer {
    background-color: #fffffd;
    width: 100%;
    height: 150px;
    position: relative;
}
.wave__footer::after{
    content: "";
    background-image: url("../images/pilates/wave_footer_pilates.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media screen and (max-width:768px) {
  .wave__footer {
    height: 80px;
  }
  .wave__footer::after {
    height: 80px;
  }
}











