@charset "UTF-8";

*, *::before,
*::after {
  box-sizing: border-box;
}



:root {
  --main-color: #29B8D0;
}

/*--------------------------------
 全体
---------------------------------*/
body {
  font-family: "Josefin Sans", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #111;
  font-feature-settings: "palt";
}

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

/*--------------------------------
 レイアウト
---------------------------------*/

  /* .header-bg {
            background-image: url('https://placehold.co/1920x600/b0e0e6/ffffff?text=');
            background-size: cover;
            background-position: center;
        }
        .banner-bg {
            background-image: url('https://placehold.co/1920x400/add8e6/ffffff?text=');
            background-size: cover;
            background-position: center;
        }
        /* 動画のスタイル */
    /* Header and Navigation */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    border-bottom: #77aaff 3px solid;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    position: relative;
}

header .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1001;
}

.hamburger-menu {
    display: none; /* デスクトップでは常に非表示 */
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    color: #fff; /* ハンバーガーアイコンの色 */
}

/* Responsive Design for Hamburger Menu */
@media screen and (max-width: 768px) {
    header nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger-menu {
        display: block; /* ★スマホではハンバーガーメニューを表示 */
    }

    .header__logo-img {
        width: 120px; /* スマホ用にロゴサイズを調整 */
    }

    header .nav-links {
        list-style: none;
        display: none; /* ★スマホではデフォルトで非表示 */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #333;
        border-top: 1px solid #77aaff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    header .nav-links.active {
        display: flex; /* アクティブ時に表示 */
    }

    header .nav-links li {
        margin: 0;
        border-bottom: 1px solid #444;
    }

    header .nav-links li:last-child {
        border-bottom: none;
    }

    header .nav-links li a {
        padding: 15px 20px;
        display: block;
        text-align: left;
    }

    header .nav-links li a:hover {
    color: #77aaff;
}
  }



/* Hero Section with Video Background */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* 全画面表示 */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    /* mainタグのpadding-topを削除したため、ヒーローセクション自体で調整 */
    padding-top: 60px; /* ★ヘッダーの高さに合わせて調整 */
    box-sizing: border-box; /* paddingを含めた高さになるように */
}


.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100vw;
    height: 56.25vw; /* 16:9のアスペクト比 */
    min-height: 100vh;
    min-width: 177.77777778vh; /* 16:9のアスペクト比 */
}

/*.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 800px;
    box-sizing: border-box;
}*/

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 20px 0;
}

.section--color-reverse .section__inner {
  padding: 40px 0;
  background-color: var(--main-color);
}

.section__heading {
  margin-bottom: 30px;
}

.section-border-top {
  transform: translateY(1px);
}

.section-border-bottom {
  transform: translateY(-1px);
}

/*--------------------------------
 スクロールエフェクト
---------------------------------*/
.fadeUpEffect {
  opacity: 0;
}

.fadeUp {
  opacity: 0;
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------
 ボタン
---------------------------------*/
.btn {
  display: inline-block;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s;
  border-radius: 50px;
  background-color: #ff66cc;
}

.btn--color-reverse {
  color: #ff66cc;
  background-color: #fff;
}

.btn--center {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/*--------------------------------
 見出し
---------------------------------*/
.heading-primary {
  font-size: 40px;
  line-height: 1;
  color: #333;
}

.heading-primary__subtitle {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--main-color);
  margin-top: 10px;
}

.heading-primary--color-reverse,
.heading-primary--color-reverse .heading-primary__subtitle {
  color: #fff;
}

.section__heading .heading-primary {
  text-align: center;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  display: flex;
  position: fixed;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  transition: 0.3s;
}

.header__logo {
  line-height: 1;
}

.header__cta {
  display: none;
}

.header__cta-btn {
  font-size: 12px;
  padding: 12px 15px;
}

.header--active {
  background-color: #fff;
  box-shadow: 0 3px 6px rgb(0 0 0 / 5%);
}

.header--active .header__cta {
  display: block;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/


@keyframes fadeInMvImg {
  100% {
    opacity: 1;
  }
}

.mv__btn .btn {
  width: 220px;
}

/*全共通*/
.bgextend {
  position: relative;
  opacity: 0;
  overflow: hidden; /*はみ出た色要素を隠す*/
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*中の要素*/
.bgappear {
  opacity: 0;
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*左から右*/
.bgLRextend::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--main-color); /*伸びる背景色の設定*/
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes bgLRextendAnime {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

/*スクロールをしたら出現する要素にはじめに透過0を指定*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*--------------------------------
 イントロ
---------------------------------*/
.intro {
  margin-top: -20px;
  padding: 0 20px;
}

.intro__title {
  font-size: 56px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: #ff66cc;
  text-align: center;
}

.intro__subtitle {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 25px;
}

.intro__subtitle span {
  color: var(--main-color);
}

.intro__text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/*--------------------------------
アバウト
---------------------------------*/
.about-list {
  display: grid;
  row-gap: 40px;
}

.about-box__img-wrapper {
  width: 100%;
}

.about-box__desc {
  position: relative;
  margin: -10px 20px;
  padding: 40px 30px 30px 30px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-box__subtitle {
  font-size: 22px;
  color: #ff66cc;
  margin-bottom: 20px;
}

.about-box__subtitle--food {
  color: #ff66cc;
}

.about-box__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}

.about-box__text {
  font-size: 14px;
  line-height: 1.7;
}

.about__btn {
  margin-top: 40px;
  padding: 0 20px;
}

/*--------------------------------
トレーナー
---------------------------------*/
.tab-area {
  display: grid;
  margin-bottom: 20px;
  cursor: pointer;
  grid-template-columns: repeat(2, 1fr);
}

.tab {
  font-size: 16px;
  color: #fff;
  text-align: center;
  padding: 5px 0 10px 0;
}
.tab.tab--active {
  position: relative;
  font-weight: bold;
  color: #fff;
}

.tab.tab--active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background-color: #fff;
}

.tab-content {
  display: none;
  transition: all 1s;
  animation-name: fade-in;
  animation-duration: 0.5s;
}
.tab-content.show {
  display: block;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.person-list {
  display: grid;
  row-gap: 15px;
}

.person-box {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

.person-box__body {
  padding: 20px;
}

.person-box__text {
  font-size: 14px;
  line-height: 1.6;
}

/*--------------------------------
スタジオ
---------------------------------*/
.swiper-wrap {
  position: relative;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -30px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.swiper-button-prev {
  left: -20px;
}

.swiper-button-next {
  right: -20px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: "Material Icons Round";
  font-size: 24px;
  color: var(--main-color);
}

.swiper-button-prev:after {
  content: "navigate_before";
}

.swiper-button-next:after {
  content: "navigate_next";
}

.swiper-pagination-bullet-active {
  background: var(--main-color);
}

/*--------------------------------
 料金
---------------------------------*/
.price__body {
  margin: 0 -30px;
}

.price-list {
  position: relative;
  white-space: nowrap;
  margin-top: -25px;
  padding-top: 25px;
  padding-right: 20px;
  overflow-x: auto;
}

.price-list__scroll {
  position: absolute;
  top: 50%;
  right: 5%;
  font-size: 12px;
  color: #fff;
  padding: 10px;
  transform: translateY(-50%);
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.6);
}

.price-list__scroll-icon {
  display: block;
  font-size: 40px;
  text-align: center;
}

.price-box {
  display: inline-block;
  position: relative;
  width: 320px;
  text-align: center;
  margin-left: 20px;
  padding: 40px 20px 0;
  border-radius: 8px;
  background-color: #fff;
}

.price-box__label {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 80%;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #ff66cc;
  padding: 10px;
  transform: translateX(-50%);
  border: 2px solid #ff66cc;
  border-radius: 50px;
  background-color: #fff;
}

.price-box__title {
  font-size: 26px;
  font-weight: bold;
  color: #ff66cc;
  margin-bottom: 10px;
}

.price-box__price {
  padding-bottom: 20px;
}

.price-box__price-price {
  font-size: 48px;
}

.price-box__price-price span {
  font-size: 40px;
}

.price-box__item {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}

.price-box__item-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.price-box__item-text {
  font-weight: bold;
}

/*--------------------------------
 よくあるご質問
---------------------------------*/
.accordion {
  margin-top: -20px;
}

.accordion__item {
  border-bottom: 1px solid #ccc;
}

.accordion__question {
  position: relative;
  font-weight: normal;
  padding: 20px 30px 15px 0;
  cursor: pointer;
}

.accordion__question::after {
  display: block;
  content: "expand_more";
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Material Icons Round";
  font-size: 24px;
  color: var(--main-color);
  transform: translateY(-50%);
}

.accordion__question.active::after {
  content: "expand_less";
}

.accordion__answer {
  display: none;
  padding-bottom: 15px;
}

.accordion__answer.active {
  display: block;
}

.accordion__question-inner,
.accordion__answer-inner {
  display: flex;
  column-gap: 15px;
}

.accordion__label {
  flex: 0 0 25px;
  font-size: 26px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
}

.accordion__text {
  font-size: 15px;
  line-height: 1.7;
}

/*--------------------------------
 CTA
---------------------------------*/
.cta {
  padding-top: 30px;
}

.cta__body {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--main-color);
}

.cta__title {
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

/*--------------------------------
 フッター
---------------------------------*/


.page-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background-color: s;
}

.page-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.page-top__icon {
  font-size: 24px;
  color: var(--main-color);
}

.page-top__link:hover {
  opacity: 0.8;
}



/*media Queries 768px以上 タブレット用
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  .header__cta-btn {
    width: 200px;
  }

  .header__logo {
  line-height: 1;
}

  /* メインビジュアル */
  .mv {
    height: 500px;
    padding-left: 5%;
  }
  .mv__img {
    height: 500px;
  }

  /* イントロ */
  .intro__title-br {
    display: none;
  }

  .intro__text {
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
  }

  /* トレーナー */
  .person-list {
    display: flex;
    overflow-x: auto;
    column-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  
}

/*media Queries 1025px以上
----------------------------------------------------*/
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }

  /* レイアウト */
  .mv {
    max-width: 1600px;
    margin: 0 auto;
  }

  .about {
    max-width: 1300px;
    margin: 0 auto;
  }

  .section {
    padding: 30px 0;
  }

  /* ボタン */
  .btn {
    font-size: 20px;
    padding: 30px;
  }

  .btn:hover {
    opacity: 0.8;
  }

  .btn--center {
    max-width: 360px;
  }

  /* 見出し */
  .heading-primary {
    font-size: 64px;
  }

  .heading-primary__subtitle {
    font-size: 20px;
    margin-top: 10px;
  }

  /* ヘッダー */
  .header {
    height: 80px;
    padding: 0 35px;
  }

  .header__logo-img {
    width: 180px;
  }

  .header__cta .btn {
    width: 250px;
    font-size: 15px;
    padding: 15px;
  }

  
  /* イントロ */
  .intro__title {
    font-size: 108px;
    margin-bottom: 10px;
  }

  .intro__subtitle {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .intro__text {
    font-size: 16px;
    line-height: 2;
  }

  /* アバウト */
  .about-list {
    row-gap: 100px;
  }

  .about-box {
    position: relative;
  }

  .about-box__img-wrapper {
    width: 70%;
  }

  .about-box__desc {
    position: absolute;
    right: 20px;
    bottom: -20px;
    width: 555px;
    margin: 0;
    padding: 60px;
  }

  .about-box__subtitle {
    font-size: 24px;
  }

  .about-box__title {
    font-size: 32px;
  }

  .about-box__text {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-box--reverse {
    display: flex;
    justify-content: right;
  }

  .about-box--reverse .about-box__desc {
    left: 20px;
  }
  .about__btn {
    margin-top: 70px;
  }

  /* トレーナー */
  .tab {
    font-size: 18px;
  }

  .tab {
    padding: 5px 0 20px 0;
  }

  .person-box__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .person-list {
    display: grid;
    column-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }


  /* スタジオ */
  .swiper-button-next,
  .swiper-button-prev {
    width: 60px;
    height: 60px;
  }

  .swiper-button-prev {
    left: -30px;
  }

  .swiper-button-next {
    right: -30px;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 32px;
  }

  /* 料金 */
  .price__body {
    margin: 0;
  }

  .price-list {
    display: grid;
    padding-right: 0;
    column-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }

  .price-list__scroll {
    display: none;
  }

  .price-box {
    width: auto;
    margin: 0;
  }

  /* CTA */
  .cta {
    padding-top: 40px;
  }

  .cta__title {
    font-size: 64px;
    margin-bottom: 15px;
  }

  .cta__body {
    padding: 50px 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .about {
    max-width: 1000px;
    margin: 0 auto;
  }

  .about-box__title {
    font-size: 24px;
  }

  .about-box__desc {
    width: 400px;
    padding: 30px;
  }
  
}

@media screen and (max-width: 480px) {
  .person-list {
    flex-direction: column;
  }
}

/*================================
  共通スタイル（既存のCSSに追加または調整）
=================================*/
/* コンテンツのコンテナ設定 */
.contact-container,
.access-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクションタイトルの共通設定 */
.section-title-container {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #333; /* サイトに合わせた色 */
  margin: 0;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 5px 0 0 0;
  color: #333; /* サイトに合わせた色 */
}

/* セクションタイトルの共通設定 */
.section-title-container {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #333; /* サイトに合わせた色 */
  margin: 0;
  letter-spacing: 2px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 5px 0 0 0;
  color: #333; /* サイトに合わせた色 */
}

/*================================
  お問い合わせフォームセクション (NEW DESIGN)
=================================*/
.contact {
  padding: 80px 0;
  background-color: #29B8D0; /* 背景色を水色に変更 */
}

/* お問い合わせセクションのタイトル色を白に */
.contact .section-subtitle,
.contact .section-title {
  color: white;
}

.contact-form-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-intro {
  text-align: center;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
  color: #333;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #aaa; /* 枠線を黒く太く */
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff; /* 背景を白に */
  color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa; /* プレースホルダーの文字色 */
}


.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #29B8D0; /* フォーカス時に水色に */
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #29B8D0; /* ボタンの色を水色に変更 */
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px; /* 角丸を調整 */
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.submit-btn:hover {
  background-color: #29B8D0; /* ホバー時の少し濃い水色 */
}

/*================================
  モーダルウインドウ全体
=================================*/

/* モーダルウインドウ */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 0.4s ease;
  max-width: 90%;
  width: 400px;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

#closeModal {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: #29B8D0;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

#closeModal:hover {
  background: #22a4bb;
}




/*================================
  アクセスマップセクション (変更なし)
=================================*/
.access {
  padding: 80px 0;
  background-color: #fff;
  color: #333;
}
.access .section-subtitle,
.access .section-title,
.access-info h3,
.access-info p {
  color: #333;
}
.access-info {
  text-align: center;
  margin-bottom: 40px;
}
.access-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.access-info p {
  font-size: 1rem;
  line-height: 1.8;
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/*================================
  レスポンシブデザイン (変更なし)
=================================*/
@media screen and (max-width: 768px) {
  .contact-container,
  .access-container {
    padding: 0 15px;
  }
  
  .section-title-container {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 2rem;
  }
  .contact, .access {
    padding: 60px 0;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 0.95rem;
  }
  .submit-btn {
    padding: 12px;
    font-size: 1rem;
  }
  .access-info {
    margin-bottom: 30px;
  }
  .access-info h3 {
    font-size: 1.3rem;
  }
  .access-info p {
    font-size: 0.8rem;
  }
}

/* @media screen and (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
}

  /* ====== フッターベース ====== */
.site-footer {
  background-color: #000;   /* 黒背景 */
  color: #fff;              /* 白文字 */
  text-align: center;
  padding: 30px 20px;
  font-family: sans-serif;
}

.footer-logo img {
  max-width: 140px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* ロゴが黒系なら白反転 */
}

/* 店舗情報 */
.footer-info p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.6;
}

/* SNSアイコン */
.footer-social {
  margin: 20px 0;
}

.footer-social__item {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
  }

.footer-social a {
  color: #fff;
  font-size: 24px;
  margin: 0 10px;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.6;
}

/* コピーライト */
.footer-copy {
  font-size: 13px;
  margin-top: 10px;
  color: #ccc;
}


/* ====== レスポンシブ対応 ====== */
@media screen and (max-width: 768px) {
  .site-footer {
  background-color: #000;   /* 黒背景 */
  color: #fff;              /* 白文字 */
  text-align: center;
  padding: 30px 20px;
  font-family: sans-serif;
  }

  .footer-logo img {
    max-width: 140px;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1); /* ロゴが黒系なら白反転 */
  }

  .footer-info p {
  margin: 5px 0;
  font-size: 10px;
  line-height: 1.6;
  }

  /* SNSアイコン */
  .footer-social {
  margin: 20px 0;
}

.footer-social__item {
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
  }

  .footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 8px;
    transition: opacity 0.3s;
  }

  .footer-copy {
    font-size: 12px;
    margin-top: 10px;
    color: #ccc;
  }
}

/* スマートフォン向けのスタイル */
@media (max-width: 768px) {

.hero {
    position: relative;
    width: 100%;
    height: auto; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    
    padding-top: 60px; /* ★ヘッダーの高さに合わせて調整 */
    box-sizing: border-box; /* paddingを含めた高さになるように */
}

  .video-background {
    width: 100%;
  position: relative;
  padding-top: 56.25%; /* 16:9比率 */
}
  .video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: none; /* 中央揃えのための変換を無効化 */
  }

  .intro__text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

}





/* @media screen and (max-width: 480px) {
 .site-footer {
  background-color: #000;
  color: #fff;              
  text-align: center;
  padding: 30px 20px;
  font-family: sans-serif;
}
  .footer-info p {
    font-size: 8px;
  }

  .footer-social a {
    font-size: 18px;
    margin: 0 6px;
  }

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