/* ===================================
   あかしや酒店 - Global Stylesheet
   =================================== */

:root {
  --primary: #4a8c4a;
  --primary-light: #62a862;
  --accent: #c49535;
  --accent-light: #dab95a;
  --bg: #f9faf8;
  --bg-alt: #eef2eb;
  --bg-dark: #4a8c4a;
  --text: #2a2a2a;
  --text-sub: #5a5a5a;
  --border: #d4ddd1;
  --white: #ffffff;
  --notice-bg: #f2f9eb;
  --notice-border: #8ec06a;
  --warning-bg: #fff9ee;
  --warning-border: #e0a030;

  --font-serif: 'Noto Serif JP', 'Georgia', 'ヒラギノ明朝 Pro', serif;
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;

  --max-w: 1100px;
  --header-h: 72px;
  --transition: 0.25s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.09);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.14);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.45;
  font-weight: 700;
}

h1 { font-size: clamp(1.55rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5em; }
li { margin-bottom: .35em; }

/* ===========================
   Layout
   =========================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 72px 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-title span {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-lead {
  text-align: center;
  color: var(--text-sub);
  margin-bottom: 52px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Header & Navigation
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.site-logo__img {
  height: 44px;
  width: auto;
  display: block;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.site-logo__sub {
  font-size: .75rem;
  color: var(--text-sub);
  letter-spacing: .05em;
}

.site-logo:hover { color: var(--accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-tel__label {
  font-size: .65rem;
  color: var(--text-sub);
}

.header-tel__number {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .03em;
}

.header-tel__number:hover { color: var(--accent); }

.site-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 32px 24px;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.mobile-nav li {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.mobile-nav__tel {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.mobile-nav__tel-label {
  font-size: .75rem;
  color: var(--text-sub);
  margin-bottom: 4px;
}

.mobile-nav__tel-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.mobile-nav__tel-hours {
  font-size: .75rem;
  color: var(--text-sub);
  margin-top: 4px;
}

/* ===========================
   B2B Notice Bar
   =========================== */
.b2b-notice {
  background: var(--warning-bg);
  border-bottom: 2px solid var(--warning-border);
  padding: 10px 20px;
  text-align: center;
  font-size: .8rem;
  color: #7a5010;
  font-weight: 500;
}

/* ===========================
   Hero
   =========================== */
.hero {
  background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.55) 60%, rgba(255,255,255,0.55) 100%),
              url('../img/hero.jpg') center center / cover no-repeat;
  color: var(--white);
  padding: 100px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  background: none;
  color: #1a2a1a;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: .1em;
  padding: 5px 14px 5px 4px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1a2e1a;
  -webkit-text-stroke: 0;
  paint-order: fill;
  text-shadow: none;
}

.hero h1 em {
  font-style: normal;
  color: #c0392b;
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: #3a3a3a;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-cta .btn--outline {
  background: #c0392b;
  color: var(--white);
  border-color: #c0392b;
}

.hero-cta .btn--outline:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--contact {
  background: #c0392b;
  color: var(--white);
  border-color: #c0392b;
}

.btn--contact:hover {
  background: #a93226;
  border-color: #a93226;
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn--tel {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: .03em;
}

.btn--tel:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
}

/* ===========================
   Feature Cards (選ばれる理由)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  margin-bottom: 14px;
  text-align: center;
}
.feature-card__icon img {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto;
}
.btn-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
  filter: brightness(0) invert(1);
}
.icon-inline {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  display: inline-block;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: .85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===========================
   生樽 CTA Section
   =========================== */
.namadaru-section {
  background: linear-gradient(to right, #3a7a3a 55%, #2a5e2a 100%);
  color: var(--white);
  padding: 72px 0;
}

.namadaru-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.namadaru-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.namadaru-content .accent-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.namadaru-content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-size: .95rem;
}

.namadaru-notice {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .8rem;
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
}

.namadaru-img {
  overflow: hidden;
}

.namadaru-img img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* ===========================
   Service Cards
   =========================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  transition: box-shadow var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 20px 24px 24px;
}

.service-card:hover { box-shadow: var(--shadow-lg); }

.service-card__cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2a1a;
  margin-bottom: 10px;
}

.service-card__text {
  font-size: .875rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ===========================
   Steps (flow page)
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: step;
  position: relative;
}

.step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step::after {
  content: '▶';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.2rem;
  z-index: 1;
}

.step:last-child::after { display: none; }

.step__num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  position: relative;
}

.step__num::before {
  content: 'STEP';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  white-space: nowrap;
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.step__text {
  font-size: .85rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===========================
   Tables
   =========================== */
.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--primary);
  width: 30%;
  white-space: nowrap;
}

.data-table tr:hover td {
  background: #faf8f5;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.hours-table th,
.hours-table td {
  padding: 10px 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.hours-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.hours-table td.closed {
  color: #c0392b;
  font-weight: 700;
}

/* ===========================
   Order Method Table
   =========================== */
.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}

.order-table th,
.order-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

.order-table thead th {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  font-weight: 700;
}

.order-table tbody th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  white-space: nowrap;
}

.order-table td {
  text-align: center;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg); }

.faq-question .faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}

.faq-question .faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-sub);
  font-size: .8rem;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 66px;
  font-size: .9rem;
  color: var(--text-sub);
  line-height: 1.8;
}

.faq-answer.is-open { display: block; }

.faq-a-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--bg-alt);
  color: var(--primary);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ===========================
   Contact Form
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.contact-tel-block {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.contact-tel-block h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.contact-tel-block .tel-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: var(--accent-light);
  letter-spacing: .03em;
  margin-bottom: 8px;
}

.contact-tel-block .tel-hours {
  font-size: .8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-label .required {
  display: inline-block;
  background: #c0392b;
  color: var(--white);
  font-size: .65rem;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-label .optional {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--text-sub);
  font-size: .65rem;
  padding: 1px 5px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a5a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: .78rem;
  color: var(--text-sub);
  margin-top: 6px;
}

.form-submit {
  margin-top: 8px;
}

.honeypot {
  display: none;
}

/* ===========================
   Notice Boxes
   =========================== */
.notice-box {
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .85rem;
  line-height: 1.75;
  margin-top: 16px;
}

.notice-box--info {
  background: var(--warning-bg);
  border-left: 4px solid var(--warning-border);
  color: #7a5010;
}

.notice-box--caution {
  background: #fff0f0;
  border-left: 4px solid #c0392b;
  color: #7a1010;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #3a7a3a 0%, #2a5e2a 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: .95rem;
}

.cta-buttons .btn {
  border: 1px solid #ccc;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-sub-note {
  font-size: .78rem;
  color: rgba(255,255,255,0.55);
}

/* ===========================
   Instagram CTA
   =========================== */
.instagram-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 56px 0;
}

.instagram-cta h2 {
  margin-bottom: 12px;
}

.instagram-cta p {
  color: var(--text-sub);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-color: transparent;
}

.btn--instagram:hover {
  opacity: .9;
  color: var(--white);
}

/* ===========================
   Page Hero (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, #4a8c4a 0%, #3a7a3a 100%);
  color: var(--white);
  padding: 56px 0 52px;
  text-align: center;
}

.breadcrumb-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb {
  font-size: .78rem;
  color: var(--text-sub);
  margin: 0;
}

.breadcrumb a { color: var(--text-sub); }
.breadcrumb a:hover { color: var(--primary); }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.page-hero .page-hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,0.75);
}

/* ===========================
   Area info
   =========================== */
.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.area-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ===========================
   Map
   =========================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ===========================
   Strengths list
   =========================== */
.strengths-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.strengths-list li {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 20px 20px 52px;
  box-shadow: var(--shadow);
  position: relative;
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.strengths-list li::before {
  content: '✓';
  position: absolute;
  left: 18px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.strengths-list li strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

/* ===========================
   About intro
   =========================== */
.about-message {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--accent);
  max-width: 800px;
  margin: 0 auto;
}

.about-message p {
  line-height: 2;
  color: var(--text);
}

.about-message .signature {
  text-align: right;
  font-size: .85rem;
  color: var(--text-sub);
  margin-top: 24px;
  margin-bottom: 0;
}

/* ===========================
   License box
   =========================== */
.license-box {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 32px;
}

.license-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1rem;
}

.license-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.license-link:hover {
  box-shadow: var(--shadow-lg);
  color: var(--accent);
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: #2a3d2a;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
  font-size: .85rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer-brand__sub {
  font-size: .7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 16px;
}

.footer-info-item {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: flex-start;
  color: rgba(255,255,255,0.7);
}

.footer-info-item strong {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
  min-width: 60px;
}

.footer-b2b-notice {
  margin-top: 14px;
  font-size: .75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-nav h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li { margin-bottom: 8px; }

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--accent-light); }

.footer-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}

.footer-instagram a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .copyright {
  font-size: .75rem;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   Utilities
   =========================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ===========================
   Thanks / Error pages
   =========================== */
.result-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.result-page__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.result-page h1 {
  color: var(--primary);
  margin-bottom: 16px;
}

.result-page p {
  color: var(--text-sub);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-tel { display: none; }
  .hamburger { display: flex; }

  .namadaru-inner {
    grid-template-columns: 1fr;
  }

  .namadaru-img {
    order: -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step::after {
    content: '▼';
    right: 50%;
    top: auto;
    bottom: -16px;
    transform: translateX(50%);
  }
}

@media (max-width: 600px) {
  section { padding: 52px 0; }

  .hero { padding: 64px 0 56px; }

  .hero-tag { font-size: 1rem; }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .about-message {
    padding: 28px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .data-table th {
    width: auto;
  }

  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table th {
    border-bottom: none;
  }

  .order-table thead { display: none; }

  .order-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .order-table tbody th,
  .order-table tbody td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    white-space: normal;
  }

  .order-table tbody th {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid {
    gap: 16px;
  }

  .namadaru-img img {
    width: 100%;
  }

  .site-logo__sub {
    display: none;
  }
}

/* ===========================
   Scroll fade-in
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Flash message (form result) */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: .9rem;
  font-weight: 500;
}

.flash--success {
  background: #eafaf1;
  border: 1px solid #7aab52;
  color: #276a2a;
}

.flash--error {
  background: #fff0f0;
  border: 1px solid #e74c3c;
  color: #8b1a1a;
}
