﻿@charset "UTF-8";
/* =========================
  Base
========================= */
:root {
  --green: #9edb37;
  --green-deep: #5f9f28;
  --green-soft: #eaffcf;
  --pink: #f7a9bd;
  --pink-soft: #fff0f4;
  --cream: #fffdf3;
  --yellow: #ffe977;
  --brown: #594338;
  --text: #463b34;
  --white: #ffffff;
  --shadow-soft: 0 20px 50px rgba(88, 115, 35, 0.16);
  --shadow-bubble: 0 18px 45px rgba(94, 142, 45, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  --header-height: 112px;
  --footer-height: 86px;
  --container: 1120px;
  --radius-round: 999px;
  --radius-card: 48px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
#concept,
#items,
#season,
#gallery,
#shop,
#contact {
  scroll-margin-top: calc(var(--header-height) - 48px);
}
#price,
#blend,
#flower-kind {
  scroll-margin-top: calc(var(--header-height) + 28px);
}
body {
  margin: 0;
  padding-top: var(--header-height);
  padding-bottom: var(--footer-height);
  color: var(--text);
  font-family:
    "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  background: var(--cream);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(255, 253, 243, 0.66), rgba(255, 253, 243, 0.8)),
    url("../img/hero/hero-bg.jpg") center / cover no-repeat;
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.68), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255, 240, 244, 0.58), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(234, 255, 207, 0.62), transparent 42%);
}
.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}
/* =========================
  Fixed Header / Footer
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  background: url("../img/header-footer/flower-header.png") center bottom / cover no-repeat;
}
.site-header__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1180px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 17px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(70, 104, 30, 0.12);
  backdrop-filter: blur(8px);
  font-weight: 900;
}
.site-header__mark {
  position: relative;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.site-header__mark::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
.site-header__name {
  letter-spacing: 0.04em;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 24px rgba(70, 104, 30, 0.1);
  backdrop-filter: blur(8px);
}
.global-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.global-nav a:hover {
  transform: translateY(-2px);
  background: rgba(158, 219, 55, 0.22);
}
.global-nav__cta {
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  color: var(--brown) !important;
}
.global-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.global-nav__parent::after {
  content: "⌄";
  margin-left: 0.35em;
  font-size: 0.78em;
  line-height: 1;
  translate: 0 -1px;
}
.global-nav__sub {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 10;
  width: 170px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 32px rgba(70, 104, 30, 0.16);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition:
    opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}
.global-nav__sub::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
}
.global-nav__sub a {
  min-height: 34px;
  padding: 0 12px;
  justify-content: flex-start;
  color: var(--green-deep);
  background: rgba(234, 255, 207, 0.42);
  font-size: 0.82rem;
  white-space: nowrap;
}
.global-nav__sub a:hover {
  background: rgba(158, 219, 55, 0.22);
}
.global-nav__item--has-sub:hover .global-nav__sub,
.global-nav__item--has-sub:focus-within .global-nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-toggle {
  display: none;
}
.site-footer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  min-height: var(--footer-height);
  background: url("../img/header-footer/flower-footer.png") center top / cover no-repeat;
}
.site-footer__inner {
  width: min(calc(100% - 32px), 1180px);
  min-height: var(--footer-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
  gap: 18px;
  color: var(--green-deep);
  text-align: center;
  padding-bottom: 18px;
}
.site-footer__copy {
  justify-self: start;
  margin: 0;
  padding: 8px 16px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.70);
  box-shadow: 0 8px 18px rgba(70, 104, 30, 0.10);
  backdrop-filter: blur(8px);
  font-weight: 900;
  letter-spacing: 0.05em;

  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.site-footer__text {
  justify-self: end;
  margin: 0;
  padding: 8px 16px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 18px rgba(70, 104, 30, 0.10);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  font-weight: 700;
}
.site-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 10px;
}
.site-footer__link {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  border: 2px solid rgba(158, 219, 55, 0.72);
  box-shadow:
    0 0 0 3px rgba(234, 255, 207, 0.42),
    0 0 14px rgba(158, 219, 55, 0.45),
    0 8px 18px rgba(70, 104, 30, 0.14);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.site-footer__link::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 219, 55, 0.42), rgba(158, 219, 55, 0) 68%);
  opacity: 0.7;
  filter: blur(3px);
  pointer-events: none;
}
.site-footer__link:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(95, 159, 40, 0.92);
  box-shadow:
    0 0 0 4px rgba(234, 255, 207, 0.62),
    0 0 20px rgba(158, 219, 55, 0.72),
    0 0 34px rgba(95, 159, 40, 0.34),
    0 12px 24px rgba(70, 104, 30, 0.18);
}
.site-footer__link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.footer-float {
  animation: footerIconFloat 5.6s ease-in-out infinite;
  will-change: translate;
}
.site-footer__links .footer-float:nth-child(2) {
  animation-delay: -1.2s;
}
.site-footer__links .footer-float:nth-child(3) {
  animation-delay: -2.4s;
}
.site-footer__links .footer-float:nth-child(4) {
  animation-delay: -3.5s;
}
@keyframes footerIconFloat {
  0% {
    translate: 0 0;
  }
  35% {
    translate: 0 -5px;
  }
  70% {
    translate: 0 -2px;
  }
  100% {
    translate: 0 0;
  }
}
/* =========================
  Common Parts
========================= */
.section {
  position: relative;
  padding: 94px 0;
}
.section::before {
  content: "";
  position: absolute;
  inset: 48px auto auto 7%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 34px rgba(158, 219, 55, 0.18);
  pointer-events: none;
}
.section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 15px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(70, 104, 30, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}
.section-title {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: 0.04em;
}
.section-lead {
  margin: 18px 0 0;
  font-weight: 700;
}
@media (min-width: 981px) {
  .concept .section-head {
    max-width: 900px;
  }
}
@media (min-width: 721px) and (max-width: 980px) {
  .concept .section-head {
    max-width: 860px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-round);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 42px rgba(88, 115, 35, 0.2);
}
.btn--primary {
  color: var(--brown);
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}
.btn--ghost {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(158, 219, 55, 0.28);
}
/* =========================
  Bubble Animation
========================= */
.float-bubble {
  animation: bubbleFloat 5.8s ease-in-out infinite;
  will-change: transform;
}
.float-bubble:nth-child(2n) {
  animation-delay: -1.4s;
}
.float-bubble:nth-child(3n) {
  animation-delay: -2.6s;
}
@keyframes bubbleFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(8px, -13px, 0) rotate(1.2deg);
  }
  70% {
    transform: translate3d(-6px, -5px, 0) rotate(-0.9deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .float-bubble {
    animation: none;
  }
}
/* =========================
  Hero
========================= */
.hero {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
  display: grid;
  place-items: center;
  padding: 72px 0 96px;
}
.hero__inner {
  width: min(calc(100% - 32px), 1100px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  text-align: center;
}
.hero__logo-wrap {
  width: min(54vw, 430px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%,
      rgba(255, 255, 255, 0.96),
      rgba(255, 255, 255, 0.56) 58%,
      rgba(255, 255, 255, 0.35));
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(8px);
}
.hero__logo {
  width: 92%;
  filter: drop-shadow(0 18px 24px rgba(68, 100, 26, 0.14));
}
.hero__content {
  max-width: 760px;
  margin-top: 34px;
  padding: 28px 32px;
  border-radius: 56px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}
.hero__title {
  margin: 0;
  color: var(--brown);
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.hero__text {
  margin: 22px 0 0;
  font-weight: 800;
}
.hero__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
/* =========================
  Concept
========================= */
.concept__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 42px;
}
.concept-talk {
  position: relative;
  max-width: 860px;
  margin: 0 auto 34px;
  padding: 22px 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.concept-talk::after {
  content: "";
  position: absolute;
  left: 58px;
  bottom: -18px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  box-shadow: 4px 6px 14px rgba(94, 142, 45, 0.08);
}
.concept-talk__text {
  margin: 0;
  text-align: center;
  font-weight: 800;
  line-height: 1.9;
}
.concept-talk__text strong {
  color: var(--brown);
  font-size: 1.06rem;
}
.concept__image {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(8px);
}
.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.concept__body {
  display: grid;
  gap: 18px;
}
.round-card {
  position: relative;
  padding: 26px 28px 26px 82px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.round-card__icon {
  position: absolute;
  left: 26px;
  top: 28px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--pink));
  font-weight: 900;
}
.round-card h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: 1.3rem;
}
.round-card p {
  margin: 0;
  font-weight: 700;
}
/* =========================
  Items
========================= */
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.item-card {
  position: relative;
  overflow: visible;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100%;
  min-width: 0;
  padding-bottom: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.item-card__image {
  position: relative;
  z-index: 2;
  width: min(100%, 236px);
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.item-card__body {
  position: relative;
  z-index: 1;
  width: min(88%, 214px);
  aspect-ratio: 1 / 1;
  margin-top: -34px;
  padding: 42px 20px 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.item-card__label {
  display: inline-flex;
  justify-self: center;
  margin: 0 0 7px;
  padding: 4px 12px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
}
.item-card h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.18rem;
  line-height: 1.35;
}
.item-card p:last-child {
  width: min(100%, 13.5em);
  margin: 9px auto 0;
  font-size: 0.84rem;
  line-height: 1.72;
  font-weight: 700;
}
/* =========================
  Item Detail
========================= */
.item-detail {
  margin-top: 68px;
  display: grid;
  gap: 78px;
}
.item-detail__block {
  position: relative;
}
.item-detail__block::before {
  content: "";
  position: absolute;
  inset: -28px auto auto 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: inset 0 0 28px rgba(158, 219, 55, 0.16);
  pointer-events: none;
}
.item-detail__head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.item-detail__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(70, 104, 30, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.item-detail__kicker::before,
.item-detail__kicker::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}
.item-detail__title {
  margin: 0;
  color: var(--brown);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.item-detail__lead {
  margin: 14px 0 0;
  font-weight: 800;
}
/* Price */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.price-card {
  position: relative;
  overflow: visible;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 12px 12px 28px;
  border-radius: 999px 999px 128px 128px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
  text-align: center;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 44%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(234, 255, 207, 0.32);
  filter: blur(10px);
  pointer-events: none;
}
.price-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
}
.price-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}
.price-card__body {
  padding: 14px 12px 0;
  text-align: center;
}
.price-card__label {
  display: inline-flex;
  justify-content: center;
  margin: 0 0 8px;
  padding: 4px 12px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
}
.price-card h4 {
  margin: 0;
  color: var(--brown);
  font-size: 1.08rem;
  line-height: 1.4;
}
.price-card__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 10px auto 0;
  padding: 0 16px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: rgba(234, 255, 207, 0.72);
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 900;
}
.price-card__text {
  width: min(100%, 14em);
  margin: 12px auto 0;
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 700;
}
/* Blend */
.blend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.blend-card {
  position: relative;
  overflow: visible;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100%;
  min-width: 0;
  padding-bottom: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: center;
}
.blend-card__image {
  position: relative;
  z-index: 2;
  width: min(100%, 292px);
  aspect-ratio: 1 / 1;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.blend-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.blend-card__body {
  position: relative;
  z-index: 1;
  width: min(88%, 250px);
  aspect-ratio: 1 / 1;
  margin-top: -38px;
  padding: 50px 24px 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  min-width: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.blend-card__label {
  display: inline-flex;
  justify-self: center;
  margin: 0 0 8px;
  padding: 4px 12px;
  border-radius: var(--radius-round);
  color: var(--green-deep);
  background: var(--green-soft);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
}
.blend-card h4 {
  margin: 0;
  color: var(--brown);
  font-size: 1.24rem;
  line-height: 1.35;
}
.blend-card p:last-child {
  width: min(100%, 13.5em);
  margin: 9px auto 0;
  font-size: 0.86rem;
  line-height: 1.72;
  font-weight: 700;
}
/* Flower Kind */
.flower-kind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.flower-kind-card {
  padding: 12px 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
  text-align: center;
}
.flower-kind-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
.flower-kind-card h4 {
  margin: 12px 0 0;
  color: var(--brown);
  font-size: 0.95rem;
  line-height: 1.4;
}
/* =========================
  Season
========================= */
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.season-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 12px 12px 34px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}
.season-card img {
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  padding: 12px;
  object-fit: cover;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.season-card h3 {
  position: relative;
  z-index: 2;
  min-width: min(82%, 190px);
  margin: -30px auto 0;
  padding: 7px 18px;
  border-radius: var(--radius-round);
  color: var(--brown);
  background:
    linear-gradient(135deg,
      rgba(255, 233, 119, 0.9),
      rgba(234, 255, 207, 0.92));
  box-shadow:
    0 12px 24px rgba(94, 142, 45, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 900;
}
/* =========================
  Gallery
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  overflow: visible;
}
.gallery-item {
  position: relative;
  z-index: 1;
  overflow: visible;
  margin: 0;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 50%;
  background: transparent;
  transform-origin: center;
}
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
  transform: scale(1);
  transition:
    transform 0.9s cubic-bezier(0.18, 0.72, 0.22, 1),
    box-shadow 0.9s cubic-bezier(0.18, 0.72, 0.22, 1),
    background 0.9s ease;
  transform-origin: center;
  pointer-events: none;
}
.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition:
    transform 0.95s cubic-bezier(0.18, 0.72, 0.22, 1),
    filter 0.95s ease;
  transform-origin: center;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover {
    z-index: 20;
  }
  .gallery-item:hover::before {
    transform: scale(1.38);
    background: rgba(255, 255, 255, 0.82);
    box-shadow:
      0 30px 76px rgba(94, 142, 45, 0.30),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
  .gallery-item:hover img {
    transform: scale(1.38);
    filter: saturate(1.06) brightness(1.04);
  }
}
/* =========================
  Shop
========================= */
.shop__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
}
.shop__image-stack {
  position: relative;
  min-height: 580px;
}
.shop__image {
  position: absolute;
  padding: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.shop__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.shop__image--main {
  left: 0;
  top: 0;
  width: min(78%, 470px);
  aspect-ratio: 1 / 1;
}
.shop__image--sub {
  right: 0;
  bottom: 0;
  width: min(54%, 330px);
  aspect-ratio: 1 / 1;
}
.shop__info {
  padding: 42px;
  border-radius: 58px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-bubble);
  backdrop-filter: blur(10px);
}
.shop__text {
  margin: 18px 0 22px;
  font-weight: 800;
}
.info-list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.info-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 24px;
  background: rgba(234, 255, 207, 0.54);
}
.info-list dt {
  color: var(--green-deep);
  font-weight: 900;
}
.info-list dd {
  margin: 0;
  font-weight: 800;
}
/* =========================
  Contact
========================= */
.contact {
  padding-bottom: 128px;
}
.contact-panel {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin-inline: auto;
  padding: 62px 34px;
  border-radius: 70px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74),
      rgba(255, 255, 255, 0.82)),
    url("../img/contact/contact-bg.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-bubble);
  text-align: center;
}
.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(158, 219, 55, 0.18);
  pointer-events: none;
}
.contact-panel::before {
  width: 150px;
  height: 150px;
  left: 34px;
  bottom: 32px;
}
.contact-panel::after {
  width: 90px;
  height: 90px;
  right: 54px;
  top: 40px;
  background: rgba(247, 169, 189, 0.18);
}
.contact-panel > * {
  position: relative;
  z-index: 1;
}
.contact-panel .section-title {
  max-width: 12em;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  line-height: 1.26;
  letter-spacing: 0.03em;
}
.contact-panel__lead {
  max-width: 40em;
  margin: 18px auto 0;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.9;
}
.contact-guide {
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-guide__item {
  position: relative;
  min-width: 0;
  width: min(100%, 210px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  padding: 30px 24px 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 42px rgba(94, 142, 45, 0.16), 
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}
.contact-guide__icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(234, 255, 207, 0.78);
  box-shadow:
    0 8px 18px rgba(94, 142, 45, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 900;
}
.contact-guide__item h3 {
  margin: 0;
  color: var(--brown);
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 900;
}
.contact-guide__item p {
  max-width: 12em;
  margin: 8px auto 0;
  font-size: 0.78rem;
  line-height: 1.7;
  font-weight: 700;
}
.contact-panel__text {
  max-width: 44em;
  margin: 28px auto 0;
  font-weight: 800;
  line-height: 1.9;
}
.contact-panel__actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
/* =========================
  Reveal
========================= */
.reveal {
  opacity: 0;
  translate: 0 18px;
  transition: opacity 0.7s ease, translate 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}
/* =========================
  Responsive
========================= */
@media (max-width: 980px) {
  :root {
    --header-height: 96px;
    --footer-height: 76px;
  }
  .nav-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(70, 104, 30, 0.14);
  }
  .nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: var(--radius-round);
    background: var(--green-deep);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }
  .nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }
  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }
  body.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  body.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .global-nav {
    position: fixed;
    top: calc(var(--header-height) - 12px);
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100dvh - var(--header-height) - var(--footer-height) - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
    border-radius: 34px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(95, 159, 40, 0.32) transparent;
  }
  .global-nav::-webkit-scrollbar {
    width: 6px;
  }
  .global-nav::-webkit-scrollbar-track {
    background: transparent;
  }
  .global-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(95, 159, 40, 0.28);
  }
  body.is-nav-open .global-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .global-nav__item {
    display: grid;
    gap: 8px;
  }
  .global-nav__item--has-sub {
    grid-column: auto;
  }
  .global-nav__parent {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.66);
  }
  .global-nav__sub {
    position: static;
    width: 100%;
    padding: 8px;
    border-radius: 24px;
    background: rgba(234, 255, 207, 0.42);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    grid-template-columns: repeat(2, 1fr);
  }
  .global-nav__sub::before {
    display: none;
  }
  .global-nav__sub a {
    min-height: 36px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.66);
  }
  .global-nav__item--has-sub:hover .global-nav__sub,
  .global-nav__item--has-sub:focus-within .global-nav__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .global-nav a:hover, 
  .global-nav__parent:hover,
  .global-nav__sub a:hover {
    transform: none;
  }
  .concept__grid,
  .shop__grid {
    grid-template-columns: 1fr;
  }
  .concept__image {
    width: min(78vw, 440px);
    margin-inline: auto;
  }
  .item-grid,
  .price-grid,
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .blend-grid {
    grid-template-columns: 1fr;
  }
  .flower-kind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop__image-stack {
    min-height: 520px;
  }
  .concept-talk {
    margin: 0 auto 30px;
    padding: 20px 24px;
  }
  .concept-talk::after {
    left: 36%;
    bottom: -16px;
    width: 24px;
    height: 24px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .concept-talk__text {
    font-size: 0.96rem;
  }
  .contact-guide {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .contact-guide__item {
    width: min(100%, 230px);
    padding: 32px 24px 28px;
    border-radius: 50%;
  }
}
@media (max-width: 720px) {
  body {
    padding-bottom: 68px;
  }
  .site-header__brand {
    padding: 9px 13px;
  }
  .site-header__name {
    font-size: 0.94rem;
  }
  .section {
    padding: 78px 0;
  }
  .hero {
    padding: 54px 0 76px;
  }
  .hero__logo-wrap {
    width: min(76vw, 360px);
  }
  .hero__content {
    padding: 24px 20px;
    border-radius: 40px;
  }
  .hero__title {
    font-size: clamp(2.05rem, 9.4vw, 2.85rem);
    line-height: 1.18;
    letter-spacing: 0.02em;
  }
  .hero__text {
    max-width: 28em;
    margin: 18px auto 0;
    font-size: 0.92rem;
    line-height: 1.85;
    letter-spacing: 0.02em;
  }
  .item-grid,
  .price-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }
  .item-detail {
    margin-top: 52px;
    gap: 62px;
  }
  .item-detail__head {
    margin-bottom: 26px;
  }
  .item-detail__lead {
    font-size: 0.92rem;
    line-height: 1.85;
  }
  .blend-grid {
    grid-template-columns: 1fr;
  }
  .blend-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .blend-card__image {
    width: min(100%, 280px);
  }
  .blend-card__body {
    width: min(88%, 250px);
    margin-top: -40px;
    padding: 50px 24px 28px;
  }
  .blend-card p:last-child {
    font-size: 0.86rem;
    line-height: 1.75;
  }
  .flower-kind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card,
  .flower-kind-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .item-card,
  .season-card {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .season-card img {
    width: min(100%, 280px);
  }
  .season-card h3 {
    min-width: min(82%, 210px);
    margin-top: -32px;
    font-size: 1rem;
  }
  .item-card__body {
    width: min(88%, 250px);
    margin-top: -40px;
    padding: 48px 24px 28px;
  }
  .item-card p:last-child {
    font-size: 0.86rem;
    line-height: 1.75;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .gallery-item {
    padding: 8px;
  }
  .shop__image-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .shop__image {
    position: relative;
  }
  .shop__image--main,
  .shop__image--sub {
    inset: auto;
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .shop__info {
    padding: 30px 22px;
    border-radius: 42px;
  }
  .info-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .contact-panel {
    padding: 46px 22px;
    border-radius: 44px;
  }
  .site-footer__inner {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
  }
  .site-footer__links {
    justify-self: center;
    gap: 8px;
  }
  .site-footer__link {
    width: 38px;
    height: 38px;
    box-shadow:
      0 0 0 2px rgba(234, 255, 207, 0.42),
      0 0 12px rgba(158, 219, 55, 0.42),
      0 7px 14px rgba(70, 104, 30, 0.12);
  }
  .site-footer__link img {
    width: 20px;
    height: 20px;
  }
  .site-footer__text {
    display: none;
  }
  .concept-talk {
    margin-bottom: 26px;
    padding: 18px 18px 20px;
    border-radius: 28px;
  }
  .concept-talk::after {
    left: 24%;
    bottom: -14px;
    width: 22px;
    height: 22px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .concept-talk__text {
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.85;
  }
  .concept-talk__text strong {
    font-size: 1rem;
  }
  .contact-panel__lead {
    font-size: 0.94rem;
    line-height: 1.85;
  }
  .contact-guide {
    margin-top: 26px;
  }
  .contact-guide__item {
    width: min(100%, 240px);
    padding: 34px 24px 30px;
    border-radius: 50%;
  }
  .contact-panel__text {
    font-size: 0.94rem;
    line-height: 1.85;
  }
  .contact-panel .section-title {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.28;
  }
  .contact-guide__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }
  .contact-guide__item h3 {
    font-size: 1.04rem;
  }
  .contact-guide__item p {
    max-width: 13em;
    font-size: 0.82rem;
    line-height: 1.75;
  }
}
@media (min-width: 481px) and (max-width: 534px) {
  .contact-panel .section-title {
    font-size: clamp(1.62rem, 6.2vw, 2rem);
    line-height: 1.34;
    letter-spacing: 0.005em;
  }
}
@media (max-width: 480px) {
  .global-nav__sub {
    grid-template-columns: 1fr;
  }
  .section-kicker {
    font-size: 0.76rem;
  }
  .btn {
    width: 100%;
  }
  .hero__actions,
  .contact-panel__actions {
    width: 100%;
  }
  .contact-panel .section-title {
    font-size: clamp(1.36rem, 5.8vw, 1.72rem);
    line-height: 1.36;
    letter-spacing: 0;
  }
  .contact-panel {
    padding-inline: 18px;
  }
  .gallery-grid {
    gap: 12px;
  }
  .gallery-item {
    padding: 7px;
  }
}