/**********************************************
1. 全体設定（基本スタイル）
**********************************************/
:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --container: 1100px;
  font-family: 'Noto Sans JP', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h2 {
  color: #006400; /* 濃い緑 */
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/**********************************************
2. ヘッダー
**********************************************/
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
}

/**********************************************
3. ヒーロー（スライダー）
**********************************************/
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  color: #fff;
  background-color: #fff; /* 横幅いっぱい */
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0 20px;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 48px);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.btn {
  display: inline-block;
  background: #fff;
  color: #111;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

/**********************************************
4. 特徴セクション（背景交互）
**********************************************/
#features {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9; /* 淡いグレー */
  text-align: center;
}

#features .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

#features .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

#features h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#features p {
  line-height: 2.2;
  font-size: 1rem;
  color: #333;
}

.features-photo {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.emphasis {
  font-size: 1.1em;
  font-weight: 700;
}

/**********************************************
5. メニュー（白背景）
**********************************************/
#process {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

#process .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.process-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.process-image {
  text-align: center;
}

.process-text {
  text-align: left;
}

.process-text h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.process-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.more-menu {
  margin-top: 40px;
  text-align: center;
}

.more-menu .btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  margin-bottom: 16px;
}

.more-menu .btn:hover {
  background: #444;
  transform: translateY(-2px);
}

.process-link {
  text-decoration: none;      /* 下線なし */
  color: inherit;             /* 文字色そのまま */
}

.process-link li {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-link li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}


.center-text .process-text {
  text-align: center;
}

.no-link-item {
  cursor: default; /* リンクじゃない感じを出す */
}

/* お得な回数券用 */
.process-item.no-link-item {
  display: flex;
  justify-content: center; /* 横方向中央寄せ */
  text-align: center;
  padding: 20px 0;         /* 上下余白 */
}

.process-item.no-link-item .process-text h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: #333;
}


/**********************************************
6. 目的別プログラム（淡グレー背景）
**********************************************/
#programs {
  width: 100%;
  padding: 80px 0;
  background-color: #f9f9f9; /* 背景色 */
  text-align: center;
}

#programs .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

#programs h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #006400;
}

#programs .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch; /* ←カードの高さを揃える */
}

#programs .card {
  display: flex;
  flex-direction: column; /* 上から下に配置 */
  justify-content: flex-start; /* 必要に応じて調整 */
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%; /* 高さを揃える */
}

#programs .card:hover {
  transform: translateY(-4px);
}

.program-photo {
  width: 100%;
  height: 180px; /* 画像の高さを揃える */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

#programs p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  flex-grow: 1; /* 下のスペースを埋めてカードを均等に */
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  #programs .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .program-photo {
    height: auto; /* スマホでは高さ固定を解除 */
  }
}


/**********************************************
7. 推薦・お客様の声（白背景）
**********************************************/
#voices {
  width: 100%;
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

#voices .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

#voices h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #006400;
}

#voices .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

#voices .card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

#voices .card:hover {
  transform: translateY(-4px);
}

#voices p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

#voices .card {
  text-align: center;
}

#voices .voice-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%; /* 丸型写真 */
  margin-bottom: 12px;
}


/**********************************************
7. お客様の声（白背景）
**********************************************/

/* セクション全体を中央配置に */
#customer-voices .container {
  text-align: center;
}

/* カードを中央に寄せる */
#customer-voices .grid-3 {
  display: flex;
  justify-content: center;
}

/* カード幅調整（必要なら） */
#customer-voices .card {
  max-width: 380px;
}

/* もっと見るボタン */
.more-voices {
  margin-top: 30px;
}

.more-voices .btn-voices {
  display: inline-block;
  background-color: #111;  /* 黒ベースで統一 */
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.more-voices .btn-voices:hover {
  background-color: #444;
  transform: translateY(-2px);
}




/**********************************************
9. アクセス（白背景）
**********************************************/
#access {
  width: 100%;
  padding: 64px 0;
  background-color: #f9f9f9; /* 背景を淡いグレーに変更 */
}

#access .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

#access h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  text-align: center;
}

#access .grid-2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

#access .access-info p {
  line-height: 1.8;
  font-size: 1rem;
  color: #333;
  margin: 8px 0;
}

/* マップを大きく＆中央表示 */
#access .access-map {
  display: flex;
  justify-content: center;
  width: 100%;
}

#access .access-map iframe {
  width: 100%;        /* 親幅いっぱい */
  max-width: 900px;   /* 最大幅 */
  height: 350px;      /* 高さ */
  border: 0;
  border-radius: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #access .access-map iframe {
    height: 250px;
  }
}


/**********************************************
8. 予約・お問い合わせ（淡グレー背景）
**********************************************/

/* -----------------------------
   PC・タブレット用（通常表示）
----------------------------- */
#contact {
  width: 100%;
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#contact .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-buttons a {
  padding: 12px 0;
  font-size: 0.95rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  color: #fff;
  min-width: 120px;
  box-sizing: border-box;
}

/* ボタンカラー */
.contact-buttons .line-btn { background-color: #00c300; }
.contact-buttons .line-btn:hover { background-color: #009900; }

.contact-buttons .phone-btn { background-color: #1a73e8; }
.contact-buttons .phone-btn:hover { background-color: #155ab6; }


/* -----------------------------
   スマホ用（下部固定・別々）
----------------------------- */
@media (max-width: 768px) {
  #contact {
    padding-bottom: 80px; /* 下固定ボタン用に余白を追加 */
  }

  /* LINEボタン固定 */
  .contact-buttons .line-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    padding: 12px 0;
    font-size: 0.95rem;
    border-radius: 0;
    text-align: center;
    z-index: 1000;
  }

  /* 電話ボタン固定 */
  .contact-buttons .phone-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    padding: 12px 0;
    font-size: 0.95rem;
    border-radius: 0;
    text-align: center;
    z-index: 1000;
  }
}










/* インスタ */

.insta-center {
  text-align: center;   /* 真ん中寄せ */
  margin: 20px 0;       /* 上下に余白 */
}

.insta-link {
  display: inline-block;
}

.insta-icon {
  width: 40px;          /* 好みで調整 */
  height: 40px;
  transition: transform 0.3s ease;
}

.insta-icon:hover {
  transform: scale(1.1); /* ホバーで少し大きく */
}





/**********************************************
10. フッター
**********************************************/
.site-footer {
  background: #111;
  color: #fff;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  margin: 0;
}

/**********************************************
11. レスポンシブ
**********************************************/
@media (max-width: 900px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 48vh;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 0;
    background: #fff;
    width: 260px;
    height: calc(100% - 68px);
    transform: translateX(110%);
    transition: transform 0.28s ease;
    padding: 20px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  #features .grid-2,
  #programs .grid-3,
  #voices .grid-3,
  #access .grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-photo,
  .director-photo {
    max-width: 400px;
    margin: 20px auto 0;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-buttons .btn {
    width: 80%;
    max-width: 300px;
    margin-bottom: 12px;
  }

  #access .access-map iframe {
    height: 150px;
  }
}
