﻿@charset "UTF-8";

/* =========================
  Base
========================= */
:root {
  --color-bg: #f7f1e6;
  --color-bg-soft: #fbf7ef;
  --color-paper: rgba(255, 252, 244, 0.86);
  --color-ink: #2b2520;
  --color-muted: rgba(43, 37, 32, 0.68);
  --color-green: #2f5f3a;
  --color-green-deep: #1f3f2a;
  --color-matcha: #6f7f45;
  --color-redbean: #8b3f46;
  --color-sakura: #e8a8b6;
  --color-line: rgba(85, 65, 46, 0.16);

  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --font-sans: "Yu Gothic", "Hiragino Sans", "Noto Sans JP", sans-serif;

  --side-width: 184px;
  --container: 1120px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 70px rgba(43, 37, 32, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.8;
  background:
    radial-gradient(circle at 12% 8%, rgba(232, 168, 182, 0.28), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(111, 127, 69, 0.22), transparent 30%),
    linear-gradient(180deg, #faf5ea 0%, #f4eadb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(90deg, rgba(80, 60, 40, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(80, 60, 40, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 0,
      rgba(255, 255, 255, 0.16) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: soft-light;
}

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

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

button {
  font: inherit;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* =========================
  Layout
========================= */
.site-main,
.site-footer {
  padding-right: var(--side-width);
}

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

.section {
  position: relative;
  z-index: 1;

  width: min(calc(100% - 56px), calc(var(--container) + 96px));
  margin: 36px auto;
  padding: 72px 0;

  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.08);
  border-radius: 42px;

  background:
    linear-gradient(
      180deg,
      rgba(250, 245, 234, 0.86),
      rgba(244, 234, 219, 0.84)
    );

  box-shadow: 0 24px 70px rgba(43, 37, 32, 0.08);
}

.section:nth-of-type(even) {
  background:
    linear-gradient(
      180deg,
      rgba(255, 252, 244, 0.88),
      rgba(247, 241, 230, 0.84)
    );
}


.hero + .section {
  margin-top: -44px;
}


.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.section-grid--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.section-grid--reverse .section-text {
  order: 2;
}

.section-grid--reverse .section-visual {
  order: 1;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--color-redbean);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.28;
  letter-spacing: 0.08em;
  color: var(--color-green-deep);
}

.section-title + p,
.section-text .section-title + p {
  margin-top: 24px;
}

.section-text {
  font-size: 15px;
  color: var(--color-muted);
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-lead {
  margin-top: 16px;
  color: var(--color-muted);
}

.section-visual {
  margin: 0;
  position: relative;
}

.section-visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: rgba(47, 95, 58, 0.12);
}

.section-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}


.site-main {
  position: relative;
  z-index: 1;
}


/* =========================
  PC Side Header
========================= */
.side-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: var(--side-width);
  height: 100dvh;
  padding: 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.94), rgba(244, 234, 219, 0.9)),
    radial-gradient(circle at 50% 15%, rgba(232, 168, 182, 0.18), transparent 44%);
  border-left: 1px solid rgba(74, 52, 32, 0.16);
  box-shadow: -20px 0 50px rgba(43, 37, 32, 0.1);
  backdrop-filter: blur(16px);
}

.side-header__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-header__logo {
  display: block;
  width: 92px;
  margin-bottom: 24px;
}

.side-header__logo img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(43, 37, 32, 0.16));
}

.side-nav {
  flex: 1;
  width: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 2px;
}

.side-nav::-webkit-scrollbar {
  width: 4px;
}

.side-nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 95, 58, 0.22);
}

.side-nav__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-nav__list a {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 10px 8px;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 999px;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.34);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.side-nav__list a:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 63, 70, 0.32);
  background: rgba(255, 252, 244, 0.86);
  box-shadow: 0 10px 24px rgba(43, 37, 32, 0.1);
}

.side-header__cta {
  writing-mode: vertical-rl;
  display: inline-grid;
  place-items: center;
  min-height: 156px;
  padding: 18px 10px;
  margin-top: 16px;
  border-radius: 999px;
  color: #fffaf2;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.16em;
  background:
    linear-gradient(180deg, #8b3f46, #633036);
  box-shadow: 0 16px 34px rgba(139, 63, 70, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.side-header__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(139, 63, 70, 0.34);
}


/* =========================
  Side Header Leaf Animation
========================= */
.side-header {
  overflow: hidden;
}

.side-header__inner {
  position: relative;
  z-index: 2;
}

.side-leaf-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.side-leaf {
  position: absolute;
  top: var(--leaf-top, -24px);
  left: var(--leaf-left, 50%);
  width: var(--leaf-size, 24px);
  height: auto;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 6px 8px rgba(31, 63, 42, 0.16))
    saturate(0.95);
  transform:
    translate3d(0, 0, 0)
    rotate(var(--leaf-rotate-start, 0deg));
  animation: sideLeafFall var(--leaf-duration, 6s) linear forwards;
}

@keyframes sideLeafFall {
  0% {
    opacity: 0;
    transform:
      translate3d(0, 0, 0)
      rotate(var(--leaf-rotate-start, 0deg));
  }

  14% {
    opacity: var(--leaf-opacity, 0.34);
  }

  52% {
    transform:
      translate3d(var(--leaf-sway, 12px), calc(var(--leaf-fall, 50vh) * 0.52), 0)
      rotate(var(--leaf-rotate-mid, 46deg));
  }

  82% {
    opacity: var(--leaf-opacity, 0.34);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(calc(var(--leaf-sway, 12px) * -0.35), var(--leaf-fall, 50vh), 0)
      rotate(var(--leaf-rotate-end, 96deg));
  }
}


/* SP nav leaf animation */
.sp-nav__panel {
  overflow-x: hidden;
  overflow-y: auto;
}

.sp-nav__head,
.sp-nav__menu {
  position: relative;
  z-index: 2;
}

.sp-leaf-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.sp-leaf {
  position: absolute;
  top: var(--leaf-top, -24px);
  left: var(--leaf-left, 50%);
  width: var(--leaf-size, 24px);
  height: auto;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  filter:
    drop-shadow(0 6px 8px rgba(31, 63, 42, 0.14))
    saturate(0.95);
  transform:
    translate3d(0, 0, 0)
    rotate(var(--leaf-rotate-start, 0deg));
  animation: sideLeafFall var(--leaf-duration, 6s) linear forwards;
}





/* =========================
  SP Header / Nav
========================= */
.sp-header,
.sp-nav {
  display: none;
}

.sp-header {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.sp-header > * {
  pointer-events: auto;
}

.sp-header__logo {
  display: none;
}

.sp-menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--color-green-deep);
  box-shadow: 0 12px 28px rgba(31, 63, 42, 0.22);
  cursor: pointer;
}

.sp-menu-button__line {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition:
    transform 0.28s ease,
    opacity 0.22s ease;
}

.sp-menu-button__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.sp-menu-button__line:nth-child(2) {
  transform: translate(-50%, -50%);
}

.sp-menu-button__line:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

body.is-nav-open .sp-menu-button__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

body.is-nav-open .sp-menu-button__line:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .sp-menu-button__line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-nav {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  background: rgba(31, 63, 42, 0);
  transition: background 0.3s ease;
}

body.is-nav-open .sp-nav {
  pointer-events: auto;
  background: rgba(31, 63, 42, 0.34);
}

.sp-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  padding: 92px 24px 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(244, 234, 219, 0.96)),
    radial-gradient(circle at 20% 14%, rgba(232, 168, 182, 0.2), transparent 36%);
  box-shadow: -24px 0 60px rgba(43, 37, 32, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

body.is-nav-open .sp-nav__panel {
  transform: translateX(0);
}

.sp-nav__head {
  margin-bottom: 24px;

  margin-bottom: 28px;
  text-align: center;
}

.sp-nav__head img {
  width: min(280px, 86%);
  max-height: 96px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(43, 37, 32, 0.12));
}

.sp-nav__menu {
    margin-top: 30px;
  display: grid;
  gap: 10px;
}

.sp-nav__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(47, 95, 58, 0.16);
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.46);
}

.sp-nav__menu a::after {
  content: "〉";
  color: var(--color-redbean);
}

/* =========================
  Hero
========================= */
.hero {
  min-height: 100dvh;
  position: relative;
  display: grid;
  align-items: start;
  padding: clamp(64px, 9vh, 92px) clamp(24px, 7vw, 96px) 150px;
  overflow: hidden;
}

.hero__bg {
  position: fixed;
  inset: 0 var(--side-width) 0 0;
  z-index: -2;
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 241, 230, 0.94) 0%, rgba(247, 241, 230, 0.68) 42%, rgba(247, 241, 230, 0.18) 100%),
    linear-gradient(0deg, rgba(43, 37, 32, 0.12), rgba(43, 37, 32, 0.04));
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero__content {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(180px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;

  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(47, 95, 58, 0.12);
  border-radius: 34px;
  background: rgba(255, 252, 244, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}


.hero__copy {
  min-width: 0;
}


.hero__brand {
  display: grid;
  place-items: center;
  min-width: 0;
}

.hero__logo {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(43, 37, 32, 0.14));
}

.hero__logo--vertical {
  display: block;
  width: min(300px, 100%);
  max-height: 400px;
}

.hero__logo--horizontal {
  display: none;
}


.hero__label {
  margin-bottom: 12px;
  color: rgba(139, 63, 70, 0.82);
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.32;
  letter-spacing: 0.08em;
}

.hero__text {
  margin-top: 24px;
  max-width: 560px;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* =========================
  Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.btn--primary {
  color: #fffaf2;
  background: linear-gradient(135deg, #2f5f3a, #6f7f45);
  box-shadow: 0 16px 32px rgba(47, 95, 58, 0.26);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(47, 95, 58, 0.32);
}

.btn--ghost {
  color: var(--color-green-deep);
  border: 1px solid rgba(47, 95, 58, 0.22);
  background: rgba(255, 252, 244, 0.72);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 63, 70, 0.3);
  box-shadow: 0 14px 30px rgba(43, 37, 32, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--color-redbean);
  font-weight: 700;
}

.text-link::after {
  content: "→";
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}


/* =========================
  Concept
========================= */
.concept {
  overflow: hidden;
}

.concept-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.concept-hero::before {
  content: "";
  position: absolute;
  inset: -34px -32px auto auto;
  z-index: -1;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(232, 168, 182, 0.28), transparent 68%);
  pointer-events: none;
}

.concept-hero__text {
  color: var(--color-muted);
  font-size: 15px;
}

.concept-hero__visual {
  position: relative;
  margin: 0;
}

.concept-hero__visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(47, 95, 58, 0.12), rgba(232, 168, 182, 0.14));
}

.concept-hero__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.concept-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.concept-point {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.74);
  box-shadow: 0 18px 48px rgba(43, 37, 32, 0.09);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.concept-point:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.26);
  box-shadow: 0 24px 58px rgba(43, 37, 32, 0.14);
}

.concept-point__image {
  margin: 0;
  overflow: hidden;
}

.concept-point__image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.concept-point:hover .concept-point__image img {
  transform: scale(1.04);
}

.concept-point__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 30px);
}

.concept-point__label,
.owner-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(232, 168, 182, 0.2);
}

.concept-point h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.concept-point p:not(.concept-point__label) {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

.owner-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(139, 63, 70, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 168, 182, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 244, 0.86), rgba(111, 127, 69, 0.08));
  box-shadow: var(--shadow-soft);
}

.owner-card::before {
  content: "こはる庵";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: -8px;
  color: rgba(47, 95, 58, 0.07);
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 112px);
  line-height: 1;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.owner-card__image {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
}

.owner-card__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(43, 37, 32, 0.13);
}

.owner-card__body {
  position: relative;
  z-index: 1;
  color: var(--color-muted);
}

.owner-card__body h3 {
  margin: 0 0 18px;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.42;
  letter-spacing: 0.08em;
}

.owner-card__body p:not(.owner-card__label) {
  max-width: 620px;
}



/* =========================
  Seasonal
========================= */
.seasonal-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 34px;
  background: rgba(255, 252, 244, 0.66);
  box-shadow: var(--shadow-soft);
}

.seasonal-card {
  position: relative;
  overflow: hidden;
}

.seasonal-card::before {
  content: "季";
  position: absolute;
  right: clamp(28px, 6vw, 76px);
  bottom: -34px;
  z-index: 0;
  color: rgba(47, 95, 58, 0.052);
  font-family: var(--font-serif);
  font-size: clamp(120px, 15vw, 220px);
  line-height: 1;
  pointer-events: none;
}

.seasonal-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 28px;
  z-index: 0;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(139, 63, 70, 0.08);
  background:
    radial-gradient(circle at 42% 42%, rgba(232, 168, 182, 0.12), transparent 46%),
    conic-gradient(
      from 130deg,
      transparent 0deg,
      rgba(111, 127, 69, 0.1) 48deg,
      transparent 96deg,
      rgba(232, 168, 182, 0.1) 152deg,
      transparent 220deg,
      rgba(47, 95, 58, 0.08) 290deg,
      transparent 360deg
    );
  opacity: 0.9;
  pointer-events: none;
}

.seasonal-card > * {
  position: relative;
  z-index: 1;
}




.seasonal-card__image {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
}

.seasonal-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.seasonal-card:hover .seasonal-card__image img {
  transform: scale(1.04);
}

.seasonal-card__body {
  color: var(--color-muted);
}

.seasonal-card__label,
.gift-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  background: rgba(232, 168, 182, 0.22);
}

.seasonal-card h3,
.gift-card h3 {
  margin: 0 0 14px;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: 0.08em;
}

.seasonal-card__period {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--color-green-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(111, 127, 69, 0.14);
}

.seasonal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.seasonal-item {
  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 244, 0.74);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.seasonal-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.24);
  box-shadow: 0 22px 54px rgba(43, 37, 32, 0.14);
}

.seasonal-item__image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.seasonal-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(43, 37, 32, 0.54) 100%),
    radial-gradient(circle at 50% 70%, rgba(255, 252, 244, 0.14), transparent 42%);
  pointer-events: none;
}

.seasonal-item__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.seasonal-item:hover .seasonal-item__image img {
  transform: scale(1.04);
}

.seasonal-item__period {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fffaf2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(31, 63, 42, 0.72);
  backdrop-filter: blur(8px);
}

.seasonal-item__body {
  padding: 18px;
}

.seasonal-item__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  background: rgba(232, 168, 182, 0.2);
}

.seasonal-item h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.seasonal-item p:not(.seasonal-item__label) {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}


/* =========================
  Menu
========================= */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.menu-tab {
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid rgba(47, 95, 58, 0.18);
  border-radius: 999px;
  color: var(--color-green-deep);
  background: rgba(255, 252, 244, 0.72);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.menu-tab:hover {
  transform: translateY(-2px);
}

.menu-tab.is-active {
  color: #fffaf2;
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-green), var(--color-matcha));
  box-shadow: 0 14px 28px rgba(47, 95, 58, 0.2);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 252, 244, 0.76);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 54px rgba(43, 37, 32, 0.14);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.menu-card h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
}


.menu-card h3 small {
  margin-left: 0.25em;
  color: rgba(139, 63, 70, 0.72);
  font-family: var(--font-sans);
  font-size: 0.68em;
  letter-spacing: 0.08em;
}


.menu-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.menu-card span {
  margin-top: auto;
  padding-top: 16px;
  color: var(--color-redbean);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
}


/* =========================
  Zashiki
========================= */
.zashiki {
  overflow: hidden;
}

.zashiki-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.zashiki-content {
  color: var(--color-muted);
  font-size: 15px;
}

.zashiki-summary {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.zashiki-summary div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(47, 95, 58, 0.13);
  border-radius: 18px;
  background: rgba(255, 252, 244, 0.56);
}

.zashiki-summary span {
  color: rgba(139, 63, 70, 0.72);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zashiki-summary strong {
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.zashiki-visual {
  position: relative;
  margin: 0;
}

.zashiki-visual::before {
  content: "";
  position: absolute;
  inset: 20px 20px -20px -20px;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(111, 127, 69, 0.14), rgba(232, 168, 182, 0.14));
}

.zashiki-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.zashiki-visual__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 252, 244, 0.36);
  border-radius: 20px;
  color: #fffaf2;
  font-family: var(--font-serif);
  letter-spacing: 0.06em;
  background: rgba(31, 63, 42, 0.58);
  backdrop-filter: blur(10px);
}

.zashiki-visual__caption span {
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zashiki-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.zashiki-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 14%, rgba(232, 168, 182, 0.18), transparent 34%),
    rgba(255, 252, 244, 0.72);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.zashiki-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.26);
  box-shadow: 0 24px 58px rgba(43, 37, 32, 0.14);
}

.zashiki-card::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(111, 127, 69, 0.1);
  pointer-events: none;
}


.zashiki-card::after {
  content: "和";
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(47, 95, 58, 0.055);
  font-family: var(--font-serif);
  font-size: clamp(70px, 7vw, 112px);
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}


.zashiki-card__num {
  width: fit-content;
  margin-bottom: 16px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(232, 168, 182, 0.2);
}

.zashiki-card h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.zashiki-card p:not(.zashiki-card__num) {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}


/* =========================
  Gift
========================= */
.gift-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(139, 63, 70, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 252, 244, 0.82), rgba(232, 168, 182, 0.12));
  box-shadow: var(--shadow-soft);
}


.gift-card {
  position: relative;
  overflow: hidden;
}

.gift-card::before {
  content: "贈";
  position: absolute;
  right: clamp(28px, 6vw, 78px);
  bottom: -36px;
  z-index: 0;
  color: rgba(139, 63, 70, 0.052);
  font-family: var(--font-serif);
  font-size: clamp(120px, 15vw, 220px);
  line-height: 1;
  pointer-events: none;
}

.gift-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 28px;
  z-index: 0;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(139, 63, 70, 0.08);
  background:
    radial-gradient(circle at 42% 42%, rgba(232, 168, 182, 0.12), transparent 46%),
    conic-gradient(
      from 130deg,
      transparent 0deg,
      rgba(111, 127, 69, 0.1) 48deg,
      transparent 96deg,
      rgba(232, 168, 182, 0.1) 152deg,
      transparent 220deg,
      rgba(47, 95, 58, 0.08) 290deg,
      transparent 360deg
    );
  opacity: 0.9;
  pointer-events: none;
}

.gift-card > * {
  position: relative;
  z-index: 1;
}


.gift-card__image {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
}

.gift-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gift-card__body {
  color: var(--color-muted);
}

.gift-card__price {
  display: inline-flex;
  margin-top: 20px;
  color: var(--color-redbean);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
}


.gift-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.gift-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(139, 63, 70, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 244, 0.74);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.gift-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.28);
  box-shadow: 0 22px 54px rgba(43, 37, 32, 0.14);
}

.gift-item__image {
  margin: 0;
  overflow: hidden;
}

.gift-item__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gift-item:hover .gift-item__image img {
  transform: scale(1.04);
}

.gift-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.gift-item__label {
  width: fit-content;
  margin-bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  background: rgba(232, 168, 182, 0.2);
}

.gift-item h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
}

.gift-item p:not(.gift-item__label) {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.gift-item__price {
  margin-top: auto;
  padding-top: 16px;
  color: var(--color-redbean);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
}


/* =========================
  Voices
========================= */
.voices {
  overflow: hidden;
}

.voices .section-head {
  max-width: 880px;
}


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

.voice-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 16%, rgba(232, 168, 182, 0.16), transparent 32%),
    rgba(255, 252, 244, 0.76);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.24);
  box-shadow: 0 22px 54px rgba(43, 37, 32, 0.14);
}

.voice-card::before {
  content: "声";
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(47, 95, 58, 0.048);
  font-family: var(--font-serif);
  font-size: clamp(74px, 7vw, 108px);
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.voice-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -24px;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 127, 69, 0.12), transparent 68%);
  pointer-events: none;
}

.voice-card > * {
  position: relative;
  z-index: 1;
}

.voice-card__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.voice-card__image {
  width: 92px;
  flex-shrink: 0;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(43, 37, 32, 0.12);
}

.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-card__meta {
  min-width: 0;
}

.voice-card__role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(232, 168, 182, 0.2);
}

.voice-card__meta h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.voice-card__bubble {
  position: relative;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(47, 95, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 252, 244, 0.86);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

.voice-card__bubble::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 26px;
  width: 16px;
  height: 16px;
  background: rgba(255, 252, 244, 0.86);
  border-left: 1px solid rgba(47, 95, 58, 0.12);
  border-top: 1px solid rgba(47, 95, 58, 0.12);
  transform: rotate(45deg);
}

.voice-card__bubble::after {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  color: rgba(139, 63, 70, 0.14);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
  pointer-events: none;
}



/* =========================
  News
========================= */
.news {
  overflow: hidden;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.news-head {
  position: sticky;
  top: 48px;
}

.news .section-lead {
  max-width: 420px;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 18%, rgba(232, 168, 182, 0.15), transparent 34%),
    rgba(255, 252, 244, 0.76);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 63, 70, 0.24);
  box-shadow: 0 22px 54px rgba(43, 37, 32, 0.14);
}

.news-item::before {
  content: "便";
  position: absolute;
  right: 18px;
  bottom: -20px;
  color: rgba(47, 95, 58, 0.045);
  font-family: var(--font-serif);
  font-size: clamp(72px, 7vw, 110px);
  line-height: 1;
  pointer-events: none;
}

.news-item::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 127, 69, 0.12), transparent 68%);
  pointer-events: none;
}

.news-item__link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
}

.news-item time {
  display: inline-grid;
  place-items: center;
  width: 112px;
  min-height: 88px;
  border-radius: 22px;
  color: var(--color-redbean);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background:
    linear-gradient(135deg, rgba(255, 252, 244, 0.92), rgba(232, 168, 182, 0.18));
  border: 1px solid rgba(139, 63, 70, 0.12);
}

.news-item__body {
  min-width: 0;
}

.news-item__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(232, 168, 182, 0.2);
}

.news-item h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.news-item__body p:not(.news-item__label) {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

.news-item__link::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--color-redbean);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.news-item:hover .news-item__link::after {
  transform: translateX(4px);
}

/* =========================
  Access / Contact
========================= */
.access {
  overflow: hidden;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.access-content {
  color: var(--color-muted);
}

.access-lead {
  max-width: 620px;
  margin-top: 22px;
  color: var(--color-muted);
}

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

.shop-info div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(47, 95, 58, 0.13);
  border-radius: 18px;
  background: rgba(255, 252, 244, 0.58);
}

.shop-info dt {
  color: rgba(139, 63, 70, 0.76);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.shop-info dd {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.shop-info dd small {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.access-map-card {
  overflow: hidden;
  border: 1px solid rgba(47, 95, 58, 0.15);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 15%, rgba(232, 168, 182, 0.16), transparent 36%),
    rgba(255, 252, 244, 0.72);
  box-shadow: var(--shadow-soft);
}

.access-map-card__map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(47, 95, 58, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 95, 58, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(232, 168, 182, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(47, 95, 58, 0.12), rgba(255, 252, 244, 0.86));
  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto;
}

.access-map-card__map::before,
.access-map-card__map::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(47, 95, 58, 0.16);
  pointer-events: none;
}

.access-map-card__map::before {
  width: 72%;
  height: 2px;
  left: 12%;
  top: 46%;
  transform: rotate(-12deg);
}

.access-map-card__map::after {
  width: 52%;
  height: 2px;
  right: 8%;
  bottom: 30%;
  transform: rotate(18deg);
}

.access-map-card__pin {
  position: relative;
  z-index: 1;
  width: 34px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--color-redbean), #633036);
  box-shadow: 0 14px 26px rgba(139, 63, 70, 0.28);
  transform: rotate(-45deg);
}

.access-map-card__pin::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: #fffaf2;
}

.access-map-card__map p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: 0.08em;
}

.access-map-card__map small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
}

.access-map-card__body {
  padding: clamp(22px, 3vw, 32px);
}

.access-map-card__label,
.access-guide__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(232, 168, 182, 0.2);
}

.access-map-card__body h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.access-map-card__body p:not(.access-map-card__label) {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.access-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.access-guide__item {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(47, 95, 58, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 14%, rgba(111, 127, 69, 0.12), transparent 34%),
    rgba(255, 252, 244, 0.72);
  box-shadow: 0 16px 40px rgba(43, 37, 32, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.access-guide__item::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(111, 127, 69, 0.1);
  pointer-events: none;
}

.access-guide__item::after {
  content: "道";
  position: absolute;
  right: 18px;
  bottom: -18px;
  color: rgba(47, 95, 58, 0.052);
  font-family: var(--font-serif);
  font-size: clamp(70px, 7vw, 112px);
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.zashiki-card > *,
.access-guide__item > * {
  position: relative;
  z-index: 1;
}



.access-guide__item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.26);
  box-shadow: 0 24px 58px rgba(43, 37, 32, 0.14);
}

.access-guide__item h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.access-guide__item p:not(.access-guide__label) {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}
.contact {
  overflow: hidden;
}

.contact-box {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(47, 95, 58, 0.16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 168, 182, 0.22), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(111, 127, 69, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 252, 244, 0.9), rgba(244, 234, 219, 0.74));
  box-shadow: var(--shadow-soft);
}

.contact-box::before {
  content: "結";
  position: absolute;
  right: clamp(18px, 5vw, 54px);
  bottom: -34px;
  z-index: 0;
  color: rgba(47, 95, 58, 0.052);
  font-family: var(--font-serif);
  font-size: clamp(120px, 15vw, 220px);
  line-height: 1;
  pointer-events: none;
}

.contact-box::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 28px;
  z-index: 0;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(139, 63, 70, 0.08);
  background:
    radial-gradient(circle at 42% 42%, rgba(232, 168, 182, 0.12), transparent 46%),
    conic-gradient(
      from 130deg,
      transparent 0deg,
      rgba(111, 127, 69, 0.1) 48deg,
      transparent 96deg,
      rgba(232, 168, 182, 0.1) 152deg,
      transparent 220deg,
      rgba(47, 95, 58, 0.08) 290deg,
      transparent 360deg
    );
  opacity: 0.86;
  pointer-events: none;
}

.contact-box > * {
  position: relative;
  z-index: 1;
}

.contact-box__content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.contact-box__lead {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--color-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.contact-box__note {
  width: fit-content;
  margin: 18px auto 0;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--color-green-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(111, 127, 69, 0.12);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-method {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(47, 95, 58, 0.13);
  border-radius: 26px;
  text-align: left;
  background: rgba(255, 252, 244, 0.68);
  box-shadow: 0 14px 34px rgba(43, 37, 32, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 63, 70, 0.24);
  box-shadow: 0 22px 52px rgba(43, 37, 32, 0.13);
}

.contact-method::before {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(111, 127, 69, 0.1);
  pointer-events: none;
}

.contact-method::after {
  content: "問";
  position: absolute;
  right: 16px;
  bottom: -18px;
  color: rgba(47, 95, 58, 0.046);
  font-family: var(--font-serif);
  font-size: clamp(70px, 7vw, 108px);
  line-height: 1;
  pointer-events: none;
}

.contact-method > * {
  position: relative;
  z-index: 1;
}

.contact-method__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--color-redbean);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(232, 168, 182, 0.2);
}

.contact-method h3 {
  margin: 0;
  color: var(--color-green-deep);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.contact-method p:not(.contact-method__label) {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
}

.site-footer {
  padding-top: 26px;
  padding-bottom: 26px;
  color: rgba(43, 37, 32, 0.58);
  text-align: center;
}

/* =========================
  Reveal
========================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* =========================
  Animation
========================= */
@keyframes heroFloat {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.6%, -1.2%, 0);
  }
}

/* =========================
  Responsive
========================= */
@media (max-width: 1180px) {
  :root {
    --side-width: 156px;
  }

  .side-header {
    width: var(--side-width);
    padding-inline: 12px;
  }

  .side-header__logo {
    width: 82px;
  }

  .side-nav__list a {
    font-size: 12px;
  }

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

@media (max-width: 900px) {
  :root {
    --side-width: 0px;
  }

  .site-main,
  .site-footer {
    padding-right: 0;
  }

  .side-header {
    display: none;
  }

  .sp-header {
    display: flex;
  }

  .sp-nav {
    display: block;
  }

.hero {
  min-height: auto;
  padding: 104px 20px 72px;
}

  .hero__bg {
    position: absolute;
    inset: 0;
  }

  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(247, 241, 230, 0.92) 0%, rgba(247, 241, 230, 0.72) 45%, rgba(247, 241, 230, 0.5) 100%),
      rgba(43, 37, 32, 0.08);
  }

.hero__content {
  grid-template-columns: 1fr;
  width: min(680px, 100%);
  padding: 28px;
  border-radius: 28px;
}

.hero__brand {
  order: -1;
  justify-content: start;
}

.hero__logo--vertical {
  display: none;
}

.hero__logo--horizontal {
  display: block;
  width: min(360px, 86%);
  max-height: 120px;
}

  .section {
    padding: 58px 0;

    width: min(calc(100% - 28px), var(--container));
    margin: 24px auto;
    border-radius: 30px;
  }

  .hero + .section {
    margin-top: -28px;
  }    
    
    
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-grid,
  .section-grid--reverse {
    grid-template-columns: 1fr;
  }

  .section-grid--reverse .section-text,
  .section-grid--reverse .section-visual {
    order: initial;
  }

  .seasonal-card,
  .gift-card {
    grid-template-columns: 1fr;
  }


  .concept-hero,
  .owner-card {
    grid-template-columns: 1fr;
  }
    
    
  .zashiki-layout {
    grid-template-columns: 1fr;
  }

  .zashiki-cards {
    grid-template-columns: 1fr;
  }
    
    
  .access-layout {
    grid-template-columns: 1fr;
  }

  .access-guide {
    grid-template-columns: 1fr;
  }
    

  .concept-points {
    grid-template-columns: 1fr;
  }

  .concept-point {
    grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1fr);
  }
    
    
.seasonal-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}    
    
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .news-head {
    position: static;
  }
    
    
  .news-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }


  .concept-hero {
    gap: 28px;
  }

  .concept-points {
    gap: 16px;
    margin-top: 32px;
  }

  .concept-point {
    grid-template-columns: 1fr;
  }

.concept-point__image img {
  width: 100%;
  min-height: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

    
  .zashiki-summary div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .zashiki-visual img {
    aspect-ratio: 4 / 3.4;
  }

  .zashiki-visual__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .zashiki-card {
    min-height: auto;
    padding: 20px;
  }
    
    
  .shop-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .access-map-card__map {
    min-height: 260px;
    padding: 28px 20px;
  }

  .access-map-card__map p {
    font-size: 25px;
  }

  .access-guide__item {
    min-height: auto;
    padding: 20px;
  }
    
.shop-info dd small {
  margin-top: 2px;
  line-height: 1.55;
}
    
    
  .owner-card {
    margin-top: 28px;
    padding: 18px;
  }

  .owner-card::before {
    right: 14px;
    bottom: 2px;
    font-size: 46px;
  }
    

.hero__title {
  font-size: clamp(18px, 8.8vw, 28px);
  line-height: 1.42;
}


.hero__brand {
  justify-content: center;
}

.hero__logo--horizontal {
  width: min(340px, 94%);
  max-height: 96px;
}
    
  .hero__actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

.contact-actions {
  flex-direction: column;
}

.contact-actions .btn {
  width: 100%;
  justify-content: center;
}
    
    
  .contact-box {
    padding: 24px 20px;
    border-radius: 30px;
  }

  .contact-box::before {
    right: 18px;
    bottom: -18px;
    font-size: 92px;
  }

  .contact-box::after {
    right: -110px;
    top: auto;
    bottom: -90px;
    width: 260px;
    opacity: 0.72;
  }

  .contact-method {
    min-height: auto;
    padding: 20px;
  }

  .contact-method::after {
    right: 14px;
    bottom: -10px;
    font-size: 68px;
  }

  .contact-box__note {
    width: 100%;
    text-align: center;
    line-height: 1.7;
  }
    
    
    
  .section-title {
    font-size: 30px;
  }
    
    
  .section {
    width: min(calc(100% - 20px), var(--container));
    margin: 18px auto;
    padding: 36px 0;
    border-radius: 24px;
  }

  .hero + .section {
    margin-top: -20px;
  }
    
    
    
.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  border-radius: 20px;
}

.menu-card img {
  aspect-ratio: 1 / 1;
}

.menu-card__body {
  padding: 14px;
}

.menu-card h3 {
  font-size: 17px;
  line-height: 1.45;
}

.menu-card p {
  font-size: 12px;
  line-height: 1.65;
}

.menu-card span {
  padding-top: 12px;
  font-size: 16px;
}

.gift-list {
  grid-template-columns: 1fr;
}
    
    
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-tab {
    padding-inline: 10px;
  }

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

  .map-card {
    min-height: 260px;
  }

  .site-footer {
    padding-bottom: 24px;
  }
    
    
.seasonal-list {
  grid-template-columns: 1fr;
}
    
    
.zashiki-card::after,
.access-guide__item::after {
  right: 14px;
  bottom: -10px;
  font-size: 68px;
}
    

.seasonal-card::before,
.gift-card::before {
  right: 18px;
  bottom: -18px;
  font-size: 96px;
}

.seasonal-card::after,
.gift-card::after {
  right: -110px;
  top: auto;
  bottom: -90px;
  width: 260px;
  opacity: 0.72;
}

    
  .voice-card {
    padding: 20px;
  }

  .voice-card__profile {
    align-items: flex-start;
    gap: 14px;
  }

  .voice-card__image {
    width: 80px;
    border-radius: 18px;
  }

  .voice-card__meta h3 {
    font-size: 20px;
  }

  .voice-card__bubble {
    padding: 16px 16px 16px 18px;
    font-size: 13px;
  }

  .voice-card::before {
    right: 14px;
    bottom: -10px;
    font-size: 68px;
  }    
    
  .news-item__link {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .news-item time {
    width: fit-content;
    min-height: auto;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
  }

.news-item__link::after {
  position: static;
  justify-self: start;
}

  .news-item::before {
    right: 14px;
    bottom: -10px;
    font-size: 68px;
  }
    
    
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}