body{
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  background-color: #FFF9E6;
}

.navbar {
  height: 80px;
  background-color: transparent !important; /* ナビゲーションバーも透明に */
  box-shadow: none !important;
}

.container-fluid img{
  width: 150px;
  display: inline-block; /* 横並びにする */
}

button,
button:focus,
button:active,
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none !important; /* すべてのbox-shadowを無効化 */
  outline: none !important;    /* フォーカスのアウトラインも無効化 */
  border-color: transparent;  
}
/* ハンバーガーメニューの線を濃くする */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='10' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent; /* 背景を透明に */
  box-shadow: none; /* 影を削除 */
}

.btn-primary {
  border-radius: 25px; /* 丸みを調整 */
  padding: 10px 20px; /* 内側の余白 */
  background-color: #e45f2b;
  border: #e45f2b;
  font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-weight:bold;
}

.container-fluid img {
  width: 100px;
  
}

.img-taiken {
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバー時のアニメーション */
  display: block; /* 画像をボタン中央に配置 */
  background-color: transparent; /* 背景を透明 */
  border: none; /* 余分な枠を削除 */
  border-radius: 20px;
 
}

/* ホバー時のエフェクト */
.img-taiken:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3); /* 影を強調 */
  background-color: #f8f9fa; /* 背景色を少し薄く */
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.1s ease; 
  opacity: 0.85;
}

button {
  background-color: transparent; /* 背景色を透明に */
  border: none; /* ボーダーをなくす */
  padding: 0; /* 余白をリセット */
}

.img-taiken:active {
  transform: translateY(5px); /* クリック時に5px下に移動 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* 影を浅くして押された感を出す */
}

.navbar-toggler-icon {
background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"%3E%3Cpath stroke="black" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3E%3C/svg%3E');
}

.navbar {
  height: 80px;
}

/* 無料体験ボタンのスタイル */
.img-taiken {
  display: block;
  background-color: transparent;
  border: none;
}

/* ここからmain*/

main{
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 200px;
}

.slider {
width: 100vw; /* ビューポート幅の100% */
  position: relative;
  overflow: hidden; /* 画像がはみ出ないようにする */
}

.video-background {
  position: relative;
  width: 100%;
  height: 85vh; /* 画面全体を動画に */
  overflow: hidden;
}

.video-background .video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: contain; /* スマホは引き気味に全体を見せる */
  background-color: black; /* 余白部分は黒で埋める */
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5); /* 👈 0.3 → 0.5に変更で暗さUP */
}



/* 全体配置 */
.topText {
  position: relative;
  width: 87.5%;
  max-width: 1280px;
  margin: 0;            /* 👈 autoを消して左寄せ */
  position: relative;
  top: -5vh;           /* 👈 上方向に調整したいならここで */
  left: 5%;             /* 👈 画面の左から少し余白をとる */
  color: #fff;
  text-align: left;
}


/* サブメッセージ */
/* 強制的に見えるようにテスト */
.message-sub {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 10;   /* 👈 背景動画より前に出す */
}


.message-sub .break {
  display: block;
}

/* メインタイトル */
.message {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.message .break {
  display: block;
}

/* ニュース部分 */
.news {
  margin-top: 1rem;
}

.news__date {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.news__headline {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.news__headline:hover {
  text-decoration: underline;
}

.slider-text {
  text-align: center;
  /* 横幅制限で読みやすく */
  line-height: 1.8;
  margin-bottom: 100px;
}

.next-text h1 {
  font-size: 0.8rem;   /* 大きめ */
  font-weight: 400;
  margin-bottom: 20px;
}

.next-text h1 .highlight {
  color: #00AEEF;      /* アクセントカラー（KUMON風の水色） */
  font-weight: 400;
}

.next-text {
  text-align: center;
  /* 横幅制限で読みやすく */
  line-height: 1.8;
  margin-bottom: 50px;
}

.slider-text h1 {
  font-size: 0.8rem;   /* 大きめ */
  font-weight: 400;
  margin-bottom: 20px;
}



.slider-text h2 {
  font-size: 0.8rem;   /* 小さめ */
  font-weight: 400;    /* 細字で柔らかく */
  color:black;         /* グレーで落ち着いた印象 */
  line-height: 1.8;
}


.video-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center; /* 横方向中央 */
  align-items: center;     /* 縦方向中央（高さがある場合） */
  width: 100%;
}


.sliderText {
  width: 300px;
  height: 200px;
  position: relative;
}

.img_boxText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  opacity: 0; /* 初期状態で画像が見えない */
}

.news-section {
  margin: 60px auto;
  max-width: 800px;
}

.news-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.news-section .subheading1 {
  display: block;
  font-size: 0.9rem;
  color: #00AEEF; /* アクセントカラー */
  margin-bottom: 5px;
}

.news-list {
  border-top: 1px solid #ddd;
}

.news-list dt {
  font-size: 0.9rem;
  color: #888;
  margin-top: 20px;
}

.news-list dd {
  margin: 5px 0 20px 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.news-list dd a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s;
}

.news-list dd a:hover {
  color: #00AEEF; /* ホバーで青く */
}

.news-list dd h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.txt_r {
  text-align: right;
  margin-top: 20px;
}

.bt01 {
  color: #00AEEF;
  font-weight: 600;
  text-decoration: none;
}

.bt01:hover {
  text-decoration: underline;
}



@keyframes textslideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) ;
  }

  40% {
      opacity: 0;
      transform: translateY(50px);
    }

  70% {
      opacity: 1;
      transform: translateY(0px);
    }


  100% {
      opacity: 1;
      transform: translateY(0);
    }
}

.img_boxText.active {
  opacity: 1;
  animation:5s textslideIn  forwards;
  transition: transform 0.5s ease-in-out;
}

.img_boxText img {
  width: 100%; /* 親要素の幅に合わせる */
  height: auto; /* 比率を保ちながら高さを調整 */
  object-fit: contain; /* 画像全体を表示 */
  filter: brightness(1.2); /* 鮮明に見せるため明るさを少し上げる */
}


/*ナビゲーションメニュー*/
.offcanvas{
  background-color:#17AFD1;
 
}

.offcanvas-header{
  margin-left: 10px;
  margin-top: 10px;
}

.offcanvas-body{
  margin-left: 20px;
}

.nav-link{
  font-size: 24px; /* 文字サイズを大きく設定 */
  font-weight: bold;
  font-family: 'sans-serif'; /* 希望するフォントを指定 */
}

.nav-item{
  margin-bottom: 20px;
  border-left: 5px solid #eee8a9;
  padding-left: 10px;
  
}

.nav-item p{
  margin: 0;
  color:black;
  font-size: small;
  font-weight: bold;
}

.navbar-nav .nav-link.active {
  color: white;
}


.nav-link{
  padding: 0;
}


/* ここからクラブ紹介 */

.about,.coach,.reserve{
margin-bottom:50px;
font-weight: bold;
font-style: normal;
line-height:1.6;
padding-left: 10%;
padding-top:80px ;
padding-bottom:80px;
margin: 0;
}


.about{
  background-color:#f3e188 ;

}

.reserve{
  background-color: #75EAFB;
}

.coach{
  background-color: #ff9966;
  padding-left: 0;
}

.vison-title {
  position: relative; /* 画像を基準に要素を配置 */
  display: inline-block;
  width: 100%;
  max-width: 500px; /* 必要に応じて調整 */
  margin-bottom: 30px;
}

.vison-title img {
  display: block;
  width: 100%;
  height: auto;
  z-index: -1; /* 背面に画像を配置 */
}

.vison-title p {
  position: absolute;
  top: -20px; /* 左上に配置 */
  left: -15px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  z-index: 1; /* 画像の上に表示 */
  margin: 0;
  line-height: 1;
}



.vison-title h2 {
  position: absolute;
  bottom: -20px; /* 左下に配置 */
  left: -10px;
  color: whitesmoke;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.25;
  z-index: 1; /* 画像の上に表示 */
  margin: 0;
}

.vison-text1 {
  font-size: 30px;
  line-height: 1.3;
}

.vison-text2{
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.vison-title-coach {
  position: relative; /* 画像を基準に要素を配置 */
  display: inline-block;
  width: 100%;
  max-width: 500px; /* 必要に応じて調整 */
  margin-bottom: 30px;
}

.vison-title-coach img {
  display: block;
  width: 100%;
  height: auto;
  z-index: -1; /* 背面に画像を配置 */
  padding-right: 10%;
}

.vison-title-coach p {
  position: absolute;
  top: -20px; /* 左上に配置 */
  right: 25px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  z-index: 1; /* 画像の上に表示 */
  margin: 0;
  line-height: 1;
}


.vison-title-coach h2 {
  position: absolute;
  bottom: -20px; /* 左下に配置 */
  left: 30px;
  color: whitesmoke;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.25;
  z-index: 1; /* 画像の上に表示 */
  margin: 0;

}

.vison-text1-coach {
  font-size: 30px;
  line-height: 1.3;
}

.vison-text2-coach{
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

.main-text-coach{
  padding-left: 10%;
}



.btn,
a.btn,
button.btn {
font-weight: 700;
line-height: 1.5;
position: relative;
display: inline-block;
padding: 1rem 4rem;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-transition: all 0.3s;
transition: all 0.3s;
text-align: center;
vertical-align: middle;
text-decoration: none;
letter-spacing: 0.1em;
color: #212529;
border-radius: 0.5rem;
}

a.btn-svg {
font-weight: 700;
line-height: 54px;

width: 204px;
height: 54px;
padding: 0;

cursor: pointer;
text-decoration: none;

background-color: transparent;
}

a.btn-svg svg {
position: absolute;
top: 0;
left: 0;

width: 100%;
height: 100%;
}

a.btn-svg svg rect {
-webkit-transition: all 400ms ease;
transition: all 400ms ease;

stroke: #000;
stroke-width: 2;
stroke-dasharray: 200px, 16px;
stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
stroke-dashoffset: 284px;
background-color: wheat;
}

a.btn-svg span {
color: #000;
}

.more-button a:hover{
  background-color: white;
}

.top-text{
    font-family: "Noto Sans JP", serif;
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
}

.top-text-1{
  margin-top: 50px;
  margin-bottom: 20px;
  text-align: center;
}

.top-text-2
{
  margin-top: 50px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {

  main{
    width: 50vw;
    margin-left:auto;
    overflow: hidden;
  }

  .ST{
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
  }
  
  

  .slider {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;

  
  }

  .sliderText {
    position: fixed;
    z-index: 2;
    top: 630px;
    left: 0;
    bottom: 0;
    width: 300px;
    height: 110px;
    background-color: #FFF9E6;
  }

  .slider-title {
    position: absolute;
    bottom: 20px; /* 下から20pxの位置 */
    left: 20px; /* 左から20pxの位置 */
    font-size: 13px;
    color: white;
    z-index: 3; /* 画像の上に配置 */
  }

  .video-background {
    height: 100vh; /* 画面全体を動画に */
  }

  .img_boxText{
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 10px;
  }

  .coach{
  padding-left: 10%;
}

.main-text-coach{
  padding-left: 0;
}

.vison-title-coach img {
  padding-right: 0;
}

.vison-title-coach p {
  position: absolute;
  top: -20px; /* 左上に配置 */
  left: 470px;
}


.vison-title-coach h2 {
  position: absolute;
  bottom: -20px; /* 左下に配置 */
  left: -10px;

}
  /* footer*/

footer{

  width: 50vw;
  margin-left:50% ;
}


.Category1{
  padding-left:50px ;
}

.Category2{
    padding-left:100px ;
  }

.footerCategory {
    margin-bottom: 30px;
    margin-left: 30px;
  }

  .footerlogo{
    margin-left: 30px;
  }

 

  .footerCategory a{
    font-size: 16px;
  }

  .footerbottom{
    margin-left: 30px;
  }

.slider-title {
    font-size: 1.6rem; /* テキストを小さめに */
    padding: 0 10px;
}


}

/* ここからfooter */
footer{
background-image: url("images/footer.png"); 
background-size: cover; 
height: 60vh;
color: white;
position: relative;

}

.footerText{
  margin-left: 5%;
  padding-top: 12.5%;
  color: white;

}

.footerCategory {
  display: flex;
}

.footerCategory a{
  color: white;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.footerCategory a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footerCategory a:hover::before {
  width: 100%;
}


.footerCategory a:hover{
  border-bottom: #fff solid 1px;
  opacity: 0.8;
}

.footerCategory ul{
  list-style-type: none;
}


.footerCategory li{
  margin-bottom: 15px;
}

.Category1{
  padding-left: 0%;
}

.Category1,.Category2{
  margin-bottom: auto;
  border-bottom: #fff solid 1px;
}

.footerlogo{
  margin-top: 15px;
  float: left;
}

.footerlogo_insta{
  margin-top: 17px;
  margin-left: 15px;
  float: left;
}

.footerlogo_insta a :hover{
  opacity: 0.8;
}

.footerlogo img{
  width: 100px;
}



.footerbottom{
  position: absolute;
  bottom: 20px;
  font-size: 10px;
}

.footerbottom p{
  margin-bottom: 5px;
}

 /* ここからaboutページ */
 .About{
  font-family: "Noto Sans JP", serif;
  padding-left: 10%;
  padding-right: 10%;
}

.MainAbout {
  width: 100vw; /* ビューポート幅の100% */
  height: 90vh;
    position: relative;
    overflow: hidden; /* 画像がはみ出ないようにする */
  margin:0;
  }


  .MainAbout .MainImage img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* 横幅を100%に調整 */
    height: 100%; /* 高さを100%に調整 */
    object-fit: cover; /* アスペクト比を保ちながら画像全体を表示 */
    transform: translate(-50%, -50%); /* 中央に配置 */
  }

  .TopText{
    width: 100vw; /* ビューポート幅の100% */
    margin-top:5%;
    margin-bottom: 5%;

  }

  .TopText p{
    font-weight: 700;
    line-height: 1.5;
    color: #000000;
    font-size: 31px;

  }
  #TopText1, #TopText2 {
    opacity: 0;
    position: relative;
    transform: translateY(5px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }  
  
  #TopText1.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s; /* 表示の遅延を0秒に設定 */
  }
  
  #TopText2.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s; /* 表示を0.3秒遅らせる */
  }

  .Content{
    padding-bottom:100px;
  }

  .Feature{
    padding-top: 10%;
    padding-bottom: 15%;
    font-weight: 450;
  }

  .FeatureTitle{
    text-align: center;
  }

  .FeatureTitle span{
    font-size: 12px;
  }

  .FeatureTitle-E{
    color: #fff;
    font-size: 45px;
    font-weight: 900;
    margin: 0;
  }

  .FeatureTitle-JP{
    font-weight: 700;
    line-height: 1.5;
    font-size: 20px;
  }

  .FeatureImage{
    margin-bottom: 40px;
  }

  .FeatureTitle img{
    width: 80%;
  }

  .top-Image {
    margin-bottom: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; /* div を中央に配置 */
    text-align: center; /* 念のため中身も中央に */
}

.top-Image img {
    max-width: 100%; /* はみ出し防止 */
    height: auto;
    display: block;   /* 下の余白調整 */
    margin: 0 auto;   /* 念のため画像も中央に */
}



  .blockquote{
    background-color: rgb(230, 230, 230);
    color: #000;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    opacity: 0.7;
  }

  .green{
    background-color: #a9e3a0;
  }

  .yellow{
    background-color: #f3e188;
  }

  .blue{
    background-color: #75EAFB ;
  }

  .pink{
    background-color: #f4c2c2;
  }

  .gray{
    background-color: #dcdcdc;
  }


  @media (min-width: 992px) {

    .MainAbout {
      position: fixed;
      z-index: 2;
      top: 0;
      left: 0;
      bottom: 0;
      width: 50%;
      height: 100vh;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      overflow: hidden;

    }

      .About{
        width: 50vw;
        margin-left:auto;
        overflow: hidden;
        padding-left: 5%;
        padding-right: 5%;
      }

      .TopText{
        padding-left: 5%;
        margin-bottom: 2%;
      
      }

      .Feature{
        padding-top: 5%;
        padding-bottom: 7%;
        font-weight: 450;
      }

      #TopText1, #TopText2{
        opacity: 1;
      }
    }


     /* ここからcoachページ */
 .Coach{
  font-family: "Noto Sans JP", serif;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #ff9966;
  padding-bottom:100px;
}

.textcoach{
  font-size: 15px;
}

#TopText3 {
  opacity: 0;
  position: relative;
  transform: translateY(5px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  font-size: 15px;
  margin-bottom: 30px;
}  

#TopText3.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s; /* 表示を0.3秒遅らせる */
}

#TopText4 {
  opacity: 0;
  position: relative;
  transform: translateY(5px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  font-size: 15px;
  margin-bottom: 10px;
}  

#TopText4.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s; /* 表示を0.3秒遅らせる */
}



.coach-introduction{

  padding-top: 30px;
}


.coach-introduction p{
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
  font-size: 31px;
  margin-bottom: 5px;
}

.coach-Content{
  font-weight: 500;
  font-size: 15px;
}

.coach-Content p{
  margin-top: 30px;
  font-size: 17px;
  font-weight: 600;
  color: #FFF9E6;
}

.warning{
  color: #f8f9fa;
}




@media (min-width: 992px) {
    .Coach{
      width: 50vw;
      margin-left:auto;
      overflow: hidden;
      padding-left: 5%;
      padding-right: 5%;

    }

    #TopText3{
      opacity: 1;
    }
  }

  /* ここからreseve */

  @media (min-width: 992px) {

    .reservation{
      position: fixed!important;
      z-index: 2!important;
      top: 0!important;
      left: 0!important;
      bottom: 0!important;
      width: 50%!important;
      height: 100vh!important;
      background-size: cover!important;
      background-repeat: no-repeat!important;
      background-position: center!important;
      overflow: hidden!important;
    }


    .reservation-contents{
      width: 50vw!important;
      margin-left:auto!important;
      overflow: hidden!important;
      padding-left: 5%!important;
      padding-right: 5%!important;
      
    }

    .reservation-attention{
      display: none;
    }


  }

  .reservation{
    height: 60vh;
    position: relative;
    overflow: hidden; /* 画像がはみ出ないようにする */
  margin:0;
      }

  .reservation .reservation-topcontent img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* 横幅を100%に調整 */
    height: 100%; /* 高さを100%に調整 */
    object-fit: cover; /* アスペクト比を保ちながら画像全体を表示 */
    transform: translate(-50%, -50%); /* 中央に配置 */
  }


.reservation-contents{
  padding-bottom:100px;
  width: 100vw; /* ビューポート幅の100% */
  margin-top:5%;
  margin-bottom: 5%;
}


.reservation-topcontent img {
      height: 30vh;
      width: 100vw;
      margin:0;
      }
    

.reservation-toptext{ 
      margin-top: 40px;
      padding-left: 10%;
      padding-right: 10%;
      font-size: 14px;
      margin-bottom:100px;
    }

    .reservation-toptext p{ 
     text-align: center;
    }


    .r-1{
      font-size: 20px;
      font-weight: 500;
      
    }

    .r-2{
      color: #ff9966
    }

    .r-3{
      margin-top: 0px;
      font-size: 12px;
    }

    .reservation-toptext img{
      height: 10vh;
    }

     /* ここから予約フロー */

     .r-01 {
      text-align: center;
      font-weight: 500;
      font-size: 17px;
      margin: 0;
     }

     .r-02 {
      text-align: center;
      font-weight: 400;
      font-size: 10px;
     }

     .reservation-contents-toptext span{
      text-align: center;
      font-weight: 400;
      font-size: 10px;
      margin-bottom: 40px;

     }

    .reservation-contents{
      font-family: "Noto Sans JP", serif;
      padding-left: 10%;
      padding-right: 10%;
      padding-bottom:100px;
    }



    .card{
      font-size: 13px;
      border: 1px solid #17AFD1 ;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
      margin-top: 20px;
    }

    .card:hover{
      transform: translateY(-2px);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #f4c2c2;
    opacity: 0.8;

    }

    .card:active {
      transform: translateY(0);
      box-shadow: none; /* クリック時に影をなくす */
      border: 1px solid #f4c2c2;
      opacity: 0.8;
  }

    .card-title{
      margin-bottom: 0;
    }

    .card-body li{
      margin-top: 5px;
      margin-bottom: 5px;
    }

.reservation-attention{
  margin-top: 70px;
}

.reservation-attention-toptext p{
  font-size: 15px;
  text-align: center;
}

.reservation-attention-maintext{
  font-size: 13px;
  background-color: #eae9e9;
  opacity: 0.7;
  padding: 15px;
}

.reservation-attention-maintext p{
  margin: 0;
}


 /* ここから三島北小予約フォーム */
 @media (max-width: 990px) {
  .hidden{
    display: none;
  }
}

  @media (min-width: 992px) {

    .reservationDay{
      width: 50vw;
      margin-left:auto;
      overflow: hidden;
      padding-left: 5%;
      padding-right: 5%;
}

 }

.reservationDay{
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 100px;

}

.reservationDay ul{
  padding-left: 0;
}

.reservationDay li{
  list-style: none;
}

.map {
  aspect-ratio: 4/3;  /* 正方形にする */
  overflow: hidden; /* iframeがはみ出さないようにする */
  margin-bottom: 10px;
}

.form-check-input{
  text-align: center;
  margin-top: 2px;
}

input[type="checkbox"] {
  transform: scale(1.5); /* チェックボックスを1.5倍に拡大 */
  margin-right: 10px; /* 余白を調整 */
}

.checkbox{
  float;
}

.reservationDay-toptext{
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 3px;
  background-color: white;
  height: 100px;
  padding-left: 5%;
  padding-top: 5%;
  margin-bottom: 10px;
}

.reservationDay-toptext p{
  font-size: 10px;
  margin-bottom: 10px;
  color: white;
  }

.reservationDay-toptext span{
    background-color: #a9e3a0;
    padding:2px 30px 2px 30px;
    border-radius:20px;
    }

.reservationDay-toptext h1{
font-size: 15px;
}

.reservationDay-maintext{
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 3px;
  background-color: white;
  padding:5%;
  margin-bottom: 30px;
}

.reservationDay-maintext ul{
  color: #17AFD1;
  font-size: 12px;
}

.reservationDay-maintext li{
  color: black;
  padding-top: 1px;
  
}

.reservationDay h2{
  
  font-size: 15px;
}

.Daychioce{
  margin-bottom: 30px;
}

.Daychioce-choice {
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 10px;
  background-color: white;
  padding:2% 5% 2% 5%;
  font-size: 12px;
  display: flex;
  align-items: center; /* 縦方向に中央揃え */
  justify-content: space-between; /* 子要素を左右に配置 */
  margin-bottom: 10px;
}

.daycheck {
  height: auto; /* 高さを自動調整 */
  display: flex;
  align-items: center; /* テキストを縦方向に中央揃え */
}

.radio {
  display: flex;
  align-items: center; /* チェックボックスとテキストを縦方向に中央揃え */
}


.radio input {
  margin-left: 10px; /* チェックボックスとテキストの間隔 */
  width: 20px;
  height: 20px;
}

.TrialSelectDay{
  margin: 0;
}

.form-group{
  font-size: 12px;
}

.form-group p{
  margin: 0;
  
}

.width100 {
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding:2% 5% 2% 5%;
  margin-bottom: 10px;
}

.brothers{
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding:2% 5% 2% 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.brothers-hidden{
  display: none;
}

.nowidth{
  margin-left: 5px;
}

.form-group button{
  color:white;
  background-color: #17AFD1;
  border-radius: 10px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  padding:2% 5% 2% 0;
  margin-top: 30px;
  margin-bottom: 150px;
  font-size: 15px;
}

.form-group button:hover{
  opacity: 0.8;
}

.fieldset fieldset{
  background-color:white;
}

.fieldset label{
  align-items: center; /* 縦方向に中央揃え */
  justify-content: space-between; /* 子要素を左右に配置 */
}

/*ここから予約完了ページ */

.reservation_success{
  margin-top: 100px;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 100px;
}

.success_form{
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 10px;
  background-color: white;
  padding:5% 2% 5% 2%;
  font-size: 10px; 
}

.success_form p{
  margin: 0;
}

.success_top{
  text-align: center;
  margin-bottom: 30px;
}

.success_main{
  display: flex;
  justify-self: center;
  align-items: center;
  margin-top: 30px;
}

.success_main a {
  color: white;
  background-color: #17AFD1;
  border-radius: 10px;
  font-weight: 400;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center; /* 中央配置 */
  text-align: center; /* テキスト中央配置 */
  border: none;
  text-decoration: none; /* 下線を消す */
  padding: 10px 20px; /* ボタンの見た目を調整 */
  width: fit-content; /* ボタンの幅を適切にする（必要に応じて調整） */
}

@media (min-width: 992px) {

  .reservation_success{
    width: 50vw;
    margin-left:auto;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}
}

.login{
  color: white;
  text-decoration: none;
}

.cancel-toptext{
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 3px;
  background-color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.cancel-toptext h1{
  font-size: 15px;
  text-align: center;
  margin: 0;
  }

.cancel {
  margin-top: 30px;
}

/* ここから料金 */

.main-fee {
  width: 100vw; /* ビューポート幅の100% */
  height: 80vh;
    position: relative;
    overflow: hidden; /* 画像がはみ出ないようにする */
  }
  
.feeImage img{
  height: 80vh;
}

.fee-toptext{
  height: 20vh;
}

.fee-container{
  font-family: "Noto Sans JP", serif;
  padding-left: 10%;
  padding-right: 10%;
  text-align: center;
  margin-bottom: 100px;
}


.fee-header {
  background: #f4c2c2;
  padding: 10px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid #000;
  margin-bottom: 20px;
}

.other{
  margin-top: 20px;
}
.fee-section {
  background: #fdf7ef; /* 親要素の背景色 */
  margin-bottom: 50px;
  text-align: left;
  border: 1px solid #000;
  border-radius: 20px;
  overflow: hidden; /* はみ出し防止 */
  font-size: 0.8rem;
}

.fee-title {
  background: #75EAFB; /* 子要素の背景色 */
  color: black;
  padding: 8px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin:-1.5px;
  font-size: 0.8rem;
}

.fee-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* 下半分にだけ線を適用 */
  border-bottom: 1px solid #000; /* 下だけボーダー */
  border-left: 1px solid #000; /* 左の半分の線 */
  border-right: 1px solid #000; /* 右の半分の線 */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
}


.fee-span {
  display: flex;
  justify-content: space-between;
  font-size:0.8rem;
  padding-top:5px ;
  padding-bottom:5px ;
}

.fee-list{
  padding:5px 30px;
}

.fee-note {
  font-size: 10px;
  color: #555;
  text-align: left;
  margin-top: -50px;
  margin-bottom: 50px;
}

.fee-note ul {
  list-style: none;
  padding-left: 0;
}

.fee-note li {
  display: flex;
  align-items: center;
}

.other-section {
  background: #e6b9b9;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

.fee-box {
  background: #a2d5f2;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 10px;
}

.fee-section{
  margin-top: 10px;
}

.fee {
  background: #fdf7ef;
  padding: 10px;
  font-size: 14px;
  border-radius: 8px;
  margin-top: 5px;
}

.fee-list2 {
  display: flex;
  justify-content: center; /* 水平方向に中央配置 */
  align-items: center; /* 垂直方向に中央配置 */
  padding:25px 0 25px 0;
}

.fee-span2 {
  text-align: center;
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  justify-content: center;
  align-items: center;
  width: 100%;
}

.fee-subtitle {
  background: #e0f7fa;
  font-weight: bold;
  text-align: center;
  padding: 6px;
  border-radius: 12px;
  margin: 10px 15px 5px 15px;
  border: 1px solid #000;
}




@media (min-width: 992px) {
.fee-container{
  width: 50vw;
  margin-left:auto;
  overflow: hidden;
  padding-left: 5%;
  padding-right: 5%;
  padding-left: 5%;
  margin-bottom: 2%;
}

}

.Course-fee{
  margin-top: 50px;
  margin-bottom: 50px;
}

.entry-group{
  font-size: 13px;
  margin-top: 10px;
}



.dropdown-btn {
  border-bottom: 5px solid rgb(231, 228, 228) ;
  padding-top: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-bottom:10px ;
  display: flex;        /* フレックスボックスを適用 */
  justify-content: space-between; /* 左右の要素を両端に配置 */
  align-items: center;  /* 垂直方向の中央揃え */
  outline: none; /* デフォルトのフォーカス枠を削除 */
}

.dropdown-btn:active {
  border-bottom: 5px solid rgb(231, 228, 228);
}

.dropdown-btn::after {
  content: "▼";  /* プルダウンアイコン */
  font-size: 14px;
  color: #555;  /* アイコンの色 */
}

/* 文章のスタイル */
.dropdown-content {
  display: none;
  padding: 10px;
  background-color: white;
  border-radius: 5px;
}

.entry{
  margin-bottom: 150px;
}

/* 表示時のスタイル */
.entry_show {
  display: block;
}

.entry-form label{
  padding-left: 5px;
  padding-top: 5px;
}

.entry-toptext{
  border: 0.5px solid rgb(231, 228, 228) ;
  border-radius: 3px;
  background-color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.entry-toptext h1{
  font-size: 15px;
  text-align: center;
  margin: 0;
  }

  .entry-form label{
    margin-top: 5px;
  }

  .entry-form button{
    color:white;
    background-color: #17AFD1;
    border-radius: 10px;
    font-weight: 700;
    width: 100%;
    height: 100%;
    padding:2% 5% 2% 0;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 15px;
  }
  
  .entry-form button:hover{
    opacity: 0.8;
  }

  .access1_h1{
    text-align: center;
    font-size: 17px;
    margin-bottom: 30px;
 
  }

  #passwordInput {
    padding: 8px;
    margin: 10px 0;
    border: 2px solid #333;  /* 濃い色の枠線 */
    border-radius: 4px;
    box-sizing: border-box;
}

#passwordInput:focus {
    border-color: #000;  /* フォーカス時にさらに濃く */
    outline: none;  /* フォーカス時のアウトラインを消す */
}

.admin a{
  font-size: 10px;
  color: #dcdcdc;
  text-decoration: none;
}

.Course-fee{
  margin-bottom: -100px;
}

body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}
.faq-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.65rem;
}
.faq-question {
  cursor: pointer;
  position: relative;
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 4px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 15px;
  font-size: 1rem;
}
.faq-question.active::after {
  content: '-';
}
.faq-answer {
  display: none;
  padding: 10px 15px;
  margin-top: 5px;
  background-color: #fafafa;
  border-left: 4px solid #75EAFB;;
  border-radius: 4px;
}

main .reservation-top {
  margin-left: -30px;
  margin-right: -30px;
}

.reservation-top{
  margin-top: 100px;
}

/* 背景全体をグレーに */


/* pill型リンクボタン */
.cta-button {
  width: 100%;
  background-color: #f97316; /* オレンジ */
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 16px 24px;
  border-radius: 9999px; /* pill型 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* hover時 */
.cta-button:hover {
  background-color: #ea580c; /* 濃いオレンジ */
}

/* クリック時 */
.cta-button:active {
  transform: scale(0.97);
}

/* テキスト部分 */
.cta-button .text {
  flex-shrink: 0;
}

/* pill型リンクボタン */
.cta-button-2 {
  width: 80%;
  background-color: #c2f6ff; 
  color: black;
  font-size: 0.8rem;
  padding: 3px 15px;
  border-radius: 9999px; /* pill型 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

/* hover時 */
.cta-button-2:hover {
  background-color: gray; 
}

/* クリック時 */
.cta-button-2:active {
  transform: scale(0.97);
}

/* テキスト部分 */
.cta-button-2 .text {
  flex-shrink: 0;
}



/* 矢印を円で囲む */
.arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: whitesmoke;
  color: black;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
}

.admin-link {
  display: block;
  text-align: center;
  margin: 30px 0;
}
.admin-link a {
  background-color: #f97316; /* オレンジ */
  color: #fff;
  padding: 12px 20px;
  border-radius: 9999px; /* pill型 */
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.admin-link a:hover {
  background-color: #ea580c;
  box-shadow: 0 6px 8px rgba(0,0,0,0.3);
}

.news-list dt {
  font-weight: bold;
}

/* 記事タイトルのリンクを青にする */
.news-list dd a h3 {
  color: #00AEEF;   /* 青色 */
  text-decoration: none;  /* 下線なし。必要なら underline に変更 */
}

.news-list dd a:hover h3 {
  color: #0092b6;   /* ホバー時に濃い青に */
}

.container{
  margin-bottom: 100px;
}