/* ========================================
   青空エアコンサービス - スタイルシート
   frontend-design enhanced / スマホファースト
======================================== */

/* ---------- カラー変数 ---------- */
:root {
  --color-black:    #071827;
  --color-charcoal: #0e2a43;
  --color-dark:     #123c5f;
  --color-brown:    #2f6f9f;
  --color-red:      #0f6db8;
  --color-red-dark: #0a4f8a;
  --color-ecru:     #eef8ff;
  --color-cream:    #f7fbff;
  --color-gold:     #38aeea;
  --color-gold-lt:  #92dcff;
  --color-text:     #153247;
  --color-line:     #06C755;
  --color-line-dark:#05a849;
  --radius:         6px;
  --radius-lg:      14px;
}

/* ---------- リセット・基本 ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-cream);
  padding-bottom: 80px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

.demo-notice {
  background: #e8f4fd;
  color: #0e2a43;
  text-align: center;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(56,174,234,0.28);
}

/* ---------- コンテナ ---------- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- アニメーション ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.26s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.58s; }

/* ---------- セクション共通 ---------- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-deco {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  margin-bottom: 14px;
  font-family: 'Shippori Mincho B1', serif;
}

.section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 27px;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.55;
}

/* ---------- ボタン共通 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
  text-align: center;
  white-space: nowrap;
  min-height: 56px;
}

.btn:hover  { filter: brightness(1.1); }
.btn:active { transform: scale(0.97); }

.btn-icon { font-size: 19px; }

.btn-line {
  background: var(--color-line);
  color: #fff;
  box-shadow: 0 4px 14px rgba(6,199,85,0.32);
}

.btn-tel {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,109,184,0.32);
}

.btn-map {
  background: var(--color-charcoal);
  color: var(--color-ecru);
  box-shadow: 0 4px 14px rgba(36,32,24,0.28);
}

/* ---------- ヘッダー ---------- */
.site-header {
  background: var(--color-black);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(56,174,234,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lantern { font-size: 23px; line-height: 1; }

.header-shop-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-sub {
  font-size: 9px;
  color: var(--color-gold);
  letter-spacing: 0.22em;
  font-family: 'Shippori Mincho B1', serif;
}

.header-main {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ecru);
  font-family: 'Shippori Mincho B1', serif;
  letter-spacing: 0.06em;
}

.header-hours {
  font-size: 11px;
  color: rgba(146,220,255,0.82);
  text-align: right;
  letter-spacing: 0.05em;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: scaleIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* グレイン テクスチャ */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3,22,38,0.66) 0%,
    rgba(6,55,92,0.22) 42%,
    rgba(3,22,38,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px 24px;
}

.hero-catch {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 13px;
  color: var(--color-gold-lt);
  letter-spacing: 0.35em;
  margin-bottom: 18px;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--color-ecru);
  line-height: 1.55;
  margin-bottom: 22px;
  text-shadow: 0 3px 18px rgba(0,0,0,0.65);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-sub {
  font-size: 15px;
  color: rgba(242,236,224,0.85);
  margin-bottom: 40px;
  line-height: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

.hero-btns .btn {
  width: 100%;
  max-width: 320px;
  font-size: 16px;
  padding: 17px 22px;
}

/* ---------- 信頼ポイント ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(56,174,234,0.14);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  background: rgba(56,174,234,0.08);
  color: var(--color-charcoal);
  font-size: 14px;
  font-weight: 700;
}

.trust-item i {
  color: var(--color-red);
  font-size: 20px;
}

/* ---------- スクロール表示アニメーション ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- フローティングCTA ---------- */
.float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  background: rgba(7,24,39,0.97);
  border-top: 1px solid rgba(56,174,234,0.35);
  backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: transform 0.3s;
}

.float-cta.hidden { transform: translateY(100%); }

.float-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  gap: 2px;
  border-right: 1px solid rgba(146,220,255,0.16);
  transition: opacity 0.15s;
}

.float-btn:last-child { border-right: none; }
.float-btn:active     { opacity: 0.72; }

.float-icon  { font-size: 21px; line-height: 1; }
.float-label { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; }

.float-line .float-icon,
.float-line .float-label { color: var(--color-line); }

.float-tel .float-icon,
.float-tel .float-label  { color: #e05040; }

.float-map .float-icon,
.float-map .float-label  { color: var(--color-gold-lt); }

/* ---------- サービスについて ---------- */
.about {
  padding: 80px 0 72px;
  background: var(--color-cream);
}

.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 52px;
}

.about-img-wrap { width: 100%; }

.about-img {
  width: 100%;
  height: 268px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  line-height: 1.95;
  color: var(--color-text);
}

/* 特徴アイコン */
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
}

.feature-item {
  background: linear-gradient(150deg, #0d3555 0%, #0b2237 100%);
  border-radius: var(--radius-lg);
  padding: 28px 14px 24px;
  text-align: center;
  border: 1px solid rgba(146,220,255,0.18);
  box-shadow: 0 3px 16px rgba(0,0,0,0.22);
  transition: transform 0.22s, box-shadow 0.22s;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 18px;
  padding: 18px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-icon i,
.catering-icon i {
  line-height: 1;
}

.icon-flame  { background: rgba(56,174,234,0.18); color: #8edaff; }
.icon-bowl   { background: rgba(6,199,85,0.15);  color: #54df92; }
.icon-drink  { background: rgba(98,149,255,0.17);  color: #abc5ff; }
.icon-door   { background: rgba(242,236,224,0.10);  color: #d4c8b0; }

.feature-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ecru);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ---------- 相談内容 ---------- */
.trouble {
  padding: 78px 0 72px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef8ff 100%);
  border-top: 1px solid rgba(56,174,234,0.12);
}

.trouble-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.trouble-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(56,174,234,0.14);
  box-shadow: 0 8px 28px rgba(14,42,67,0.07);
}

.trouble-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(56,174,234,0.12);
  color: var(--color-red);
  font-size: 23px;
}

.trouble-card h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 18px;
  color: var(--color-charcoal);
  margin-bottom: 8px;
  line-height: 1.5;
}

.trouble-card p {
  font-size: 14px;
  color: #3e5b70;
  line-height: 1.85;
}

/* ---------- メニュー ---------- */
.menu {
  padding: 80px 0 72px;
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

/* メニュー背景テクスチャ */
.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(146,220,255,0.05) 40px,
    rgba(146,220,255,0.05) 41px
  );
  pointer-events: none;
}

.menu .section-title { color: var(--color-ecru); }

.menu-budget {
  text-align: center;
  font-size: 14px;
  color: var(--color-gold);
  margin-bottom: 36px;
  background: rgba(56,174,234,0.1);
  border: 1px solid rgba(56,174,234,0.25);
  padding: 12px 20px;
  border-radius: var(--radius);
  letter-spacing: 0.03em;
}

.menu-budget strong { font-size: 17px; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.menu-card {
  background: var(--color-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(146,220,255,0.16);
  transition: transform 0.28s, box-shadow 0.28s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.4);
}

.menu-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
}

.menu-card-body { padding: 20px; }

.menu-card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-ecru);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.menu-card-desc {
  font-size: 13px;
  color: rgba(242,236,224,0.68);
  line-height: 1.85;
  margin-bottom: 12px;
}

.menu-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gold-lt);
  letter-spacing: 0.04em;
}

.menu-note {
  font-size: 12px;
  color: rgba(242,236,224,0.42);
  text-align: center;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.standard-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
}

.standard-box > div {
  background: rgba(238,248,255,0.08);
  border: 1px solid rgba(146,220,255,0.22);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}

.standard-label {
  display: block;
  color: var(--color-gold-lt);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}

.standard-list {
  list-style: none;
  display: grid;
  gap: 9px;
}

.standard-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(242,248,255,0.78);
  font-size: 14px;
  line-height: 1.7;
}

.standard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ---------- 選ばれる理由 ---------- */
.reasons {
  padding: 80px 0 72px;
  background: var(--color-ecru);
}

.reasons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.reason-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(56,174,234,0.12);
  box-shadow: 0 2px 14px rgba(14,42,67,0.07);
  transition: box-shadow 0.22s, transform 0.22s;
}

.reason-card:hover {
  box-shadow: 0 6px 24px rgba(36,32,24,0.12);
  transform: translateY(-2px);
}

.reason-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(56,174,234,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--color-gold);
}

.reason-body { flex: 1; }

.reason-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 7px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.reason-desc {
  font-size: 15px;
  color: #3e5b70;
  line-height: 1.88;
}

/* ---------- 初めての方へ ---------- */
.firsttime {
  padding: 80px 0 72px;
  background: var(--color-ecru);
  border-top: 1px solid rgba(56,174,234,0.14);
}

.firsttime-box {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56,174,234,0.32);
  border-top: 3px solid var(--color-gold);
  padding: 36px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.firsttime-lead {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.firsttime-box p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.92;
}

.firsttime-box strong {
  color: var(--color-red);
  background: rgba(15,109,184,0.08);
  padding: 1px 4px;
  border-radius: 3px;
}

.firsttime-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.firsttime-btns .btn {
  width: 100%;
  font-size: 16px;
  padding: 18px 22px;
}

.firsttime-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.firsttime-list li {
  font-size: 15px;
  color: var(--color-text);
  background: rgba(56,174,234,0.08);
  padding: 13px 16px;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-gold);
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.catering {
  padding: 80px 0 72px;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(56,174,234,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.catering .section-title { color: var(--color-ecru); }

.catering-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.catering-card {
  background: rgba(14,42,67,0.82);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid rgba(146,220,255,0.18);
  text-align: center;
  backdrop-filter: blur(4px);
  transition: border-color 0.22s, background 0.22s;
}

.catering-card:hover {
  border-color: rgba(146,220,255,0.38);
  background: rgba(18,60,95,0.92);
}

.catering-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 28px;
  line-height: 1;
}

.catering-card h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--color-ecru);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.catering-card p {
  font-size: 14px;
  color: rgba(242,236,224,0.68);
  line-height: 1.92;
}

.catering-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.catering-cta p {
  font-size: 16px;
  color: var(--color-gold-lt);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.catering-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.catering-btns .btn {
  width: 100%;
  max-width: 340px;
  font-size: 16px;
  padding: 18px 22px;
}

/* ---------- 代表紹介 ---------- */
.owner {
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #eef8ff 0%, #f7fbff 100%);
}

.owner-card {
  background: #fff;
  border: 1px solid rgba(56,174,234,0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(14,42,67,0.08);
}

.owner-img-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.owner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.owner-body {
  padding: 30px 22px;
}

.owner-body .section-deco {
  text-align: left;
  letter-spacing: 0.18em;
}

.owner-body .section-title {
  font-size: 25px;
  margin-bottom: 16px;
}

.owner-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 18px;
}

.owner-name {
  display: inline-block;
  color: var(--color-red);
  background: rgba(56,174,234,0.1);
  border: 1px solid rgba(56,174,234,0.18);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-weight: 800;
}

.owner-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.owner-list li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border-radius: var(--radius);
  background: rgba(56,174,234,0.08);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-charcoal);
}

.owner-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 11px;
  color: var(--color-red);
  font-weight: 800;
}

/* ---------- お客様の声 ---------- */
.reviews {
  padding: 80px 0 72px;
  background: var(--color-cream);
  border-top: 1px solid rgba(56,174,234,0.12);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56,174,234,0.14);
  padding: 26px 22px;
  box-shadow: 0 6px 24px rgba(14,42,67,0.07);
}

.review-stars {
  color: var(--color-red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.review-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.9;
  margin-bottom: 14px;
}

.review-meta {
  font-size: 12px;
  color: #6f8798;
  font-weight: 700;
}

/* ---------- 営業CTA ---------- */
.sales-cta {
  padding: 42px 0;
  background: #e8f4fd;
  border-top: 3px solid var(--color-gold);
  text-align: center;
}

.sales-cta-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sales-cta-text {
  font-size: 14px;
  color: #3e5b70;
  line-height: 1.8;
}

/* ---------- アクセス ---------- */
.access {
  padding: 80px 0 72px;
  background: var(--color-cream);
}

.access-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.info-table th,
.info-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(56,174,234,0.16);
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 88px;
  color: var(--color-gold);
  font-weight: 700;
  background: rgba(56,174,234,0.07);
  font-family: 'Shippori Mincho B1', serif;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.info-table td a {
  color: var(--color-red);
  text-decoration: underline;
}

.access-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.access-btns .btn {
  width: 100%;
  font-size: 16px;
  padding: 18px 22px;
}

/* 地図エリア */
.map-area { width: 100%; }

.map-placeholder {
  background: linear-gradient(135deg, #0e2a43, #123c5f);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(146,220,255,0.5);
}

.map-placeholder-inner { text-align: center; padding: 20px; }

.map-icon {
  display: block;
  font-size: 44px;
  margin-bottom: 12px;
}

.map-placeholder-label {
  font-size: 14px;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.map-placeholder-addr {
  font-size: 13px;
  color: rgba(242,236,224,0.5);
  margin-bottom: 20px;
}

.btn-map-link {
  display: inline-block;
  background: var(--color-charcoal);
  color: var(--color-ecru);
  border: 1px solid rgba(146,220,255,0.45);
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}

.btn-map-link:hover { background: var(--color-dark); }

/* ---------- フッター ---------- */
.site-footer {
  background: var(--color-black);
  border-top: 1px solid rgba(56,174,234,0.3);
  padding: 52px 20px 44px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(56,174,234,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-shop-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-ecru);
  letter-spacing: 0.06em;
}

.footer-addr,
.footer-hours {
  font-size: 13px;
  color: rgba(242,236,224,0.55);
  letter-spacing: 0.04em;
}

.footer-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 16px 0 8px;
}

.footer-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: filter 0.15s;
}

.footer-btn:hover  { filter: brightness(1.1); }
.footer-btn:active { opacity: 0.75; }
.footer-line { background: var(--color-line); color: #fff; }
.footer-tel  { background: var(--color-red);  color: #fff; }

.footer-copy {
  font-size: 11px;
  color: rgba(242,236,224,0.28);
  margin-top: 18px;
  letter-spacing: 0.05em;
}

.photo-credit {
  font-size: 11px;
  color: rgba(242,236,224,0.2);
}

.photo-credit a {
  color: rgba(242,236,224,0.35);
  text-decoration: underline;
}

/* ---------- ユーティリティ ---------- */
.sp-only { display: inline; }

/* ========================================
   タブレット以上 (600px〜)
======================================== */
@media (min-width: 600px) {

  .hero-title { font-size: 40px; }

  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-btns .btn {
    width: auto;
    min-width: 200px;
  }

  .trust-inner { grid-template-columns: repeat(3, 1fr); }

  .features-list { grid-template-columns: repeat(4, 1fr); }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .trouble-grid { grid-template-columns: repeat(3, 1fr); }

  .standard-box { grid-template-columns: repeat(2, 1fr); }

  .catering-grid { grid-template-columns: repeat(3, 1fr); }

  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .firsttime-btns { flex-direction: row; }

  .catering-btns  { flex-direction: row; justify-content: center; }

  .footer-btns { flex-direction: row; justify-content: center; }

  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================
   PC (900px〜)
======================================== */
@media (min-width: 900px) {

  body          { padding-bottom: 0; }
  .float-cta    { display: none; }
  .sp-only      { display: none; }
  .section-title { font-size: 33px; }
  .hero-title    { font-size: 48px; }

  .about-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 52px;
  }
  .about-img-wrap { flex: 0 0 44%; }
  .about-img      { height: 350px; }

  .owner-card {
    display: grid;
    grid-template-columns: 44% 1fr;
    align-items: stretch;
  }

  .owner-img-wrap {
    height: auto;
    min-height: 420px;
  }

  .owner-body {
    padding: 44px 42px;
  }

  .access-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 52px;
  }
  .access-info { flex: 0 0 44%; }
  .map-area    { flex: 1; }
  .map-placeholder { height: 380px; }
}
