/*
Theme Name: TomoGolf LP Theme
Theme URI: https://tomo-golf.com
*/

/* ==========================================
   リセット・基本設定
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================
   ①ヘッダー
========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #1a2233;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.header-logo a {
  display: block;
  height: 100%;
}

.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-nav {
  display: flex;
  gap: 30px;
}

.header-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.header-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.header-btn:hover {
  opacity: 0.8;
}

.header-btn.trial {
  background: #ef670a;
  color: #fff;
}

.header-btn.line {
  background: #00b900;
  color: #fff;
}

.header-btn.pack {
  background: #ffd700;
  color: #333;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ヘッダー分の余白 */
.main-visual {
  margin-top: 80px;
}

/* ==========================================
   共通セクション設定
========================================== */
.section {
  padding: 40px 0;
  text-align: center;
}

.section img {
  margin: 0 auto;
}

.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    
    .sp-only {
        display: block !important;
    }
}

/* ==========================================
   セクション見出し
========================================== */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

/* 画像見出し */
.section-heading img {
  max-width: 500px;
  margin: 0 auto;
}

/* テキスト見出し */
.section-heading h2 {
  color: #1a2233;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}

/* ==========================================
   ②メインビジュアル
========================================== */
.main-visual {
  padding: 0;
}

.main-visual img {
  width: 100%;
}

/* ==========================================
   ③キャンペーン
========================================== */
.campaign {
  background-image: url('img/campaign_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.campaign img {
  max-width: 500px;
}

.campaign a {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  transition: opacity 0.3s;
}

.campaign a:hover {
  opacity: 0.8;
}

.campaign a img {
  max-width: 100%;
}

/* ==========================================
   ④実績
========================================== */
.jisseki {
  background: linear-gradient(135deg, #0e0c1d 0%, #313847 100%);
}

.jisseki img {
  max-width: 900px;
}

/* ==========================================
   ⑤お客様の声
========================================== */
.voice {
  background: #efefef;
}

.voice img {
  max-width: 900px;
}

/* ==========================================
   ⑥お悩み
========================================== */
.onayami {
  background-image: url('img/onayami_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 60px 20px;
}

.onayami-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.onayami-heading {
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  font-size: 32px;
  font-weight: bold;
  color: #c9a96e;
  margin-bottom: 30px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.onayami-bubble {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 35px 40px;
  position: relative;
  margin-bottom: 20px;
}

.onayami-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 22px solid rgba(255, 255, 255, 0.92);
}

.onayami-list {
  list-style: disc;
  text-align: left;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.onayami-list li {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

.onayami-list li::marker {
  color: #666;
}

.onayami-message {
  margin-top: 40px;
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  font-size: 28px;
  font-weight: bold;
  color: #c9a96e;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.onayami-highlight {
  background: linear-gradient(transparent 60%, rgba(201,169,110,0.4) 60%);
}

.onayami-banner {
  margin-top: 30px;
  background: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 30%, #c9a96e 50%, #a8884d 100%);
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.onayami-banner p {
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}


/* ==========================================
   ⑦選ばれる理由
========================================== */
.reason {
  padding: 60px 20px;
}

.reason-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.reason-item {
  display: flex;
  gap: 30px;
  align-items: center;
}

.reason-item--right {
  flex-direction: row-reverse;
}

.reason-photo {
  flex-shrink: 0;
  width: 45%;
}

.reason-photo {
  height: 250px;
  overflow: hidden;
}

.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  border-radius: 10px;
  display: block;
}

.reason-text {
  flex: 1;
}

.reason-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 30%, #c9a96e 50%, #a8884d 100%);
  border-radius: 5px;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.reason-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.9;
}

.reason-text strong {
  color: #333;
}

/* コーチ紹介（画像のまま） */
.reason-coach {
  text-align: center;
}

.reason-coach img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* ==========================================
   ⑨設備
========================================== */
.facility {
  padding: 60px 20px;
}

.facility-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.facility-card {
  text-align: left;
}

.facility-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  height: 200px;
}

.facility-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.facility-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2233;
  margin-bottom: 10px;
}

.facility-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* ==========================================
   ⑩シミュレーター
========================================== */
.simulator {
  background: linear-gradient(135deg, #0e0c1d 0%, #313847 100%);
  padding: 60px 20px;
}

.simulator-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.simulator-heading {
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'HGS明朝E', serif;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 50px;
}

.simulator-body {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  line-height: 2;
}

.simulator-body p {
  margin-bottom: 30px;
}

.simulator-body strong {
  font-size: 19px;
  font-weight: 700;
}

.simulator-cta {
  margin-top: 40px;
  color: #c9a96e;
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.simulator-arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: #c9a96e;
  font-size: 14px;
}

.simulator img {
  max-width: 400px;
}

/* シミュレーター後のキャンペーン画像 */
.simulator-campaign {
  margin-top: 40px;
}

.simulator-campaign img {
  max-width: 500px;
}

.simulator-campaign a {
  display: block;
  max-width: 500px;
  margin: 0 auto;
  transition: opacity 0.3s;
}

.simulator-campaign a:hover {
  opacity: 0.8;
}

.simulator-campaign a img {
  max-width: 100%;
}

/* ==========================================
   ⑪料金
========================================== */
#price {
    padding: 60px 20px;
}

.price-content {
    max-width: 900px;
    margin: 0 auto;
}

.price-main-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #42ad32;
    text-align: center;
    margin-bottom: 15px;
}

.price-sub {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* レッスン紹介カード */
.price-lesson-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.price-lesson-card {
    border: 2px solid #42ad32;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 20px 0;
}

.price-lesson-label {
    background: #42ad32;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
}

.price-lesson-photo {
    height: 200px;
    overflow: hidden;
}

.price-lesson-photo img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    margin: -5% 0 0 -5%;
    display: block;
}

.price-lesson-desc {
    padding: 15px 20px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* 料金テーブル共通 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    font-size: 15px;
}

.price-table thead th {
    padding: 14px 10px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.price-table tbody td {
    padding: 16px 10px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.price-table-corner {
    width: 80px;
}

.price-table-count {
    font-weight: 700;
    font-size: 18px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.price-unit {
    font-size: 14px;
    color: #555;
    margin-left: 2px;
}

/* グリーンテーブル */
.price-table--green thead th {
    background: #42ad32;
}

.price-table--green .price-table-corner {
    background: #e8e8e8;
    color: #333;
}

.price-table--green .price-amount {
    color: #42ad32;
}

/* ネイビーテーブル */
.price-table--navy thead th {
    background: #1a2233;
}

.price-table--navy .price-amount {
    color: #1a2233;
}

/* セクション見出し（打ち放題・都度払い） */
.price-section-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #1a2233;
    margin-bottom: 20px;
}

/* キャンペーンバナー */
.price-campaign {
    text-align: center;
    margin: 10px 0 50px;
}

.price-campaign a {
    display: inline-block;
    transition: opacity 0.3s;
}

.price-campaign a:hover {
    opacity: 0.8;
}

.price-campaign img {
    max-width: 700px;
    width: 100%;
}

/* 特別レッスンカード */
.price-special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.price-special-card {
    border-radius: 12px;
    overflow: hidden;
    padding-bottom: 20px;
}

.price-special-card h4 {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
}

.price-special--orange {
    background: #f5f5f5;
}

.price-special--orange h4 {
    background: #ef670a;
}

.price-special--cyan {
    background: #f5f5f5;
}

.price-special--cyan h4 {
    background: #5bbfc5;
}

.price-special-photo {
    padding: 15px 20px 0;
    height: 220px;
    overflow: hidden;
}

.price-special-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
    display: block;
}

.price-special-info {
    padding: 15px 20px 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.price-amount-lg {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}

.price-special-sub {
    font-size: 16px;
    color: #555;
    margin-left: 10px;
}

.price-special-sub strong {
    font-size: 18px;
    color: #333;
}

/* ==========================================
   ⑫ご利用の流れ
========================================== */
.flow {
  padding: 60px 20px;
}

.flow-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-step {
  width: 100%;
  background: #fff;
  border: 2px solid #42ad32;
  border-radius: 10px;
  padding: 25px 30px;
}

.flow-step-header {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 12px;
}

.flow-step-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #42ad32;
  letter-spacing: 1px;
}

.flow-step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2233;
}

.flow-step-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.flow-highlight {
  color: #42ad32;
  font-weight: 700;
}

.flow-arrow {
  color: #42ad32;
  font-size: 22px;
  padding: 8px 0;
}

/* ==========================================
   ⑬よくある質問（アコーディオン）
========================================== */
.qa {
  padding: 40px 20px;
  background: #efefef;
}

.qa-list {
  max-width: 900px;
  margin: 0 auto;
}

.qa-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.qa-question {
  padding: 25px 30px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8f9fa;
  transition: background 0.3s;
  text-align: left;
}

.qa-question:hover {
  background: #e9ecef;
}

.qa-question::before {
  content: 'Q';
  color: #42ad32;
  font-size: 20px;
  flex-shrink: 0;
  font-weight: bold;
}

.qa-question::after {
  content: '+';
  position: absolute;
  right: 30px;
  font-size: 30px;
  transition: transform 0.3s;
  font-weight: normal;
  color: #666;
}

.qa-item.active .qa-question::after {
  transform: rotate(45deg);
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.qa-item.active .qa-answer {
  max-height: 800px;
}

.qa-answer-content {
  padding: 30px;
  padding-left: 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
  text-align: left;
}

/* ==========================================
   ⑭施設概要
========================================== */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.about-left {
  flex: 1;
  max-width: 600px;
  display: flex;
}

.about-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  border-radius: 10px;
}

.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.about-right img {
  width: 100%;
  max-width: 100%;
}

.about-info {
  padding: 20px 0;
  line-height: 1.8;
  color: #333;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.about-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-info p:last-child {
  margin-bottom: 0;
}

/* 電話番号を大きく */
.about-info .about-tel {
  font-size: 32px;
  font-weight: bold;
  margin: 15px 0;
  color: #1a2233;
}

.about-info .about-tel span {
  font-size: 16px;
  font-weight: normal;
  margin-right: 10px;
}

/* ==========================================
   ⑮フッター
========================================== */
.footer {
  background: #1a2233;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #999;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.2);
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.footer-contact-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.footer-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00b900;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.footer-line-btn:hover {
  opacity: 0.8;
}

.footer-line-btn img {
  width: 20px;
  height: 20px;
}

.footer-copy {
  text-align: center;
  padding-top: 30px;
  font-size: 10px;
  color: #999;
}

/* ==========================================
   スマホ用固定メニュー
========================================== */
/* 下部固定メニュー（スマホのみ） */
.mobile-fixed-bottom {
  display: none;
}

/* ==========================================
   レスポンシブ（タブレット）
========================================== */
@media (max-width: 1024px) {
  .header-nav {
    gap: 20px;
  }
  
  .header-nav a {
    font-size: 14px;
  }
  
  .header-buttons {
    gap: 10px;
  }
  
  .header-btn {
    padding: 8px 15px;
    font-size: 13px;
  }
}

/* ==========================================
   レスポンシブ（スマホ）
========================================== */
@media (max-width: 768px) {
  /* ヘッダー */
  .header {
    height: 70px;
  }
  
  .header-container {
    padding: 0 15px;
    justify-content: space-between;
  }
  
  /* ロゴを左に */
  .header-logo {
    height: 40px;
    order: 1;
    display: flex;
    align-items: center;
  }
  
  .header-logo a {
    display: block;
    height: 100%;
  }
  
  .header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
  }
  
  /* ハンバーガーメニューを右に */
  .hamburger {
    display: flex;
    order: 2;
  }
  
  .header-right {
    display: none;
  }
  
  /* モバイルメニュー */
  .header-right.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1a2233;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .header-right.active .header-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .header-right.active .header-buttons {
    display: none;
  }
  
  .main-visual {
    margin-top: 70px;
  }
  
  /* セクション余白調整 */
  .section {
    padding: 30px 15px;
  }
  
  /* セクション見出し */
  .section-heading {
    margin-bottom: 30px;
  }
  
  .section-heading h2 {
    font-size: 16px;
  }
  
  /* スマホ画像の最大幅 */
  .section-heading img {
    max-width: 100%;
  }
  
  /* PC画像非表示 */
  .pc-only {
    display: none;
  }
  
  /* スマホ画像表示 */
  .sp-only {
    display: block;
  }
  
  /* スマホ画像の最大幅 */
  .jisseki img,
  .voice img,
  .simulator img {
    max-width: 100%;
  }

/* ご利用の流れ（スマホ） */
  .flow {
    padding: 40px 15px;
  }

  .flow-step {
    padding: 20px 15px;
  }

  .flow-step-num {
    font-size: 22px;
  }

  .flow-step-title {
    font-size: 16px;
  }

  .flow-step-desc {
    font-size: 14px;
  }
	
/* 選ばれる理由（スマホ） */
  .reason {
    padding: 40px 15px;
  }

  .reason-content {
    gap: 35px;
  }

  .reason-item,
  .reason-item--right {
    flex-direction: column;
  }

  .reason-item--right .reason-photo {
    order: -1;
  }

  .reason-photo {
    width: 100%;
    margin: 0 auto;
  }

  .reason-heading {
    font-size: 18px;
  }

  .reason-text p {
    font-size: 14px;
  }

  .reason-coach img {
    max-width: 100%;
  }
  
  /* キャンペーン画像 */
  .campaign img {
    max-width: 100%;
  }
  
  .campaign a {
    max-width: 100%;
  }
  

/* 設備セクション（スマホ） */
  .facility {
    padding: 40px 15px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
  }

  .facility-title {
    font-size: 18px;
  }

  .facility-desc {
    font-size: 14px;
  }

  .simulator-cta {
    font-size: 17px;
  }

  /* シミュレーター（スマホ） */
  .simulator {
    padding: 40px 15px;
  }

  .simulator-heading {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .simulator-body {
    font-size: 15px;
    line-height: 1.9;
  }

  .simulator-body p {
    margin-bottom: 20px;
  }

  .simulator-body strong {
    font-size: 16px;
  }

  .simulator-cta {
    margin-top: 30px;
    font-size: 17px;
  }

  /* シミュレーター後のキャンペーン */
  .simulator-campaign {
    margin-top: 30px;
  }
  
  .simulator-campaign img {
    max-width: 100%;
  }
  
  .simulator-campaign a {
    max-width: 100%;
  }
	
  /* シミュレーターh2の余白調整 */
  .simulator-h2 {
    padding: 60px 15px;
  }
  
  /* 料金（スマホ） */
  #price {
    padding: 40px 15px;
  }

  .price-main-heading {
    font-size: 20px;
  }

  .price-lesson-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .price-lesson-label {
    font-size: 16px;
  }

  .price-lesson-desc {
    font-size: 14px;
  }

  .price-table {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .price-table thead th {
    font-size: 12px;
    padding: 10px 5px;
  }

  .price-table tbody td {
    padding: 12px 5px;
  }

  .price-amount {
    font-size: 18px;
  }

  .price-unit {
    font-size: 12px;
  }

  .price-table-count {
    font-size: 16px;
  }

  .price-section-heading {
    font-size: 20px;
  }

  .price-campaign img {
    max-width: 100%;
  }

  .price-special-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 40px auto 0;
  }

  .price-special-photo {
    height: 180px;
  }

  .price-amount-lg {
    font-size: 28px;
  }
  

  /* お悩みセクション（スマホ） */
  .onayami {
    background-image: url('img/onayami_bg_sp.jpg');
    padding: 40px 15px;
  }

  .onayami-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .onayami-bubble {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .onayami-list li {
    font-size: 14px;
    gap: 8px;
  }

  .onayami-list {
    gap: 8px;
  }

  .onayami-message {
    font-size: 16px;
    margin-top: 30px;
  }

  .onayami-banner {
    padding: 20px 15px;
    margin-top: 25px;
  }

  .onayami-banner p {
    font-size: 18px;
  }

  /* 背景画像のスクロール固定を解除（モバイルパフォーマンス対策） */
  .campaign,
  .onayami {
    background-attachment: scroll;
  }
  
  /* Q&A */
  .qa {
    padding: 30px 15px;
  }
  
  .qa-question {
    padding: 20px 15px;
    font-size: 14px;
  }
  
  .qa-question::before {
    font-size: 18px;
  }
  
  .qa-question::after {
    right: 15px;
    font-size: 26px;
  }
  
  .qa-answer-content {
    padding: 20px 20px 20px 20px;
    font-size: 14px;
  }
  
  /* 施設概要 */
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .about-left,
  .about-right {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .about-map {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  
  .about-info {
    padding: 5px 0;
    font-size: 14px;
    height: auto;
  }
  
  .about-info p {
    font-size: 14px;
  }
  
  /* スマホでも電話番号を大きく */
  .about-info .about-tel {
    font-size: 20px;
    margin: 5px 0;
  }
  
  .about-info .about-tel span {
    font-size: 12px;
  }
  
  /* フッター */
  .footer {
    padding: 40px 20px 30px;
  }
  
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
  }
  
  .footer-left {
    align-items: center;
    text-align: center;
  }
  
  .footer-logo img {
    height: 60px;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .footer-tel {
    font-size: 24px;
  }
  
  .footer-copy {
    font-size: 11px;
  }
  
  /* 下部固定メニュー */
  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a2233;
    padding: 10px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  }
  
  .mobile-bottom-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .mobile-bottom-btn {
    flex: 1;
    padding: 10px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transition: opacity 0.3s;
    display: block;
  }
  
  .mobile-bottom-btn:active {
    opacity: 0.7;
  }
  
  .mobile-bottom-btn.trial {
    background: #ef670a;
    color: #fff;
  }
  
  .mobile-bottom-btn.pack {
    background: #ffd700;
    color: #333;
  }
  
  .mobile-bottom-btn.line {
    background: #00b900;
    color: #fff;
    width: 100%;
  }
  
  /* 下部メニューの高さ分、コンテンツに余白を追加 */
  body {
    padding-bottom: 130px;
  }
  
  /* フッターの調整 */
  .footer {
    padding-bottom: 150px;
  }
}
