@charset "UTF-8";

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --c-red: #c00000;
  --c-red-dark: #a00000;
  --c-red-deep: #7a0000;
  --c-text: #333;
  --c-text-soft: #555;
  --c-mute: #888;
  --c-cream: #FDF9F0;
  --c-cream-border: #CCCC01;
  --c-line: #d8d8d8;
  --c-line-soft: #ececec;
  --c-bg: #fff;

  --ff-serif: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --ff-sans: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, sans-serif;
  --ff-display: "Cormorant Garamond", "Noto Serif JP", serif;

  --max-w: 1140px;

  --header-h-desktop: 138px; /* topbar(28) + main(64) + nav(46) ざっくり */
  --header-h-mobile: 100px;

  --shadow-card: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-soft: 0 3px 12px rgba(0,0,0,0.06);
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  padding-top: var(--header-h-desktop); /* 追従ヘッダ分 */
}

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

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

h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }

ul { list-style: none; }

button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* SVG inline icon sizing */
svg { display: block; }


/* ==========================================================================
   Sticky Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--c-line-soft);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* 上部赤帯 */
.topbar {
  background: var(--c-red);
  color: #fff;
}
.topbar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 6px 24px;
}
.topbar__text {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* メインヘッダー */
.header-main {
  background: #fff;
}
.header-main__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ロゴ */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo__img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--ff-serif);
  line-height: 1.3;
}
.logo__sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-red);
  letter-spacing: 0.12em;
}
.logo__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--c-red);
  letter-spacing: 0.04em;
}

/* 電話エリア */
.header-contact {
  text-align: right;
  font-family: var(--ff-serif);
  flex-shrink: 0;
}
.header-contact__lead {
  font-size: 11px;
  color: var(--c-text-soft);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}
.header-contact__tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 24px;
  color: var(--c-red);
  font-weight: 700;
  line-height: 1;
}
.ico-phone {
  display: inline-flex;
  width: 1em; height: 1em;
  color: var(--c-red);
}
.ico-phone svg { width: 100%; height: 100%; }
.header-contact__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.header-contact__num { color: var(--c-red); }
.header-contact__time {
  font-size: 11px;
  color: var(--c-text-soft);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* グローバルナビ */
.global-nav {
  background: #fff;
  border-top: 1px solid var(--c-line-soft);
}
.global-nav__list {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.global-nav__list li { flex: 1; text-align: center; }
.global-nav__list a {
  display: block;
  padding: 14px 8px;
  font-size: 14px;
  font-family: var(--ff-serif);
  color: var(--c-text);
  position: relative;
  transition: color .25s;
  letter-spacing: 0.04em;
}
.global-nav__list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--c-red);
  transition: width .3s, left .3s;
}
.global-nav__list a:hover { color: var(--c-red); }
.global-nav__list a:hover::after { width: 30px; left: calc(50% - 15px); }
.global-nav__list a.is-current { color: var(--c-red); }
.global-nav__list a.is-current::after { width: 30px; left: calc(50% - 15px); }

/* ハンバーガー */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--c-red);
  transition: transform .3s, opacity .3s, top .3s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }


/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 60px 0 50px;
  position: relative;
}
.hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
	background-image: url("../img/seigaiha.png");
	background-repeat: no-repeat;
	background-position: 30% 20%;
}
.hero__text { padding-top: 10px; }
.hero__title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #222;
  margin-bottom: 22px;
}
.hero__line { display: block; }
.hero__accent { color: var(--c-red); }
.hero__lead {
  color: var(--c-red);
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 17px;
  border-bottom: 1px solid #d4b5b5;
  padding-bottom: 22px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.hero__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 28px;
}
.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ボタン共通 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-serif);
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, background-color .25s, color .25s;
  cursor: pointer;
  min-width: 220px;
}
.btn__ico {
  display: inline-flex;
  width: 18px; height: 18px;
}
.btn__ico svg { width: 100%; height: 100%; }
.btn__label { position: relative; z-index: 1; }

.btn--primary {
  background: var(--c-red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(192,0,0,0.25);
}
.btn--primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192,0,0,0.35);
}

.btn--outline {
  background: #fff;
  color: var(--c-red);
  border: 1.5px solid var(--c-red);
}
.btn--outline:hover {
  background: var(--c-red);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline .btn__ico--torii svg path { fill: currentColor; }

/* シマー（光沢）アニメーション - ホバーで光が走る */
.btn--shine::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .7s ease;
  pointer-events: none;
}
.btn--shine:hover::before { left: 130%; }

/* ヒーロー画像 */
.hero__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .6s;
}
.hero__visual img {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   Features (3つの力)
   ========================================================================== */
.features {
  padding: 30px 0 60px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform .35s, box-shadow .35s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.feature-card__icon { margin-bottom: 14px; }
.circle-icon {
  display: inline-flex;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  align-items: center;
  justify-content: center;
}
.circle-icon svg { width: 30px; height: 30px; }
.feature-card__title {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.feature-card__text {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--c-text-soft);
  margin-bottom: 20px;
  text-align: center;
}
.feature-card__img {
  overflow: hidden;
  border-radius: 4px;
}
.feature-card__img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .6s;
}
.feature-card:hover .feature-card__img img { transform: scale(1.06); }


/* ==========================================================================
   いやしろちセクション
   ========================================================================== */
.iyashiro {
  padding: 40px 0 60px;
}
.iyashiro__box {
  background: var(--c-cream);
  border: 1.5px solid var(--c-cream-border);
  border-radius: 12px;
  padding: 50px 50px 44px;
  position: relative;
	background-image:url("../img/seigaiha.png");
	background-repeat: no-repeat;
	background-position: bottom right;
}
.iyashiro__badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-red);
  color: #fff;
  padding: 8px 24px;
  border-radius: 30px;
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(192,0,0,0.18);
}
.iyashiro__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 10px;
}
.iyashiro__visual {
  width: 240px;
  align-self: start;
  padding-top: 10px;
}
.iyashiro__visual img { width: 100%; }
.iyashiro__text { font-family: var(--ff-serif); }
.iyashiro__title {
  font-size: 26px;
  font-weight: 500;
  color: #222;
  line-height: 1.6;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.iyashiro__text p {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 14px;
}
.iyashiro__notes {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed #d4c98a;
}
.iyashiro__notes li {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text-soft);
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 4px;
}
.iyashiro__notes li::before { content: "※"; }


/* ==========================================================================
   セクション共通タイトル
   ========================================================================== */
.sec-title {
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--c-red);
  margin: 50px 0 36px;
  letter-spacing: 0.18em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.sec-title::before,
.sec-title::after {
  content: "";
  flex: 0 0 80px;
  height: 1px;
  background: var(--c-red);
}
.sec-title span { white-space: nowrap; }


/* ==========================================================================
   コンシェルジュサービス
   ========================================================================== */
.concierge { padding-bottom: 50px; }
.concierge__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.concierge-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 22px 16px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.concierge-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-red);
  box-shadow: 0 10px 24px rgba(192,0,0,0.1);
}
.concierge-card__ico {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.concierge-card__ico svg { width: 26px; height: 26px; }
.concierge-card h3 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-red);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.concierge-card p {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--c-text-soft);
  text-align: left;
}


/* ==========================================================================
   こんな方におすすめ
   ========================================================================== */
.recommend { padding-bottom: 60px; }
.recommend__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.recommend-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 8px 18px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.recommend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.recommend-card__img {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.recommend-card__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.recommend-card h3 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.5;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.recommend-card p {
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--c-text-soft);
}


/* ==========================================================================
   下部CTA
   ========================================================================== */
.cta {
  background: var(--c-red);
  margin-top: 30px;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 30px;
  align-items: center;
  position: relative;
}
.cta__text { color: #fff; }
.cta__lead {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.cta__tel-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.cta__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0;
}
.cta__tel .ico-phone { color: #fff; font-size: 32px; }
.cta__tel-label { font-size: 22px; letter-spacing: 0.05em; }
.cta__tel-num { color: #fff; }
.cta__time {
  font-size: 13px;
  color: #fff;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}
.cta__time-badge {
  background: var(--c-red-deep);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 3px;
}
.cta__mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--c-red);
  padding: 14px 22px 14px 22px;
  border-radius: 6px;
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  min-width: 240px;
  flex-shrink: 0;
}
.cta__mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.cta__mail-ico {
  display: inline-flex;
  width: 22px; height: 22px;
  color: var(--c-red);
}
.cta__mail-ico svg { width: 100%; height: 100%; }
.cta__mail-label { flex: 1; text-align: center; }
.cta__mail-arrow { font-weight: 700; font-size: 14px; }

.cta__photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.cta__photo img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  object-position: center top;
}


/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: #fff;
  padding: 50px 0 0;
}
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .logo--footer {
  margin-bottom: 10px;
}
.footer-brand .logo__img {
  height: 50px;
}
.footer-brand__sub {
  font-family: var(--ff-serif);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--c-text);
  margin-bottom: 6px;
}
.footer-brand__name {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-red);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}
.footer-brand__lic {
  font-size: 11px;
  line-height: 1.8;
  color: var(--c-text-soft);
}

.footer-contact h4,
.footer-nav h4 {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.footer-contact p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-text);
  margin-bottom: 4px;
}
.footer-contact__indent { display: inline-block; padding-left: 0; }
.footer-contact__line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.footer-contact__line .ico-phone,
.footer-contact__line .ico-mail {
  width: 16px; height: 16px;
  color: var(--c-red);
  flex-shrink: 0;
}
.ico-mail svg { width: 100%; height: 100%; }
.footer-contact__line a {
  color: var(--c-text);
  position: relative;
}
.footer-contact__line a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--c-red);
  transition: width .3s;
}
.footer-contact__line a:hover { color: var(--c-red); }
.footer-contact__line a:hover::after { width: 100%; }
.footer-contact__time {
  font-size: 11.5px;
  color: var(--c-text-soft);
  margin-top: 6px;
}

.footer-nav__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-nav__cols ul li {
  margin-bottom: 8px;
}
.footer-nav__cols a {
  font-size: 13px;
  color: var(--c-text);
  position: relative;
  display: inline-block;
  transition: color .25s, transform .25s;
}
.footer-nav__indent {
  display: block;
  padding-left: 1em;
}
.footer-nav__cols a:hover {
  color: var(--c-red);
  transform: translateX(4px);
}

/* コピーライトバー */
.copybar {
  background: var(--c-red);
  color: #fff;
  padding: 12px 0;
}
.copybar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.copybar__nav {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.copybar__nav li {
  position: relative;
  padding: 0 18px;
  font-size: 12.5px;
}
.copybar__nav li + li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.4);
}
.copybar__nav a {
  color: #fff;
  position: relative;
  display: inline-block;
}
.copybar__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: #fff;
  transition: width .3s;
}
.copybar__nav a:hover::after { width: 100%; }
.copybar__copyright {
  font-size: 12px;
  color: #fff;
  font-family: var(--ff-display);
  letter-spacing: 0.04em;
}


/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__title { font-size: 36px; }
  .features__grid { gap: 20px; }
  .concierge__list { grid-template-columns: repeat(3, 1fr); }
  .recommend__list { grid-template-columns: repeat(2, 1fr); }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
  .iyashiro__box { padding: 40px 30px 36px; }
}


/* ==========================================================================
   Responsive - Mobile (Hamburger Menu)
   ========================================================================== */
@media (max-width: 768px) {

  body { padding-top: var(--header-h-mobile); }

  /* ヘッダー */
  .topbar__text { font-size: 10px; }
  .topbar__inner { padding: 4px 16px; }

  .header-main__inner {
    padding: 8px 12px;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .logo {
    gap: 8px;
    min-width: 0;
    flex: 1;
  }
  .logo__img { height: 36px; }
  .logo__sub { font-size: 11px; }
  .logo__name {
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .logo__text { gap: 2px; min-width: 0; }

  /* PC用電話を非表示 */
  .header-contact { display: none; }

  /* ハンバーガー表示 */
  .hamburger {
    display: block;
    flex-shrink: 0;
  }

  /* グローバルナビをモバイルメニューに */
  .global-nav {
    position: fixed;
    top: var(--header-h-mobile);
    left: 0; right: 0;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    border-top: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }
  .global-nav.is-open { max-height: calc(100vh - var(--header-h-mobile)); overflow-y: auto; }
  .global-nav__list {
    flex-direction: column;
    padding: 8px 16px 20px;
  }
  .global-nav__list li {
    border-bottom: 1px solid var(--c-line-soft);
    text-align: left;
  }
  .global-nav__list a {
    padding: 16px 8px;
    font-size: 15px;
  }
  .global-nav__list a::after,
  .global-nav__list a.is-current::after { display: none; }
  .global-nav__list a.is-current {
    background: rgba(192,0,0,0.05);
    padding-left: 16px;
    border-left: 3px solid var(--c-red);
  }

  /* ヒーロー */
  .hero { padding: 30px 0 30px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
	  /* モバイル時：画像を先に、文章を後に表示 */
  .hero__visual { order: 1; }
  .hero__text { order: 2; padding-top: 0; }
  .hero__title { font-size: 28px; line-height: 1.5; text-align: center;}
  .hero__lead { font-size: 15px; padding-bottom: 16px; margin-bottom: 16px; text-align: center;}
  .hero__desc { font-size: 13px; text-align: center;}
  .hero__btns { flex-direction: column; }
  .btn { width: 100%; min-width: 0; }

  /* features */
  .features { padding: 20px 0 40px; }
  .features__grid { grid-template-columns: 1fr; gap: 20px; }

  /* iyashiro */
  .iyashiro__box { padding: 40px 20px 30px; }
  .iyashiro__body {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .iyashiro__visual { width: 180px; margin: 0 auto; }
  .iyashiro__title { font-size: 20px; text-align: center; }
  .iyashiro__text { text-align: left; }
  .iyashiro__badge { font-size: 12px; padding: 6px 18px; }

  /* sec-title */
  .sec-title { font-size: 20px; margin: 36px 0 24px; }
  .sec-title::before, .sec-title::after { flex: 0 0 40px; }

  /* concierge */
  .concierge__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .concierge-card { padding: 18px 12px 18px; }
  .concierge-card h3 { font-size: 14px; }
  .concierge-card p { font-size: 12px; }

  /* recommend */
  .recommend__list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .recommend-card__img { height: 130px; }
  .recommend-card h3 { font-size: 14px; }

/* cta */
  .cta { padding: 30px 0; }
  .cta__inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .cta__lead { font-size: 16px; }
  .cta__tel-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-content: center;
  }
  .cta__tel { font-size: 26px; justify-content: center; }
  .cta__tel-label { font-size: 16px; }
  .cta__time { justify-content: center; }
  .cta__photo { max-width: 200px; margin: 0 auto; }
  .cta__mail { width: 100%; min-width: 0; font-size: 15px; }

  /* footer */
  .site-footer { padding: 30px 0 0; }
  .site-footer__cols {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-brand { text-align: center; }
  .footer-brand .logo--footer { justify-content: center; }
  .footer-brand .logo__title { font-size: 28px; }
  .footer-contact { text-align: center; }
  .footer-contact__line { justify-content: center; }
	
  .copybar__inner { flex-direction: column; gap: 10px; padding: 8px 16px; }
  .copybar__nav li { font-size: 11px; padding: 0 10px; }
  .copybar__copyright { font-size: 11px; }
}

/* ==========================================================================
   Small Mobile
   ========================================================================== */
@media (max-width: 480px) {
  .concierge__list { grid-template-columns: 1fr; }
  .recommend__list { grid-template-columns: 1fr; }
  .recommend-card__img { height: 180px; }
  .hero__title { font-size: 24px; }
  .iyashiro__title { font-size: 18px; }
}

/* ==========================================================================
   JSフェードインアニメーション
   ========================================================================== */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-fade.js-fade--in {
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .js-fade { opacity: 1; transform: none; transition: none; }
  .btn--shine::before { display: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   スクロール時にヘッダーをやや小さく（演出）
   ========================================================================== */
.site-header.is-scrolled {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.site-header.is-scrolled .topbar { display: none; }
@media (max-width: 768px) {
  .site-header.is-scrolled { /* モバイルでは特に変化なし */ }
  .site-header.is-scrolled .topbar { display: block; }
}
