@charset "UTF-8";
/* CSS Document */

    body {
      margin: 0;
      font-family: "Noto Sans JP", sans-serif;
      background-color:#e2d4b7;
      color: #fff;
      line-height: 1.6;
    }

    a { color: #fff; 
	text-decoration: none; 
	font-size: 15px;}

    h2 {
      text-align: center;
      margin-bottom: 40px;
      color: white;
    }

/* ヘッダー */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #786E6E;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ロゴ */
.logo a {
  color: gold;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
}

/* ナビゲーション */
nav {
  flex: 1;
  text-align: center;
}
nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: inline-flex;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #E1C924;
}

/* 体験予約ボタン */
.cta-btn {
  background: gold;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #fff;
  color: #000;
}

/* ハンバーガー */
.hamburger {
  display: none; /* PCでは非表示 */
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* PC/スマホ切り替え */
.desktop-cta { display: inline-block; }
.mobile-cta { display: none; }

/* ナビ（スマホ時用） */
@media (max-width: 1100px) {
  nav {
    display: none;
    position: absolute;
    top: 60px; 
    right: 0;
    background: rgba(0,0,0,0.95);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    z-index: 2000;   /* ★ここを追加して最前面に出す */
    width: 200px;    /* 幅を指定して見やすくする */
	height: 300px;
  }
  
  nav.active { display: block; }

  nav ul { display: block; }
  nav ul li { margin: 10px 0; }

  .hamburger { display: flex; }
  .desktop-cta { display: none; }
  .mobile-cta { display: block; margin-top: 15px; }
}
	
 /* ヒーロースライダー */
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      margin-top: 70px; /* ヘッダー分 */

    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
	  display: inline-block; /* text-align:center と組み合わせて中央に */
    }

.hero .slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.hero {
  display: flex;
  justify-content: center; /* 横方向中央寄せ */
  align-items: center;     /* 縦方向中央寄せ（必要なら） */
  margin: 120px 30px 0 30px; /* ヘッダー分 */
}

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

@media screen and (max-width: 1024px) {
  .hero .slide img { height: 80vh; }
}

@media screen and (max-width: 768px) {
  .hero .slide img { height: 60vh; }
}

@media screen and (max-width: 480px) {
  .hero .slide img { height: 40vh; }
}


@media screen and (max-width: 768px) {
  .hero .slide img {
    width: 90%;   /* 90%にして余白を作る */
    margin: 0 auto;
    display: block;
	
  }
}

    .slide.active {
      opacity: 1;
    }
    .hero h1 { font-size: 48px; margin-bottom: 20px; text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
    .hero p { font-size: 20px; margin-bottom: 30px; }
    .hero .btn-group a {
      margin: 0 10px; padding: 12px 24px;
      background: #a64ca6; border-radius: 8px; font-weight: bold; transition: 0.3s;
    }
    .hero.btn-group a:hover { background: #fff; color: #000; }

    /* セクション共通 */
    section { padding: 60px 30px; }

    /* 特徴 */
    .features {
      display: grid;
	  grid-template-columns:repeat(3, 1fr);
	  gap: 20px;
	  background: #111;
    }
    .feature-card {
      background: #1a1a1a; padding: 30px; border-radius: 10px; text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    .feature-card h3 {
	color: white;
	margin-bottom: 10px; 
	font-size: 30px;
	}
	
	.feature-card p{
	font-size: 20px;
	}

@media screen and (max-width: 900px) {
  .features {
    grid-template-columns: 1fr; /* 1列に */
  }
}

    /* 料金 */
    .pricing-cards {
      display: grid;
	  grid-template-columns: repeat(3, 1fr);
      gap: 20px;
	  max-width: 1000px;
	  margin: 0 auto;
    }
    .pricing-card {
      background: #1a1a1a; padding: 30px; border-radius: 10px; text-align: center;
    }
	
	.pricing h2 {
	font-size: 50px;
	}
	
    .pricing-card h3 { 
	color: white;
	margin-bottom: 10px; 
	font-size: 30px;
	}

    /* トレーナー */
	.trainers h2{
	font-size: 50px;
	}
	
    .trainer-cards {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; max-width: 1000px; margin: 0 auto;
    }
    .trainer-card {
      background: #1a1a1a; padding: 20px; border-radius: 10px; text-align: center;
    }
    .trainer-card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
    .trainer-card h3 { margin: 10px 0; color: white; }

    /* ギャラリー */
    .gallery {
      background: #111;
    }
	
	.gallery h2{
	font-size: 50px;
	}
    .gallery-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px; max-width: 1000px; margin: 0 auto;
    }
    /*.gallery-grid img {
      width: 100%; border-radius: 10px; object-fit: cover;
    }*/
	
/* コンテナ */
.gallery-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: auto;
}

/* トラックを横並び */
.gallery-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* スライド画像 */
.gallery-track img {
  flex: 0 0 33.33%;  /* PCでは3枚 */
  border-radius: 10px;
  object-fit: cover;
}

/* スマホでは1枚 */
@media (max-width: 768px) {
  .gallery-track img {
    flex: 0 0 100%;
  }
}

/* ドットナビゲーション */
.dots {
  text-align: center;
  margin-top: 15px;
}
.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #777;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.dots span.active {
  background: #e2d4b7;
}


    /* アクセス */
    .access { text-align: center; }
	.access h2{
	font-size: 50px;
	}
	
	.access p{
	font-size: 30px;
	}
	
    .map {
      max-width: 800px; margin: 0 auto; border-radius: 10px; overflow: hidden;
    }

　　　<div id="map" style="width:100%;height:400px;"></div>



    /* お問い合わせ */
	
    .contact {
      background: #111;
      text-align: center;
    }
	
	.contact h2{
      font-size: 50px;
    }
    .contact form {
      max-width: 600px; margin: 0 auto; text-align: left;
    }
    .contact label { display: block; margin: 15px 0 5px; }
    .contact input, .contact textarea {
      width: 100%; padding: 10px; border-radius: 5px; border: none;
      margin-bottom: 10px; background: #222; color: #fff ;font-size: 25px;
    }
    .contact button {
      background: gold; border: none; padding: 12px 24px; border-radius: 5px;
      font-weight: bold; color: #fff; cursor: pointer; transition: 0.3s;
    }
    .contact button:hover { background: #fff; color: #000; }
	
	/* お問い合わせセクションだけ背景を黒に */
#contact {
  background-color: #000; /* 黒 */
  color: #fff;            /* テキストを白にして見やすく */
  padding: 40px 20px;     /* 上下左右に余白も足すときれい */
}

/* フォーム内のテキストやボタンの色も調整 */
#contact input,
#contact textarea {
  background-color: #fff; /* 入力欄は白 */
  color: #000;            /* 文字は黒 */
}

    /* フッター */
    footer {
      background: #786E6E;
      padding: 40px 20px;
      text-align: center;
    }

    footer .footer-logo a{
      font-size: 30px;
      font-weight: bold;
      color: gold;
      margin-bottom: 20px;
    }

    footer .footer-logo:hover {
     background-color: rgba(180,180,255,0.25)
    }

    footer nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
      flex-wrap: wrap;
    }

    footer nav ul li {
      margin: 0 20px;
    }
	
	footer nav ul li a{
	font-size: 25px;
	}

    footer nav ul li a:hover {
	  background-color: rgba(180,180,255,0.25)
     }

    footer .sns {
      margin-bottom: 20px;
    }

    footer .sns a {
      margin: 0 10px;
      font-size: 25px;
    }
	
	footer .sns a:hover {
	  color:#E1C924;
	  background-color: rgba(180,180,255,0.25)
	  
      }

    footer p {
      font-size: 14px;
      color: #aaa;
    }
    /* レスポンシブ */
    @media (max-width: 768px) {
      nav ul /*{display: none; }*/
      .features, .pricing-cards, .trainer-cards { grid-template-columns: 1fr; }
      .hero h1 { font-size: 32px; }
    }