@charset "utf-8";

main {
    max-width: 750px;
    margin: 0 auto;
}
  
body {
    font-family: sans-serif;
    width: 750px;
    margin: 0 auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ---------------------------------
   mvのスタイル
--------------------------------- */

.mv_back {
    background: url(../images/mv_back.webp) no-repeat left center;
    background-size: cover;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 25% center;
    height: 100dvh;
    overflow: hidden; /* 追加: オーバーフローを隠す */
}


.logo {
    position: absolute;
    width: 30%;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.badge-1 {
    position: absolute;
    width: 30%;
    top: 70%;
    left: 20%;
    transform: translate(-50%, -50%);
}
.badge-2 {
    position: absolute;
    width: 30%;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.badge-3 {
    position: absolute;
    width: 30%;
    top: 70%;
    left: 80%;
    transform: translate(-50%, -50%);
}



/* h2の中央揃え修正 */
.mv_txt {
    position: absolute;
    top: 35%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
      }
  
.mv_catch_1 {
    position: absolute;
    bottom: 38%;
    color: #fff;
    font-size: 1.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    white-space: nowrap;
    text-align: center;
}

.mv_catch_2 {
    position: absolute;
    bottom: 35%;
    color: #fff;
    font-size: 1rem; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
}

.mv_catch_3 {
  position: absolute;
  bottom: 34%;
  color: #fff;
  font-size: 1rem; 
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  white-space: nowrap;
  text-align: center;
}

@media screen and (max-width: 767px) {
    .mv_back {
        aspect-ratio: 9 / 20;
    }

    .mv_txt {
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        width: auto;
        max-width: 90%;
      }
    }


    .mv_catch_1 {
        position: absolute;
        top: 45%;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.5rem; /* 文字間隔を調整 */
        max-width: 90%; /* モバイル表示時の幅を調整 */
    }

    .mv_catch_2 {
        position: absolute;
        top: 63%; /* 間隔を広げる */
        font-size: 1rem; /* サイズを少し小さく */
        font-weight: 400;
        letter-spacing: 0.5rem;
        width: 90%;
    }


/* ---------------------------------
   mvのスタイルここまで
--------------------------------- */

/* ---------------------------------
   img-01のスタイル
--------------------------------- */

.img_01_back {
    background: url(../images/1.webp) no-repeat left center;
    background-size: cover;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 25% center;
    height: 100dvh;
    overflow: hidden; /* 追加: オーバーフローを隠す */
}

/* 背景動画のスタイル */
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* z-indexを0に変更 */
    display: none; /* PCでは非表示 */
}

.img-01_txt {
    position: absolute;
    top: 15%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
    z-index: 5; /* 動画より上に表示 */
}

.img-01_catch_1 {
    position: absolute;
    top: 25%;
    color: #fff;
    font-size: 1.5rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    /* white-space: nowrap; */
    text-align: left;
    line-height: 2rem;
    z-index: 5; /* 動画より上に表示 */
}

.img-01_catch_2 {
    position: absolute;
    top: 42%;
    color: #fff;
    font-size: 3rem; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
    z-index: 5; /* 動画より上に表示 */
}

@media screen and (max-width: 767px) {
    .img_01_back {
        aspect-ratio: 9 / 20;
    }

    /* 背景動画の上に半透明のオーバーレイを追加 */
    .img_01_back::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1; /* 背景動画の上、テキストの下 */
      }
      

    .img-01_txt {
        top:10%;
        font-size: 1rem;
        letter-spacing: 0.4rem;
        font-weight: 700;
        width: auto;
        max-width: 90%;
        z-index: 2;

    }

.img-01_catch_1 {
      top: 20%;
      font-size: 1rem;
      letter-spacing: 0.5rem;
      width: 90%;
      line-height: 2rem;
      z-index: 2;
  }

  .img-01_catch_2 {
        top: 65%;
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        width: 90%;
    }

    .background-video {
        display: block; /* モバイルでは表示 */
    }
    
}


/* ---------------------------------
   img-01のスタイルここまで
--------------------------------- */

/* ---------------------------------
   img-02のスタイル
--------------------------------- */

.img_02_back {
  background: url(../images/2.webp) no-repeat left center;
  background-size: cover;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 25% center;
    height: 100dvh;
}

.img-02_txt {
    position: absolute;
    top: 10%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
    line-height: 1.5rem;
    z-index:100;
}

.img-02_catch_1 {
    position: absolute;
    top: 35%;
    color: #fff;
    font-size: 3rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
}

.img-02_catch_2 {
    position: absolute;
    top: 42%;
    color: #fff;
    font-size: 3rem; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .img_02_back {
        aspect-ratio: 9 / 20;
    }

    .img-02_txt {
        top: 5%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        line-height: 1.2rem;
    }

    .img-02_catch_1 {
        top: 12%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        z-index: 100;
    }

    .img-02_catch_2 {
        top: 13%;
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        width: 90%;
    }
}

/* ---------------------------------
   img-02のスタイルここまで
--------------------------------- */
/* ---------------------------------
   img-03のスタイル
--------------------------------- */

.img_03_back {
    background: url(../images/3.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }
  
.img-03_txt {
    position: absolute;
    top: 10%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
    line-height: 1.5rem;
}

.img-03_catch_1 {
    position: absolute;
    top: 35%;
    color: #fff;
    font-size: 3rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
}

.img-03_catch_2 {
    position: absolute;
    top: 42%;
    color: #fff;
    font-size: 3rem; 
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    letter-spacing: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .img_03_back {
        aspect-ratio: 9 / 20;
    }

    .img-03_txt {
        top: 5%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        line-height: 1rem;
    }

    .img-03_catch_1 {
        top: 12%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        z-index: 100;
    }

    .img-03_catch_2 {
        top: 13%;
        font-size: 1.5rem;
        letter-spacing: 0.5rem;
        width: 90%;
    }
}

/* ---------------------------------
   体験者の声のスタイル
--------------------------------- */
.testimonial-container {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 70vh;
  overflow-y: auto;
}

.testimonial-item {
  display: flex;
  align-items: center;
  background-color: #ffed00;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.user-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-text {
  flex-grow: 1;
}

.testimonial-text p {
  margin: 0;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* モバイル対応 */
@media screen and (max-width: 767px) {
  .testimonial-container {
      top: 20%;
      gap: 10px;
  }
  
  .testimonial-item {
      padding: 10px;
  }
  
  .user-icon {
      width: 40px;
      height: 40px;
      margin-right: 10px;
  }
  
  .img-03_txt {
      top: 5%;
      font-size: 1rem;
      line-height: 1.2rem;
  }
}

/* ---------------------------------
   img-03のスタイルここまで
--------------------------------- */

/* ---------------------------------
   img-04のスタイル
--------------------------------- */

.img_04_back {
    background: url(../images/4.webp) no-repeat left center;
    background-size: cover;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 25% center;
    height: 100dvh;
}

.img-04_txt {
    position: absolute;
    top: 10%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
    line-height: 1.5rem;
    z-index: 100;
}

/* 料金情報のスタイル追加 */
.price {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    line-height: 1.5rem;
    z-index: 100;
}

.price_1_ttl, .price_2_ttl {
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.price_1, .price_2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffed00;
    margin-bottom: 20px;
}

.price_caption {
    font-size: 0.8rem;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-top: 10px;
}

/* 特徴リストのスタイル */
.price-features {
    margin-top: 20px;
    text-align: left;
    padding: 0 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.4;
}

/* CSSチェックボックス */
.checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
}

.checkbox::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #ffed00;
    border-radius: 3px;
}

.checkbox::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    top: 3px;
    left: 7px;
}

@media screen and (max-width: 767px) {
    .img_04_back {
        aspect-ratio: 9 / 20;
    }

    .img-04_txt {
        top: 10%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        line-height: 1.2rem;
    }

    .price {
        top: 30%;
        max-width: 90%;
        padding: 15px;
    }

    .price_1_ttl, .price_2_ttl {
        font-size: 1.2rem;
    }

    .price_1, .price_2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .price_caption {
        font-size: 0.6rem;
    }
    
    /* モバイル向け特徴リストの調整 */
    .feature-item {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .checkbox {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    .checkbox::before {
        width: 16px;
        height: 16px;
    }
    
    .checkbox::after {
        width: 4px;
        height: 8px;
        top: 3px;
        left: 6px;
    }
}

/* ---------------------------------
   img-04のスタイルここまで
--------------------------------- */  
/* ---------------------------------
   img-05のスタイル
--------------------------------- */

.img_05_back {
    background: url(../images/5.webp) no-repeat left center;
    background-size: cover;
    width: 100%;
    position: relative;
    object-fit: cover;
    object-position: 25% center;
    height: 100dvh;
}

.img-05_txt {
    position: absolute;
    top: 10%;
    color: #fff;
    font-size: 1.5rem;  
    font-family: "zen kakugothic new", sans-serif;
    letter-spacing: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 2rem 0;
    white-space: nowrap;
    text-align: center;
    width: max-content;
    line-height: 1.5rem;
    z-index: 100;
}


.gymfield_youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 640px;
    margin: 0 auto;
    z-index: 5;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.gymfield_youtube iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.video-caption {
    text-align: center;
    color: #fff;
    font-size: 1rem;
    padding: 15px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* img-05のprice-featuresのスタイル */
.img05-price-features {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: left;
    z-index: 100;
}

@media screen and (max-width: 767px) {
    .img_05_back {
        aspect-ratio: 9 / 20;
    }

    .img-05_txt {
        top: 10%;
        font-size: 1rem;
        letter-spacing: 0.3rem;
        font-weight: 700;
        width: max-content;
        max-width: 90%;
        line-height: 1.2rem;
    }
    
    /* .video-caption {
        font-size: 0.7rem;
        margin-top: 5px;
    } */
    .img05-price-features {
        top: 75%;
        max-width: 90%;
        padding: 10px;
    }
}


/* ---------------------------------
   img-05のスタイルここまで
--------------------------------- */ 

/* ---------------------------------
   img-06のスタイル
--------------------------------- */

.img_06_back {
    background: url(../images/6.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }
  
  .img-06_txt {
      position: absolute;
      top: 10%;
      color: #fff;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-06_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-06_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_06_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-06_txt {
          top: 5%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-06_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-06_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }
  
  /* ---------------------------------
     体験者の声のスタイル
  --------------------------------- */
  .testimonial-container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .testimonial-item {
    display: flex;
    align-items: center;
    background-color: #ffed00;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .user-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .user-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .testimonial-text {
    flex-grow: 1;
  }
  
  .testimonial-text p {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  
  /* モバイル対応 */
  @media screen and (max-width: 767px) {
    .testimonial-container {
        top: 20%;
        gap: 10px;
    }
    
    .testimonial-item {
        padding: 10px;
    }
    
    .user-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .img-06_txt {
        top: 5%;
        font-size: 1rem;
        line-height: 1.2rem;
    }
  }
  
  /* ---------------------------------
     img-06のスタイルここまで
  --------------------------------- */

  /* ---------------------------------
   img-07のスタイル
--------------------------------- */

.img_07_back {
    background: url(../images/7_2.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }


  
  .img-07_txt {
      position: absolute;
      top: 10%;
      color: #fff;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-07_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-07_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_07_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-07_txt {
          top: 5%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-07_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-07_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }

/* ---------------------------------
   img-07のスタイルのスタイルここまで
--------------------------------- */
  /* ---------------------------------
   img-08のスタイル
--------------------------------- */

.img_08_back {
    background: url(../images/8.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }
  
  .img-08_txt {
      position: absolute;
      top: 10%;
      color: #fff;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-08_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-08_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_08_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-08_txt {
          top: 5%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-08_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-08_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }

/* ---------------------------------
   img-08のスタイルのスタイルここまで
--------------------------------- */
  /* ---------------------------------
   img-09のスタイル
--------------------------------- */

.img_09_back {
    background: url(../images/9.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }

/* Google Mapのボタン */
.gmap {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    z-index: 10;
}

  .img-09_txt {
      position: absolute;
      top: 15%;
      color: #000;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-09_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-09_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_09_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-09_txt {
          top: 20%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-09_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-09_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }

/* ---------------------------------
   img-09のスタイルのスタイルここまで
--------------------------------- */
  /* ---------------------------------
   img-10のスタイル
--------------------------------- */

.img_10_back {
    background: url(../images/10.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }
  
  .img-10_txt {
      position: absolute;
      top: 10%;
      color: #fff;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-10_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-10_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_10_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-10_txt {
          top: 5%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-10_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-10_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }

/* ---------------------------------
   img-10のスタイルのスタイルここまで
--------------------------------- */
  /* ---------------------------------
   img-11のスタイル
--------------------------------- */

.img_11_back {
    background: url(../images/11.webp) no-repeat left center;
    background-size: cover;
      width: 100%;
      position: relative;
      object-fit: cover;
      object-position: 25% center;
      height: 100dvh;
  }
  
  .img-11_txt {
      position: absolute;
      top: 10%;
      color: #fff;
      font-size: 1.5rem;  
      font-family: "zen kakugothic new", sans-serif;
      letter-spacing: 1rem;
      left: 50%;
      transform: translateX(-50%);
      padding: 2rem 0;
      white-space: nowrap;
      text-align: center;
      width: max-content;
      line-height: 1.5rem;
  }
  
  .img-11_catch_1 {
      position: absolute;
      top: 35%;
      color: #fff;
      font-size: 3rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  .img-11_catch_2 {
      position: absolute;
      top: 42%;
      color: #fff;
      font-size: 3rem; 
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-weight: 700;
      letter-spacing: 1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: max-content;
      white-space: nowrap;
      text-align: center;
  }
  
  @media screen and (max-width: 767px) {
      .img_11_back {
          aspect-ratio: 9 / 20;
      }
  
      .img-11_txt {
          top: 5%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          line-height: 1rem;
      }
  
      .img-11_catch_1 {
          top: 12%;
          font-size: 1rem;
          letter-spacing: 0.3rem;
          font-weight: 700;
          width: max-content;
          max-width: 90%;
          z-index: 100;
      }
  
      .img-11_catch_2 {
          top: 13%;
          font-size: 1.5rem;
          letter-spacing: 0.5rem;
          width: 90%;
      }
  }


/* ---------------------------------
   img-11のスタイルのスタイルここまで
--------------------------------- */
  

/* ---------------------------------
   スワイプ切り替えのためのスタイル
--------------------------------- */
@media screen and (max-width: 767px) {
    html, body {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
  
    section {
        width: 100%;
        height: 100dvh;
        position: absolute;
        top: 0;
        left: 0;
    }
  
    /* モバイル用のオファーボタン位置調整 */
    a.offer {
        position: absolute;
        bottom: 7%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        z-index: 100;
    }

    a.offer_2 {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        z-index: 100;
    }

    a.offer_2 {
        position:absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        z-index: 100;
    
      }

      a.offer_3 {
        position:absolute;
        bottom: 3%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        z-index: 100;
    
      }


}

/* ---------------------------------
   PC表示時のセクション設定
--------------------------------- */
@media screen and (min-width: 768px) {
    /* PCモードでのスクロール問題修正 */
    html, body {
        overflow: auto !important; /* PCではスクロール可能に強制 */
        position: static !important;
        height: auto !important; 
    }
    
    section {
        height: 100dvh;
        position: relative !important;
        overflow: hidden;
        display: block !important;
    }
    
    main {
        overflow: visible !important;
    }
  
    .mv_back, .img_01_back, .img_02_back {
        height: 100dvh;
        background-position: center center;
    }
    
    .mv_txt, .img-01_txt, .img-02_txt {
        padding: 1.5rem 3rem;
        width: auto;
        max-width: 80%;
        z-index: 10;
    }
  
    .mv_catch_1, .img-01_catch_1, .img-02_catch_1 {
        width: 80%;
        line-height: 1.2rem;
        max-width: 600px;
        z-index: 10;
    }
  
    .mv_catch_2, .img-01_catch_2, .img-02_catch_2 {
        width: 80%;
        line-height: 1.2rem;
        max-width: 600px;
        z-index: 10;
    }

    /* PC用の背景画像指定 */
    .img_05_back {
        background: url(../images/5_pc.webp) no-repeat center center;
        background-size: cover;
    }
    
    .img_06_back {
        background: url(../images/6_pc.webp) no-repeat center center;
        background-size: cover;
    }
}

/* ---------------------------------
   CSSボタンスタイル
--------------------------------- */
.offer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 80vw;
    text-decoration: none;
    display: block;
    z-index: 1000;
}

.offer_btn {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #64BB00; /* 黄色に変更 */
    color: #fff; /* テキスト色を黒に変更 */
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    /* blinkアニメーションを削除 */
}

/* ボタンの光沢効果 */
.offer_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%, /* 黄色背景に合わせて光沢効果を少し強く */
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite;
}

/* 光沢のアニメーション */
@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* 点滅アニメーションを削除 */

@media screen and (max-width: 767px) {
    .offer_btn {
        font-size: 1.5rem;
        height: 50px;
    }
}

/* ---------------------------------
   ヘッダーセクションのスタイル
--------------------------------- */
#global-header {
    background-color: transparent;
    color: #fff;
    height: 100px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    box-shadow: none;
    max-width: 750px;
    left: 50%;
    transform: translate(-50%);
}

.header-logo {
    height: 80px;
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 80px;
    width: auto;
}

.pc-menu {
    display: flex;
    margin-left: auto;
}

.pc-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pc-menu li {
  margin: 0 15px;
  line-height: 1rem;
  white-space: nowrap;
}


.pc-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.pc-menu a:hover {
    opacity: 0.7;
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hamburger-menu span:nth-child(1) {
    top: 0;
}

.hamburger-menu span:nth-child(2) {
    top: 9px;
}

.hamburger-menu span:nth-child(3) {
    top: 18px;
}

/* アクティブ時のハンバーガーメニュー（×マーク） */
.hamburger-menu.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* スマホ用メニュー */
.sp-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 70%;
    height: calc(100% - 80px);
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.sp-menu.active {
    right: 0;
}

.sp-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sp-menu li {
    padding: 15px 0;
    width: 100%;
    text-align: center;
}

.sp-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: opacity 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.sp-menu a:hover {
    opacity: 0.7;
}

/* メディアクエリ */
@media screen and (min-width: 768px) {
    .pc-menu {
        display: flex;
    }
  
    .hamburger-menu, .sp-menu {
        display: none;
    }
  
    main {
        padding-top: 0;
    }
  
    section {
        height: 100dvh;
        position: relative;
        overflow: hidden;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    #global-header {
        height: 80px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        left: 0;
        transform: none;
    }
    
/* section mvでヘッダーを非表示にする */
#mv #global-header {
    display: none;
}

.header-logo {
    height: 60px;
}

.header-logo img {
    max-height: 30px;
}

.pc-menu {
    display: none;
}

.hamburger-menu {
    display: block;
    position: fixed;
    right: 30px;
    top: 40px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 1001;
}

.sp-menu {
    display: block;
    top: 80px;
    height: calc(100% - 80px);
    width: 70%;
}

main {
    padding-top: 0;
    width: 100%;
}

section {
    top: 0;
    height: 100dvh;
}
}

/* ---------------------------------
スクロールインジケーター（下矢印とテキスト）
--------------------------------- */
.scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 100;
display: flex;
flex-direction: column;
align-items: center;
display: none;
}

.scroll-text {
color: #fff;
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.1em;
margin-bottom: 5px;
text-align: center;
text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.arrow-container {
animation: arrow-move 1.5s infinite ease-in-out;
}

.arrow-down {
width: 20px;
height: 20px;
border-left: 3px solid #00dae2;
border-bottom: 3px solid #00dae2;
transform: rotate(-45deg);
}

@keyframes arrow-move {
0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
}
50% {
    transform: translateY(10px);
    opacity: 1;
}
}

@media screen and (max-width: 767px) {
.scroll-indicator {
    display: flex;
}
}


/* ---------------------------------
YouTube Shorts用のスタイル
--------------------------------- */

.youtube-shorts-container {
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
width: auto;
height: 60vh; /* ビューポート高さの70% */
max-width: 80%;
margin: 0 auto;
z-index: 5;
overflow: hidden;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
aspect-ratio: 9 / 16; /* スマホ縦向き動画のアスペクト比を維持 */
}

.youtube-shorts-container iframe {
width: 100%;
height: 100%;
border: none;
}

/* ---------------------------------
YouTube Shorts用のスタイルここまで
--------------------------------- */

/* ---------------------------------
改善されたスワイプアニメーション用のスタイル
--------------------------------- */
@media screen and (max-width: 767px) {
/* セクションの基本スタイル */
section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  /* トランジションを高速化し、ease-outでより自然な動きに */
  transition: transform 0.25s ease-out;
  backface-visibility: hidden; /* シェイクを防止 */
  -webkit-backface-visibility: hidden; /* Safari対応 */
  -webkit-transform-style: preserve-3d; /* Safari対応 */
  transform-style: preserve-3d;
  will-change: transform; /* パフォーマンス最適化 */
}

/* セクションの状態 */
section.prev-section {
  transform: translateY(-100%);
  z-index: 1;
}

section.current-section {
  transform: translateY(0);
  z-index: 2;
}

section.next-section {
  transform: translateY(100%);
  z-index: 1;
}

/* スライドアップアニメーション（次へ）*/
section.slide-up-current {
  animation: currentSlideUp 0.25s ease-out forwards;
}

section.slide-up-next {
  animation: nextSlideUp 0.25s ease-out forwards;
}

@keyframes currentSlideUp {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

@keyframes nextSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* スライドダウンアニメーション（前へ）*/
section.slide-down-current {
  animation: currentSlideDown 0.25s ease-out forwards;
}

section.slide-down-prev {
  animation: prevSlideDown 0.25s ease-out forwards;
}

@keyframes currentSlideDown {
  from { transform: translateY(0); }
  to { transform: translateY(100%); }
}

@keyframes prevSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
}
/* ---------------------------------
改善されたスワイプアニメーション用のスタイルここまで
--------------------------------- */


/* ---------------------------------
ユーザーボイススライダー調整スタイル
--------------------------------- */
@media screen and (max-width: 767px) {
.user_voice_slider {
  position: absolute;
  top: 20%; /* 上部の位置を調整 */
  left: 50%;
  transform: translateX(-50%);
  width: 85%; /* 幅を少し狭くして余白を確保 */
  max-width: 500px;
  z-index: 5;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-item {
  display: none;
  width: 100%;
}

.slider-item.active {
  display: block;
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-height: 55vh; /* ビューポート高さに対する最大高さを設定 */
  object-fit: contain; /* アスペクト比を維持 */
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding-bottom: 10px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
}

.slider-dot.active {
  background-color: #ffffff;
}
}

/* ---------------------------------
ユーザーボイススライダー調整スタイルここまで
--------------------------------- */

/* ---------------------------------
スワイプオーバーレイスタイル
--------------------------------- */
.swipe-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
background: transparent;
/* タッチイベントのみを透過し、クリックイベントはブロック */
pointer-events: none;
}

/* PC表示時のオーバーレイスタイル */
#pc-overlay {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* 背景を完全に白にして不透明に */
    z-index: 10000; /* 最前面に表示 */
    overflow: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* オーバーレイが表示されている時、bodyのスクロールを防止 */
body.pc-overlay-active {
    overflow: hidden;
    height: 100%;
    position: fixed;
    width: 100%;
}

.pc-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.overlay-icon {
    margin-bottom: 20px;
    color: #64BB00;
}

.pc-overlay-content h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.pc-overlay-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qr-container {
    margin-top: 30px;
}

.qr-container p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}

#qrcode {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* モバイル表示の場合はオーバーレイを非表示 */
@media screen and (max-width: 430px) {
    #pc-overlay {
        display: none !important;
    }
    
    body.pc-overlay-active {
        overflow: auto;
        height: auto;
        position: static;
        width: auto;
    }
}