:root {
  --white: #ffffff;
  --ink: #4c4652;
  --ink-deep: #34303a;
  --muted: #726b78;
  --pink-pale: #fbe8ed;
  --pink-soft: #f5d6df;
  --pink: #d987a0;
  --pink-deep: #c96f8a;
  --blue-pale: #eaf6fa;
  --blue: #8db9d0;
  --green-pale: #eaf3e8;
  --green: #87a987;
  --line: rgba(93, 85, 102, 0.13);
  --shadow: 0 18px 50px rgba(84, 76, 91, 0.09);
  --shadow-soft: 0 10px 30px rgba(84, 76, 91, 0.07);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-deep);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(141, 185, 208, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink-deep);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.section {
  position: relative;
  padding: 112px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading-center {
  max-width: 880px;
  margin-right: auto;
  margin-bottom: 54px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 13px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
}

.section-heading h2 span {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.62em;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--pink-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-pink {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  box-shadow: 0 10px 24px rgba(201, 111, 138, 0.22);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(93, 85, 102, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(70, 62, 75, 0.08);
}

.header-inner {
  display: grid;
  width: min(1540px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(195px, 250px) 1fr auto;
  align-items: center;
  gap: 25px;
}

.brand {
  display: block;
  width: min(100%, 235px);
}

.brand img {
  width: 100%;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 27px);
}

.global-nav a {
  position: relative;
  color: var(--ink-deep);
  font-size: clamp(11px, 0.84vw, 13px);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-deep);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg {
  color: var(--pink);
}

.header-mail {
  min-height: 43px;
  padding: 9px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 48px 0 60px;
  overflow: hidden;
  background: #fff9f6;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../images/optimized/komachi_flower.jpg");
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 38px;
}

.hero-copy {
  padding: clamp(36px, 5vw, 62px) clamp(28px, 5vw, 64px);
  border: 1px solid rgba(217, 135, 160, 0.34);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 75px rgba(82, 70, 85, 0.18);
  text-align: center;
}

.hero-brand {
  margin: 0 0 16px;
}

.hero-brand img {
  width: min(100%, 520px);
  margin-inline: auto;
}

.hero-open {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 17px 8px;
  border: 1px solid rgba(217, 135, 160, 0.34);
  border-radius: 999px;
  color: var(--pink-deep);
  background: var(--pink-pale);
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.hero-open span {
  font-size: 1.15em;
  font-weight: 700;
}

.hero-copy > p:not(.hero-open) {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.hero-lead {
  margin-bottom: 19px;
  color: var(--ink-deep);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 31px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-deep);
  font-size: 17px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link svg {
  color: var(--blue);
}

.hero-visual {
  position: relative;
  width: min(100%, 500px);
  justify-self: center;
}

.hero-visual picture {
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(83, 71, 85, 0.16);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 911 / 1184;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -24px;
  bottom: 25px;
  margin: 0;
  padding: 13px 20px;
  border: 1px solid rgba(217, 135, 160, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  white-space: nowrap;
}

.petal {
  position: absolute;
  z-index: 1;
  width: 105px;
  height: 62px;
  border-radius: 100% 0 100% 0;
  background: var(--pink-soft);
  opacity: 0.7;
}

.petal-one {
  top: 5%;
  right: -7%;
  transform: rotate(26deg);
}

.petal-two {
  bottom: 8%;
  left: -10%;
  background: var(--blue-pale);
  transform: rotate(-35deg);
}

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

.section-about::before,
.section-benefits::before,
.section-access::before {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 243, 232, 0.8), rgba(234, 243, 232, 0));
  content: "";
  pointer-events: none;
}

.section-about::before {
  top: 30px;
  left: -80px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 75px;
}

.about-copy h3 {
  margin-bottom: 28px;
  color: var(--pink-deep);
  font-size: clamp(23px, 3vw, 34px);
}

.about-copy p {
  margin-bottom: 16px;
}

.about-motto {
  margin: 30px 0;
  padding: 23px 26px;
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--pink-pale);
}

.about-images {
  position: relative;
  min-height: 510px;
}

.about-image {
  display: block;
  position: absolute;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-main {
  top: 0;
  right: 0;
  width: 85%;
  height: 390px;
}

.about-image-sub {
  bottom: 0;
  left: 0;
  width: 58%;
  height: 255px;
}

.section-products {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("../images/optimized/komachi_flower.jpg") center / cover fixed;
}

.ribbon {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  margin-top: 24px;
  padding: 10px 30px;
  border: 2px solid rgba(201, 111, 138, 0.25);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-deep), #d987a0);
  box-shadow: 0 12px 28px rgba(201, 111, 138, 0.28);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.product-card,
.class-card,
.other-card,
.benefit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 135, 160, 0.19);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.product-card > picture,
.product-card > picture img {
  width: 100%;
}

.product-card > picture img,
.card-gallery img {
  height: 285px;
  object-fit: cover;
}

.product-card > picture img {
  object-position: center 42%;
}

.product-card-full > picture {
  display: block;
  background: linear-gradient(145deg, #fff, #f8f6f4);
}

.product-card-full > picture img {
  padding: 8px;
  object-fit: contain;
  object-position: center;
}

.product-card-contain > picture {
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff, #f8f6f4);
}

.product-card-contain > picture img {
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
}

.card-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.card-gallery picture {
  min-width: 0;
}

.card-gallery img {
  width: 100%;
}

.card-body {
  padding: 24px;
}

.card-body h3,
.class-copy h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.price {
  margin-bottom: 0;
  color: var(--pink-deep);
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-badge {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-deep);
  font-size: 12px;
  font-weight: 700;
}

.section-delivery {
  background: linear-gradient(135deg, var(--blue-pale), #f7fcfd 55%, var(--green-pale));
}

.delivery-grid {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.delivery-card {
  padding: 40px;
  border: 1px solid rgba(141, 185, 208, 0.26);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.delivery-card h3 {
  margin: 18px 0 9px;
  font-size: 25px;
}

.icon-round {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.icon-round svg {
  width: 27px;
  height: 27px;
}

.icon-blue {
  color: #6597b0;
  background: var(--blue-pale);
}

.icon-pink {
  color: var(--pink-deep);
  background: var(--pink-pale);
}

.notice {
  color: var(--muted);
  font-size: 13px;
}

.fee-list {
  margin: 25px 0;
  border-top: 1px solid var(--line);
}

.fee-list > div {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 155px 1fr;
  gap: 15px;
}

.fee-list dt {
  font-weight: 600;
}

.fee-list dd {
  margin: 0;
  text-align: right;
}

.fee-list .fee-central {
  margin: 9px 0;
  padding: 16px;
  align-items: center;
  border: 2px solid rgba(217, 135, 160, 0.38);
  border-radius: 15px;
  background: linear-gradient(120deg, var(--blue-pale), #fff 58%, var(--pink-pale));
  grid-template-columns: 125px 1fr;
}

.fee-central dt {
  color: #4e849d;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
}

.fee-central dd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.fee-central dd span {
  color: var(--muted);
  font-size: 13px;
}

.fee-central dd strong {
  display: inline-flex;
  min-width: 74px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: 0 7px 18px rgba(201, 111, 138, 0.24);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.delivery-strong {
  margin-bottom: 0;
  color: #5b91aa;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}

.section-message {
  padding-top: 95px;
  padding-bottom: 95px;
}

.message-card {
  display: grid;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--pink-pale);
  box-shadow: var(--shadow);
  grid-template-columns: 0.8fr 1.2fr;
}

.message-photo {
  min-height: 100%;
}

.message-photo picture,
.message-photo img {
  width: 100%;
  height: 100%;
}

.message-photo img {
  object-fit: cover;
  object-position: center;
}

.message-copy {
  padding: clamp(38px, 6vw, 75px);
}

.message-copy .section-heading {
  margin-bottom: 27px;
}

.message-copy p {
  margin-bottom: 18px;
}

.signature {
  margin-top: 29px;
  margin-bottom: 0 !important;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  text-align: right;
}

.section-classes {
  background: linear-gradient(180deg, #fff, rgba(234, 246, 250, 0.5));
}

.section-classes .section-heading-center > p:last-child {
  max-width: 850px;
  margin-inline: auto;
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 65px 0 34px;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
}

.subsection-title::before,
.subsection-title::after {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(141, 185, 208, 0.5));
  content: "";
}

.subsection-title::after {
  background: linear-gradient(90deg, rgba(141, 185, 208, 0.5), transparent);
}

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

.class-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
}

.class-card > picture,
.class-card > picture img,
.class-card .class-gallery {
  min-height: 100%;
}

.class-card > picture img {
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
}

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

.class-gallery img {
  width: 100%;
  height: 100%;
  min-height: 355px;
  object-fit: cover;
}

.class-copy {
  padding: 30px;
}

.class-copy h3 span,
.garden-copy h3 span,
.garden-service-copy h3 span,
.other-card h3 span {
  display: inline-block;
  margin-left: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--pink-deep);
  background: var(--pink-pale);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
}

.class-meta {
  color: var(--pink-deep);
  font-size: 14px;
  font-weight: 600;
}

.class-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1.15fr;
}

.external-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #518aa5;
  font-weight: 600;
  text-underline-offset: 4px;
}

.tea-space {
  display: grid;
  margin-top: 70px;
  padding: 18px;
  border: 1px solid rgba(141, 185, 208, 0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 47px;
}

.tea-space picture,
.tea-space img {
  width: 100%;
}

.tea-space img {
  aspect-ratio: 1.2;
  border-radius: calc(var(--radius-lg) - 9px);
  object-fit: cover;
}

.tea-space > div {
  padding: 30px 35px 30px 0;
}

.tea-space h3 {
  margin: 28px 0 13px;
  font-size: 27px;
}

.consult-note {
  margin: 27px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--blue-pale);
  font-size: 14px;
}

.section-gardening {
  background: linear-gradient(180deg, #fbfdfb, var(--green-pale));
}

.garden-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.garden-pair figure {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.garden-pair figure img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.garden-pair figcaption {
  padding: 17px 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  text-align: center;
}

.card-panel {
  margin: 30px 0 70px;
  padding: 32px 38px;
  border: 1px solid rgba(135, 169, 135, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.card-panel h3,
.garden-service-copy h3 {
  font-size: 25px;
}

.card-panel p:last-child {
  margin-bottom: 0;
}

.garden-service {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 55px;
}

.garden-pair-small {
  gap: 14px;
}

.garden-pair-small picture {
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.garden-pair-small img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.garden-pair-small picture:nth-child(2) img {
  object-position: center 70%;
}

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

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

.other-card > picture img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.other-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 35px;
  background: linear-gradient(135deg, var(--blue-pale), #fff);
}

.other-card-text .card-body {
  padding: 20px 0 0;
}

.service-icon {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5d93ac;
  background: var(--white);
}

.service-icon svg {
  width: 35px;
  height: 35px;
}

.plant-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.85fr 1.15fr;
}

.plant-card > picture img {
  height: 100%;
  min-height: 520px;
}

.mini-note {
  font-size: 14px;
  font-weight: 600;
}

.plant-benefits {
  display: grid;
  margin: 20px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plant-benefits > div {
  padding: 15px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
}

.plant-benefits dt {
  font-weight: 600;
}

.plant-benefits dd {
  margin: 7px 0 0;
  font-size: 14px;
}

.section-benefits {
  overflow: hidden;
  background: linear-gradient(180deg, var(--pink-pale), #fff8fa);
}

.section-benefits::before {
  right: -60px;
  bottom: -80px;
}

.section-benefits h2 em {
  color: var(--pink-deep);
  font-size: 1.18em;
  font-style: normal;
}

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

.benefit-card {
  padding-bottom: 30px;
  text-align: center;
}

.benefit-card picture img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.benefit-number {
  display: inline-flex;
  min-width: 84px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: -18px auto 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink-deep);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  position: relative;
}

.benefit-card p {
  padding-inline: 27px;
}

.section-contact {
  padding-top: 95px;
  padding-bottom: 95px;
}

.contact-panel {
  display: grid;
  padding: clamp(35px, 6vw, 70px);
  border: 1px solid rgba(217, 135, 160, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.96), rgba(251, 232, 237, 0.87)),
    url("../images/optimized/komachi_flower.jpg") center / cover;
  box-shadow: var(--shadow);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 65px;
}

.contact-copy .section-heading {
  margin: 18px 0 24px;
}

.contact-copy h2 {
  font-size: clamp(27px, 3.2vw, 40px);
}

.contact-actions {
  padding: 32px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
}

.contact-actions h3 {
  margin-bottom: 20px;
  font-size: 21px;
}

.contact-action {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  color: var(--white);
  text-decoration: none;
}

.contact-action svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
}

.contact-action span {
  min-width: 0;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.contact-action small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.contact-action-phone {
  background: var(--pink-deep);
}

.contact-action-mail {
  background: #729fb5;
}

.contact-action-mail span {
  font-size: clamp(12px, 1.3vw, 15px);
}

.fax {
  margin: 13px 0;
  padding-left: 17px;
  font-size: 17px;
  font-weight: 600;
}

.fax span {
  margin-right: 13px;
  color: var(--muted);
  font-size: 12px;
}

.contact-detail-lines {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section-access {
  background: var(--blue-pale);
}

.section-access::before {
  left: -50px;
  bottom: -90px;
}

.access-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
}

.shop-details {
  padding: 33px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.shop-details dl {
  margin: 0;
}

.shop-details dl > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
}

.shop-details dl > div:last-child {
  border-bottom: 0;
}

.shop-details dt {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--ink-deep);
  font-size: 13px;
  font-weight: 700;
}

.shop-details dt svg {
  margin-top: 3px;
  color: var(--pink);
}

.shop-details dd {
  margin: 0;
}

.shop-details a {
  color: #4e849d;
  font-weight: 600;
  text-underline-offset: 4px;
}

.access-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.access-visuals figure {
  display: flex;
  overflow: hidden;
  margin: 0;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.access-visuals picture {
  display: flex;
  min-height: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.access-visuals img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.access-visuals figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.instagram-card {
  display: flex;
  width: min(430px, 100%);
  align-items: center;
  gap: 25px;
  margin: 38px auto 0;
  padding: 19px 26px 19px 19px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.instagram-card img {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  object-fit: contain;
}

.instagram-card h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.instagram-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.section-profile {
  background: #fffdfd;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: 80px;
}

.profile-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.profile-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 44px);
}

.profile-subtitle {
  color: var(--pink-deep);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}

.profile-flower {
  display: flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  border: 1px solid rgba(217, 135, 160, 0.3);
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-pale);
}

.profile-flower svg {
  width: 45px;
  height: 45px;
}

.profile-copy {
  padding: 53px;
  border: 1px solid rgba(217, 135, 160, 0.16);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.profile-copy p {
  margin-bottom: 26px;
}

.profile-copy p:last-child {
  margin-bottom: 0;
}

.profile-quote {
  padding: 18px 25px;
  border-left: 3px solid var(--pink);
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 600;
}

.section-concept {
  background: linear-gradient(135deg, var(--green-pale), #fff);
}

.concept-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 78px;
}

.concept-art {
  display: flex;
  overflow: hidden;
  aspect-ratio: 1.15;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.concept-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.concept-copy .section-heading {
  margin-bottom: 30px;
}

.concept-copy > p {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.75);
}

.section-philosophy {
  padding-top: 90px;
  padding-bottom: 90px;
  background: var(--white);
}

.philosophy-card {
  position: relative;
  max-width: 950px;
  padding: 68px;
  border: 1px solid rgba(217, 135, 160, 0.25);
  border-radius: var(--radius-lg);
  text-align: center;
}

.philosophy-card::before,
.philosophy-card::after {
  position: absolute;
  width: 65px;
  height: 65px;
  border: solid rgba(217, 135, 160, 0.38);
  content: "";
}

.philosophy-card::before {
  top: 18px;
  left: 18px;
  border-width: 1px 0 0 1px;
  border-radius: 15px 0 0;
}

.philosophy-card::after {
  right: 18px;
  bottom: 18px;
  border-width: 0 1px 1px 0;
  border-radius: 0 0 15px;
}

.philosophy-card .section-heading {
  margin-bottom: 25px;
}

.philosophy-card > p {
  max-width: 770px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 2;
}

.site-footer {
  color: rgba(255, 255, 255, 0.94);
  background: #ad536f;
}

.footer-grid {
  display: grid;
  padding-top: 63px;
  padding-bottom: 55px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 55px;
}

.footer-logo {
  display: block;
  width: min(300px, 100%);
  padding: 12px 17px;
  border-radius: 9px;
  background: var(--white);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
}

.footer-flower-mark {
  width: 58px;
  height: 64px;
  flex: 0 0 auto;
  padding: 5px;
  border-radius: 50%;
  background: var(--white);
  object-fit: contain;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact a {
  width: fit-content;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  font-size: 13px;
  text-underline-offset: 4px;
}

@media (max-width: 1320px) {
  .header-inner {
    grid-template-columns: 210px 1fr auto;
    gap: 17px;
  }

  .global-nav {
    gap: 14px;
  }

  .header-contact .header-mail {
    display: none;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    width: min(100% - 32px, 1180px);
    grid-template-columns: minmax(180px, 230px) 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .menu-button {
    display: grid;
    position: relative;
    z-index: 103;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--pink-pale);
    cursor: pointer;
    grid-column: 3;
    grid-template-rows: repeat(3, 2px) 10px;
    align-content: center;
    gap: 5px;
  }

  .menu-button > span:not(.menu-label) {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--pink-deep);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-label {
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
  }

  .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);
  }

  .global-nav {
    display: flex;
    visibility: hidden;
    position: fixed;
    z-index: 102;
    inset: var(--header-height) 0 auto;
    max-height: calc(100dvh - var(--header-height));
    padding: 20px 24px 30px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(70, 62, 75, 0.12);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

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

  .global-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
  }

  .global-nav a::after {
    display: none;
  }

  .hero-grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  }

  .hero-note {
    right: 0;
  }

  .about-grid {
    gap: 45px;
  }

  .class-card {
    grid-template-columns: 1fr;
  }

  .class-card > picture img,
  .class-gallery img {
    min-height: 280px;
  }

  .class-card-wide {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .plant-card {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .plant-benefits {
    grid-template-columns: 1fr;
  }

  .access-grid {
  align-items: start;    grid-template-columns: 1fr;
  }

  .access-visuals {
    min-height: 0;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 86px 0;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(520px, 86%);
  }

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

  .about-images {
    width: min(650px, 100%);
    margin-inline: auto;
  }

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

  .message-card {
    grid-template-columns: 1fr;
  }

  .message-photo {
    max-height: 450px;
  }

  .message-photo img {
    aspect-ratio: 1.5;
  }

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

  .class-card {
    grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  }

  .class-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .tea-space {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tea-space > div {
    padding: 30px 25px;
  }

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

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

  .plant-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .plant-card > picture img {
    min-height: 360px;
  }

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

  .benefit-card {
    display: grid;
    padding-bottom: 0;
    grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .benefit-card picture {
    grid-row: 1 / span 3;
  }

  .benefit-card picture img {
    height: 100%;
    min-height: 310px;
  }

  .benefit-number {
    margin: 25px 25px 5px;
  }

  .benefit-card p {
    padding-right: 30px;
    padding-left: 30px;
  }

  .contact-panel,
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .profile-heading {
    position: static;
  }

  .profile-flower {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-lg: 23px;
    --radius-md: 17px;
  }

  body {
    font-size: 15px;
    line-height: 1.85;
  }

  .container,
  .footer-bottom {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading-center {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(27px, 9vw, 37px);
  }

  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: minmax(160px, 220px) 1fr auto;
  }

  .brand {
    width: min(205px, 100%);
  }

  .hero {
    min-height: auto;
    padding: 28px 0 48px;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-copy {
    padding: 32px 20px 35px;
    border-radius: 24px;
  }

  .hero-brand {
    margin-bottom: 14px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 17px;
  }

  .hero-actions .button {
    width: min(100%, 290px);
  }

  .hero-visual {
    width: min(450px, 92%);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 4;
    width: fit-content;
    max-width: 95%;
    margin: -20px auto 0;
    white-space: normal;
    text-align: center;
  }

  .about-images {
    min-height: 390px;
  }

  .about-image-main {
    width: 90%;
    height: 290px;
  }

  .about-image-sub {
    width: 62%;
    height: 190px;
  }

  .about-copy h3 {
    font-size: 24px;
  }

  .about-motto {
    padding: 20px;
  }

  .product-grid {
    gap: 16px;
  }

  .product-card > picture img,
  .card-gallery img {
    height: 205px;
  }

  .card-body {
    padding: 19px;
  }

  .card-body h3 {
    font-size: 17px;
  }

  .price {
    font-size: 14px;
  }

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

  .delivery-card {
    padding: 28px 23px;
  }

  .fee-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fee-list dd {
    text-align: left;
  }

  .fee-list .fee-central {
    grid-template-columns: 1fr;
  }

  .fee-central dd {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .message-copy {
    padding: 34px 23px;
  }

  .class-card {
    grid-template-columns: 1fr;
  }

  .class-card > picture img,
  .class-gallery img {
    min-height: 245px;
  }

  .class-copy {
    padding: 24px 21px;
  }

  .subsection-title {
    margin-top: 52px;
    font-size: 24px;
  }

  .tea-space {
    padding: 11px;
  }

  .tea-space > div {
    padding: 25px 13px 18px;
  }

  .garden-pair {
    gap: 14px;
  }

  .garden-pair figure img {
    aspect-ratio: 1.2;
  }

  .garden-pair figcaption {
    padding: 13px 9px;
    font-size: 15px;
  }

  .card-panel {
    margin-bottom: 50px;
    padding: 25px 22px;
  }

  .garden-pair-small img {
    height: 240px;
  }

  .other-card > picture img {
    height: 250px;
  }

  .other-card-text {
    padding: 28px 22px;
  }

  .plant-card > picture img {
    min-height: 280px;
  }

  .benefit-card {
    display: block;
    padding-bottom: 25px;
  }

  .benefit-card picture img {
    height: 240px;
    min-height: 0;
  }

  .benefit-number {
    margin-top: -18px;
  }

  .contact-panel {
    padding: 29px 20px;
  }

  .contact-actions {
    padding: 22px 15px;
  }

  .contact-action {
    padding: 14px 13px;
  }

  .contact-action-mail span {
    font-size: 11px;
  }

  .shop-details {
    padding: 24px 19px;
  }

  .shop-details dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .access-visuals {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .access-visuals picture {
    min-height: 300px;
  }

  .instagram-card {
    padding: 16px;
    gap: 17px;
  }

  .instagram-card img {
    width: 122px;
    height: 122px;
  }

  .profile-copy {
    padding: 30px 22px;
  }

  .profile-quote {
    padding: 16px 19px;
    font-size: 18px;
  }

  .concept-art {
    padding: 13px;
  }

  .philosophy-card {
    padding: 52px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 420px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card > picture img,
  .card-gallery img {
    height: 260px;
  }

  .garden-pair,
  .garden-pair-small {
    grid-template-columns: 1fr;
  }

  .garden-pair figure img {
    aspect-ratio: 1.4;
  }

  .garden-pair-small img {
    height: 270px;
  }

  .instagram-card {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .instagram-card img {
    width: 180px;
    height: 180px;
  }
}

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

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