  @charset "utf-8";
  /* 共通設定 */

body {
  margin: 0;
  font-family: 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  color: #2c3e50;
}

p {
  margin: 0 0 1em;
}

section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
}

img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === HEROセクション：背景フェードスライダー付き === */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.4));
  z-index: 1;
}

.hero-slider .slides {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

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

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 90vw;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.4;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.hero-text .lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-icon {
  width: 240px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.95;
}

/* ボタン全体ラッパー */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: -1.3rem;
  flex-wrap: wrap;
}

.contact-button {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
  text-align: center;
  padding: 0.6rem 1.2rem;
  min-width: 180px;
}

.contact-button.highlight {
  background: #d2a96b;
  color: #fff;
}

.contact-button.highlight:hover {
  background: #b58b4f;
}

.contact-button.sub {
  background: #f4f4f4;
  color: #333;
}

.contact-button.sub:hover {
  background: #e0e0e0;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .contact-button {
    width: 90%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
}


/* 改行タグの制御 */
.contact-button .sp-br {
  display: none; /* PCでは非表示で一行表示 */
}

/* スマホ時は改行タグを有効化 */
@media (max-width: 768px) {
  .contact-button .sp-br {
    display: inline; /* スマホでは改行させる */
  }
}



  /* 特長・紹介 */

.features ul {
  padding-left: 1.5rem;
  list-style: none;
}

.features ul li::before {
  content: "✔️";
  margin-right: 0.5em;
  color: #00aaff;
}

  /* カルーセル仮の構造 */

.carousel {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}

.slide {
  flex: 0 0 80%;
  transition: transform 0.3s ease;
}

  /* 情報セクション */

.info-section .info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.info-section .text {
  flex: 1 1 50%;
}

.info-section .image {
  flex: 1 1 50%;
}

  /* 各依頼セクション */

.intro-feature .intro-heading {
  margin-bottom: 2rem;
}

.intro-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}

.intro-text {
  flex: 1 1 40%;
}

.intro-images {
  flex: 1 1 55%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.intro-images img {
  width: calc(33.333% - 0.5rem);
  border-radius: 6px;
}

  /* 強調ラベル */

.label-blue {
  display: inline-block;
  background: #0078d7;
  color: #fff;
  padding: 0.4em 1em;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

  /* フロー */

.flow-intro {
  text-align: center;
}

.flow-steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.flow-step {
  background: #f8f8f8;
  padding: 1.5rem;
  border-left: 5px solid #00aaff;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border-radius: 8px;
}

.flow-icon {
  width: 60px;
  flex-shrink: 0;
}

  /* アコーディオン全体 */

.accordion {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

  /* 各アイテム */

.accordion-item {
  border-bottom: 1px solid #e0d5c4;
  transition: all 0.3s ease;
  background: #fffdf8;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

  /* 見出しボタン */

.accordion-header {
  background: linear-gradient(90deg, #f5efe4, #fffaf3);
  border: none;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #4a3d2f;
  position: relative;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(90deg, #f3e6cc, #fff9e0);
}

  /* ▼ 矢印 */

.accordion-header::after {
  content: "▼";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

  /* アクティブ時の矢印回転 */

.accordion-item.active .accordion-header::after {
  transform: translateY(-50%) rotate(180deg);
}

  /* 本文 */

.accordion-body {
  padding: 0 1.5rem;
  background: #fffaf2;
  font-size: 1rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #5b4a3f;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}

  /* アクティブ時に展開 */

.accordion-item.active .accordion-body {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 500px;
  opacity: 1;
}

  /* スマホ対応 */

@media (max-width: 768px) {

.accordion-header {
  font-size: 1rem;
  padding: 1rem 1.2rem;
}

.accordion-body {
  padding: 0 1.2rem;
}

.accordion-item.active .accordion-body {
  padding: 1rem 1.2rem 1.2rem;
}

}

  /* お問い合わせ */

.contact {
  text-align: center;
  background: #f0f8ff;
  padding: 4rem 1rem;
}

.contact .cta {
  background: #00aaff;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  margin: 1rem 0;
}

.contact .cta:hover {
  background: #0088cc;
}

  /* レスポンシブ */

@media (max-width: 768px) {
  .intro-columns,
  .info-section .info-content,

.flow-step {
  flex-direction: column;
}

.intro-images img {
  width: 100%;
}

.hero-text h1 {
  font-size: 2rem !important;
}

.hero-text p {
  font-size: 1rem !important;
}

}

/* 全体背景とセクション */
.lux-section {
  background: #fdfbf8;
  padding: 6rem 2rem;
}

/* カード */
.lux-card {
  position: relative; /* 擬似要素を相対位置基準にする */
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 2rem 2.2rem;
  border: 1px solid #eee5da;
  overflow: hidden; /* 擬似要素がはみ出さないように */
}

.lux-card::after {
  content: "Special"; /* リボンに表示する文字（任意） */
  position: absolute;
  top: 20px;
  right: -50px; /* カード外にはみ出す位置 */
  width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #c9a15c, #b68b3e);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.4rem 0;
  transform: rotate(45deg); /* 斜めにする */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  letter-spacing: 0.05em;
}


.lux-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

/* ラベル */
.lux-label {
  font-size: 1rem;
  color: #a8894d;
  background: #fdf6ed;
  padding: 0.4em 1.1em;
  border-radius: 1.8em;
  box-shadow: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.lux-label span {
  background: #b68b3e;
  color: #fff;
  padding: 0.25em 0.75em;
  margin-left: 0.8em;
  font-size: 0.9rem;
  border-radius: 50%;
}



/* タイトル */
.lux-text h3 {
  font-family: "Yu Mincho", serif;
  font-size: 1.4rem;
  color: #1e1e1e;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* サブタイトル（施設名） */
.lux-text .highlight {
  font-size: 1em;
  font-weight: 600;
  color: #b68b3e;
  display: inline-block;
  margin-top: 0.4rem;
}

/* テキスト */
.lux-text p,
.lux-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.05rem;
  line-height: 2;
  color: #444;
  margin-bottom: 1.2rem;
}

/* タグ */
.lux-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.tag {
  font-size: 0.85rem;
  padding: 0.4em 0.9em;
  background: #f2eee8;
  color: #6a5633;
  border-radius: 1em;
  font-weight: 500;
}

@media (max-width: 768px) {

  .lux-label {
    font-size: 0.85rem;
    padding: 0.4em 1em;
    border-radius: 1.5em;
    text-align: center;
    display: inline-block;
  }

  .lux-label span {
    font-size: 0.8rem;
    padding: 0.2em 0.6em;
  }

  .lux-text h3 {
    font-size: 1.2rem;         /* タイトル全体を小さめに */
    line-height: 1.4;          /* 行間をやや詰める */
    margin-bottom: 1rem;
    word-break: keep-all;      /* 日本語の単語分割を避ける */
    white-space: normal;       /* 複数行OK */  }

  .lux-text h3 .icon {
    font-size: 1rem;
    margin-right: 0.3rem;
    vertical-align: middle;
  }

  .lux-text .highlight {
    font-size: 1.4rem;        /* 施設名をやや小さめに */
    font-weight: 600;
    color: #b68b3e;
    display: inline;           /* ブロック化を解除して折り返し抑制 */
    white-space: nowrap;       /* 一行キープ */
  }

  .lux-tags {
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .lux-tags .tag {
    font-size: 0.8rem;
    padding: 0.4em 0.9em;
  }
}
/* クライアントボイス */
.client-voice {
  font-style: italic;
  padding-left: 1.2rem;
  border-left: 3px solid #c9a15c;
  color: #888;
  margin-top: 1.8rem;
}

/* ボタン */
.lux-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #c9a15c, #b68b3e);
  color: #fff;
  padding: 0.65em 1.8em;
  font-size: 1rem;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.lux-button:hover {
  background: linear-gradient(135deg, #b68b3e, #a8894d);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* 画像 */
.img-row img {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* モバイル対応もそのままでOK（追加修正なし） */

  /* === カード＆ボタン === */

.lux-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: #c9a15c;
  color: #fff;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.lux-button:hover {
  background: #a8894d;
}

@media (max-width: 768px) {
  .lux-button {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .lux-button-wrapper {
    padding: 0 1rem; /* 横に余白がほしい場合 */
  }
}

  /* === カルーセル === */

.lux-carousel {
  flex: 1 1 45%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.03);
}

.carousel-track {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  scroll-snap-align: start;
}

.carousel-track img {
  min-width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  scroll-snap-align: start;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

  /* === スマホ対応 === */

@media (max-width: 768px) {

.lux-carousel {
  width: 100%;
  margin-top: 1.5rem;
}

.carousel-track img {
  min-width: 80%;
}

.lux-button {
  width: 100%;
  text-align: center;
}

}

.lux-tags {
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: #e8e0d0;
  color: #6e5528;
  font-size: 0.85rem;
  padding: 0.3em 0.8em;
  border-radius: 1em;
  font-weight: 500;
}

.img-large img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.img-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.img-row img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* 2枚横並び */
.img-row:not(.single) img {
  width: calc(50% - 0.5rem);
}

/* 1枚センター寄せ */
.img-row.single {
  justify-content: center;
}

.img-row.single img {
  width: 50%;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .img-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .img-row img {
    width: 100% !important;
  }
}
  .img-row:last-child {
    margin-bottom: 0; /* 最後の行の下は余白なしでOK */
  }


.facility-list {
  background: #fff;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.facility-list h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.facility-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin: 1rem 0 0.5rem;
}

.facility-card p {
  font-size: 0.95rem;
  color: #666;
  padding: 0 1rem 1.5rem;
}

.facility-overview {
  padding: 3rem 1.5rem;
  max-width: 1080px; /* 1200→960に変更して横幅を抑える */
  margin: 0 auto;
  line-height: 1.8; /* 行間も少し広くして圧迫感を軽減 */
}

.facility-overview h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.facility-overview-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.map-image {
  flex: 1 1 45%;
  min-width: 300px;
}

.map-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* =========================================
   Luxury Table — THE KENSHUKAIGI
   ========================================= */
:root {
  --lux-gold-1: #c9a15c;
  --lux-gold-2: #e7d2a7;
  --lux-ink: #2a2a2a;
  --lux-muted: #6b7280;
  --lux-border: rgba(201, 161, 92, 0.35);
  --lux-shadow: 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --lux-shadow-soft: 0 4px 14px rgba(0,0,0,0.08);
  --lux-row-hover: rgba(201,161,92,0.08);
  --lux-zebra: rgba(201,161,92,0.05);
  --radius: 16px;
}

/* ラッパー：横スクロール時の見栄え＆余白 */
.facility-table {
  flex: 1 1 50%;
  overflow-x: auto;
  padding: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* スクロールバーも上品に */
.facility-table::-webkit-scrollbar {
  height: 10px;
}
.facility-table::-webkit-scrollbar-track {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
  border-radius: 999px;
}
.facility-table::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--lux-gold-1), var(--lux-gold-2));
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
}

/* テーブル本体 */
.facility-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  color: var(--lux-ink);
  border: 1px solid var(--lux-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--lux-shadow);
  font-size: 0.9rem; /* 読みやすく少し大きめに */
}

/* キャプション：上質な帯 */
.facility-table caption {
  text-align: left;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--lux-gold-1), var(--lux-gold-2));
  border-bottom: 1px solid var(--lux-border);
}

/* ヘッダー：スティッキー＋グラデ＋薄いインナーシャドウ */
.facility-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: linear-gradient(135deg, var(--lux-gold-1), var(--lux-gold-2));
  color: #fff;
  text-align: left;
  padding: 0.9rem 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.25);
  backdrop-filter: saturate(120%) blur(2px);
}

/* セル共通 */
.facility-table th,
.facility-table td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: middle;
  white-space: nowrap;            /* 住所が長い場合は下で解除 */
}
.facility-table td:nth-child(1) { /* 番号 */
  width: 3.5rem;
  text-align: center;
  color: var(--lux-muted);
  font-variant-numeric: tabular-nums;
}
.facility-table td:nth-child(2) { /* ホテル名を強めに */
  font-weight: 600;
  letter-spacing: 0.01em;
}
.facility-table td:nth-child(4) { /* 住所は折り返し許可 */
  white-space: normal;
  line-height: 1.5;
}

/* 行の質感：ゼブラ＋ホバーで“ほんの少し浮く” */
.facility-table tbody tr:nth-child(2n) td {
  background: var(--lux-zebra);
}
.facility-table tbody tr:hover td {
  background: var(--lux-row-hover);
}
.facility-table tbody tr {
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.facility-table tbody tr:hover {
  transform: translateY(-1px);
  box-shadow: var(--lux-shadow-soft);
}

/* 角丸の最終行ケア */
.facility-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: calc(var(--radius) - 1px);
}
.facility-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: calc(var(--radius) - 1px);
}

/* リンクの上品なスタイル */
.facility-table a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,161,92,0.35);
  transition: color .2s ease, border-color .2s ease;
}
.facility-table a:hover,
.facility-table a:focus-visible {
  color: var(--lux-gold-1);
  border-color: var(--lux-gold-1);
  outline: none;
}

/* コンパクト表示（中〜小画面） */
@media (max-width: 980px) {
  .facility-table table {
    font-size: 0.85rem;
  }
  .facility-table th,
  .facility-table td {
    padding: 0.75rem 0.8rem;
  }
}

/* モバイル最適化：タップしやすい、見出しは固定、住所は折り返し */
@media (max-width: 640px) {
  .facility-table {
    padding: 6px;
  }
  .facility-table table {
    font-size: 0.88rem; /* 少し読みやすく */
  }
  .facility-table th,
  .facility-table td {
    padding: 0.85rem 0.8rem;
  }
  .facility-table td:nth-child(2) a { /* ホテル名の可視性UP */
    font-weight: 700;
  }
}

.layout-examples {
  background: #f5f7fa;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.layout-examples h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.layout-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

  .layout-image,

.layout-text {
  flex: 1 1 45%;
}

.layout-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.layout-text {
  flex: 1 1 35%;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

@media (max-width: 768px) {

.layout-wrapper {
  flex-direction: column;
  padding: 0 1rem;
}

  .layout-image,

.layout-text {
  width: 100%;
}

}

.section-cta-buttons {
  text-align: center;
  padding: 3rem 1rem;
  background: #ffffff;
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0078d7;
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005fa3;
}

.cta-button.secondary {
  background-color: #f0f0f0;
  color: #333;
}

.cta-button.secondary:hover {
  background-color: #ddd;
}

.problems-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.problem-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.problem-card {
  flex: 1 1 200px;   /* 最小幅の目安：220px（ここで列数が決まる） */
  max-width: 210px;  /* 最大幅の上限：PCで“少しコンパクト”に */
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.problem-card:hover {
  transform: translateY(-4px);
}

.problem-card img {
  width: 50px;
  margin-bottom: 15px;
}

.solution-lead {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.nichireku-name {
  font-weight: bold;
  color: #0078d7;
  font-size: 1.2rem;
}

.swipe-down-indicator {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #888;
  font-size: 0.9rem;
  animation: fadeIn 1s ease forwards;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
  transform: rotate(45deg);
  margin-top: 0.3rem;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

@media (max-width: 768px) {

.problem-section h2 {
  font-size: 1.3rem;
}

.problem-list {
  font-size: 1rem;
}

.solution-lead {
  font-size: 1rem;
}

}

  /* セクション①：お悩み訴求 */

.problem-section {
  background: #f0f4f8;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.problem-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 500px;
  font-size: 1.1rem;
}

.problem-list li {
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.4rem;
}

.problem-list li::before {
  content: "☑";
  position: absolute;
  left: 0;
  color: #00aaff;
}

.solution-lead {
  font-size: 1.1rem;
  color: #444;
}

.nichireku-name {
  color: #0078d7;
  font-weight: bold;
  font-size: 1.2rem;
}

.swipe-down-indicator {
  margin-top: 2rem;
  color: #888;
  font-size: 0.9rem;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
  transform: rotate(45deg);
  margin: 0.3rem auto;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

  /* セクション②：解決図＋テキスト */

.setup-solution {
  background: #ffffff;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.setup-visual {
  margin-bottom: 2rem;
}

.full-width-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.setup-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.setup-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

@media (max-width: 768px) {
  .problem-section h2,

.setup-text h2 {
  font-size: 1.3rem;
}

  .problem-list,

.setup-text p {
  font-size: 1rem;
}

}

@media (min-width: 1024px) {
  .problem-cards {
    max-width: 800px;             /* 3枚が詰まりすぎないよう全体幅も制御 */
    margin: 30px auto 0;          /* センター寄せ */
  }
  .problem-card {
    flex: 1 1 210px;              /* もう一段だけコンパクトにするなら */
    max-width: 230px;
  }
}

  /* ============================
  HEROセクション：視認性強化
  ============================ */

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), rgba(0,0,0,0.65));
  z-index: 1;
}

.hero-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 2;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #ffffff;
}

  /* CTAボタン装飾（ゴールドライン） */

.hero-text .cta {
  display: inline-block;
  background: #ffffffcc;
  color: #0078d7;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.hero-text .cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: gold;
  transition: width 0.3s ease, left 0.3s ease;
}

.hero-text .cta:hover::after {
  width: 100%;
  left: 0;
}

.hero-text .cta:hover {
  background: #ffffff;
}

  /* ============================
  お悩み訴求セクション（問題提起）
  ============================ */

.problem-section {
  background: #f0f4f8;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.problem-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  line-height: 1.4;
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  max-width: 500px;
  font-size: 1.1rem;
}

.problem-list li {
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.4rem;
}

.problem-list li::before {
  content: "☑";
  position: absolute;
  left: 0;
  color: #00aaff;
}

.solution-lead {
  font-size: 1.1rem;
  color: #444;
}

.nichireku-name {
  color: #0078d7;
  font-weight: bold;
  font-size: 1.2rem;
}

.swipe-down-indicator {
  margin-top: 2rem;
  color: #888;
  font-size: 0.9rem;
}

.arrow-down {
  width: 20px;
  height: 20px;
  border-bottom: 3px solid #888;
  border-right: 3px solid #888;
  transform: rotate(45deg);
  margin: 0.3rem auto;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

  /* ============================
  施設紹介：カード型グリッド（一覧）
  ============================ */

.facility-list {
  background: #fff;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.facility-list h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
}

.facility-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.facility-card h3 {
  font-size: 1.2rem;
  color: #222;
  margin: 1rem 0 0.5rem;
}

.facility-card p {
  font-size: 0.95rem;
  color: #666;
  padding: 0 1rem 1.5rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #0078d7;
  color: white;
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10010;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.back-to-top:hover {
  background: #005999;
}

.feature-section {
  background: url('../img/feature-bg3.webp') no-repeat center center / cover;
  padding: 6rem 1rem; /* 上下を少し広げて重なり回避 */
  text-align: center;
  color: #333;
  position: relative;
  overflow: hidden;
}

.feature-content {
  max-width: 700px; /* 幅を少し狭めて左右の人物との干渉を減らす */
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 2;
}

  /* 背景イラスト（人物）を左右に配置 */
  .feature-section::before,

.feature-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 160px;
  height: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  opacity: 0.8;
}

.feature-section::before {
  left: 0;
  background-image: url('../img/person-left.png'); /* ← 左人物画像に差し替え */
}

.feature-section::after {
  right: 0;
  background-image: url('../img/person-right.png'); /* ← 右人物画像に差し替え */
}

  /* 見出し */

.feature-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

  /* 箇条書き */

.feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.feature-content li {
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.7rem 1.2rem;
  background: #f9f4e9;
  border-left: 5px solid #c9a15c;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-content li:hover {
  background: #fff3d2;
  transform: translateY(-2px);
}

  /* モバイル対応 */

@media (max-width: 768px) {
  .feature-section::before,

.feature-section::after {
  display: none;
}

.feature-content {
  padding: 2rem 1rem;
}

.feature-heading {
  font-size: 1.3rem;
}

.feature-content li {
  font-size: 1rem;
  display: block;
  margin: 0.5rem auto;
  width: 100%;
}

}

.feature-note {
  margin-top: 2rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background: #fffaf3;
  padding: 1.2rem 1.5rem;
  border-left: 5px solid #c9a15c;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.problem-illustration {
  text-align: center;
  margin-bottom: 1.5rem;
}

.problem-illustration img {
  width: 150px;         /* 実サイズより少し小さくしてバランス調整 */
  height: auto;
  display: inline-block;
}

@media (max-width: 768px) {

.problem-illustration img {
  width: 120px;       /* スマホでは少し縮小 */
}

}

  /* === setting-infoセクション：ラグジュアリーリファイン版 === */

.setting-info {
  background: linear-gradient(to bottom, #fdfaf5, #f7f2e9);
  padding: 4rem 1.5rem 3rem;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #2c2c2c;
  position: relative;
  border-top: none;
  border-bottom: none;
}

.setting-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.setting-heading {
  display: inline-block;
  font-size: 1.1rem;
  color: #c9a15c;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  position: relative;
}

.setting-heading::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 3px;
  background: #c9a15c;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.setting-info h2 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: #3a2d1f;
  margin-bottom: 1.5rem;
}

.setting-info h2 mark {
  background: linear-gradient(transparent 70%, #fff3c4 70%);
  font-weight: bold;
  padding: 0 0.3em;
  border-radius: 2px;
}

.highlight-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5c4835;
  margin-bottom: 1.8rem;
}

.emphasis-red {
  color: #b03a3a;
  font-weight: bold;
}

.setting-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.setting-illust img {
  max-width: 160px;
  margin-top: 1rem;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

  /* スマホ対応 */

@media (max-width: 768px) {

.setting-container {
  padding: 2rem 1rem;
}

.setting-info h2 {
  font-size: 1.3rem;
}

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

}

  .flow-section h2,

.facility-list h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #2c2c2c;
}

  /* PC時のみ：説明文の幅を狭くして読みやすく */

@media (min-width: 1024px) {

.setting-description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

}

  /* イラスト画像から影を除去 */

.setting-illust img {
  box-shadow: none !important;
}

  /* flow-section のレイアウト調整 */

.flow-section {
  background-color: #f9f9f9;
  padding: 4rem 1.5rem;
}

.flow-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.flow-intro img.flow-image-top {
  max-width: 120px;
  margin-bottom: 1rem;
}

.flow-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

  /* flow-step の構造調整 */

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.flow-step-content {
  display: block; /* 一旦縦並びに戻す */
}

.flow-step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #005bac;
}

.flow-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.flow-icon {
  max-width: 80px;
  flex-shrink: 0;
}
.flow-step-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.flow-box {
  margin-top: 0.5rem;
  background: #f1f7ff;
  padding: 0.8rem 1rem;
  border-left: 4px solid #005bac;
  border-radius: 6px;
}

.flow-box p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.facility-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.facility-button-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.facility-button {
  display: inline-block;
  background: linear-gradient(135deg, #c9a15c, #e7d2a7);
  color: #fff;
  font-weight: bold;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.facility-button:hover {
  background: linear-gradient(135deg, #b58f4d, #dcc28a);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.kido-message-section {
  background: #f9f8f5;
  padding: 4rem 1.5rem;
  font-family: "Yu Mincho", serif;
  color: #2c2c2c;
}

.kido-message-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.kido-message-header {
  background: #c9a15c;
  color: white;
  padding: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}

.kido-message-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  align-items: center;
  flex-direction: row-reverse; /* ← PCで画像が左に来る */
}

.kido-message-text {
  flex: 1 1 55%;
  font-size: 1rem;
  line-height: 1.8;
}

.kido-message-text h3 {
  font-size: 1.2rem;
  color: #a8894d;
  margin-bottom: 1rem;
}

.kido-message-text p {
  margin-bottom: 1rem;
}

.kido-message-text .quote {
  font-style: italic;
  padding-left: 1rem;
  border-left: 4px solid #c9a15c;
  color: #555;
  margin-top: 1.5rem;
}

.kido-message-image {
  flex: 1 1 35%;
  text-align: center;
}

.kido-message-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

  /* スマホ対応 */

@media (max-width: 768px) {

.kido-message-content {
  flex-direction: column; /* ← スマホでは上下に */
  padding: 1.5rem;
}

  .kido-message-text,

.kido-message-image {
  flex: 1 1 100%;
}

.kido-message-header {
  font-size: 1.2rem;
  padding: 1rem;
}

.kido-message-text h3 {
  font-size: 1.1rem;
}

}

.form-link-button {
  display: inline-block;
  margin: 1rem auto;
  padding: 1rem 2rem;
  background-color: #c9a15c;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.form-link-button:hover {
  background-color: #b08c4f;
}

.contact {
  background: #f9f7f4;
  padding: 3rem 1rem;
  text-align: center;
  font-family: "Yu Gothic", sans-serif;
}

.contact h2 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem 0;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.contact-button {
  display: inline-block;
  background-color: #c9a15c;
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #b08c4f;
}

.contact-button.secondary {
  background-color: #ffffff;
  color: #c9a15c;
  border: 2px solid #c9a15c;
}

.contact-button.secondary:hover {
  background-color: #f1e7d7;
}

.tel-lead {
  margin-top: 1rem;
  font-weight: bold;
  color: #2c2c2c;
}

.tel {
  font-size: 1.2rem;
  color: #c9a15c;
  font-weight: bold;
}

.faq-section .image img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;

}

  /* ▼ ローディング画面全体 */

#loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.8s ease;
  pointer-events: none; /* 読み込み中の誤操作防止 */
}

  /* ▼ ローディング中に表示されるロゴテキスト */

.loader-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #a8894d;
  font-family: 'Yu Mincho', serif;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: logoFadeIn 1.2s ease-in-out forwards;
}

  /* ▼ ロゴのフェードインアニメーション */

@keyframes logoFadeIn {

0% {
  opacity: 0;
  transform: translateY(10px);
}

100% {
  opacity: 1;
  transform: translateY(0);
}

}

  /* ▼ ローディング画面が非表示になる時のクラス */

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

  /* ローディング中のロゴ全体ラップ */

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1s ease-in-out;
}

  /* ロゴ画像 */

.loader-image {
  width: 200px;
  height: auto;
  opacity: 0;
  animation: logoFadeIn 1.2s ease-in-out forwards;
}

  /* テキストと同じアニメーションでもOK */

@keyframes logoFadeIn {

0% {
  opacity: 0;
  transform: translateY(10px);
}

100% {
  opacity: 1;
  transform: translateY(0);
}

}

@media (min-width: 1024px) {
  .feature-section,
  .facility-list,
  .lux-section,
  .flow-section,
  .contact,

.kido-message-section {
  padding-left: 8rem;
  padding-right: 8rem;
}

}

@media (min-width: 1400px) {

section {
  max-width: 1100px;
}

}

  /* PC表示で「よくある質問」セクションの左右余白を減らす */

@media (min-width: 1024px) {

.faq-section .info-content {
  padding-left: 5rem;
  padding-right: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

}

.layout-examples h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #3a2d1f;
  border-left: 4px solid #c9a15c;
  padding-left: 0.8rem;
}

.cta-section {

  padding: 10px 20px;
  text-align: center;
  margin-top: 10px; /* ← ここを小さく調整 */

}

  /* ラグジュアリーな無料相談セクション */

.contact-section {
  background: linear-gradient(135deg, #fefefe 0%, #f0f4f8 100%);
  background-image: url('https://www.transparenttextures.com/patterns/symphony.png');
  background-repeat: repeat;
  background-blend-mode: lighten;
  padding: 60px 20px;
  border-top: 1px solid #ddd;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 20px;
  width: 120px;
  height: 120px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/3208/3208753.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.05;
  z-index: 0;
}

.contact-section * {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 36px;
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px;
  box-sizing: border-box;
}

.contact-button {
  display: inline-block;
  width: 100%;
  max-width: 400px;  /* お好みで調整可 */
  box-sizing: border-box;
  text-align: center;
}

.contact-button.filled {
  background: #1a73e8;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.contact-button.filled:hover {
  background: #155ec2;
}

.contact-button.outline {
  background: transparent;
  color: #1a73e8;
  border: 2px solid #1a73e8;
}

.contact-button.outline:hover {
  background: #eaf1fb;
}

.tel-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tel-lead {
  font-size: 1rem;
  color: #666;
  margin-bottom: 8px;
}

.tel-number {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}

.tel-time {
  font-size: 0.9rem;
  color: #888;
  margin-left: 6px;
}

@media (max-width: 600px) {

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

.contact-button {
  width: 90%;
}

.tel-number {
  font-size: 1.2rem;
}

}

.tel-time {
  display: inline;
}

@media screen and (max-width: 600px) {

.tel-time {

  display: block;
  margin-left: 2em; /* 電話番号の下に少し右寄せで表示 */
}

}

.luxury-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 60px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 16px;
}

.luxury-title {
  font-size: 2.4em;
  text-align: center;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 40px;
}

.luxury-subtitle {
  text-align: center;
  font-size: 1.3em;
  color: #555;
  margin-bottom: 60px;
}

.luxury-gallery {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.luxury-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.luxury-gallery img:hover {
  transform: scale(1.03);
}

.cta-button {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 16px 36px;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #155ec2;
}

.site-footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
}

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

.footer-copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

  /* モバイル対応 */

@media screen and (max-width: 768px) {

.footer-logo-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav ul {
  flex-direction: column;
  gap: 10px;
}

.footer-copy {
  text-align: left;
}

}

.luxury-footer {
  background: linear-gradient(to right, #1e1e1e, #2e2e2e);
  color: #ffffff;
  padding: 50px 20px;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

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

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

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

html {
  scroll-behavior: smooth;
}

.steps-section {
  background: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
}

.steps-section h2 {

  font-size: 1.8em;
  margin-bottom: 30px;
}

.step-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.step-icon {
  background: #2e6fa8;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.step-arrow {
  font-size: 28px;
  color: #999;
}

  /* ===== スマホ対応 ===== */

@media (max-width: 768px) {

.step-flow {
  flex-direction: column;
}

.step-arrow {
  transform: rotate(90deg);
  margin: 10px 0;
}

}

  /* スマホだけ <br> を効かせる */

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {

.sp-only {
  display: inline;
}

}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.6;
  word-break: keep-all;
  white-space: normal;
  margin-bottom: 1.5em;
  padding: 0 1em; /* 左右の余白 */
}

@media screen and (max-width: 768px) {

.section-title {
  font-size: 1.25rem;
}

}

.staff-message-overlay {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.6rem;
  color: #c9a15c;  /* 上品なゴールド */
  opacity: 0.4;     /* ← 少し濃く */
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}

  /* スマホ対応 */

@media (max-width: 768px) {

.staff-message-overlay {
  top: -1rem;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

}

.kido-message-section {
  position: relative; /* 子要素のabsolute配置のため必要 */
}

  /* PCでは改行しない、スマホだけ改行するbr用クラス */

.sp-only {
  display: none;
}

@media (max-width: 768px) {

.sp-only {
  display: inline;
}

}

.lux-button:hover,

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.lux-button-wrapper {
  margin-top: 1.5rem;
  text-align: center;
}

.lux-button {
  display: inline-block;
  background: linear-gradient(135deg, #c9a15c, #b68b3e);
  color: #fff;
  padding: 0.65em 1.8em;
  font-size: 1rem;
  border-radius: 2em;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.lux-button:hover {
  background: linear-gradient(135deg, #b68b3e, #a8894d);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

  .facility-card img,

.img-row img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

  .facility-card:hover img,

.img-row img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.case-card {
  text-decoration: none;
  color: inherit; /* 任意。リンクの青色を無効にする場合 */
  display: block; /* h3, p 全体をクリック可能にするなら */
}

@media (max-width: 768px) {
  .setting-container p,
  .facility-overview p,
  .flow-section p,

.facility-list p {
  text-align: left;
}

}

  /* PCではsp-only非表示、スマホではpc-only非表示 */

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {

.pc-only {
  display: none;
}

.sp-only {
  display: inline;
}

}

@media (max-width: 480px) {

.hero-text .lead {
  white-space: nowrap;
}

}

/* ===============================
   ボタン統一デザイン（ザ・研修会議）
   =============================== */

/* --- 金色系（高級感） --- */
.lux-button,
.facility-button,
.contact-button.highlight {
  display: inline-block;
  margin-top: 1.8rem;
  background: linear-gradient(135deg, #b68b3e, #8c6a2d);
  color: #fff;
  padding: 0.8em 2.4em;
  font-size: 1.05rem;
  border-radius: 2.4em;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.lux-button:hover,
.facility-button:hover,
.contact-button.highlight:hover {
  background: linear-gradient(135deg, #a8894d, #7a5c24);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* --- 青系（信頼感・行動促進） --- */
.contact .cta,
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #005fa3, #003f73);
  color: #fff;
  padding: 0.8em 2.4em;
  font-size: 1.05rem;
  border-radius: 2.4em;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.contact .cta:hover,
.cta-button:hover {
  background: linear-gradient(135deg, #004f88, #002f55);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

/* --- グレー系（サブ・補足行動） --- */
.contact-button.sub,
.cta-button.secondary {
  display: inline-block;
  background: linear-gradient(135deg, #f0f0f0, #d9d9d9);
  color: #333;
  padding: 0.8em 2.4em;
  font-size: 1.05rem;
  border-radius: 2.4em;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-button.sub:hover,
.cta-button.secondary:hover {
  background: linear-gradient(135deg, #e2e2e2, #c4c4c4);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

/* --- スマホ共通 --- */
@media (max-width: 768px) {
  .lux-button,
  .facility-button,
  .contact-button.highlight,
  .contact .cta,
  .cta-button,
  .contact-button.sub,
  .cta-button.secondary {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 1em 1.2em;
  }
}
/* === 固定問い合わせバナー（スマホのみ・ふわっと表示） === */
.cta-fixed {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  z-index: 9999;                 /* ▲ボタン(10010)より下にする */
  background: linear-gradient(180deg, #ff7a66, #ff5d5d);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 14px 18px env(safe-area-inset-bottom);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;

  /* 初期は隠す（displayは触らない） */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.cta-fixed__label { font-size: 16px; letter-spacing: .02em; }
.cta-fixed__icon { flex: 0 0 auto; }

.cta-fixed.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

/* スマホのみ表示（PCは完全に消す） */
@media (max-width: 768px) {
  .cta-fixed { display: flex; }
}
@media (min-width: 769px) {
  .cta-fixed { display: none; }
}
/* --- 電話問い合わせブロックを3行固定で整える --- */
.tel-box {
  display: block;                /* 行レイアウトに */
}

.tel-box .tel-lead {
  display: block;                /* 1行目：見出し */
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.6;
  white-space: normal;
}

.tel-box .tel {
  display: block;                /* 2〜3行目の親 */
  margin: 0;
  line-height: 1.6;
}

/* 2行目：電話番号だけを独立行に */
.tel-box .tel a[href^="tel:"] {
  display: inline-block;
  font-size: 1.25rem;            /* 少し大きく・目立つ */
  font-weight: 700;
  text-decoration: none;
  margin: 0 0 4px;               /* 下に少し余白（時間との間） */
}

/* 3行目：時間は小さめ＆常に改行して独立行に */
.tel-box .tel-time {
  display: block;
  font-size: 0.8rem;            /* 「小さく」 */
  line-height: 1.6;
  /* 必要なら色も少し控えめに
     color: #8a8a8a;
  */
}

/* スマホでも同じ3行構成を維持（フォントだけ微調整） */
@media (max-width: 768px) {
  .tel-box .tel a[href^="tel:"] {
    font-size: 1.15rem;
  }
  .tel-box .tel-time {
    font-size: 0.9rem;
  }
}
