/* * * 全体 * * */
:root{
  --font-main: "Noto Sans JP", serif;
  --font-sub: "Roboto", serif;

  --color-main: #E07B99;
  --color-black: #433934;
  --color-white: #FFFFFF;
  --color-purple: #A49AC6;
  --color-beige: #E2CCB5;
  --color-deep-beige: #D3B177;
  --color-brown: #52382F;

  --border-radius: 30px;

  --base-pc-size: 1400;
  --base-sp-size: 375;
  --color-text: #433934;
}

body{
  font-family: var(--font-main);
  color: var(--color-black);
}

a{
  transition: ease .3s;
}

a:hover{
  opacity: 0.7;
}

.pc{
  display: block;
}

.sp{
  display: none;
}

/* *{
  outline: 1px solid red;
}  */

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

  .pc{
    display: none !important;
  }
  
  .sp{
    display: block;
  }
  
}
/* * * 全体 /E * * */



/* * * Component * * */
/* * タイトル * */
.c-title{
  text-align: center;
}

.c-title__en{
  font-size: 12px;
  font-family: var(--font-sub);
  letter-spacing: 0.4em;
  color: var(--color-purple);
}

.c-title__ja{
  font-size: 36px;
  color: var(--color-main);
}

.c-title__ja .title-vd {
  font-size: 20px;
}

.p-price_key_text {
  font-size: 16px;
  color: var(--color-text);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-title{
    width: 100%;
  }

  .c-title__en{
    font-size: 10px;
    font-family: var(--font-sub);
    margin-bottom: 20px;
  }
  
  .c-title__ja{
    font-size: 24px;
    letter-spacing: 0.05em;
    line-height: 32px;
  }
}
/* * タイトル /E * */


/* * フォーム遷移 * */
.c-forms{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-weight: bold;
}

.c-forms-tel{
  color: var(--color-white);
  background-color: var(--color-main);
  text-decoration: none;
  width: 280px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px ;
}

.c-forms-contact{
  color: var(--color-white);
  background-color: var(--color-purple);
  text-decoration: none;
  width: 280px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 30px;
}

.c-forms-tel-info{
  text-align: center;
}

.c-forms-tel-info__text{
  font-size: 15px;
}

.c-forms-tel-info-tel{
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-forms-tel-info-tel__icon{
  width: 19px;
  margin-right: 4px;
}

.c-forms-tel-info-tel__tel{
  font-size: 24px;
  font-family: var(--font-sub);
  font-weight: 400;
}

.c-forms-tel-info-tel__date{
  font-size: 11px;
}

.c-forms-menu__arrow{
  width: 20px;
  margin-left: 23px;
}

@media screen and (max-width: 768px) {
  .c-forms{
    display: block;
    height: auto;
  }

  .c-forms-tel{
    margin: 0 auto 10px;
    height: 80px;
  }

  .c-forms-contact{
    margin: 0 auto;
    height: 80px;
  }

}
/* * フォーム遷移 /E * */
/* * * Component /E * * */


/* * * Utility * * */
.u-color-main{
  color: var(--color-main) !important;
}

.u-color-purple{
  color: var(--color-purple) !important;
}

.u-color-deep-beige{
  color: var(--color-deep-beige) !important;
}
/* * * Utility /E * * */



/* * * ファーストビュー * * */
.p-fv{
  position: relative;
  background-color: #F0F3EE;
}

.p-fv__bg{
  width: 100%;
}

.p-fv__h1{  
  font-size: 14px;
  font-weight: normal;
  color: var(--color-white);
  position: absolute;
  left: 4.3%;
  top: 92px;
}

.p-fv__logo{
  width: 200px;
  position: absolute;
  left: 4.3%;
  top: 0;
}

.p-fv-menu{
  font-weight: bold;
  display: flex;
  height: 80px;
  justify-content: flex-end;
  align-items: flex-start;
  position: absolute;
  right: 0;
  top: 0;
}

.p-fv-tel{
  color: var(--color-white);
  background-color: var(--color-main);
  text-decoration: none;
  width: 280px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv-contact{
  color: var(--color-white);
  background-color: var(--color-purple);
  text-decoration: none;
  width: 240px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv-kids{
  color: var(--color-black);
  background-color: var(--color-beige);
  text-decoration: none;
  width: 200px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv-tel-info{
  text-align: center;
}

.p-fv-tel-info__text{
  font-size: 15px;
}

.p-fv-tel-info-tel{
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-fv-tel-info-tel__icon{
  width: 19px;
  margin-right: 4px;
}

.p-fv-tel-info-tel__tel{
  font-size: 24px;
  font-family: var(--font-sub);
  font-weight: 400;
}

.p-fv-tel-info-tel__date{
  font-size: 11px;
}

.p-fv-menu__arrow{
  width: 20px;
  margin-left: 23px;
}

.p-fv__title{
  /* width: 720px; */
  width: 51.4vw;
  position: absolute;
  left: 11.5%;
  top: 17.5%;
}

.p-fv-point{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* width: 725px; */
  width: 51.8vw;
  position: absolute;
  left: 50%;
  bottom: -9%;
  transform: translate(-50%, -50%);
}

.p-fv-point__item{
  width: calc(190 / var(--base-pc-size) * 100vw);
}

.p-fv-point__item:first-of-type{
  width: calc(205 / var(--base-pc-size) * 100vw);
}

.p-fv__warning{
  font-size: 12px; 
  font-weight: bold;
  letter-spacing: 0.75px;
  color: var(--color-white);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.32);
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p-fv__h1{
    top: 1.5%;
    font-size: 10px;
  }

  .p-fv__warning{
    bottom: 1%;
  }

  .p-fv-menu{
    height: 60px;
  }

  .p-fv-menu-text{
    font-size: 12px;
  }

  .p-fv-tel-info__text{
    font-size: 12px;
  }

  .p-fv-tel-info-tel__tel{
    font-size: 18px;
  }
}

@media screen and (max-width: 768px){
  .p-fv__h1{
    font-size: 8px;
    top: 50px;
    left: 2%;
  }
  
  .p-fv__logo{
    width: 100px;
    left: 0;
  }

  .p-fv__title{
    width: calc(313 / var(--base-sp-size) * 100vw);
    left: 0%;
  }

  .p-fv-point{
    width: 100%;
    bottom: 9.5%;
    padding: 0 15px;
  }
  
  .p-fv-point__item{
    width: calc(100 / var(--base-sp-size) * 100vw);
  }

  .p-fv-point__item:first-of-type{
    width: calc(110 / var(--base-sp-size) * 100vw);
  }

  .p-fv-kids-sp{
    color: var(--color-black);
    background-color: var(--color-beige);
    text-decoration: none;
    width: 120px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
  }

  .p-fv-menu{
    position: relative;
    margin-top: -5px;
    height: 60px;
  }

  .p-fv-menu-text{
    font-size: 10.5px;
    font-weight: bold;
  }

  .p-fv-menu__arrow{
    width: 14px;
  }

  .p-fv__warning{
    font-size: 8px;
    bottom: 18%;
    text-align: center;
    width: 100%;
  }

  .p-fv-tel-info-tel__tel{
    font-size: 16.8px;
  }

  .p-fv-tel-info__text{
    font-size: 10.5px;
  }

  .p-fv-tel-info-tel__date{
    font-size: 7.7px;
  }

  .p-fv-tel{
    width: 50%;
  }

  .p-fv-contact{
    width: 50%;
  }
}
/* * * ファーストビュー /E * * */



/* * * おすすめ * * */
.p-recommend{
  position: relative;
}

.p-recommend__image{
  width: 100%;
}

.p-recommend-title{
  position: absolute;
  left: 50%;
  top: 21%;
  transform: translate(-50%, -50%);
}

.p-recommend-title .c-title__en{
  font-size: 0.9vw;
}

.p-recommend-title .c-title__ja{
  font-size: 2.6vw;
}

@media screen and (max-width: 768px) {
  .p-recommend-title .c-title__en{
    font-size: 2.6vw;
  }
  
  .p-recommend-title .c-title__ja{
    font-size: 5.8vw;
    line-height: 1.5;
  }  
}
/* * * おすすめ /E * * */



/* * * 特徴 * * */
.p-features{
  background-image: url('../img/features-bg.svg');
  background-size: cover;
  margin-top: -15vw;
  padding-bottom: 100px;
}

.p-features-title{
  padding-top: 18.8vw;
}

.p-features-content{
  margin: 70px auto 94px;
  max-width: 930px;
  padding: 0 25px;
}

.p-features-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.p-features-item__image{
  width: 380px;
  border-radius: var(--border-radius);
  object-fit: cover;
}

.p-features-item-info{
  /* padding-left: 45px; */
  padding: 0 80px 0 45px;
  margin-top: -50px;
}

.p-features-item-info__title{
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.075em;
  margin-bottom: 30px;
  position: relative;
}

.p-features-item-info__title::before{
  content: "";
  width: 120%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  right: 0;
  bottom: -20%;
}

.p-features-item-info__title::after{
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--color-black);
  border-radius: 100%;
  position: absolute;
  left: -20%;
  bottom: -20%;
  transform: translateY(40%);
}

.p-features-item-info__text{
  font-size: 15px;
  line-height: 25px;
}

/* 2枚目のリバース処理 */
.p-features-item--reverse{
  flex-direction: row-reverse;
}

.p-features-item-info--revers{
  /* padding-right: 45px; */
  padding: 0 45px 0 80px;
}

.p-features-item-info__title--revers{
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.075em;
  margin-bottom: 30px;
  position: relative;
}

.p-features-item-info__title--revers::before{
  content: "";
  width: 120%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  left: 0;
  bottom: -20%;
}

.p-features-item-info__title--revers::after{
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--color-black);
  border-radius: 100%;
  position: absolute;
  right: -20%;
  bottom: -20%;
  transform: translateY(40%);
}
/* 2枚目のリバース処理 /E */

.p-features-forms{
  margin-top: 50px;
}

@media screen and (max-width: 1200px) {
  .p-features-item-info{
    padding: 0 30px 0 45px;
  }

  .p-features-item-info--revers{
    padding: 0 45px 0px 30px;
  }
}

@media screen and (max-width: 768px) {
  .p-features{
    background-image: url('../img/features-bg-sp.svg');
    background-size: cover;
    margin-top: -19vw;
    padding-bottom: 1px;
  }
  
  .p-features-title{
    padding-top: 25.8vw;
  }
  
  .p-features-content{
    margin: 25px auto;
    padding: 0;
  }

  .p-features-item{
    display: block;
    margin-top: 33px;
  }

  .p-features-item__image{
    width: calc(315 / var(--base-sp-size) * 100vw);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 25px;
    height: calc(180 / var(--base-sp-size) * 100vw);
  }

  .p-features-item-info{
    padding: 0 25px;
    margin-top: -18px;
  }

  .p-features-item-info__title{
    font-size: 20px;
    margin-bottom: 12px;
  }

  .p-features-item-info__title::before{
    right: inherit;
    left: 0;
    width: 105%;
  }

  .p-features-item-info__title::after{
    left: 0;
  }

  .p-features-item-info__text{
    font-size: 14px;
  }

  .p-features-item-info__title--revers{
    font-size: 20px;
    margin-bottom: 12px;
  }

  .p-features-item-info--revers{
    padding: 0 30px;
  }
  
  .p-features-item--reverse .p-features-item__image{
    display: block;
    margin-left: auto;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    height: calc(180 / var(--base-sp-size) * 100vw);
    margin-bottom: 8px;
  }

  .p-features-item--reverse{
    margin-top: -20px;
    margin-bottom: -5px;
  }

  .p-features-item--reverse

  .p-features-item--reverse 
  .p-features-item-info--revers{
    padding: 0 25px;
  }

  .p-features-item-info__title--revers::before{
    left: inherit;
    right: 0;
  }

  .p-features-item-info__title--revers::after{
    right: 0;
  }

  .p-features-item:last-of-type{
    margin-bottom: -24px;
  }

  .p-features-forms{
    margin-bottom: 50px;
  }
}
/* * * 特徴 /E * * */



/* * * ダンススクールとは * * */
.p-what-is{
  background-image: url('../img/what-is-bg.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.75); /* 白色半透明 */
  padding: 95px 0;
}

.p-what-is__text{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 63px 0 52px;
}

.p-what-is-contents{
  max-width: 930px;
  margin: 0 auto;
  padding: 0 25px;
}

.p-what-is-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-what-is-item__image{
  width: 380px;
  border-radius: var(--border-radius);
}

.p-what-is-item__text{
  font-size: 15px;
  font-weight: bold;
  line-height: 25px;
  text-align: left;
  margin-left: 50px;
}

.p-what-is-item:first-of-type{
  margin-bottom: 40px;
  flex-direction: row-reverse;
}

.p-what-is-item:first-of-type .p-what-is-item__text{
  margin-left: 0;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .p-what-is{
    background-image: url('../img/what-is-bg-sp.jpg');
    padding: 50px 0 ;
  }

  .p-what-is__text{
    font-size: 18px;
    margin: 45px 0 25px;
  }

  .p-what-is-item{
    display: block;
  }

  .p-what-is-item:first-of-type{
    margin-bottom: 30px;
  }

  .p-what-is-contents{
    padding: 0 20px;
  }

  .p-what-is-item__image{
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 7px;
  }

  .p-what-is-item:first-of-type .p-what-is-item__text{
    margin-right: 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .p-what-is-item__text{
    margin-left: 0;
    font-size: 14px;
  }
}
/* * * ダンススクールとは　/E * * */



/* * * 初心者 * * */
.p-beginner{
  background-image: url('../img/beginner-bg.svg');
  background-size: 100%;
  padding-bottom: 100px;
  padding-top: 20px;
}

.p-beginner__title{
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.075em;
  line-height: 46px;
  text-align: center;
  color: var(--color-main);
  margin: 65px 0 35px;
}

.p-beginner-contents{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.p-beginner-item{
  width: 50%;
}

.p-beginner-item:last-of-type{
  margin-left: 27px;
}

.p-beginner-item__image{
  width: 95%;
}

.p-beginner-item-list{
  margin-bottom: 30px;
  margin-top: 25px;
  margin-left: -30px;
}

.p-beginner-item-list li{
  font-size: 18px;
  list-style: none;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  letter-spacing: -1.1px;
}

.p-beginner-item-list li::before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-heart.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 15%;
}

.p-beginner-item-text{
  font-size: 14px;
  line-height: 25px;
  max-width: 460px;
  margin-left: -31px;
  margin-top: -6px;
}

@media screen and (max-width: 768px) {
  .p-beginner{
    background-image: url('../img/beginner-bg-sp.svg');
    padding-bottom: 30px;
  }

  .p-beginner__title{
    font-size: 24px;
    line-height: 32px;
    margin: 30px 0 6px;
  }

  .p-beginner-contents{
    display: block;
  }

  .p-beginner-item{
    width: 100%;
    padding: 0 20px;
  }

  .p-beginner-item__image{
    margin-bottom: -13px;
  }

  .p-beginner-item:last-of-type{
    padding-left: 50px;
    margin-left: 0;
  }

  .p-beginner-item-list{
    margin-bottom: 40px;
  }

  .p-beginner-item-list li{
    font-size: 15px;
    padding-left: 25px;
  }

  .p-beginner-item-text{
    font-size: 14px;
  }
}
/* * * 初心者 /E * * */



/* * * レッスン * * */
.p-lesson{
  background-image: url('../img/lesson-bg.png');
  background-size: cover;
  padding: 80px 0 100px;
}

.p-lesson__text{
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  margin: 55px 0 10px;
}

.p-lesson__warning{
  font-size: 14px;
  text-align: center;
}

.p-lesson-photo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 51px;
}

.p-lesson-photo__image{
  width: calc(440 / var(--base-pc-size) * 100vw);
  object-fit: cover;
  border-radius: var(--border-radius);
}

.p-lesson-photo__image:first-of-type{
  margin-right: 30px;
}

.p-lesson-photo__image:last-of-type{
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .p-lesson{
    padding: 50px 0;
  }

  .p-lesson__text{
    font-size: 16px;
    margin: 30px 0 10px;
  }

  .p-lesson-photo{
    display: block;
    padding: 0 20px;
    margin-top: 16px;
  }

  .p-lesson-photo__image{
    width: 100%;
  }

  .p-lesson-photo__image:first-of-type{
    margin-right: 0;
    margin-bottom: 4px;
  }

  .p-lesson-photo__image:last-of-type{
    margin-left: 0;
  }
}
/* * * レッスン /E * * */



/* * * 講師 * * */
.p-teacher{
  padding: 80px 0 100px;
}

.p-teacher-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1010px;
  padding: 0 25px;
  margin: 75px auto 0;
}

.p-teacher-item{
  width: 280px;
}

.p-teacher-item__image{
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
}

.p-teacher-item__name{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.25em;
}

.p-teacher-item__name span{
  font-size: 26px;
}

.p-teacher-item__shikaku{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.025em;
  color: #787A77;
  margin-bottom: 14px;
}

.p-teacher-item__text{
  font-size: 15px;
  line-height: 25px;
}

@media screen and (max-width: 1200px) {
  .p-teacher-item{
    padding: 0 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-teacher{
    padding:  50px 0 0px;
  }

  .p-teacher-content{
    margin:  25px auto 0;
    display: block;
  }

  .p-teacher-item{
    width: 100%;
    margin-bottom: 15px;
  }

  .p-teacher-item__image{
    width: 180px;
    height: 180px;
    margin: 0 auto;
    display: block;
  }

  .p-teacher-item__shikaku{
    font-size: 15px;
  }

  .p-teacher-item__text{
    font-size: 14px;
  }
}
/* * * 講師 /E * * */



/* * * お客様の声 * * */
.p-voice{
  padding: 95px 0 103px;
  background-image: url('../img/voice-bg.jpg');
  background-size: cover;
}

.p-voice-contents{
  max-width: 950px;
  padding: 0 25px;
  margin: 33px auto 0;
}

.p-voice-item{
  background-color: var(--color-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}

.p-voice-item:nth-of-type(even){
  flex-direction: row-reverse;
}

.p-voice-item:last-of-type{
  margin-bottom: 30px;
}

.p-voice-head{

}

.p-voice-head__image{
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 12px;
}

.p-voice-head__info{
  font-size: 13px;
  font-weight: bold;
}

.p-voice-foot{
  margin-left: 40px;
}

.p-voice-item:nth-of-type(even) .p-voice-foot{
  margin-left: 0;
  margin-right: 40px;
}

.p-voice-foot__sub-title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.p-voice-foot__title{
  font-size: 23px;
  letter-spacing: 0.025em;
  font-weight: bold;
  margin-bottom: 20px;
}

.p-voice-foot__text{
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .p-voice{
    padding: 50px 0 45px;
  }

  .p-voice-contents{
    padding: 0 10px;
  }

  .p-voice-item{
    display: block;
    padding: 20px;
    margin-bottom: 20px;
  }

  .p-voice-head{
    display: flex;
    align-items: center;
  }

  .p-voice-head__image{
    width: 120px;
    height: 120px;
  }

  .p-voice-head__info{
    margin-left: 20px;
    margin-top: -15px;
  }

  .p-voice-foot{
    margin-left: 0;
  }

  .p-voice-foot__sub-title{
    font-size: 14px;
    text-align: center;
    margin: 8px 0 4px;
  }

  .p-voice-foot__title{
    font-size: 20px;
    text-align: center;
    margin-bottom: 12px;
  }

  .p-voice-foot__text{
    font-size: 14px;
  }

  .p-voice-item:nth-of-type(even) .p-voice-foot{
    margin-right: 0;
  }
}
/* * * お客様の声 /E * * */



/* * * 料金 * * */
.p-price{
  padding: 70px 0 105px;
}

.p-price__text{
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.075em;
  color: var(--color-deep-beige);
  margin: 70px 0 10px;
}

.p-price-member, .p-price-month{
  width: 490px;
  padding: 0 25px;
  text-align: center;
}

.p-price-member{
  margin: 0 auto 15px
}

.p-price-month{
  margin: 0 auto 15px;
}

.p-price-member__title, .p-price-month__title{
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .075em;
  padding: 3px 0;
  width: 100%;
  color: var(--color-white);
  background-color: var(--color-main);
  border-top: 2px solid var(--color-brown);
  border-left: 2px solid var(--color-brown);
  border-right: 2px solid var(--color-brown);
  border-bottom: 0.5px solid var(--color-brown);
}

.p-price-member__price{
  font-size: 32px;
  padding: 10px 0 0;
  border-left: 2px solid var(--color-brown);
  border-right: 2px solid var(--color-brown);
  border-bottom: 2px solid var(--color-brown);
  position: relative;
  top: -4px;
}

.p-price-member__price--yen{
  font-size: 24px;
  margin-left: 3px;
}

.p-price-member__price--small{
  font-size: 18px;
}


.p-price-month__course{
  font-size: 22px;
  font-weight: bold;
  padding: 10px 12px;
  color: var(--color-white);
  background-color: var(--color-main);
  border-right: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  /* position: relative; */
  /* top: -2px; */
}

.border-left-2 {
  border-left: 2px solid var(--color-brown) !important;
}

.border-bottom-2 {
  border-bottom: 2px solid var(--color-brown) !important;
}

.border-right-2 {
  border-right: 2px solid var(--color-brown) !important;
}

/* .p-price-month tr:nth-of-type(3) .p-price-month__course{
  top: -4px;
}

.p-price-month tr:nth-of-type(4) .p-price-month__course{
  top: -6px;
  border-bottom: 2px solid var(--color-brown);
} */

.p-price-month__price{
  font-size: 32px;
  padding: 4px 0;
  border-right: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  position: relative;
  top: -2px;
}

.p-price-month__price--yen{
  font-size: 24px;
  margin-left: 3px;
}

.p-price-month__price--small{
  font-size: 18px;
}

.p-price-month tr:nth-of-type(3) .p-price-month__price{
  top: -4px;
}

.p-price-month tr:nth-of-type(4) .p-price-month__price{
  top: -6px;
  border-bottom: 2px solid var(--color-brown);
}

.p-price-warning{
  font-size: 15px;
  text-align: center;
  line-height: 25px;
}

.custom-p-school-teacher {
  margin-left: 18px;
  padding-left: 0px !important;
}

.mg-bt-10 {
  margin-bottom: 10px;
}

.custom-item1,
.custom-item2,
.custom-item3,
.custom-item4,
.custom-item5 {
  border: 2px solid var(--color-brown);
}

@media screen and (max-width: 768px) {
  .p-price{
    padding: 35px 0 45px;
  }

  .p-price__text{
    font-size: 20px;
    margin-top: 25px;
  }

  .p-price-member, .p-price-month{
    width: 100%;
    padding: 0 35px;
  }

  .p-price-member{
    margin: 0 auto 20px;
  }

  .p-price-member__title, .p-price-month__title{
    font-size: 18px;
  }

  .p-price-member__price{
    font-size: 28px;
  }

  .p-price-member__price--yen{
    font-size: 22px;
  }

  .p-price-member__price--small{
    font-size: 13px;
  }

  .p-price-month__course{
    font-size: 15px;
  }
  
  .p-price-month__price{
    font-size: 28px;
  }

  .p-price-month__price--yen{
    font-size: 22px;
  }

  .p-price-month__price--small{
    font-size: 13px;
  }

  .p-price-warning{
    font-size: 12px;
    line-height: 18px;
  }

  .custom-p-school-teacher{
    margin-right: 20px;
  }
}
/* * * 料金 /E * * */



/* * * FAQ * * */
.p-faq{
  padding: 90px 0;
  background-color: #F6F3E9;
}

.p-faq-contents{
  width: 800px;
  padding: 0 50px;
  margin: 60px auto 0;
}

.p-faq-item{
  margin-bottom: 30px;
}


.p-faq-question{
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
  position: relative;
  padding-left: 50px;
}

.p-faq-question::before{
  content: "Q";
  text-align: center;
  font-size: 26px;
  color: var(--color-white);
  background-color: var(--color-main);
  height: 40px;
  width: 40px;
  padding-top: 5px;
  display: block;
  border-radius: 10px;
  position: absolute;
  top: -6px;
  left: 0;
  font-weight: normal;
}

.p-faq-question::after{/* 閉じている時 */
	content: "＋";
	position: absolute;
  font-size: 20px;
	right: 20px;
}

.p-faq-question.active::after{/* 開いている時 */
	content: "－";
}

.p-faq-answer{
  display: none;
  position: relative;
  margin-top: 30px;
  padding-left: 50px;

  font-size: 15px;
  line-height: 25px;
}

.p-faq-answer::before{
  content: "A";
  text-align: center;
  font-size: 26px;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  height: 40px;
  width: 40px;
  padding-top: 5px;
  display: block;
  border-radius: 10px;
  position: absolute;
  top: -6px;
  left: 0;
}

@media screen and (max-width: 1200px) {
  .p-faq-contents{
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .p-faq{
    padding: 40px 0 45px;
  }

  .p-faq-contents{
    width: 100%;
    padding: 0 10px;
    margin: 40px auto 0;
  }

  .p-faq-item{
    margin-bottom: 20px;
  }

  .p-faq-question{
    font-size: 16px;
    padding-right: 50px;
    line-height: 1.2;
    padding-top: 7px;
  }

  .p-faq-question::before{
    font-size: 22px;
    width: 36px;
    height: 36px;
    padding-top: 3px;
    top: 0;
  }

  .p-faq-answer{
    font-size: 14px;
  }

  .p-faq-answer::before{
    font-size: 22px;
    width: 36px;
    height: 36px;
    padding-top: 3px;
    top: -5px;
  }

  .p-faq-question::after{
    top: 0;
  }
}
/* * * FAQ /E * * */



/* * * 店舗一覧 * * */
.p-school{
  padding: 75px 0 120px;
}

.p-school-contents{
  max-width: 850px;
  padding: 1px;
  margin: 0px auto 0;
}

.p-school__place{
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.075em;
  color: var(--color-main);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-black);
  position: relative;
  padding-left: 20px;
   padding-top: 5px;
}

.p-school__place::after{
  content: '';
  width: 22px;
  height: 22px;
  border: 0;
  border-bottom: solid 1px var(--color-black);
  border-right: solid 1px var(--color-black);
  transform: rotate(45deg);
  position: absolute;
  top: 0%;
  right: 2%;
}

.p-school__place.active::after{
  content: '';
  width: 22px;
  height: 22px;
  border: 0;
  border-bottom: solid 1px var(--color-black);
  border-right: solid 1px var(--color-black);
  transform: rotate(-135deg);
  position: absolute;
  top: 20%;
  right: 2%;
}

.p-school-place{
  display: none;
  margin-top: -10px;
}

.p-school-place__name{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.075em;
  margin-bottom: 30px;
  position: relative;
  padding-left: 17px;
}

.p-school-place__name::after{
  content: "+";
  font-weight: 100;
  font-size: 32px;
  position: absolute;
  right: 12px;
  top: -40%;
}

.p-school-place__name.active::after{
  content: "−";
  font-weight: 100;
  font-size: 32px;
  position: absolute;
  right: 12px;
  top: -40%;
}

.p-school-place-contents{
  display: none;
}

.p-school-place-info{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-school-place-map{
  width: 260px;
  height: 260px;
  margin-left: 20px;
}

.p-school-place-address{
  margin-left: 20px;
  padding-top: 20px;
  width: 100%;
}

.p-school-place-address-item{
  font-size: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-black);
}

.p-school-place-address-item p:first-of-type{
  width: 22%;
  font-weight: bold;
  padding-left: 20px;
}

/* * レッスンスケジュール * */
.p-school-schedule{
  margin: 2px 0 10px;
  border-bottom: 1px solid var(--color-black);
  margin-left: 18px;
}

.p-school-schedule__title{
  font-size: 15px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.p-school-schedule__text{
  font-size: 15px;
}
/* * レッスンスケジュール /E * */


/* * 講師情報 * */
.p-school-teacher{
  padding-left: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-black);
}

.p-school-teacher__title{
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.p-school-teacher-contents{

}

.p-school-teacher-item{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;  
  margin-bottom: 20px;
}

.p-school-teacher__image{
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius);
}

.p-school-teacher-info{
  margin-left: 20px;
}

.p-school-teacher-info__name{
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.025em;
}

.p-school-teacher-info__shikaku{
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #787A77;
}

.p-school-teacher-info__text{
  font-size: 14px;
  line-height: 22px;
}

.p-shool__text{
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.075em;
  color: var(--color-deep-beige);
  text-align: center;
}
/* * 講師情報 /E * */

@media screen and (max-width: 768px) {
  .p-school{
    padding: 45px 0 40px;
  }

  .p-school-contents{
    margin: 50px auto 0;
    padding: 0;
    width: 100%;
  }

  .p-school__place{
    padding-left: 20px;
    padding-bottom: 15px;
  }

  .p-school__place::after{
    right: 20px;
  }

  .p-school-place__name{
    font-size: 16px;
    padding-left: 20px;
    padding-top: 10px;
    margin-bottom: 15px;
  }

  .p-school-place-info{
    display: block;
  }

  .p-school-place-map{
    width: 100%;
    height: 200px;
    padding: 0 20px;
    margin-bottom: 18px;
    margin-bottom: 4px;
    margin-left: 0;
  }

  .p-school-place-address{
    margin-left: 0;
    padding: 0 20px;
  }

  .p-school-place-address-item{
    display: block;
    font-size: 14px;
  }

  .p-school-place-address-item p:first-of-type{
    padding-left: 0;
    margin-bottom: 5px;
  }

  .p-school-schedule{
    margin: 0 20px;
    padding-bottom: 0px;
  }

  .p-school-teacher{
    margin-top: 0;
    padding: 15px 10px 0 20px;
  }

  .p-school-teacher__image{
    width: 80px;
    height: 80px;
    border-radius: 10px;
  }

  .p-school-teacher-info__name{
    font-size: 14px;
  }

  .p-school-teacher-info__shikaku{
    font-size: 12px;
  }

  .p-shool__text{
    font-size: 20px;
    margin-top: 50px;
  }
}
/* * * 店舗一覧 /E * * */


/* * * お問い合わせ * * */
.p-contact{
  background-image: url('../img/backgound-image.png');
  background-size: cover;
  padding: 75px 0 167px;
}

.p-contact-forms{
  margin-top: 70px
}

@media screen and (max-width: 768px) {
  .p-contact{
    background-image: url('../img/backgound-image-mb.png');
    background-size: cover;
    padding: 50px 0 103px;
  }
  
  .p-contact-forms{
    margin-top: 40px;
  }
}
/* * * お問い合わせ /E * * */



/* * * 協会概要 * * */
.p-overview{
  padding: 75px 0 80px;
  background-image: url('../img/overview-bg.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.46); /* 白色半透明 */
}

.p-overview__title{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.075em;
  text-align: center;
  margin: 45px 0 10px;
}

.p-overview__image{
  width: 210px;
  margin: 0 auto 20px;
  display: block;
}

.p-overview__text{
  width: 750px;
  padding: 0 25px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p-overview{
    padding: 55px 0 30px;
    background-image: url('../img/overview-bg-sp.jpg');
  }

  .p-overview__title{
    font-size: 15px;
    margin: 37px 0 10px;
  }

  .p-overview__image{
    width: 200px;
    margin: 0 auto 5px;
  }

  .p-overview__text{
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
  }
}
/* * * 協会概要 /E * * */



/* * * フッター * * */
.l-footer{
  padding: 60px 0 5px;
  background-color: var(--color-main);
}

.l-footer__text{
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  color: var(--color-white);
}

.l-footer__image{
  width: 200px;
  margin: 0 auto 30px;
  display: block;
}

.l-footer-copy{
  font-size: 12px;
  color: var(--color-white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .l-footer{
    padding: 28px 0 5px;
  }
  .l-footer__text{
    font-size: 16px;
  }

  .l-footer__image{
    width: 160px;
    margin: -17px auto 15px;
  }

  .l-footer-copy{
    font-size: 10px;
  }

  .event-schedule {
    padding-right: 0 !important;
  }
}
/* * * フッター /E * * */

.table-container {
  width: 100%;
  overflow: hidden;
  padding: 0 35px;
  position: relative;
}

.table-container-dropdown {
  padding: 0 0 0 10px;
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 25px;
}

.p-price-month__content {
  max-width: 400px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 400;
  padding-right: 10px;
}

.p-price-month__content-title {
  max-width: 550px;
}

.table-w-lg {
  table-layout: fixed;
  min-width: max-content;
  text-align: left;
  min-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}

.table-w-lg .p-price-month__price {
  padding-left: 10px;
  min-width: 145px;
}

.event-schedule {
  padding-right: 28px;
}
  
.event-schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 21px;
  min-width: 850px;
}

.event-schedule__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 2px solid #F6C0D1;
  border-radius: 16px;
  padding-top: 10px;
}

.event-schedule__box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.event-schedule__box-header .icon,
.for-adults__box h3 .icon {
  height: 18px;
  width: 18px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
  background-color: #433934;
}

.event-schedule__box-header p {
  padding: 4px 8px;
  border-radius: 32px;
  background-color: #FCEBEF;
  border: 1px solid #F6C0D1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0%;
}

.event-schedule__box-content {
  font-size: 13px;
}

.event-schedule__box-content span {
  font-family: 'Roboto';
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0%;
}

.event-schedule__box-content p {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0%;
  line-height: 25px;
  vertical-align: middle;
}

.event-schedule__box-content {
  letter-spacing: -0.5px;
}

.block {
  display: block;
}

.block.mt-2dot5 {
  margin-top: 14px;
}

.for-adults p {
  font-size: 15px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0%;
}

.label-schedule-map {
  margin-bottom: 17px !important;
}

.mt-4 {
  margin-top: 16px !important;
}

.for-adults__box {
  margin-top: 9px;
}

.for-adults__box h3 {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 15px;
  margin-bottom: 8px;
}

.for-adults__box p {
  font-size: 15px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0%;
  margin-bottom: 0;
}

.for-adults__box span {
  margin-right: 8px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0%;
  display: contents;
}

.color-yelow-content {
  color: yellow;
}

.for-adults__box.mt-5 {
  margin-top: 25px;
}

.for-adults__box.mt-4 {
  margin-top: 26px !important;
}

.mt-5 {
  margin-top: 20px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-5 {
  margin-bottom: 20px;
}

.event-schedule__title {
  font-size: 15px;
  font-weight: bold;
}

.event-schedule__text {
  font-size: 15px;
  margin-top: 10px;
}

.event-schedule.for-adults.mt-4 {
  margin-top: 21px !important;
}

.p-price-month__course.text-center {
    text-align: center;
    border-top: 2px solid var(--color-brown);
    border-right: 2px solid var(--color-brown);
    border-left: 2px solid var(--color-brown);
}

.mg-top-contact {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .table-w-lg {
    width: 1100px;
    table-layout: auto;
  }

  .p-price-month__content {
    max-width: 401px;
  }
}

@media screen and (max-width: 640px) {
  .event-schedule__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 11px;
  }
}

@media screen and (max-width: 480px) {
  .event-schedule__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
} 
  
/* 
.event-schedule-day {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-schedule-header {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-top: 2px;
}

.event-schedule-header .icon {
  height: 18px;
  width: 18px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
}

.event-schedule-header .day-name {
  letter-spacing: 2px;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 700;
}

.event-schedule-day img {
  width: 110px;
  object-fit: contain;
  z-index: 10;
}

.event-schedule-card {
  flex: 1;
  width: 100%;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 8px;
  transform: translateY(-8px);
}

.event-schedule-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  background-color: #FFFFFF;
  flex: 1;
  gap: 8px;
}

.event-schedule-box p {
  text-align: center;
  font-size: 15px;
  flex: 1;
  display: flex;
  align-items: center;
}

.event-schedule-box button {
  height: 32px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 4px;
  font-size: 14px;
  color: #FFFFFF;
}

.event-schedule-box button span {
  display: flex;
  height: 16px;
  width: 16px;
}

.text-yellow {
  color: #D3B177;
}

.bg-yellow {
  background-color: #D3B177;
}

.border-yellow {
  border-color: #D3B177;
}

.text-violet {
  color: #ADA4CC;
}

.bg-violet {
  background-color: #ADA4CC;
}

.border-violet {
  border-color: #ADA4CC;
}

.text-pink {
  color: #E07B99;
}

.bg-pink {
  background-color: #E07B99;
}

.border-pink {
  border-color: #E07B99;
}

.for-adults p {
  font-size: 15px;
}

.mt-8 {
  margin-top: 32px;
}

.for-adults-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-x-8 {
  column-gap: 32px;
}

.gap-y-4 {
  row-gap: 16px;
}

.ml-2 {
  margin-left: 8px;
}

.mb-11 {
  margin-bottom: 44px;
}

.for-adults-card {
  margin-top: 20px;
}

.for-adults-card__header {
  display: flex;
  align-items: end;
}

.for-adults-card__header span {
  transform: translateY(-10px);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
}

.for-adults-card__header .icon {
  height: 18px;
  width: 18px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
  transform: translateY(2px);
}

.w-26 {
  width: 104px;
}

.starts-line {
  height: 30px;
  margin-bottom: auto;
  margin-left: 10px;
}

.for-adults-card__list {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.for-adults-card__list li {
  padding: 0 10px;
  height: 46px;
  border-radius: 4px;
  border-width: 2px;
  border-style: solid;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.for-adults-card__list li img {
  width: 14px;
  height: 14px;
}

.for-adults-card__list li span {
  margin-left: 5px;
  margin-right: 12px;
  flex-shrink: 0;
  flex-grow: 0;
}

.for-adults-card__list li p {
  font-size: 13px;
}

.for-adults-2 p {
  font-size: 15px;
}

.for-adults-2 h3,
.for-adults-2 p,
.for-adults-2 span {
  font-size: 15px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .table-w-lg {
    width: 100% !important;
    padding: 0 35px !important;
    max-width: none !important;
  }
}

@media screen and (max-width: 640px) {
  .event-schedul-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .for-adult-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .event-schedul-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
} 

*/
.contact-form {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  margin-top: 56px;
  padding: 0 8px;
}

.form-control {
  padding: 0 0 30px;
  border-bottom: 1px solid #6FC8BC;
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-control label {
  font-weight: bold;
  vertical-align: top;
  line-height: 2;
  width: 100%;
  margin: 5px 0 0 7px;
}

.form-control select {
  height: 44px;
  padding: 5px;
  padding-left: 10px;
  border: none;
  background: #FFFFFF;
  border-radius: 0;
  line-height: 2;
  width: 100%;
  display: block;
}

.form-control select option {
  width: 100%;
}

.select-bar {
  position: relative;
  width: 100%;
  max-width: 475px;
  margin-top: 35px;
}

.select-bar svg {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

.mt-6 {
  margin-top: 19px;
}

.form-actions {
  margin-top: 30px;
  font-weight: bold;
  display: none;
}

.form-actions #how-apply {
  margin-top: 22px;
}

.form-actions #how-apply p {
  font-size: 10px;
  margin-top: 28px;
}

#form-btn-link {
  background: #46C4DB;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #808080;
  padding: 11px;
  color: #222222;
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

#how-apply-btn-link {
  background: #A0DCE7;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #808080;
  padding: 11px;
  color: #222222;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
}

.label-schedule {
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-top: 23px;
}

.purple-background {
  background-color: var(--color-purple);
}

.fs-15 {
  font-size: 15px;
  font-weight: bold !important;
}

.fs-12 {
  font-size: 12px;
  font-weight: 400 !important;
}

.table-w-lg-dropdown {
  min-width: 400px;
}

.p-price-warning-dropdown {
  font-weight: 400 !important;
}

.p-price-month__price_top {
  padding: 10px 0;
  line-height: 25px;
}

.d-none-pc {
  display: none !important;
}

.table-price-mb {
  border: 2px solid var(--color-brown);
  margin-bottom: 25px;
}

.table-price-mb .table-item {
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-main);
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

.table-price-mb .table-item.item1 {
  border-bottom: 2px solid var(--color-brown);
}

.table-price-mb .table-item.item2,
.table-price-mb .table-item.item3,
.table-price-mb .table-item.item4 {
  border-bottom: 2px solid var(--color-brown);
  padding: 10px 0 0 0px;
}
.table-price-mb .table-item.item5 {
  background-color: var(--color-purple);
  padding: 10px 0 0 0px;
}

.table-item .dropdown-item::after,
.table-item .dropdown-item::after,
.table-item .dropdown-item::after,
.table-item .dropdown-item::after {
  content: "＋";
  position: absolute;
  font-size: 18px;
  right: 40px;
}

.table-item .dropdown-item.active::after,
.table-item .dropdown-item.active::after,
.table-item .dropdown-item.active::after,
.table-item .dropdown-item.active::after
{
    content: "－";
}

.table-item .dropdown-item {
  padding-bottom: 10px;
}

.table-item .dropdown-item-title {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-brown);
}

.dropdown-content {
  display: none;
}

.dropdown-content .title-top {
  border-top: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  padding: 6px 0;
}

.dropdown-content .dropdown-description {
  font-size: 15px;
  line-height: 30px;
  background-color: var(--color-white);
  color: #433934;
  font-weight: 400;
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--color-brown);
}

.table-w-mb{
  min-width: auto;
  width: 100%;
}

.table-w-mb .p-price-month__course {
  width: 60%;
}

.table-w-mb .p-price-month__price {
  width: 40%;
}

.p-price-month__price_mb {
  background-color: white;
  border-right: 0px;
  border-top: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  color: #433934;
  top: 0px;
  line-height: 20px;
  font-weight: 400;
}

.border-right-0 {
  border-right: 0;
}

.custom-price-mb {
  border: 0px;
}

.border-top-0 {
  border-top: 0px;
}

.border-bottom-0 {
  border-bottom: 0px;
}

.custom-w-thead-before {
  width: 180px;
}

.custom-w-thead-after {
  width: 190px;
}

.pd-t-15 {
  padding-top: 15px !important;
}

.pd-bt-15 {
  padding-bottom: 15px !important;
}

.pinkbold {
  color: var(--color-main);
  font-weight: bold;
}

/* .dropdown-key-price {
  display: flex;
  width: 100%;
  align-items: center;
}

.dropdown-key-price .key-price-left {
  width: 70%;
  border-right: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
}

.dropdown-key-price .key-price-right {
  width: 30%;
  border-bottom: 1px solid var(--color-brown);
} */


@media screen and (max-width: 768px) {
  .contact-form {
    padding: 0 20px;
    margin-top: 37px;
  }

  .select-bar {
    margin-top: 16px;
  }

  .form-control {
    padding: 0 0 19px;
  }

  #form-btn p {
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
  }

  .mt-6 {
    margin-top: 11px;
  }

  .form-actions {
    margin-top: 34px;
  }

  #form-btn-link {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 14px 11px;
    margin-top: 11px;
  }

  #how-apply p{
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  #how-apply-btn-link {
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 14px 11px;
    margin-top: 11px;
  }

  .form-actions #how-apply p {  
    margin-top: 34px;
    line-height: 13px;
  }

  .p-school-schedule__title {
    margin-bottom: 15px;
  }

  .event-schedule__box {
    text-align: center;
    padding-bottom: 9px;
  }

  .event-schedule__box-header {
    justify-content: center;
    margin-top: 4px;
  }

  .label-schedule {
    font-weight: 700;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-top: 17px;
  }

  .event-schedule__box-header p {
    margin-right: -7px;
    padding: 4px 6px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0%;
  }

  .event-schedule__box-content span {
    font-family: Roboto;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0%;
  text-align: center;

  }

  .event-schedule__box-content {
    letter-spacing:0 ;
    margin-top: 3px;
  }

  .event-schedule__box-content p {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;

  }

  .mt-2dot5 {
    margin-top: 14px;
  }

  .for-adults__box {
      margin-top: 10px;
  }

  .for-adults__box span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0%;
    display: block;
    margin-top: 4px;
  }

  .for-adults__box p {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0%;
  }

  .mt-5 {
    margin-top: 23px;
  }

  .for-adults__box.mt-4 {
    margin-top: 23px !important;
  }

  .mt-8 {
    margin-top: 19px;
  }

  .block.mt-2dot5 {
    margin-top: 8px;
  }

  .label-schedule-map {
    margin-bottom: 14px !important;
  }

  .for-adults__box h3 {
    margin-bottom: 3px;
  }

  .scrollable{
      overflow-x:scroll;
  }

  .table-w-lg .p-price-month__price {
      min-width: 130px;
  }

  .table-w-lg-dropdown {
    width: auto;
    min-width: 600px;
  }

  .table-container-dropdown {
    padding: 0 10px;
  }

  .d-none-mb {
    display: none !important;
  }

  .d-none-pc {
    display: block !important;
  }

}

@media screen and (max-width: 1100px) {
  .event-schedule__grid {
    min-width: auto;
  }
}

@media (min-width: 770px) and (max-width: 930px) { 
  .contact-form {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 56px;
    padding: 0 8px;
  }
}

/* custom footer cta*/
.main-follow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 48px;
  column-gap: 48px;
  width: 100%;
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background-color: #ffeced;
}

@media only screen and (max-width: 768px) {
  .main-follow {
    -webkit-column-gap: 0;
    column-gap: 0;
    padding: 0;
  }
}

.main-follow .main-follow-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  white-space: nowrap;
  text-decoration: unset;
}

@media only screen and (max-width: 768px) {
  .main-follow .main-follow-tel {
    -webkit-column-gap: 4px;
    column-gap: 4px;
    width: 50%;
    padding-left: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .main-follow .main-follow-tel .main-follow-tel-img {
    width: 16px;
  }
}

.main-follow .main-follow-tel .main-follow-tel-tx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  column-gap: 16px;
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .main-follow .main-follow-tel .main-follow-tel-tx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.main-follow .main-follow-tel .main-follow-time {
  font-weight: 600;
  display: flex;
}

.main-follow .main-follow-tel .main-follow-time .main-follow-tag {
  padding: 0 12px;
  border-radius: 5px;
  margin-right: 8px;
  background-color: #fff;
}

.main-follow .main-campaign-btn {
  width: 580px;
}

.main-campaign-btn {
  width: 90%;
  max-width: 800px;
  height: 50px;
  border-radius: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  background-color: #ff4a59;
  text-align: center;
}

.flex-commention {
  display: flex;
  align-items: center;
}

.flex-commention img{
  margin-left: 5px;
  width: 43px;
}

@media only screen and (max-width: 768px) {
  .main-follow .main-campaign-btn {
    width: 50%;
    height: 60px;
    border-radius: 0;
  }
}

.main-follow-time {
  color: #333;
}

.main-tx-pink {
  color: #ff7782;
}

.main-tx-white {
  color: #fff;
}

.main-tx-05 {
  font-size: 1.625rem;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .main-tx-05 {
    font-size: 1rem;
  }
}

.main-tx-pink {
  color: #ff7782;
}

.main-tx-03 {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .main-tx-03 {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 800;
  }
}

.main-tx-09 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media only screen and (max-width: 768px) {
  .main-tx-09 {
    font-size: .7rem;
  }
}
@media only screen and (max-width: 768px) {
  .main-follow-time .main-follow-tag {
    display: none;
  }
}

/*----------------------------------
2023/8/5 夏季のお知らせ用スタイル
-----------------------------------*/

.p-seasonal__notice--summer {
	margin-bottom: -30px;
	font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 1.4px;
  line-height: 2.1;
}

@media only screen and (max-width: 768px) {
  .p-seasonal__notice--summer {
   margin-top: 100px;
   margin-bottom: 0;
 }
}
.p-seasonal__wrapper {	
  text-align: center;
  padding:0 20px 20px;
}

.sp-br {
	display: none;
}
@media only screen and (max-width: 768px) {
  .sp-br {
   display: block;
 }
}
@media only screen and (max-width: 769px) {
  .youtube {
   margin-top: 30px;
 }
}

.p-profile__contents {
  flex-wrap: wrap;
  gap: 50px;
}
.p-profile__contents .p-profile__content-box {
  flex: unset;
  width: calc(50% - 25px);
}
#swiper1 {
  max-height: 400px;
/*  max-width: 400px;*/
  height: 400px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*#swiper1 .swiper-slide{
  padding: 0 7px;
}*/



.custom-main-flow.main-follow {
  column-gap: 18px;
  -webkit-column-gap: 18px;
}

.custom-main-flow.main-follow .main-campaign-btn {
  width: auto;
  padding: 0 18px;
  text-decoration: unset;
}

.custom-main-flow .main-campaign-btn-text--sp {
  display: none;
}

.custom-main-flow .main-flow__line {
  position: relative;
  margin-left: 48px;
}

.custom-main-flow .main-flow__line-image {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(-50%, -100%);
  z-index: -1;
}

.custom-main-flow .main-flow__line-image img {
  width: 100px;
}

.custom-main-flow .main-flow__line-button {
  height: 50px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5fd62c;
  border-radius: 45px;
}

.custom-main-flow .main-flow__line-button-text {
  font-size: 1.425rem;
  color: #fff;
  font-weight: 600;
}

.custom-main-flow .main-flow__line-button-text--sp {
  display: none;
}

.custom-main-follow-tel-img {
  display: none;
}

@media screen and (max-width: 1440px) {
  .custom-main-flow.main-follow {
    justify-content: center;
    column-gap: 1.25vw;
    -webkit-column-gap: 1.25vw;
    padding: 0.694vw 0;
    padding-right: 1.563vw;
  }

  .custom-main-flow.main-follow .main-follow-tel {
    column-gap: 1.111vw;
    -webkit-column-gap: 1.111vw;
  }

  .custom-main-flow .main-follow-tel-img {
    width: clamp(18px, 1.667vw, 24px);
  }

  .custom-main-flow.main-follow .main-follow-tel .main-follow-tel-tx {
    column-gap: 1.111vw;
    -webkit-column-gap: 1.111vw;
  }

  .custom-main-flow.main-follow .main-follow-tel .main-tx-03 {
    font-size: clamp(25px, 2.5vw, 36px);
  }

  .custom-main-flow.main-follow .main-follow-tel .main-follow-time {
    font-size: clamp(12px, 1.111vw, 16px);
  }

  .custom-main-flow.main-follow .main-follow-tel .main-follow-time .main-follow-tag {
    padding: 0 0.833vw;
    border-radius: 0.347vw;
    margin-right: 0.556vw;
  }

  .custom-main-flow.main-follow .main-campaign-btn {
    padding: 0 1.25vw;
    height: 3.472vw;
    font-size: 1.583vw;
  }

  .custom-main-flow .main-flow__line {
    margin-left: 3.333vw;
  }
  
  .custom-main-flow .main-flow__line-image {
    left: -0.694vw;
  }

  .custom-main-flow .main-flow__line-image img {
    width: 6.944vw;
  }

  .custom-main-flow .main-flow__line-button {
    padding: 0 1.25vw;
    height: 3.472vw;
  }

  .custom-main-flow .main-flow__line-button-text {
    font-size: 1.583vw;
  }

}

@media screen and (max-width: 896px) {
  .custom-main-flow.main-follow {
    justify-content: center;
    padding-right: 0;
  }
}

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

  .custom-main-flow.main-follow {
    justify-content: start;
    padding: 0;
    column-gap: 0;
  }

  .custom-main-flow.main-follow .main-follow-tel {
    padding-left: 0;
    width: 50%;
    padding: 3px 10px 2px 20px;
  }

  .custom-main-flow .main-flow__line-image {
    display: none;
  }

  /* .custom-main-flow .main-follow-tel .main-follow-tel-img {
    display: none;
  } */

  /* .custom-main-flow .main-follow-tel .main-follow-tel-tx {
    display: none;
  } */

  .custom-main-follow-tel-img img {
    width: 50px;
  }

  .custom-main-flow .main-campaign-btn-text--pc {
    display: none;
  }
  
  .custom-main-flow .main-campaign-btn-text--sp {
    display: inline;
  }

  .custom-main-flow .main-flow__line-button-text--pc {
    display: none;
  }

  .custom-main-flow .main-flow__line-button-text--sp {
    display: inline;
  }

  .custom-main-flow.main-follow .main-campaign-btn {
    flex: calc(50vw - 25px);
    height: 50px;
    padding: 0;
    font-size: 20px;
    width: 50%;
  }

  .custom-main-flow .main-flow__line {
    flex: calc(50vw - 25px);
    color: initial;
    height: 50px;
    margin-left: 0;
  }

  .custom-main-flow .main-flow__line-button {
    height: 100%;
    border-radius: 0;
    padding: 0;
    background-color: #7ddd74;
  }

  .custom-main-flow .main-flow__line-button-text {
    font-size: 20px;
  }

  .custom-main-follow-tel-img {
    display: block;
  }

  .main-follow .main-follow-tel .main-follow-tel-img img {
    width: 20px;
  }
  .custom-main-flow.main-follow .main-follow-tel .main-tx-03 {
    font-size: 15px;
  }
}

.box-info {
  background-color: #FCEBEF;
  border: 1px solid #F6C0D1;
  padding: 1rem;
  margin-bottom: 2.5rem;
}

/*=========
accordion
=========*/

.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border: 1px solid #F6C0D1;
  padding: 1rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header:not(.open):hover {
  background-color: #f1f1ff;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header {
  background-color: #fff8fa;;
}
.accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
  background-color: #f1f1ff;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #F6C0D1;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #F6C0D1;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-left: 1px solid #F6C0D1;
  border-right: 1px solid #F6C0D1;
  border-bottom: 1px solid #F6C0D1;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .accordion_area .accordion_one .ac_header .i_box {
    right: 0.8rem;
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
  .accordion_area .accordion_one .ac_header .i_box:before {
    width: 15px;
  }
  .accordion_area .accordion_one .ac_header .i_box:after {
    height: 15px;
    right: 7px;
  }
  .accordion_area .accordion_one .ac_inner {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
}

/*=========
faq
=========*/

.p-faq__headinner {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-faq__headinner::before {
    font-size: 14px;
  }
  .p-faq__headinner p.p-faq__q-txt {
    font-size: 14px;
  }
}
.p-faq__bodyinner {
  display: block;
  position: relative;
  line-height: 1.5;
}}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-faq__bodyinner::before {
    font-size: 14px;
  }
  .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 14px;
  }
  .accordion_area .accordion_one .ac_header {
    padding: 1rem 2rem 1rem 1rem;
  }
  .box-info {
    font-size: 13px;
  }
}

.sns-link {
  display: flex;
  margin-right: 10px;
}
.sns-link a {
  width: 40px;
  margin-right: 10px;
}

.sns-link img {
  width: 100%;
}

.p-fv-menu {
  align-items: center;
}

@media screen and (min-width:769px) { 
  .sns-link-sp-01 {
    display: none;
  }
  .sns-link-sp-02 {
    display: none;
  }
}

@media screen and (max-width:768px) { 
  .sns-link {
    display: none;
  }
  .sns-link-sp-01 {
    position: absolute;
    top: 8px;
    right: 173px;
  }
  .sns-link-sp-02 {
    position: absolute;
    top: 8px;
    right: 133px;
  }
  .sns-link-sp-01 img, .sns-link-sp-02 img {
    width: 30px;
  }
}

/* end custom cta */
