@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');


/*全体の設定*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #1d313b
}
p{
  line-height: 1.8;
}


/*ナビゲーション（ハンバーガーメニュー）*/
.c-header {
    align-items: center;
    background-color: white; /* カスタマイズしてください */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem; /* カスタマイズしてください */
    width: 100%;
  }
  
  .c-header__logo {
    color: #000; /* カスタマイズしてください */
    min-width: 80px; /* カスタマイズしてください */
    text-decoration: none;
  }
  
  .c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .c-header__list-item {
    list-style: none;
    text-decoration: none;
  }
  
  .c-header__list-link {
    color: #000; /* カスタマイズしてください */
    display: block;
    margin-right: 20px; /* カスタマイズしてください */
    text-decoration: none;
    padding: 10px 0px; /* カスタマイズしてください */
  }
  
  .c-header__list-link:hover {
    filter: opacity(0.6); /* カスタマイズしてください */
  }
  
  .c-hamburger-menu {
    position: relative;
  }
  
  @media screen and (max-width: 750px) {
    .c-hamburger-menu__list {
      background-color: white; /* カスタマイズしてください */
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      left: 0;
      padding: 2rem; /* カスタマイズしてください */
      position: absolute;
      transform: translateX(-100%);
      transition: 0.3s; /* カスタマイズしてください */
      top: 100%;
      width: 100%;
    }
  
    #hamburger:checked ~ .c-hamburger-menu__list {
      transform: translateX(0%);
      transition: 0.3s;
    }
  }
  
  .c-hamburger-menu__input {
    display: none;
  }
  
  .c-hamburger-menu__bg {
    background-color: #000; /* カスタマイズしてください */
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4; /* カスタマイズしてください */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  #hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
  }
  
  .c-hamburger-menu__button {
    display: none;
  }
  
  @media screen and (max-width: 750px) {
    .c-hamburger-menu__button {
      align-items: center;
      appearance: none;
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px; /* カスタマイズしてください */
      height: 32px; /* カスタマイズしてください */
      justify-content: center;
      width: 32px; /* カスタマイズしてください */
    }
  }
  
  .c-hamburger-menu__button-mark {
    background-color: #000; /* カスタマイズしてください */
    display: block;
    height: 1px; /* カスタマイズしてください */
    transition: 0.3s; /* カスタマイズしてください */
    width: 20px; /* カスタマイズしてください */
  }
  
  @media screen and (max-width: 750px) {
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(1) {
      transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(2) {
      opacity: 0;
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(3) {
      transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
      transform-origin: 0%; /* カスタマイズしてください */
    }
  }



/*ファーストビュー*/
#hero img{
    width: 100%;
}



/*夏期講習について*/
#message{
  padding: 20px;
  margin: 20px;

}
h1{
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}
.message_container{
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  margin: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.text_sub{
  text-align: center;
}



/*カレンダー*/
#calendar{
  background: white;
  text-align: center;
  padding: 20px;
  margin: 20px;
}
#calendar h2{
  padding-bottom: 30px;
}
.schedule{
  width: 100%;
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
  justify-content: center;
}
#calendar img{
 width: 300px;
}
.schedule_btn{
  font-weight: bold;
  font-size: 20px;
  width: 250px;
  height: 45px;
  margin: 0 auto;
  background: pink;
  border-radius: 20px;
  padding-top: 5px;
}





/*料金表*/
#price{
    background-color: white;
    padding: 20px;
    margin: 20px;
    text-align: center;
}
#price h2{
  padding: 20px;
}
.price_table{
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    max-width: 900px;
    text-align: center;
}
.price_table th, .price_table td{
    border: 2px solid #d2e8f1;
    padding: 1em;
}
.price_table thead th{
    background-color: #4d9bc1;
    color: #fff;
    border: 2px solid #4d9bc1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.price_table thead th:last-of-type {
    border-right: 2px solid #4d9bc1;
}
.price_table tbody th {
    color: #4d9bc1;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 787px) {
    .price_table {
      text-align: left;
    }   
    .price_table thead {
      display:none;
    }
    .price_table th, .price_table td {
      display: block;
      border: 0;
      border-bottom: 2px solid #e6f1f6;
    }
    .price_table tbody th{
      background: #4d9bc1;
      color:#fff;
    }
    .price_table td::before{
      content: attr(data-label);
      color: #4d9bc1;
      font-weight: bold;
      display: inline-block;
      width: 20%;
    min-width: 4em;
  }
}


/*キャンペーンのお知らせ*/
#news{
  background: #FFF1B7;
  text-align: center;
  padding: 30px;
}
.news_backcolor{
  align-items: center;
  background: white;

  margin: 0 auto;
  border-radius: 30px;
  padding: 30px;
}
.news_container{
  align-items: center;
}
.text_area{
  padding: 20px;
}
.news_btn{
  width: 270px;
  height: 60px;
  background: #EA6DA4;
  align-items: center;
  border-radius: 20px;
  margin: 0 auto;
  padding: 13px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.news_btn:hover{
  filter: opacity(0.6); /* カスタマイズしてください */
}
.news_btn a{
  color: white;
  text-decoration: none;
}



/*問い合わせ*/
#contact{
  background: #00a968;
  width: 100%;
  height: 80%;
  text-align: center;
  padding: 30px;
}

.contact_box h2{
  color: white;
  font-size: 30px;
  padding: 20px;
}
.box{
  display: flex;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  gap: 50px;
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 30px;
  flex-wrap: wrap;
}
.mail{
  margin: 0 auto;
}

.mail p{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00a968;
}
.contact_btn{
  background-color: #fff;
  border: solid 2px #00a968;
  color: #00a968;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 2em;
  font-weight: bold;
  border-radius: 20px;
}
.contact_btn:hover {
  color: #2f4f4f;
  background-color: #b0e0e6;
}

/*問い合わせのフォントサイズメディアクエリ*/
@media screen and (max-width: 787px){
  .contact_btn{
      font-size: 1.5em;
  }   
}
@media screen and (max-width: 430px){
.contact_btn{
    font-size: 0.9em;
}   
}

.phone{
  margin: 0 auto;
}
.phone p{
  color: #00a968;
  font-size: 18px;
  font-weight: bold;

}
.tell_namber{
  color: #00a968;
  font-size: 40px;
  font-weight: bold;
  text-decoration: none;
}
.tel_text p{
  font-size: 12px;
}

/*電話番号のフォントサイズメディアクエリ*/
@media screen and (max-width: 787px){
  .tell_namber{
      font-size: 3em;
  }
}
@media screen and (max-width: 430px){
.tell_namber{
    font-size: 1.3em;
}
}




/*フッター*/
footer{
  background: white;
  text-align: center;
  padding: 20px;
  margin: 20 0px;
}
footer img{
width: 200px;
}
footer p{
font-size: 14px;
}
.link a{
 margin: 20px;
 text-decoration: none; 
 color: black;
 font-size: 14px;
}
.link a:hover{
filter: opacity(0.6); /* カスタマイズしてください */
}
