* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
  color: #222222;
  background: #f5f0e8;
}

a {
  color: #c4161c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: #f5f5f5;
}

.section-accent {
  background: #111827;
  color: #f9fafb;
}

.section-accent a {
  color: #ffb3b3;
}

.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 4px 0 8px;
}

.section-title.small {
  font-size: 22px;
}

.section-intro {
  max-width: 640px;
  font-size: 14px;
  color: #444;
}

.section-muted .section-intro {
  color: #555;
}

.section-accent .section-intro {
  color: #d1d5db;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid #e0e0e0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  background: #f5f5f5;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 15px;
  font-weight: 600;
}

.brand-tagline {
  font-size: 11px;
  color: #666;
}

.main-nav {
  display: flex;
  gap: 12px;
  font-size: 12px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 4px 8px;
  border-radius: 12px;
  color: #333;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: #111827;
  color: #f9fafb;
  text-decoration: none;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 11px;
}

.header-tel-label {
  color: #666;
}

.header-tel-number {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c4161c;
}

.header-tel-number:hover {
  text-decoration: none;
  color: #a50f15;
}

.header-tel-time {
  color: #777;
}

/* Hero */

.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid #e0e0e0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #777;
}

.hero-title {
  font-size: 30px;
  line-height: 1.4;
  margin: 10px 0 16px;
}

.hero-lead {
  font-size: 14px;
  color: #444;
  max-width: 640px;
}

.hero-bullets {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.hero-bullets li + li {
  margin-top: 8px;
}

.hero-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4161c;
  margin-right: 8px;
  vertical-align: middle;
}

.hero-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e5e5;
}

.hero-form-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}

.hero-form-note {
  font-size: 11px;
  color: #666;
  margin: 0 0 14px;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.required,
.optional {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 10px;
  border: 1px solid currentColor;
}

.required {
  color: #c4161c;
}

.optional {
  color: #777;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  background: #fdfdfd;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
  border-color: #c4161c;
  box-shadow: 0 0 0 1px rgba(196, 22, 28, 0.15);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #c4161c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #a50f15;
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  background: transparent;
  color: #e5e7eb;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

.hero-form-tel {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
  font-size: 11px;
}

.hero-form-tel-label {
  margin: 0 0 4px;
  color: #555;
}

.hero-form-tel-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 2px;
}

.hero-form-tel-free {
  font-size: 11px;
  color: #c4161c;
}

.hero-form-tel-number {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #111827;
}

.hero-form-tel-number:hover {
  text-decoration: none;
  color: #c4161c;
}

.hero-form-tel-time {
  margin: 0;
  color: #777;
}

/* Shop */

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px;
}

.shop-name {
  font-size: 20px;
  margin: 0 0 16px;
}

.shop-meta {
  margin: 0 0 16px;
}

.shop-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 8px;
  font-size: 13px;
}

.shop-row + .shop-row {
  margin-top: 4px;
}

.shop-row dt {
  color: #666;
}

.shop-summary {
  font-size: 13px;
  color: #444;
  max-width: 640px;
}

.shop-map {
  align-self: stretch;
}

.map-placeholder {
  border-radius: 16px;
  border: 1px solid #d4d4d4;
  padding: 16px;
  background: repeating-linear-gradient(
    135deg,
    #f5f5f5 0,
    #f5f5f5 8px,
    #ffffff 8px,
    #ffffff 16px
  );
}

.map-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}

.map-text {
  font-size: 12px;
  color: #555;
  margin: 0 0 12px;
}

.map-address {
  font-size: 12px;
  font-weight: 600;
}

/* Phone CTA */

.phone-cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.phone-cta-copy {
  max-width: 520px;
}

.phone-cta-text {
  font-size: 14px;
  color: #e5e7eb;
}

.phone-cta-box {
  padding: 16px 20px 18px;
  border-radius: 16px;
  border: 1px solid #374151;
  background: #111827;
  min-width: 260px;
}

.phone-cta-label {
  font-size: 13px;
  margin: 0 0 4px;
}

.phone-cta-time {
  font-size: 11px;
  margin: 0 0 10px;
  color: #9ca3af;
}

.phone-cta-number {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fef2f2;
}

.phone-cta-number:hover {
  text-decoration: none;
  color: #fecaca;
}

.phone-cta-note {
  font-size: 11px;
  margin: 10px 0 0;
  color: #9ca3af;
}

/* Manager & staff */

.manager-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
}

.manager-name {
  font-size: 18px;
  margin: 0 0 12px;
}

.manager-lead {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 12px;
}

.manager-text {
  font-size: 13px;
  color: #444;
}

.manager-side {
  border-left: 1px solid #e5e5e5;
  padding-left: 20px;
}

.staff-side-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
}

.staff-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 12px;
}

.staff-list li + li {
  margin-top: 10px;
}

.staff-role {
  font-weight: 600;
  color: #555;
  margin: 0 0 2px;
}

.staff-name {
  margin: 0 0 2px;
}

.staff-text {
  margin: 0;
  color: #555;
}

.staff-note {
  font-size: 11px;
  color: #777;
}

/* Cards & grids */

.about-grid,
.results-grid,
.reviews-grid,
.region-grid,
.shops-grid {
  display: grid;
  gap: 20px;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.results-grid,
.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.region-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.shops-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  border-radius: 16px;
  border: 1px solid #e0e0e0;
  padding: 18px 18px 16px;
  background: #ffffff;
}

.section-muted .card {
  background: #fcfcfc;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
}

.card-meta {
  font-size: 11px;
  color: #777;
  margin: 0 0 8px;
}

.card-text {
  font-size: 13px;
  color: #444;
}

.results-note {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
}

/* Flow */

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.flow-item {
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
}

.flow-title {
  font-size: 15px;
  margin: 0 0 4px;
}

.flow-text {
  font-size: 13px;
  color: #444;
}

.flow-note {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
}

/* FAQ */

.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  border-top: 1px solid #e5e5e5;
  padding: 14px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}

.faq-q {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 6px;
}

.faq-a {
  font-size: 13px;
  color: #444;
  margin: 0;
}

/* Shops */

.shops-area {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}

.shops-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #444;
}

.shops-list li + li {
  margin-top: 4px;
}

/* CTA section */

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
}

.cta-text {
  font-size: 14px;
  color: #e5e7eb;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-phone {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #374151;
}

.cta-phone-label {
  margin: 0 0 4px;
  font-size: 13px;
}

.cta-phone-number {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fef2f2;
}

.cta-phone-number:hover {
  text-decoration: none;
  color: #fecaca;
}

.cta-phone-time {
  margin: 4px 0 0;
  font-size: 11px;
  color: #9ca3af;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Footer */

.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 24px 0 28px;
  background: #111827;
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark-footer {
  background: #f5f5f5;
}

.footer-title {
  font-size: 13px;
  margin: 0 0 2px;
}

.footer-address {
  font-size: 11px;
  margin: 0;
  color: #9ca3af;
}

.footer-meta {
  text-align: right;
  font-size: 11px;
}

.footer-credit a {
  color: #fecaca;
}

.footer-credit a:hover {
  color: #ffffff;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .shop-grid,
  .manager-grid,
  .cta-grid,
  .phone-cta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero-form {
    max-width: 420px;
  }

  .manager-side {
    border-left: none;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 16px;
  }

  .phone-cta {
    align-items: stretch;
  }

  .phone-cta-box {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid #e5e5e5;
    padding-top: 8px;
  }

  .hero {
    padding-top: 56px;
  }

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

  .section {
    padding: 56px 0;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 14px;
  }

  .header-tel-number {
    font-size: 16px;
  }

  .hero-form {
    padding: 16px 14px 14px;
  }

  .shop-row {
    grid-template-columns: 70px minmax(0, 1fr);
  }
}
