@charset "UTF-8";

/****** 下層ページはヘッダー固定 ******/
.header{
  top: 0;
}

/****** ここから見出し ******/

.title_wrap{
  background: url(../images/info/mainvisual_info.png) no-repeat 20% center;
  background-size: cover;
  position: relative;
}

h2{
  width: 500px;
}


/****** ここからabout ******/

.about_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-bottom: 100px; */
}
.reverse{
  flex-direction: row-reverse;
}

.about_space_wrap{
  width: 100%;
  height: 80px;
  margin: 100px 0;
}
.space01{
  background: url(../images/deco/flower_03.png) no-repeat center center;
  background-size: contain;
}
.space02{
  background: url(../images/deco/flower_06.png) no-repeat center center;
  background-size: contain;
}


.about_pic{
  width: 50%;
}
.about_pic img{
  width: 100%;
}

.about_wrap{
  width: 40%;
}

.about_title{
  background-color: #fffdf1;
  text-align: end;
  width: 280px;
  padding-right: 10px;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 5px 5px 0px #34548f;
  position: relative;
}
.about_title::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px;
  height: 30px;
  background: url(../images/info/pin/pin_pink.png) no-repeat center center;
  background-size: contain;
  transform: scale(-1, 1) translateY(-50%);
}
.reverse .about_title::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px;
  height: 30px;
  background: url(../images/info/pin/pin_blue.png) no-repeat center center;
  background-size: contain;
  transform: scale(-1, 1) translateY(-50%);
}

.title_en01{
  width: 240px;
}
.title_en02{
  width: 315px;
}
.title_en03{
  width: 210px;
}

/****** ここからstaff ******/

.staff_flex{
  display: flex;
  justify-content: space-around;
}

.wrap01{
  width: 65%;
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.staff_detail{
  display: block;
  position: relative;
  width: 50%;
  margin: 0 30px;
  /* border-radius: 50%; */
  max-width: 320px;
  min-width: 200px;
}

.staff_layer{
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 83%;
  height: 83%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, .8);
  border-radius: 50%;
}

.staff_text{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.job{
  font-size: 20px;
}
.name{
  font-size: 32px;
}

.staff_detail>.staff_layer{
  transition: .3s;
}

.staff_detail:hover>.staff_layer{
  display: block;
}

/****** スタッフ紹介のポップアップ ******/
/*モーダルを開くボタン*/
.modal-open{
  cursor: pointer;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  /* max-width: 500px; */
  width: 800px;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  cursor: pointer;
}
.modal-close span{
  width: 60%;
  height: 2px;
  display: block;
  position: absolute;
  left: 20%;
  background-color: #34548f;
  transition: all .25s linear;
}
.modal-close span:nth-of-type(1){
  top: 20px;
  transform: rotate(225deg);
}
.modal-close span:nth-of-type(2){
  top: 20px;
  transform: rotate(135deg);
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  box-shadow: 2px 2px 2px #666;  
  border-radius: 15px;
  text-align: left;
  padding: 30px;
}

.staff_detail_modal,
.staff_name_flex,
.staff_sns_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.staff_detail_modal a{
  display: block;
}
.staff_pic_modal{
  width: 350px;
}
.staff_pic_modal img{
  width: 100%;
}

.staff_text_modal{
  width: 45%;
}
.staff_text_modal p{
  color: #34548f;
}

.staff_name_flex{
  width: 220px;
  padding-bottom: 40px;
  margin: 0 auto;
}
.name_ritsuko{
  width: 270px;
}
.name_kana{
  font-size: 24px;
}
.name_en{
  font-size: 18px;
}

.staff_sns_flex{
  width: 150px;
  margin: 0 auto 40px;
}
.insta_modal{
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/insta_blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: .3s;
}
.insta_modal:hover{
  background-image: url(../images/icon/insta_pink.png);
}
.youtube_modal{
  width: 40px;
  height: 40px;
  background-image: url(../images/icon/youtube_blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: .3s;
}
.youtube_modal:hover{
  background-image: url(../images/icon/youtube_pink.png);
}
.insta_modal_rakuto{
  width: 40px;
  height: 40px;
  margin: 0 auto 40px;
  background-image: url(../images/icon/insta_blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  transition: .3s;
}
.insta_modal_rakuto:hover{
  background-image: url(../images/icon/insta_pink.png);
}

.modal_underline{
  width: 100%;
  border-bottom: 1px solid #34548f;
  margin-bottom: 40px;
}

.staff_intro_modal{
  width: 90%;
  margin: 0 auto;
}

/****** ここからaccess ******/

.map{
  width: 100%;
  height: 50vh;
  margin-bottom: 80px;
}

.access_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
}

.access_image{
  width: 50%;
}

.access_wrap{
  width: 50%;
  padding-left: 100px;
}

.info_text{
  position: relative;
}

.info_address,
.info_tell,
.info_open,
.info_close,
.info_info,
.info_train,
.info_pay{
  margin-bottom: 20px;
}

.access_wrap a{
  display: block;
}

.info_text::before{
  content: '';
  position: absolute;
  top: 1px;
  left: -40px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}
.info_address::before{
  background-image: url(../images/icon/icon_address.png);
}
.info_tell::before{
  background-image: url(../images/icon/icon_tell.png);
}
.info_open::before{
  background-image: url(../images/icon/icon_open.png);
}
.info_close::before{
  background-image: url(../images/icon/icon_close.png);
}
.info_info::before{
  background-image: url(../images/icon/icon_info.png);
}
.info_train::before{
  background-image: url(../images/icon/icon_train.png);
}
.info_pay::before{
  background-image: url(../images/icon/icon_pay.png);
}

.info_tell{
  width: 110px;
}

.access_contact p{
  text-align: center;
  padding-bottom: 50px;
  line-height: 2;
}

/****** ここからスペシャルサンクス ******/
.student h2{
  background-color: transparent;
  box-shadow: none;
}
.student h2::before{
  content: none;
}

.thanks_message{
  width: 60%;
  min-width: 600px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.student_pic{
  width: 60%;
  min-width: 600px;
  margin: 0 auto;
  padding-bottom: 20px;
  filter: brightness(1.1) drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
}
.student_pic img{
  width: 100%;
}

.thanks_text{
  text-align: center;
}

/****** ここからメディアクエリ ******
*********************************/
@media screen and (max-width:900px) {

  .title_wrap{
    background-image: url(../images/info/mainvisual_info\ _min.png);
  }
  
  h2{
    width: 320px;
  }
  
/****** ここからabout ******/

  .about_flex{
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  .about_pic{
    width: 100%;
    padding-bottom: 30px;
  }
  .about_pic img{
    width: 100%;
  }

  .about_wrap{
    width: 100%;
  }

  .about_space_wrap{
    height: 50px;
    margin: 80px 0;
  }
  
  .about_title{
    width: 250px;
    margin-bottom: 30px;
  }

  .title_en01{
    width: 220px;
  }
  .title_en02{
    width: 280px;
  }
  .title_en03{
    width: 190px;
  }

/****** ここからstaff ******/

  .staff_flex{
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .wrap01,
  .wrap02{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .staff_detail{
    width: 45%;
    margin: 0 0 40px;
    max-width: none;
    min-width: 150px;
  }
  .wrap02 .staff_detail:last-child{
    margin-bottom: 0;
  }

  .job{
    font-size: 18px;
  }
  .name{
    font-size: 24px;
  }

  /****** スタッフ紹介のポップアップ ******/

  /*モーダル枠の指定*/
  .modal-body{
    width: 80%;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content{
    background: #fff;
    box-shadow: 2px 2px 2px #666;  
    border-radius: 15px;
    text-align: left;
    padding: 30px;
  }

  .staff_pic_modal{
    width: 50%;
  }
  .staff_pic_modal img{
    width: 100%;
  }

  .staff_text_modal{
    width: 45%;
    padding: 50px 0;
  }
  .staff_name_flex{
    display: block;
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
  }
  .name_ritsuko{
    width: 100%;
  }
  .name_kana{
    font-size: 20px;
    padding-bottom: 10px;
  }
  .name_en{
    font-size: 16px;
  }

  .staff_sns_flex{
    width: 120px;
    margin: 0 auto 30px;
  }
  .insta_modal{
    width: 30px;
    height: 30px;
  }
  .youtube_modal{
    width: 30px;
    height: 30px;
  }
  .insta_modal_rakuto{
    width: 30px;
    height: 30px;
    margin: 0 auto 30px;
  }

  .modal_underline{
    margin-bottom: 30px;
  }


/****** ここからaccess ******/

  .map{
    height: 40vh;
    margin-bottom: 50px;
  }

  .access_flex{
    display: block;
    padding-bottom: 80px;
  }

  .access_image{
    display: none;
  }

  .access_wrap{
    width: 450px;
    margin: 0 auto;
    padding-left: 80px;
  }

  .access_contact p{
    width: 80%;
    margin: 0 auto;
  }


/****** ここからスペシャルサンクス ******/
  .thanks_message{
    width: 80%;
    min-width: 0;
  }

  .student_pic{
    width: 80%;
    min-width: 0;
  }

  .thanks_text{
    font-size: 14px;
  }
}


@media screen and (max-width:480px) {

  h2{
    width: 260px;
  }

/****** ここからabout ******/

  .about_title{
    width: 225px;
    /* margin: 0 auto 40px; */
  }

  .about_space_wrap{
    height: 40px;
  }

  .title_en01{
    width: 195px;
  }
  .title_en02{
    width: 250px;
  }
  .title_en03{
    width: 175px;
  }

/****** ここからstaff ******/

  .staff_flex{
    display: none;
  }

  .staff_wrap{
    width: 80%;
    margin: 0 auto;
  }

  .staff_pic img{
    width: 80%;
    margin: 0 auto;
  }

  .staff_pic{
    width: 80%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .staff_pic img{
    width: 100%;
  }

  .staff_detail_min{
    margin: 0 auto;
  }

  .staff_text_min{
    text-align: center;
    margin-bottom: 20px;
  }
  .job_min{
    font-size: 20px;
  }
  .name_min{
    font-size: 24px;
  }

  .intro_text{
    text-align: center;
  }

  .insta_link{
    display: block;
    width: 40px;
    margin: 20px auto 0;
  }

  .sns_flex{
    display: flex;
    justify-content: space-between;
    width: 150px;
    margin: 20px auto 0;
  }

  .sns_flex a{
    display: block;
  }

  .sns_flex img{
    width: 40px;
  }


  /****** ここからaccess ******/

  .access_flex{
    padding-bottom: 50px
    ;
}

  .access_wrap{
    width: 280px;
    padding-left: 40px;
  }

  .access_contact p{
    text-align: start;
  }

/****** ここからスペシャルサンクス ******/

  .thanks_title_en{
    font-size: 24px;
  }

  .thanks_message{
    width: 90%;
    min-width: 0;
  }

  .student_pic{
    width: 90%;
    min-width: 0;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  .thanks_text{
    font-size: 12px;
  }
}