/**
 * 岩盤浴についてページ - ラグジュアリーデザイン
 * テンプレート専用CSS
 */

/* ========================================
   CSS変数 - カラースキーム
   ======================================== */

:root {
  --luxury-gold: #D4AF37;
  --luxury-dark: #2C2C2C;
  --luxury-text: #333333;
  --luxury-bg: #FAFAFA;
}

/* ========================================
   ページ全体の設定
   ======================================== */

.page-about-template {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--luxury-text);
  /* alignfullブロックが全幅になるように */
  max-width: 100%;
  overflow-x: hidden;
}

/* alignfullブロックをメインコンテナから突き出させる */
.page-about-template > .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* ========================================
   ヒーローセクション（Coverブロック）
   ======================================== */

/* 最初のカバーブロック（ページヒーロー）の高さ - 下層ページ統一 */
.page-about-template .wp-block-cover:first-of-type {
  min-height: 70vh !important;
}

.page-about-template .wp-block-cover:first-of-type .wp-block-cover__background {
  opacity: 0.5 !important;
}

/* パララックス効果（背景固定） - PCのみ */
@media (min-width: 769px) {
  .page-about-template .wp-block-cover__image-background {
    background-attachment: fixed !important;
  }
}

/* ========================================
   見出しスタイル（カバーブロック以外）
   ======================================== */

.page-about-template h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--luxury-dark);
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  position: relative;
}

.page-about-template h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--luxury-gold) 50%,
    transparent 100%
  );
}

.page-about-template h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--luxury-dark);
  margin-bottom: 1.5rem;
}

.page-about-template h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--luxury-dark);
  margin: 0 0 1rem 0;
}

/* カバーブロック内の見出し - 下層ページ統一 */
.page-about-template .wp-block-cover h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: 36px !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em !important;
  line-height: 1.3 !important;
  color: white !important;
  margin-bottom: 1rem !important;
  padding: 0 !important;
  text-align: center !important;
}

.page-about-template .wp-block-cover h3 {
  color: white !important;
}

.page-about-template .wp-block-cover p {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  color: white !important;
  text-align: center !important;
}

.page-about-template .wp-block-cover h2::after,
.page-about-template .wp-block-cover h3::after {
  display: none !important;
}

/* ========================================
   天照石とはセクション - 2カラムデザイン
   ======================================== */

.page-about-template .amaterasu-media-text {
  margin-top: 4rem;
}

.page-about-template .amaterasu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* 画像エリア */
.page-about-template .amaterasu-image-area {
  position: relative;
}

.page-about-template .amaterasu-image-area::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--luxury-gold);
  border-radius: 18px;
  opacity: 0.3;
  pointer-events: none;
}

.page-about-template .amaterasu-image-area img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
  display: block;
}

.page-about-template .amaterasu-grid:hover .amaterasu-image-area img {
  transform: scale(1.05);
}

/* テキストエリア */
.page-about-template .amaterasu-text-area {
  padding: 3rem 3rem 3rem 4rem;
  position: relative;
}

.page-about-template .amaterasu-text-area::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    var(--luxury-gold) 0%,
    transparent 100%
  );
}

/* ラベル */
.page-about-template .amaterasu-intro-label {
  font-family: 'Playfair Display', serif !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 0.3em !important;
  color: var(--luxury-gold) !important;
  text-transform: uppercase;
  margin: 0 0 1.5rem 0 !important;
  display: block !important;
}

/* タイトル */
.page-about-template .amaterasu-intro-title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(28px, 4vw, 36px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  color: var(--luxury-dark) !important;
  line-height: 1.6 !important;
  margin: 0 0 1.5rem 0 !important;
  padding-bottom: 0 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* テキスト */
.page-about-template .amaterasu-intro-text {
  font-size: 16px !important;
  line-height: 2.2 !important;
  letter-spacing: 0.05em !important;
  color: var(--luxury-text) !important;
  margin: 0 0 1.8rem 0 !important;
  position: relative;
  padding-left: 1.5rem;
}

.page-about-template .amaterasu-intro-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  background: var(--luxury-gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* レスポンシブ - 天照石 */
@media (max-width: 1024px) {
  .page-about-template .amaterasu-grid {
    gap: 3rem;
  }

  .page-about-template .amaterasu-text-area {
    padding: 2rem 2rem 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .page-about-template .amaterasu-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page-about-template .amaterasu-text-area {
    padding: 2rem 0 0 2rem;
  }
}

/* ========================================
   Swiper - 特徴カード
   ======================================== */

.page-about-template .features-swiper-wrapper {
  margin-top: 4rem;
  position: relative;
  padding: 0 60px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-about-template .features-swiper {
  overflow: visible;
  padding: 20px 0 60px;
  width: 100% !important;
}

.page-about-template .features-swiper .swiper-slide {
  box-sizing: border-box;
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.page-about-template .features-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.page-about-template .feature-card-swiper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-about-template .swiper-slide-active:hover .feature-card-swiper {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.page-about-template .feature-image-swiper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.page-about-template .feature-image-swiper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-about-template .features-swiper .swiper-slide-active:hover .feature-image-swiper img {
  transform: scale(1.1);
}

.page-about-template .feature-content-swiper {
  padding: 3rem 2.5rem;
  flex: 1;
}

.page-about-template .feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--luxury-gold);
  display: block;
  margin-bottom: 1rem;
}

.page-about-template .feature-content-swiper h4 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--luxury-dark);
  margin: 0 0 1.5rem 0;
}

.page-about-template .feature-content-swiper p {
  font-size: 15px;
  line-height: 2;
  color: var(--luxury-text);
  letter-spacing: 0.04em;
  margin: 0;
}

/* Swiperナビゲーション - 特徴 */
.page-about-template .features-swiper .swiper-button-next,
.page-about-template .features-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.page-about-template .features-swiper .swiper-button-next::after,
.page-about-template .features-swiper .swiper-button-prev::after {
  font-size: 18px;
  color: var(--luxury-gold);
  font-weight: bold;
}

.page-about-template .features-swiper .swiper-button-next:hover,
.page-about-template .features-swiper .swiper-button-prev:hover {
  background: var(--luxury-gold);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.page-about-template .features-swiper .swiper-button-next:hover::after,
.page-about-template .features-swiper .swiper-button-prev:hover::after {
  color: white;
}

.page-about-template .features-swiper .swiper-pagination {
  bottom: 20px;
}

.page-about-template .features-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--luxury-dark);
  opacity: 0.3;
}

.page-about-template .features-swiper .swiper-pagination-bullet-active {
  background: var(--luxury-gold);
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

/* ========================================
   Swiper - 効果カード（ダークセクション）
   ======================================== */

.page-about-template .benefits-swiper-wrapper {
  margin-top: 4rem;
  position: relative;
  padding: 0 60px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-about-template .benefits-swiper {
  overflow: visible;
  padding: 20px 0 60px;
  width: 100% !important;
}

.page-about-template .benefits-swiper .swiper-slide {
  box-sizing: border-box;
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.page-about-template .benefits-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.page-about-template .benefit-card-swiper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-about-template .benefits-swiper .swiper-slide-active:hover .benefit-card-swiper {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--luxury-gold);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.page-about-template .benefit-image-swiper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.page-about-template .benefit-image-swiper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.page-about-template .benefits-swiper .swiper-slide-active:hover .benefit-image-swiper img {
  transform: scale(1.1);
}

.page-about-template .benefit-content-swiper {
  padding: 3rem 2.5rem;
  flex: 1;
}

.page-about-template .benefit-content-swiper h3 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--luxury-gold) !important;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.page-about-template .benefit-content-swiper p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9) !important;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
}

/* Swiperナビゲーション - 効果 */
.page-about-template .benefits-swiper .swiper-button-next,
.page-about-template .benefits-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-about-template .benefits-swiper .swiper-button-next::after,
.page-about-template .benefits-swiper .swiper-button-prev::after {
  font-size: 18px;
  color: var(--luxury-gold);
  font-weight: bold;
}

.page-about-template .benefits-swiper .swiper-button-next:hover,
.page-about-template .benefits-swiper .swiper-button-prev:hover {
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.page-about-template .benefits-swiper .swiper-button-next:hover::after,
.page-about-template .benefits-swiper .swiper-button-prev:hover::after {
  color: var(--luxury-dark);
}

.page-about-template .benefits-swiper .swiper-pagination {
  bottom: 20px;
}

.page-about-template .benefits-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: white;
  opacity: 0.3;
}

.page-about-template .benefits-swiper .swiper-pagination-bullet-active {
  background: var(--luxury-gold);
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

/* ========================================
   カラムレイアウト - カードスタイル
   ======================================== */

.page-about-template .wp-block-columns {
  gap: 3rem !important;
  margin-top: 4rem !important;
}

.page-about-template .wp-block-column {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-about-template .wp-block-column:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* ========================================
   リストスタイル
   ======================================== */

.page-about-template ul {
  list-style: none;
  padding-left: 0;
}

.page-about-template ul li {
  position: relative;
  padding-left: 2em;
  line-height: 2;
  margin-bottom: 1rem;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.page-about-template ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--luxury-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* ========================================
   レスポンシブ - Swiper
   ======================================== */

@media (max-width: 768px) {
  .page-about-template .features-swiper-wrapper,
  .page-about-template .benefits-swiper-wrapper {
    padding: 0 20px;
  }

  /* モバイルではSwiperを縦並びに */
  .page-about-template .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    transform: none !important;
  }

  .page-about-template .swiper-slide {
    width: 100% !important;
    margin-bottom: 2rem !important;
    flex-shrink: 0 !important;
  }

  .page-about-template .swiper-pagination,
  .page-about-template .swiper-button-next,
  .page-about-template .swiper-button-prev {
    display: none !important;
  }

  .page-about-template .feature-image-swiper,
  .page-about-template .benefit-image-swiper {
    height: 250px;
  }

  .page-about-template .feature-content-swiper,
  .page-about-template .benefit-content-swiper {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   320px幅対応 - 超小型スマートフォン
   ======================================== */

@media (max-width: 375px) {
  /* ヒーローセクション調整 - Page 19と統一 */
  .page-about-template .wp-block-cover h1 {
    font-size: 36px !important;
    letter-spacing: 0.15em !important;
    padding: 0 15px !important;
    line-height: 1.3 !important;
    word-break: keep-all;
  }

  .page-about-template .wp-block-cover p {
    font-size: 14px !important;
    padding: 0 15px !important;
    letter-spacing: 0.05em !important;
  }

  /* 見出しサイズ調整 - 改行防止 */
  .page-about-template h2 {
    font-size: 1.6rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 2rem !important;
    padding-bottom: 1rem !important;
  }

  .page-about-template h3 {
    font-size: 1.3rem !important;
    letter-spacing: 0.05em !important;
  }

  .page-about-template h4 {
    font-size: 1.1rem !important;
  }

  /* 天照石セクション */
  .page-about-template .amaterasu-media-text {
    margin-top: 2rem;
  }

  .page-about-template .amaterasu-grid {
    gap: 2rem;
  }

  .page-about-template .amaterasu-text-area {
    padding: 1.5rem 0 0 1rem !important;
  }

  .page-about-template .amaterasu-intro-label {
    font-size: 10px !important;
    letter-spacing: 0.2em !important;
  }

  .page-about-template .amaterasu-intro-title {
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
  }

  .page-about-template .amaterasu-intro-text {
    font-size: 14px !important;
    line-height: 1.9 !important;
    padding-left: 1rem;
    margin-bottom: 1.2rem !important;
  }

  /* Swiper調整 - 確実に全幅に */
  .page-about-template .features-swiper-wrapper,
  .page-about-template .benefits-swiper-wrapper {
    padding: 0 10px !important;
    margin-top: 2rem;
  }

  .page-about-template .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
  }

  .page-about-template .feature-image-swiper,
  .page-about-template .benefit-image-swiper {
    height: 200px !important;
  }

  .page-about-template .feature-content-swiper,
  .page-about-template .benefit-content-swiper {
    padding: 1.5rem 1rem !important;
  }

  .page-about-template .feature-content-swiper h4 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem !important;
  }

  .page-about-template .feature-content-swiper p,
  .page-about-template .benefit-content-swiper p {
    font-size: 13px !important;
    line-height: 1.8 !important;
  }

  .page-about-template .benefit-content-swiper h3 {
    font-size: 1.3rem !important;
  }

  .page-about-template .feature-number {
    font-size: 12px !important;
    margin-bottom: 0.5rem !important;
  }

  /* Swiperボタン非表示（狭すぎるため） */
  .page-about-template .features-swiper .swiper-button-next,
  .page-about-template .features-swiper .swiper-button-prev,
  .page-about-template .benefits-swiper .swiper-button-next,
  .page-about-template .benefits-swiper .swiper-button-prev {
    display: none;
  }

  /* カラム調整 */
  .page-about-template .wp-block-columns {
    gap: 1.5rem !important;
    margin-top: 2rem !important;
  }

  .page-about-template .wp-block-column {
    padding: 1.5rem 1rem !important;
  }

  /* リスト調整 */
  .page-about-template ul li {
    font-size: 14px !important;
    padding-left: 1.5em;
    margin-bottom: 0.8rem;
  }

  .page-about-template ul li::before {
    width: 6px;
    height: 6px;
    top: 0.6em;
  }
}

/* 320px幅での特別な調整 */
@media (max-width: 320px) {
  .page-about-template .wp-block-cover h1 {
    font-size: 1.8rem !important;
  }

  .page-about-template h2 {
    font-size: 1.4rem !important;
  }

  .page-about-template h3 {
    font-size: 1.2rem !important;
  }

  .page-about-template .amaterasu-intro-title {
    font-size: 1.2rem !important;
  }

  .page-about-template .feature-content-swiper,
  .page-about-template .benefit-content-swiper {
    padding: 1.2rem 0.8rem !important;
  }

  .page-about-template .wp-block-column {
    padding: 1.2rem 0.8rem !important;
  }
}

/* ========================================
   強化された天照石セクション
   ======================================== */

/* イントロセクション */
.amaterasu-intro-section {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.amaterasu-hero-content {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
}

.amaterasu-lead-text {
  font-size: 1.15rem;
  line-height: 2;
  color: #333;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.amaterasu-lead-text strong {
  color: var(--luxury-gold);
  font-weight: 600;
}

/* 3つの理由グリッド */
.amaterasu-reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
  padding: 0 1rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.amaterasu-reason-card {
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  word-break: break-word;
}

.amaterasu-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.reason-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--luxury-gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.reason-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.reason-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 1rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.reason-content p:last-child {
  margin-bottom: 0;
}

.reason-content strong {
  color: var(--luxury-gold);
  font-weight: 600;
}

/* ========================================
   サウナ vs 岩盤浴 比較セクション
   ======================================== */

.sauna-vs-ganban {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.comparison-row {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-header {
  background: linear-gradient(135deg, var(--luxury-gold) 0%, #c09850 100%);
  padding: 1.5rem 2rem;
}

.comparison-header h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  text-align: center;
  letter-spacing: 0.05em;
}

.comparison-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.comparison-item {
  padding: 2rem;
  position: relative;
}

.comparison-item:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.sauna-item {
  background: #fafafa;
}

.ganban-item {
  background: #fffbf5;
}

.item-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--luxury-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--luxury-gold);
  display: inline-block;
}

.comparison-item p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 0.8rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.comparison-item p:last-child {
  margin-bottom: 0;
}

.item-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--luxury-gold);
  font-weight: 500;
  margin-top: 1rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 結論セクション */
.comparison-conclusion {
  margin-top: 3rem;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.conclusion-text {
  font-size: 1.15rem;
  line-height: 2;
  color: #fff;
  margin: 0;
}

.conclusion-text strong {
  color: var(--luxury-gold);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media (max-width: 768px) {
  .amaterasu-hero-content {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .amaterasu-lead-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .amaterasu-reasons-grid {
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
  }

  .amaterasu-reason-card {
    padding: 2rem 1.5rem;
  }

  .reason-number {
    font-size: 2.5rem;
  }

  .reason-title {
    font-size: 1.1rem;
  }

  .reason-content p {
    font-size: 0.95rem;
  }

  .comparison-items {
    grid-template-columns: 1fr;
  }

  .comparison-item:first-child::after {
    display: none;
  }

  .comparison-item {
    padding: 1.5rem;
  }

  .comparison-header h4 {
    font-size: 1.2rem;
  }

  .comparison-conclusion {
    padding: 2rem 1.5rem;
  }

  .conclusion-text {
    font-size: 1rem;
  }

  .conclusion-text strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 375px) {
  .amaterasu-hero-content {
    padding: 0 0.8rem;
    margin-bottom: 2.5rem;
  }

  .amaterasu-lead-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .amaterasu-reasons-grid {
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 0 0.5rem;
  }

  .amaterasu-reason-card {
    padding: 1.5rem 1.2rem;
  }

  .reason-number {
    font-size: 2rem;
  }

  .reason-title {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.7;
  }

  .reason-content p {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .comparison-header {
    padding: 1.2rem 1.5rem;
  }

  .comparison-header h4 {
    font-size: 1.1rem;
  }

  .comparison-item {
    padding: 1.2rem;
  }

  .item-label {
    font-size: 0.85rem;
  }

  .comparison-item p {
    font-size: 0.9rem;
  }

  .item-note {
    font-size: 0.85rem;
  }

  .comparison-conclusion {
    padding: 1.8rem 1.2rem;
  }

  .conclusion-text {
    font-size: 0.95rem;
  }

  .conclusion-text strong {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .amaterasu-hero-content {
    padding: 0 0.6rem;
    margin-bottom: 2rem;
  }

  .amaterasu-lead-text {
    font-size: 0.9rem;
  }

  .amaterasu-reasons-grid {
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 0 0.4rem;
  }

  .amaterasu-reason-card {
    padding: 1.2rem 1rem;
  }

  .reason-number {
    font-size: 1.8rem;
  }

  .reason-title {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .reason-content p {
    font-size: 0.85rem;
  }

  .comparison-header {
    padding: 1rem 1.2rem;
  }

  .comparison-header h4 {
    font-size: 1rem;
  }

  .comparison-item {
    padding: 1rem;
  }

  .comparison-item p {
    font-size: 0.85rem;
  }

  .comparison-conclusion {
    padding: 1.5rem 1rem;
  }

  .conclusion-text {
    font-size: 0.9rem;
  }

  .conclusion-text strong {
    font-size: 0.95rem;
  }
}

/* ========================================
   理由カード内の画像
   ======================================== */

.reason-image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reason-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.amaterasu-reason-card:hover .reason-image-wrapper img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .reason-image-wrapper {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 375px) {
  .reason-image-wrapper {
    aspect-ratio: 16 / 9;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 320px) {
  .reason-image-wrapper {
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
  }
}

/* サブタイトル（秘密を公開） */
.page-about-template .amaterasu-subtitle {
  font-size: 1rem !important;
  color: #666 !important;
  font-weight: 400 !important;
  letter-spacing: 0.05em !important;
  margin-top: 1rem !important;
  line-height: 1.8 !important;
}

@media (max-width: 768px) {
  .page-about-template .amaterasu-subtitle {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 375px) {
  .page-about-template .amaterasu-subtitle {
    font-size: 0.9rem !important;
  }
}

/* キャッチフレーズ（決定的な違い） */
.page-about-template .amaterasu-catchphrase {
  font-size: 1.3rem !important;
  line-height: 2 !important;
  color: #C8A45D !important;
  font-weight: 500 !important;
  margin-bottom: 1.5rem !important;
  text-align: center !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

@media (max-width: 768px) {
  .page-about-template .amaterasu-catchphrase {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 375px) {
  .page-about-template .amaterasu-catchphrase {
    font-size: 1.05rem !important;
    margin-bottom: 1.2rem !important;
  }
}

@media (max-width: 320px) {
  .page-about-template .amaterasu-catchphrase {
    font-size: 1rem !important;
  }
}

/* 秘密を明かすセクション */
.amaterasu-secret-reveal {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200, 164, 93, 0.3);
}

.amaterasu-secret-reveal .secret-text {
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
  color: #555 !important;
  margin-bottom: 1.2rem !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.amaterasu-secret-reveal .secret-text:last-child {
  margin-bottom: 0 !important;
}

.amaterasu-secret-reveal .secret-text.highlight {
  color: #C8A45D !important;
  font-weight: 500 !important;
  font-size: 1.15rem !important;
  margin-top: 1.5rem !important;
}

.amaterasu-secret-reveal strong {
  color: #C8A45D !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .amaterasu-secret-reveal {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  
  .amaterasu-secret-reveal .secret-text {
    font-size: 0.9rem !important;
  }
  
  .amaterasu-secret-reveal .secret-text.highlight {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 375px) {
  .amaterasu-secret-reveal {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }
  
  .amaterasu-secret-reveal .secret-text {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }
  
  .amaterasu-secret-reveal .secret-text.highlight {
    font-size: 0.9rem !important;
    margin-top: 1.2rem !important;
  }
}

/* ========================================
   ヒーローセクション - 背景画像1カラム
   ======================================== */

.amaterasu-hero-bg {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url('/wp-content/themes/swell_child/pre_img/024.JPG') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.amaterasu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.30) 0%, rgba(44, 44, 44, 0.30) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amaterasu-hero-content-center {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 3rem;
  background: rgba(14, 14, 14, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(200, 164, 93, 0.3);
}

.amaterasu-hero-content-center .amaterasu-intro-label {
  color: #C8A45D !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.3em !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
  font-weight: 400 !important;
}

.amaterasu-hero-content-center .amaterasu-intro-title {
  color: #fff !important;
  font-size: clamp(32px, 5vw, 48px) !important;
  margin-bottom: 2.5rem !important;
  line-height: 1.5 !important;
}

.amaterasu-hero-content-center .amaterasu-secret-reveal {
  margin-top: 2.5rem !important;
  padding-top: 2.5rem !important;
  border-top: 1px solid rgba(200, 164, 93, 0.4) !important;
}

.amaterasu-hero-content-center .secret-text {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem !important;
  line-height: 2 !important;
  margin-bottom: 1.5rem !important;
}

.amaterasu-hero-content-center .secret-text.highlight {
  color: #C8A45D !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  margin-top: 2rem !important;
}

.amaterasu-hero-content-center .secret-text strong {
  color: #C8A45D !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .amaterasu-hero-bg {
    min-height: 500px;
    background-attachment: scroll;
    padding: 3rem 1.5rem;
  }
  
  .amaterasu-hero-content-center {
    padding: 2.5rem 2rem;
  }
  
  .amaterasu-hero-content-center .secret-text {
    font-size: 1rem !important;
  }
  
  .amaterasu-hero-content-center .secret-text.highlight {
    font-size: 1.15rem !important;
  }
}

@media (max-width: 375px) {
  .amaterasu-hero-bg {
    min-height: 450px;
    padding: 2.5rem 1rem;
  }
  
  .amaterasu-hero-content-center {
    padding: 2rem 1.5rem;
  }
  
  .amaterasu-hero-content-center .amaterasu-intro-title {
    margin-bottom: 2rem !important;
  }
  
  .amaterasu-hero-content-center .secret-text {
    font-size: 0.95rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  .amaterasu-hero-content-center .secret-text.highlight {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 320px) {
  .amaterasu-hero-bg {
    min-height: 400px;
    padding: 2rem 0.8rem;
  }
  
  .amaterasu-hero-content-center {
    padding: 1.5rem 1.2rem;
  }
  
  .amaterasu-hero-content-center .secret-text {
    font-size: 0.9rem !important;
  }
  
  .amaterasu-hero-content-center .secret-text.highlight {
    font-size: 1rem !important;
  }
}
