@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/instructor/inst_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-instructor {
  padding: 100px 18.7% 220px;
  text-align: left;
}


.section-instructor ul {
 list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}
.section-instructor ul li {
  padding-top: 200px;
}

.instructor-profile {
  display: flex;
  margin-bottom: 100px;
}


.instructor-profile img {
  width: 15.62vw;
  height: 15.62vw;
  object-fit: cover;
  border-top-right-radius: 2.86vw;
  max-width: 300px;
  max-height: 300px;
}

.instructor-name {
  width: 100%;
  max-height: 300px;
  height: 15.62vw;
  position: relative;
}

.instructor-name h4 {
  font-size: 3.6rem;
   padding-left: 120px;
    font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  position: absolute;
    top: 50%;
  transform: translateY(-50%);
}

.instructor-profile__text {
  width: 100%;
  display: flex;
}

.instructor-profile__text dt {
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.instructor-profile__text dt span {
  font-size: 1.4rem;
}

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

.instructor-profile__text dd {
  margin-bottom: 40px;
  font-size: 1.4rem;
} 


.text1 {
  width: 40%;
  padding-right: 40px;
}

.text2 {
  width: 60%;
}



@media screen and (max-width:1200px){
  
  .section-instructor ul li {
    padding-top: 110px;
  }
  .section-instructor ul li:first-child {
    padding-top: 80px;
  }
  
  .instructor-profile {
    margin-bottom: 80px;
  }
  
  
  .instructor-name h4 {
    padding-left: 80px;
    font-size: 2.4rem;
  }
  
  
  .instructor-profile__text dt {
    font-size: 1.6rem;
  }
  
  .instructor-profile__text dt span {
  font-size: 1.2rem;
}
  
  .instructor-profile__text dt::before {
    border: 4px solid transparent;
	 border-left: 6px solid #333;
	 padding: 0;
	 margin: 0 5px 0 0;
  }
 
}

@media screen and (max-width:768px){
  
  .section-instructor {
    padding: 20px 0 150px;
  }
  
  .instructor-profile {
    margin-bottom: 10vw;
  }
  
  .instructor-name {
    height: 46.15vw;
    max-height: 250px;
  }
  
  .instructor-name h4 {
    padding-left: 0;
    top: 50%;
  left: 35%;
  transform: translateY(-50%) translateX(-35%);
    
  }
  
  .instructor-profile img {
    width: 46.15vw;
    height: 46.15vw;
    border-top-right-radius: 8.2vw;
    max-width: 250px;
    max-height: 250px;
    
  }
  
  .instructor-profile__text {
    padding: 0 30px;
    display: block;
  }
  
  .text1 {
    width: 100%;
    padding-right: 0;
  }
  
  .text2 {
    width: 100%;
  }
}


/*ヒストリー*/
.section-history {
  padding: 0 18.7% 220px;
  text-align: left;
  position: relative;
}
.section-history h3 {
   font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.section-history ol {
  max-width: 1200px;
  margin: 0 auto;
}
.section-history ol li{
  margin-bottom: 40px;
 list-style: none;
  padding-left: 40px;
  border-left: 2px solid #333;
  width: 40vw;
  max-width: 750px;
}
.section-history ol li:last-child{
  margin-bottom: 0;
}
.section-history ol li time{
   font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 30px;
}

.history-img1 {
    position: absolute;
  width: 15vw;
  height: 22vw;
  object-fit: cover;
}


.history-img2{
  position: absolute;
  width: 12vw;
  height: 12vw;
  object-fit: cover;
}

.history-img1 {
  right: 18.7%;
  bottom: 28vw;
}
.history-img2 {
  right: calc( 18.7% + 11vw );
  bottom: 18vw;
}

@media screen and (max-width:1200px){
   .section-history h3{
    font-size: 2rem;
  }
  .section-history ol li{
    font-size: 1.5rem;
    width: 100%;
  }
  .section-history ol li time{
    font-size: 1.8rem;
  }
  .history-img1 {
    width: 30vw;
    height: 20vw;
    object-position: center 20%;
  }
  
  
  .history-img2{;
  width: 18vw;
  height: 18vw;
  }
  .history-img {
    margin: 80px auto 0;
    display: block;
    position: relative;
    height: 34vw;
  }
  .history-img1{
    position: absolute;
    top:0;
    left: 9vw;
    
  }
   .history-img2{
    position: absolute;
     right: 9vw;
     top: 16vw;
  }
}

@media screen and (max-width:768px){
  .section-history {
    padding: 0 30px 100px;
  }
  .section-history h3 {
    margin-bottom: 60px;
  }
  .history-img1 {
    width: 45vw;
    height: 30vw;
    top:0;
    left: 13vw;
  }
  
  
  .history-img2{
    width: 27vw;
    height: 27vw;
    top: 23vw;
    right: 13vw;
  }
  .history-img{
    margin: 40px auto 0;
    height: 50vw;
  }
  
}


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


/*フッターウェーブ*/
.wave__footer {
    background-color: #fffffd;
    width: 100%;
    height: 150px;
    position: relative;
}
.wave__footer::after{
    content: "";
    background-image: url("../images/common/wave_footer.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;
  }
}










