/*
Theme Name: Restaurant LP
Theme URI:
Author:
Author URI:
Description: 飲食店向け1ページ完結型ランディングページテーマ。ヒーロー・コンセプト・メニュー・店舗情報などを1画面に凝縮し、予約・問い合わせへ導線を集約します。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: restaurant-lp
*/

:root {
  --base: #fffaf7;
  --base-soft: #fff1ec;
  --text: #473935;
  --muted: #7b6b66;
  --main: #e98c88;
  --main-dark: #c9615d;
  --accent: #b7c8a4;
  --accent-deep: #71845e;
  --cream: #fff6d9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(149, 91, 80, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--base);
  font-family: "Yu Gothic", "Hiragino Sans", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.8;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233, 140, 136, 0.16);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--main-dark);
  white-space: nowrap;
}

.logo span {
  color: var(--accent-deep);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--main);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-button {
  min-width: 112px;
  height: 42px;
  color: var(--white);
  background: var(--main);
  box-shadow: 0 10px 24px rgba(233, 140, 136, 0.28);
}

.header-button:hover,
.button:hover {
  transform: translateY(-3px);
}

.section-bg {
  background:
    radial-gradient(circle at top left, rgba(255, 230, 214, 0.9), transparent 34%),
    radial-gradient(circle at bottom right, rgba(183, 200, 164, 0.35), transparent 34%),
    var(--base);
}

.section-bg-soft {
  background: linear-gradient(180deg, var(--base), var(--base-soft));
}

.hero {
  padding: 84px 0 96px;
  overflow: hidden;
}

.hero-grid,
.split-grid,
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 56px;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.cta h2,
.access h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--main-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.center .eyebrow {
  justify-content: center;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--main), var(--main-dark));
  box-shadow: 0 16px 34px rgba(201, 97, 93, 0.28);
}

.button.secondary {
  color: var(--main-dark);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(233, 140, 136, 0.28);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(149, 91, 80, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 42% 58% 53% 47%;
  background: linear-gradient(145deg, #ffe2dc, #fff8e1);
  filter: drop-shadow(var(--shadow));
  animation: morph 8s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  width: min(92%, 520px);
  filter: drop-shadow(0 24px 30px rgba(96, 66, 57, 0.2));
}

.image-card img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
}

.image-card.tall img {
  min-height: 420px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  color: var(--muted);
  font-size: 13px;
  backdrop-filter: blur(12px);
}

.floating-card strong {
  color: var(--text);
  font-size: 16px;
}

.card-1 {
  left: 4%;
  bottom: 22%;
}

.card-2 {
  right: 0;
  top: 18%;
}

.concept,
.menu,
.reason,
.space,
.cta,
.access {
  padding: 96px 0;
}

.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.reverse .section-copy {
  order: 1;
}

.reverse .image-card {
  order: 2;
}

.image-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.image-card.tall {
  padding: 18px;
}

.section-copy h2,
.section-heading h2,
.cta h2,
.access h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section-copy p,
.section-heading p,
.cta p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 18px 14px 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 13px;
  color: var(--main-dark);
  font-weight: 900;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 42px;
}

.center {
  text-align: center;
}

.menu-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card,
.reason-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(149, 91, 80, 0.1);
  overflow: hidden;
}

.menu-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #fff4ee;
}

.menu-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--main-dark);
  font-size: 12px;
  font-weight: 800;
}

.menu-body h3,
.reason-card h3 {
  margin: 0;
  font-size: 20px;
}

.menu-body p,
.reason-card p {
  color: var(--muted);
}

.menu-body strong {
  color: var(--main-dark);
  font-size: 22px;
}

.reason-card {
  padding: 30px;
}

.number {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(233, 140, 136, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.mini-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.mini-info div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.mini-info strong {
  display: block;
  color: var(--main-dark);
  font-size: 26px;
  line-height: 1.1;
}

.mini-info span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.cta {
  padding-top: 64px;
}

.cta-box {
  padding: 64px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 241, 236, 0.9)),
    radial-gradient(circle at 90% 20%, rgba(183, 200, 164, 0.42), transparent 30%);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-box .eyebrow {
  justify-content: center;
}

.cta-actions {
  justify-content: center;
}

.access-grid {
  align-items: stretch;
}

.shop-info {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(71, 57, 53, 0.1);
}

.shop-info dt {
  color: var(--main-dark);
  font-weight: 800;
}

.shop-info dd {
  margin: 0;
  color: var(--muted);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(233, 140, 136, 0.16), rgba(183, 200, 164, 0.24)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.55) 0 12px, rgba(255, 255, 255, 0.25) 12px 24px);
  color: var(--muted);
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(71, 57, 53, 0.08);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
}

.footer {
  padding: 36px 0;
  background: #fff3ee;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer .logo {
  margin: 0;
  font-size: 22px;
}

@keyframes morph {
  0%, 100% {
    border-radius: 42% 58% 53% 47%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 58% 42% 45% 55%;
    transform: rotate(4deg) scale(1.03);
  }
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .reverse,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy,
  .reverse .image-card {
    order: initial;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .menu-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .menu-card img {
    height: 100%;
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 22px;
  }

  .header-button {
    min-width: 94px;
    height: 38px;
    font-size: 13px;
  }

  .hero {
    padding: 46px 0 72px;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .concept,
  .menu,
  .reason,
  .space,
  .cta,
  .access {
    padding: 68px 0;
  }

  .image-card {
    padding: 14px;
    border-radius: 24px;
  }

  .menu-card {
    display: block;
  }

  .menu-card img {
    height: 220px;
  }

  .mini-info {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 42px 22px;
    border-radius: 28px;
  }

  .shop-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
