@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Zen+Maru+Gothic:wght@600;700&display=swap");

:root {
  --bg: #fff7f9;
  --surface: #ffffff;
  --primary: #a53560;
  --primary-dark: #7f2346;
  --accent: #b3506c;
  --soft: #f4ceda;
  --text: #2f2529;
  --muted: #66565d;
  --line: #ead8de;
  --shadow: 0 14px 36px rgba(93, 42, 61, 0.09);
  --radius: 10px;
  --content: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(165, 53, 96, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.demo-banner {
  position: relative;
  z-index: 110;
  margin: 0;
  padding: 8px 44px 8px 16px;
  color: var(--text);
  background: var(--soft);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.demo-banner[hidden] {
  display: none;
}

.demo-banner__close {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(234, 216, 222, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

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

.logo {
  display: inline-flex;
  flex: none;
  align-items: baseline;
  gap: 8px;
  color: var(--text);
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.logo__mark {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.global-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.global-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--bg);
}

.global-nav .nav-contact {
  margin-left: 6px;
  color: #fff;
  background: var(--primary);
}

.global-nav .nav-contact:hover,
.global-nav .nav-contact[aria-current="page"] {
  color: #fff;
  background: var(--primary-dark);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 76px));
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #5e3d49;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 20, 25, 0.7) 0%, rgba(35, 20, 25, 0.42) 48%, rgba(35, 20, 25, 0.2) 100%);
  content: "";
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.4;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(30px, 4.5vw, 40px);
  letter-spacing: 0.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3.5vw, 34px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 2.4vw, 23px);
}

p {
  margin-top: 0;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.9;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 11px 24px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  border-color: var(--primary-dark);
  color: #fff;
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button--light {
  border-color: #fff;
  color: var(--primary-dark);
  background: #fff;
}

.button--light:hover {
  border-color: var(--bg);
  color: var(--primary-dark);
  background: var(--bg);
}

.button--outline {
  color: var(--primary);
  background: transparent;
}

.button--outline:hover {
  color: #fff;
}

.button--wide {
  min-width: 220px;
}

.notice-strip {
  background: var(--primary);
}

.notice-strip__inner {
  display: flex;
  min-height: 58px;
  padding-block: 10px;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.notice-strip__label {
  flex: none;
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

.notice-strip p {
  margin: 0;
  font-size: 15px;
}

.section {
  padding-block: 88px;
}

.section--white {
  background: var(--surface);
}

.section--soft {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card__body > :last-child {
  margin-bottom: 0;
}

.card__meta {
  color: var(--muted);
  font-size: 14px;
}

.card__price {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.feature-card {
  padding: 30px;
  border-top: 4px solid var(--primary);
}

.feature-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

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

.split--reverse .split__media {
  order: 2;
}

.split__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.split__content > :last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
}

.assumption {
  padding-block: 42px;
}

.assumption__card {
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  background: #fff;
}

.assumption__card h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.assumption__card p {
  margin-bottom: 0;
  color: var(--muted);
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.news-list li {
  display: grid;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
  grid-template-columns: 120px 1fr;
}

.news-list time {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 340px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #75515f;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(40, 22, 29, 0.54);
  content: "";
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  padding-block: 70px;
  text-align: center;
}

.page-hero h1 {
  margin-inline: auto;
  margin-bottom: 10px;
}

.page-hero p:last-child {
  margin-bottom: 0;
}

.breadcrumb {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.breadcrumb ol {
  display: flex;
  min-height: 52px;
  margin-block: 0;
  padding: 10px 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li {
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: #a9989e;
  content: "/";
}

.category-nav {
  display: flex;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #fff;
  list-style: none;
}

.category-nav a {
  display: block;
  min-width: 130px;
  padding: 9px 18px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.category-nav a:hover {
  color: #fff;
  background: var(--primary);
}

.product-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card .card__image {
  aspect-ratio: 1 / 0.82;
}

.product-card h3 {
  margin-bottom: 6px;
}

.allergy {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.callout {
  padding: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--primary);
  text-align: center;
}

.callout p {
  max-width: 700px;
  margin-inline: auto;
}

.message-quote {
  position: relative;
  padding-left: 28px;
  border-left: 4px solid var(--primary);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 600;
  line-height: 1.7;
}

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

.timeline li {
  position: relative;
  display: grid;
  padding: 0 0 30px 34px;
  gap: 16px;
  grid-template-columns: 90px 1fr;
}

.timeline li::before {
  position: absolute;
  top: 8px;
  left: 4px;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: 13px;
  bottom: -8px;
  left: 9px;
  width: 2px;
  background: var(--soft);
  content: "";
}

.timeline li:last-child::after {
  display: none;
}

.timeline time {
  color: var(--primary);
  font-weight: 700;
}

.stat {
  padding: 28px 16px;
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.stat__number {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.4;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

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

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 190px;
  color: var(--primary-dark);
  background: var(--bg);
}

.store-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.store-card + .store-card {
  margin-top: 32px;
}

.store-card__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.store-card__body {
  padding: 34px;
}

.store-details {
  margin: 20px 0 0;
}

.store-details div {
  display: grid;
  padding-block: 10px;
  border-top: 1px solid var(--line);
  gap: 12px;
  grid-template-columns: 90px 1fr;
}

.store-details dt {
  color: var(--muted);
  font-weight: 700;
}

.store-details dd {
  margin: 0;
}

.map-placeholder {
  display: grid;
  min-height: 230px;
  margin-top: 22px;
  padding: 24px;
  border: 2px dashed #c99cac;
  border-radius: 8px;
  place-items: center;
  color: var(--muted);
  background: var(--bg);
  text-align: center;
}

.job-card {
  padding: 30px;
}

.job-card .tag {
  margin-bottom: 18px;
}

.photo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.photo-grid img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.steps li {
  position: relative;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 2;
  color: var(--primary);
  content: "→";
  font-size: 22px;
  font-weight: 700;
  transform: translateY(-50%);
}

.steps__number {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 42px;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.contact-note {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-note h2 {
  font-size: 23px;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label,
.form-field legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.required {
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 4px;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bdaeb3;
  border-radius: 7px;
  color: var(--text);
  background: #fff;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(165, 53, 96, 0.16);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--primary);
}

.form-result {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--bg);
  font-weight: 700;
}

.form-result[hidden] {
  display: none;
}

.terms-content section + section {
  margin-top: 42px;
}

.terms-content h2 {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--soft);
  font-size: 24px;
}

.site-footer {
  color: #fff;
  background: #3b2d32;
}

.footer-main {
  display: grid;
  padding-block: 58px;
  gap: 50px;
  grid-template-columns: 1fr 1.4fr;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand p {
  color: #e4d8dc;
  font-size: 14px;
}

.footer-nav {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px 22px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.footer-nav a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: #e4d8dc;
  text-align: center;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    z-index: 90;
    top: var(--nav-top, 76px);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 20px 40px;
    background: #fff;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav ul {
    display: block;
    max-width: 600px;
    margin-inline: auto;
  }

  .global-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 16px;
  }

  .global-nav .nav-contact {
    margin: 16px 0 0;
    border-radius: 8px;
    text-align: center;
  }

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

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

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

  .photo-grid img:first-child {
    grid-column: 1 / -1;
  }

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

  .steps li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--content));
  }

  .header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 19px;
  }

  .logo__mark {
    font-size: 14px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__content {
    width: min(calc(100% - 32px), var(--content));
    padding-block: 76px;
  }

  .hero::after {
    background: rgba(35, 20, 25, 0.57);
  }

  .section {
    padding-block: 64px;
  }

  .grid-2,
  .grid-3,
  .product-grid,
  .split,
  .store-card,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 30px;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .split__media img {
    min-height: 300px;
  }

  .page-hero {
    min-height: 300px;
  }

  .store-card__image {
    min-height: 280px;
    max-height: 390px;
  }

  .footer-main {
    gap: 30px;
  }

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

  .callout,
  .contact-form {
    padding: 30px 22px;
  }
}

@media (max-width: 520px) {
  .demo-banner {
    padding-left: 12px;
    text-align: left;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .notice-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

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

  .photo-grid img,
  .photo-grid img:first-child {
    height: 280px;
    grid-column: auto;
  }

  .steps li::after {
    display: none;
  }

  .news-list li,
  .timeline li {
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding-left: 30px;
  }

  .category-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .store-card__body {
    padding: 26px 20px;
  }

  .store-details div {
    gap: 2px;
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
