:root {
  --color-blue: #7ec8e3;
  --color-blue-soft: #eaf6fb;
  --color-green: #4a9b6e;
  --color-green-dark: #3d8259;
  --color-text: #333;
  --color-text-soft: #555;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-heading: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.9;
  font-size: 16px;
}

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

a { color: inherit; }

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95em;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--color-green);
  color: #fff;
}

.btn-outline {
  border: 1px solid #ccc;
  color: var(--color-text-soft);
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  background: rgba(0,0,0,0.15);
}

.btn-large {
  font-size: 1.1em;
  padding: 16px 48px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  flex: 1;
  font-size: 0.9em;
}

.header-nav a {
  text-decoration: none;
  color: var(--color-text-soft);
}

.header-nav a:hover { color: var(--color-green); }

.header-cta {
  white-space: nowrap;
  padding: 10px 20px;
  font-size: 0.85em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-lead, .hero-sub-text {
  margin: 0 0 20px;
  font-family: var(--font-heading);
}

.mark {
  background: rgba(255,255,255,0.88);
  padding: 4px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.7;
}

.hero-title {
  font-size: 1.15em;
  font-weight: 700;
  color: #1b4f8a;
}

.hero-lead .mark { font-size: 1.5em; font-weight: 700; color: #1b4f8a; }

.hero-sub-text .mark { font-size: 1em; color: #333; }

.hero-photo-frame {
  background: #fff;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transform: rotate(2deg);
  max-width: 380px;
  margin: 0 auto;
}

.hero-photo-frame img { width: 100%; }

/* ===== Recommend ===== */
.recommend {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-title {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--color-green-dark);
  font-size: 1.6em;
  margin-bottom: 32px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-bottom: 1px dashed #ddd;
  color: var(--color-text-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  font-size: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== Wave heading (shared) ===== */
.wave-heading {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.wave-heading::before,
.wave-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: repeating-linear-gradient(90deg, #bbb 0 6px, transparent 6px 10px);
}

.wave-heading::before { left: 0; }
.wave-heading::after { right: 0; }

.wave-heading h2 {
  display: inline-block;
  background: #fff;
  padding: 0 24px;
  font-family: var(--font-heading);
  font-size: 1.6em;
  color: var(--color-text);
  margin: 0;
}

/* ===== Tadoku intro (blue) ===== */
.tadoku-intro {
  background: var(--color-blue);
  padding: 70px 24px;
  text-align: center;
}

.tadoku-intro .wave-heading h2 { background: var(--color-blue); }
.tadoku-intro .wave-heading::before,
.tadoku-intro .wave-heading::after { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.7) 0 6px, transparent 6px 10px); }

.tadoku-lead {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 1.15em;
  color: #1b3a4d;
}

/* ===== 3 columns ===== */
.tadoku-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  gap: 40px;
}

.tadoku-columns .col img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.tadoku-columns h3 {
  font-family: var(--font-heading);
  font-size: 1.15em;
  margin-bottom: 12px;
}

.tadoku-columns p {
  font-size: 0.88em;
  color: var(--color-text-soft);
}

/* ===== Story / Thoughts sections ===== */
.story-section, .thoughts-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 24px;
}

.story-overlay, .thoughts-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
}

.story-inner, .thoughts-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.story-inner h2, .thoughts-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.7em;
  margin-bottom: 32px;
  color: #2b2b2b;
}

.story-inner p, .thoughts-inner p {
  font-size: 0.95em;
  color: #2b2b2b;
  text-align: left;
  margin-bottom: 32px;
}

.story-inner .btn { display: block; width: fit-content; margin: 0 auto; }

/* ===== Menu ===== */
.menu-section {
  padding: 70px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.menu-photo { overflow: hidden; }
.menu-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }

.menu-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
}

.menu-row.reverse { direction: rtl; }
.menu-row.reverse .menu-text { direction: ltr; }
.menu-row.reverse .menu-photo { direction: ltr; }

.menu-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3em;
  margin-bottom: 16px;
}

.voice-sub {
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  margin-top: 4px;
}

.menu-text p {
  color: var(--color-text-soft);
  font-size: 0.95em;
  margin: 0 0 8px;
}

.menu-text .price {
  font-weight: 700;
  color: var(--color-green-dark);
  margin-top: 16px;
}

.menu-text .price-sub {
  font-size: 0.85em;
  color: #888;
}

/* ===== Voice ===== */
.voice-section {
  background: var(--color-blue-soft);
  padding: 70px 24px;
}

.voice-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.voice-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.voice-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1em;
  margin-bottom: 16px;
}

.voice-card p {
  color: var(--color-text-soft);
  font-size: 0.92em;
  margin-bottom: 20px;
}

/* ===== Contact ===== */
.contact-section {
  padding: 80px 24px;
  text-align: center;
}

/* ===== Footer ===== */
.site-footer {
  background: #2f2f2f;
  color: #ccc;
  text-align: center;
  padding: 32px 24px;
  font-size: 0.85em;
}

.site-footer a { color: #ccc; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-frame { max-width: 280px; }
  .tadoku-columns { grid-template-columns: 1fr; }
  .menu-row, .menu-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .menu-photo img { min-height: 240px; }
  .menu-text { padding: 32px 24px; }
  .voice-cards { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}

@media (max-width: 560px) {
  .header-inner { padding: 10px 16px; }
  .header-cta { font-size: 0.75em; padding: 8px 14px; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-lead .mark { font-size: 1.15em; }
}
