    @charset "utf-8";
    /* -----------------------
    common
    -------------------------*/
    html{
        font-size: 62.5%;
    }

    body{
        font-family: "Noto Sans JP", sans-serif;
        font-style: normal;
        color: #2F2F2F;
        background-color: #fff;
        line-height: 1.5;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .section__topic {
        font-family: "Noto Serif JP", serif ;
        font-weight: 700;
        font-size: 3.2rem;
        line-height: 1.3;
        text-align: left;
    }

    /* header */

    .header{
        padding: 20px 5.3% 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 24px;
    }

    .header__topic,
    .nav__topic{
            color: #2F2F2F;
            font-family: Charm;
            font-size: 2.4rem;
            font-weight: 700;
    }

    /* .nav初期表示 */
    .nav{
        background: rgba(255, 255, 255, 0.90);
        width: 100%;
        height:100vh ;
        padding: 20px 5.3% 20px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        transform: translateX(-100%);
        transition: transform 0.4s;
    }

    .nav__header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__list{
        margin-top: 66px;
    }

    .nav__item{
        font-weight: 700;
        font-size: 1.8rem;
        line-height: 1;
        margin-top: 52px;
    }

    .nav__item img{
        display: inline-block;
        vertical-align: -6px;
        margin-right: 24px;
        background-color: #fd5;
    }

    .nav.active{
        transform: translateX(0);
    }

    .header__btn{
        display: block;
        width: 18px;
        height: 11px;
        position: absolute;
        cursor: pointer;
        top: 30px;
        right: 5.3%;
    }

    .button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0;
      }
      
      .apply-button {
        display: inline-block;
        padding: 20px 5.3% 20px;
        margin-right: auto;
        padding: 14px 28px;
        background-color: #4CAF50;
        color: #ffffff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.2rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        
      }
      
      .apply-button:hover {
        background-color: #45a049;
      }

      /* .header pc */
      @media screen and (min-width:769px) {
        .header{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
      

      .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
      }

      .nav__list{
        margin-top: 0;
        display: flex;
      }

      .nav__item{
        margin-top: 0;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.3;
        margin-left: 32px;
      }

      .nav__header{
        display: none;
      }

      .nav__item img{
        display: none;
        margin-right: 0;
      }

      .header__btn{
        display: none;
      }
    }
      /* pc 769px */


      
      
    /* 
    main
     */
     /* article header */
    .section {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  justify-content: space-between;/* 画像とテキストの間隔 */
  padding: 40px;
  gap: 40px;
  
}

.hero-section {
  background-color: #ACF4A8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
    flex-wrap: wrap; /* 子要素の折り返しを許可 */
}
/* PC向けの個別設定（769px以上） */
@media screen and (min-width: 769px) {
    .hero-section {
        justify-content: space-between; /* 両端揃えに戻す */
    }
    .hero-section .text {
        max-width: 50%;
    }
    .hero-section .image {
        max-width: 40%;
    }
    .main_text1 {
        font-family: 'Charm', sans-serif;
        font-weight: 700;
        font-size: 6.4rem; /* font-size: 64px; をremに修正 */
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }
    .main_text2 {
        font-family: 'Charm', sans-serif;
        font-size: 2.0rem; /* PCでも読みやすいサイズに */
        margin-top: 20px;
        color: #2F2F2F; /* 色を統一 */
    }
    .highlight {
        color: red;
    }
}
/* スマホ向けの個別設定（768px以下） */
@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* 画像とテキストを縦に並べる */
        padding: 40px 20px;
        /* スマホでは画像の絶対配置を無効化するため、
           position: static; の記述は不要です。 */
    }
    .hero-section .image {
        max-width: 80%; /* スマホでの画像の最大幅を調整 */
        margin-bottom: 20px; /* 画像の下に余白を追加 */
        transform: none;
    }
    .hero-section .text {
        max-width: 100%;
    }
    .hero-section .text,
    .hero-section .image {
        text-align: center;
        /* Flexboxの列方向で中央揃えにするため、
           margin-left: auto; margin-right: auto; は不要です。 */
    }
    /* `order`プロパティは、flex-direction: column; の場合に
       要素の並び順を指定するために必要です。*/
    .hero-section .image {
        order: 1; /* 画像を上に配置 */
    }
    .hero-section .text {
        order: 2; /* テキストを下に配置 */
    }
    .main_text1 {
        font-size: 4.0rem;
    }
    .main_text2 {
        font-size: 1.6rem;
    }
}

.image img {
  max-width: 400px;
  height: auto;
  display: block;
}

.text {
  max-width: 60%;
}

.text h1 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
}

.text .highlight {
  color: red;
}

.text p {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
     
     .mainTopics__name{
        font-size: 2.6rem;
        margin: 20px 46px 20px;
        text-align: center;
     }
     
     .mainImg{
        display: block;
        margin-left: auto;
     }
     

     .mainTopics__txt{
        font-size: 1.3rem;
        margin: 20px 56px 20px;
        text-align: center;
     }

     .image{
        max-width: 100%;
        height: auto;
        transform: scale(2.5);
        margin-top: 40px;
     }

    

     
     /* about us */
     .section--aboutus {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: block;
}

.aboutUs__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 80px;
}

.aboutUs__block.reverse {
  flex-direction: row-reverse;
}

.aboutUs__text {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.8;
}

.aboutUs__image {
width: 150%;
  flex: 0 0 40%;
  text-align: center;
}

.aboutUs__image img {
  width: 70%;
  height: auto;
  box-shadow: 5px 4px 4px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.section__topicName,
.section__topicName2 {
  font-size: 3.0rem;
  margin-bottom: 40px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
  color: #0A800E; /* グリーン強調 */
  font-weight: bold;
}

.section__koichiname {
  margin-top: 30px;
  color: #0A800E;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .aboutUs__block,
  .aboutUs__block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .aboutUs__image {
    flex: none;
    width: 100%;
    max-width: 90%;
    margin: 20px auto 0;
  }
}
/* PC版（768px以上） */
@media screen and (min-width: 769px) {
  .aboutUs__image {
    flex: 0 0 50%; /* 画像の比率を増やす（デフォ40% → 50%） */
    max-width: 600px; /* 元画像の解像度に合わせて調整 */
  }

  .aboutUs__image img {
    width: 100%;
    height: auto;
  }

  .aboutUs__text {
    flex: 1;
    font-size: 1.9rem; /* テキストも少し大きく */
    line-height: 1.9;
  }
  .aboutUs__block.reverse .aboutUs__image {
  flex: 0 0 30%; /* 40%に縮小 */
  max-width: 500px;
}
}
     
   

    /* lesson */
/* セクション全体 */
.lesson-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* 横並びブロック */
.lesson-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* テキスト部分 */
.lesson-text {
  flex: 1;
}

/* タイトル */
.lesson-title {
  font-size: 4.0rem;
  font-weight: bold;
  color: #008000; /* 緑 */
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

/* サブタイトル */
.lesson-sub {
  font-size: 1.2rem;
  font-weight: bold;
  color: #008000;
  margin-bottom: 20px;
}

/* 強調見出し */
.lesson-highlight {
  font-size: 3.0rem;
  font-weight: bold;
  color: #008000;
  margin-bottom: 20px;
}

/* 本文 */
.lesson-desc {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8;
  color: #000;
}

/* 画像 */
.lesson-image {
  flex: 0 0 45%;
}

.lesson-image img {
margin-top: 80px;
  width: 100%;
  height: auto;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lesson-block {
    flex-direction: column;
    text-align: center;
  }

  .lesson-image {
    flex: none;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
  }
}
/* レッスンカード */
.lesson-cards {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 200px; /* 好きな高さに固定 */
  object-fit: cover; /* はみ出した部分をトリミング */
  border-radius: 6px;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #008000; /* 緑 */
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .lesson-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* 料金セクション */
.lesson-price {
  max-width: 600px;
  margin: 80px auto;
  text-align: center;
}

.price-title {
  font-size: 4.0rem;
  font-weight: bold;
  color: #008000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.price-amount {
  font-size: 6.0rem;
  font-weight: bold;
  color: #008000;
  border-bottom: 3px solid #008000;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
}

.price-amount span {
  font-size: 2rem;
  margin-left: 5px;
  color: #333;
}

.price-details {
  background: #f5f5f5;
  border-radius: 16px; /* 角丸を少し強調 */
  padding: 40px;       /* ボックスを大きく */
  text-align: left;
  transform: scale(1.05); /* 少し全体を拡大（オプション） */
}

.price-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-details li {
  font-size: 1.5rem;     /* ← 文字サイズ1.5倍 */
  margin-bottom: 25px;   /* 行間を広めに */
  position: relative;
  padding-left: 40px;    /* チェックアイコンとの間隔を広く */
}

.price-details li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #008000;
  font-weight: bold;
  font-size: 1.5rem;     /* アイコンも大きく */
  line-height: 1.2;
}






/* Trainers セクション */
.section--trainers {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center; /* セクション全体を中央寄せ */
}

.section__topic {
  font-size: 5.0rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  color: #008000;
}

.section__introduction {
  font-size: 1.5rem;
  font-weight: bold;
  color: #008000; /* Trainers と同じ緑 */
  margin-bottom: 30px;
}

.section--trainers p {
  color: #333;
  margin-bottom: 40px;
}



/* グリッド配置 */
.trainers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各トレーナーカード */
.trainers__item {
  text-align: center;
}

/* 画像 */
.trainers__img img {
  width: 100%;
  height: 300px;            /* 高さ固定をやめる */
  object-fit: contain;       /* 比率を保ちつつ収める */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  display: block;
}


.span{
    cursor: pointer; 
    color: blue;
}

/* モーダルのスタイル */
.modal {
    display: none; /* 最初は非表示 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    overflow-y: auto; /* スクロールを縦方向に有効にする */
    max-height: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-image {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin-top: 20px;
    margin: 0 auto;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
/* リストの人物名 */
.person {
    cursor: pointer;
    color: ;
    text-decoration: underline;
    display: inline-block;
    margin-right: 15px;
    font-size: 18px;
}

.secret{
    margin-top: 60px;
    font-size: 40px !important; /* フォントサイズを強制的に適用 */
    /* 必要であれば他のプロパティも！importantを付ける */
    text-align: center; /* 念のため中央寄せを追加しても良い */
    padding: 20px;
    /* 背景色や色を付け、視覚的に反映を確認する */
    color: #2e7d32; /* メインカラーの緑 */
    border: 2px solid #2e7d32;
}




/* Voices セクション全体 */
.voices-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

/* 回答全体のラッパー */
.voices-item {
  display: flex;
  align-items: flex-start; /* 上端を揃える */
  margin-bottom: 30px;
}


/* 見出し */
.voices-title {
  text-align: center;
  font-size: 5.0rem;
  font-weight: bold;
  color: #008000;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

/* 質問ボックス（右寄せ） */
.voices-question {
  background-color: #008000;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 40px 0 20px;
  max-width: 70%;      /* 横幅を絞る */
  margin-left: auto;   /* 右寄せ */
}

/* 回答ボックス（左寄せ） */
.voices-answer {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 75%;      /* 横幅を絞る */
  margin-right: auto;  /* 左寄せ */
}

/* 回答見出し */
.voices-answer h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

/* 回答本文 */
.voices-answer p {
  font-size: 1.2rem;
  color: #333;
}

/* 名前（右下） */
.voices-name {
  font-size: 2.0rem;
  color: #333;
  margin-top: 15px;   /* ボックスとの間隔 */
  white-space: nowrap; /* 改行しないように */
}





.section--contact {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* Contact全体の中身を縦並び */
#contact {
  display: flex !important;         /* flex を使う場合 */
  flex-direction: column !important; /* 縦並びに強制 */
  gap: 1rem !important;             /* 要素間の間隔 */
}

#contact h3 {
  text-align: left !important;   /* h3 は左揃え */
}

#contact h4,
#contact p,
#contact img {
  text-align: center !important; /* h3 以外を中央揃え */
  margin-left: auto !important;
  margin-right: auto !important; /* ブロック要素の場合、中央に寄せる */
  display: block !important;
}

#contact img {
  width: 100% !important;           /* 親幅に合わせる */
  max-width: 600px !important;      /* 最大サイズ制限 */
  height: auto !important;          /* 高さ自動調整 */
}



.contact__content {
  display: block;
  margin-top: 20px;
}

/* 小見出し */
.directions {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #008000;
}

/* 画像 */
.address {
  margin-bottom: 20px;
}

.address img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* テキスト */
.directions__txt,
.directions__question {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 15px;
}




/* footer */
.footer__topic{
    color: #2F2F2F;
            font-family: Charm;
            font-size: 2.4rem;
            font-weight: 700;
            margin-top: 24px;
            padding-left: 18px;
}
.menu__list{
    margin-top: 12px;
    padding-left: 18px;
}

.menu__item{
    color: #2F2F2F;
    font-size: 1.3rem;
    font-weight: 400
}
.sns{
    padding-left: 18px;
    margin-top: 12px;
}
.sns__item{
    margin-top: 12px;
    margin-bottom: 12px;
}

.footer__right{
    margin-right: ;
}

.copy{
    margin-left: 16px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer{
        padding: 64px 60px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .footer__group{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer__topic{
        font-size: 2.4rem;
        line-height: 1;
    }

.menu__list{
    display: flex;
    margin-top: 0;
}
.menu__item{
    margin-top: 30px;
    margin-left: 32px;
}
.sns{
    display: flex;
    justify-content: flex-end;
    margin-left: 0;
}
.sns__item{
    margin: 0 0 0 24px;
}
.copy{
    margin-left: 20px;
}

}

/* pc 769px */