@charset "utf-8";

/* =========================
   01. Base
========================= */
:root {
  --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium",
    "Yu Gothic",
    "Noto Sans JP",
    sans-serif;
  --font-serif:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;

  --color-bg: #f5f4f2;
  --color-white: #fff;
  --color-text: #202020;
  --color-muted: #666;
  --color-border: rgba(0, 0, 0, .08);

  --color-red: #b8122b;
  --color-red-dark: #941126;
  --color-beige: #c8ab82;
  --color-beige-light: #eee7dc;
  --color-dark: #282828;

  --color-accent: #8a6a2f;
  --color-gold: #8a6a2f;

  --fz-xs: clamp(1.1rem, 2.7vw, 1.3rem);
  --fz-s: clamp(1.2rem, 3vw, 1.4rem);
  --fz-m: clamp(1.4rem, 3.6vw, 1.6rem);
  --fz-l: clamp(1.8rem, 5vw, 2.4rem);
  --fz-xl: clamp(2.4rem, 7vw, 3.6rem);
  --fz-xxl: clamp(3rem, 9vw, 4.6rem);

  --lh-base: 1.8;
  --lh-heading: 1.45;

  --section-y: clamp(64px, 16vw, 112px);
  --section-x: clamp(20px, 6vw, 36px);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 18px 45px rgba(0, 0, 0, .08);

  --bouquet-main: #9b5f70;
  --bouquet-main-dark: #713f4e;
  --bouquet-main-soft: #f9f0f3;
  --bouquet-accent: #b28a4d;
  --bouquet-border: rgba(155, 95, 112, .22);
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin: 0;
  font-size: var(--fz-m);
  line-height: var(--lh-base);
  color: var(--color-muted);
  letter-spacing: .04em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-text);
  line-height: var(--lh-heading);
  letter-spacing: .05em;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  font-size: var(--fz-xxl);
}

h2 {
  font-size: var(--fz-xl);
}

h3 {
  font-size: var(--fz-l);
}



/* =========================
   02. Header / Top Menu
========================= */
.site-header {
  background: var(--color-bg);
}

#top-menu {
  height: 60px;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: -3px;
  width: 100%;
  font-family: var(--font-sans);
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact,
#top-menu .top-menu-pc {
  text-decoration: none;
  float: left;
  width: 66px;
  height: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-right: none;
}

#top-menu .top-menu-tel,
#top-menu .top-menu-contact {
  transform: translateY(3px);
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

#top-menu .top-menu-tel:focus,
#top-menu .top-menu-contact:focus,
#top-menu .top-menu-tel:focus-visible,
#top-menu .top-menu-contact:focus-visible {
  outline: none;
  box-shadow: none;
}

#top-menu .top-menu-tel img,
#top-menu .top-menu-contact img,
#top-menu .top-menu-pc img {
  display: block;
  width: 45%;
}

#top-menu .top-menu-tel span,
#top-menu .top-menu-contact span,
#top-menu .top-menu-pc span {
  line-height: 1;
  margin-top: 6px;
  font-size: var(--fz-xs);
  color: var(--color-text);
}

#top-menu .menu-btn {
  float: right;
  width: 56px;
  height: 60px;
  position: relative;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: none;
  padding: 0;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-text);
}

#top-menu .menu-btn .menu-btn-inner,
#top-menu .menu-btn .menu-btn-inner span {
  display: inline-block;
  box-sizing: border-box;
}

#top-menu .menu-btn .menu-btn-inner {
  width: 25px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 15px;
  transform: translateX(-50%);
}

#top-menu .menu-btn .menu-btn-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition:
    transform .3s ease,
    opacity .3s ease;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(1) {
  top: 0;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(2) {
  top: 10px;
}

#top-menu .menu-btn .menu-btn-inner span:nth-of-type(3) {
  bottom: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(1),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(2),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(2) {
  opacity: 0;
}

#top-menu .menu-btn .menu-btn-inner.active span:nth-of-type(3),
#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

#top-menu .menu-btn > span {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: block;
  line-height: 1;
  width: 100%;
  text-align: center;
  font-size: var(--fz-xs);
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact span,
#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn > span {
  color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .menu-btn-inner span {
  background-color: #fff;
}

#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-tel img,
#top-menu:has(.menu-btn[aria-expanded="true"]) .top-menu-contact img {
  filter: brightness(0) invert(1);
}

#top-menu .menu-btn[aria-expanded="true"] {
  color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] .menu-btn-inner span {
  background-color: #fff;
}

#top-menu .menu-btn[aria-expanded="true"] > span {
  color: #fff;
}

/* =========================
   SP Menu
========================= */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: none;
  overflow-y: auto;
  padding:
    clamp(70px, 18vw, 92px)
    var(--section-x)
    calc(clamp(82px, 22vw, 112px) + env(safe-area-inset-bottom));
  background:
    linear-gradient(
      180deg,
      rgba(113, 63, 78, .94) 0%,
      rgba(69, 36, 46, .96) 100%
    );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sp-menu.active {
  display: block;
}

.sp-menu__panel {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0;
}

.sp-menu__label {
  margin:
    0
    0
    clamp(34px, 9vw, 48px);
  color: #ea5532;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.5rem, 4.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .24em;
  text-align: center;
}

.sp-menu__links {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-menu__links--main {
  gap: clamp(24px, 6.8vw, 34px);
}

.sp-menu__links--sub {
  gap: clamp(22px, 6.2vw, 30px);
  margin-top: clamp(46px, 12vw, 62px);
  padding-top: 0;
}

.sp-menu__links li {
  margin: 0;
  padding: 0;
}

.sp-menu__links a {
  display: block;
  color: rgba(255, 255, 255, .94);
  text-align: center;
  text-decoration: none;
}

.sp-menu__main-text {
  display: block;
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.72rem, 4.85vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .12em;
}

.sp-menu__sub-text {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-family:
    "Helvetica Neue",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    sans-serif;
  font-size: clamp(1.16rem, 3.35vw, 1.34rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .16em;
}

.sp-menu__links--sub .sp-menu__main-text {
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.46rem, 4.15vw, 1.68rem);
  font-weight: 500;
  letter-spacing: .1em;
}

.sp-menu__links--sub .sp-menu__sub-text {
  color: rgba(255, 255, 255, .54);
  font-size: clamp(1.04rem, 3vw, 1.2rem);
}

.sp-menu__links a:active {
  opacity: .62;
}


/* =========================
   Bouquet Hero
========================= */

.bouquet-page {
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #f7f2f3 0%,
      #ffffff 48%,
      #fbf6f7 100%
    );
}

.bouquet-hero {
  position: relative;
  min-height: clamp(520px, 136vw, 660px);
  overflow: hidden;
  background: #f4e8eb;
}

.bouquet-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bouquet-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bouquet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(250, 247, 247, .90) 0%,
      rgba(250, 247, 247, .74) 29%,
      rgba(250, 247, 247, .24) 54%,
      rgba(250, 247, 247, .70) 78%,
      rgba(250, 247, 247, .97) 100%
    );
  pointer-events: none;
}

.bouquet-hero__content {
  position: relative;
  z-index: 2;
  width: min(88%, 680px);
  margin: 0 auto;
  padding:
    clamp(92px, 24vw, 124px)
    0
    0;
}

.bouquet-hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:
    0
    0
    clamp(14px, 4vw, 20px);
  padding:
    clamp(7px, 2vw, 9px)
    clamp(16px, 4.5vw, 22px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--bouquet-main) 0%,
      var(--bouquet-main-dark) 100%
    );
  border-radius: 999px;
  font-size: clamp(1.15rem, 3.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
  box-shadow:
    0 10px 22px rgba(113, 63, 78, .20);
}

.bouquet-hero h1 {
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: clamp(2.9rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .94),
    0 3px 8px rgba(255, 245, 248, .96),
    0 7px 18px rgba(155, 95, 112, .38),
    0 12px 30px rgba(113, 63, 78, .26);
}

.bouquet-hero__lead {
  position: absolute;
  right: 6%;
  bottom: clamp(34px, 9vw, 56px);
  left: 6%;
  z-index: 3;
  width: min(88%, 680px);
  margin: 0 auto;
  color: #4e3940;
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  font-weight: 600;
  line-height: 1.85;
  letter-spacing: .04em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .76);
}

/* =========================
   Breadcrumb
========================= */
.breadcrumb {
  width: min(88%, 720px);
  margin: 0 auto;
  padding:
    clamp(12px, 3vw, 16px)
    0;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  color: #69635b;
  line-height: 1.6;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
  color: rgba(95, 90, 82, .62);
}

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



/* =========================
   Bouquet Contents
========================= */

.examples-intro {
  padding:
    clamp(48px, 12vw, 72px)
    0
    clamp(72px, 18vw, 112px);
  background:
    linear-gradient(
      180deg,
      #f7f2f3 0%,
      #ffffff 26%,
      #fbf6f7 100%
    );
}

.examples-intro__inner {
  width: min(90%, 720px);
  margin: 0 auto;
}

.bouquet-section-label {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 14px);
  color: var(--bouquet-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .18em;
}

.bouquet-intro {
  margin-bottom: clamp(34px, 9vw, 52px);
  text-align: center;
}

.bouquet-intro h2 {
  margin-bottom: clamp(18px, 5vw, 24px);
  color: #3a252c;
  font-size: clamp(2.4rem, 6.8vw, 3.3rem);
  line-height: 1.5;
}

.bouquet-intro p {
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.95;
  text-align: left;
}

.bouquet-intro__visual {
  margin-bottom: clamp(54px, 14vw, 84px);
}

.bouquet-intro__visual img {
  border-radius: clamp(18px, 5vw, 28px);
  box-shadow:
    0 18px 38px rgba(80, 43, 54, .14);
}

.bouquet-intro__visual p {
  margin-top: clamp(10px, 3vw, 14px);
  color: #77706f;
  font-size: clamp(1.05rem, 2.9vw, 1.2rem);
  line-height: 1.6;
  text-align: center;
}


/* =========================
   Bouquet Needs
========================= */

.bouquet-needs {
  margin-bottom: clamp(72px, 18vw, 112px);
  padding:
    clamp(28px, 7.5vw, 40px)
    clamp(20px, 5.5vw, 32px);
  background:
    linear-gradient(
      145deg,
      #784858 0%,
      #4d2934 100%
    );
  border-radius: clamp(22px, 6vw, 32px);
  box-shadow:
    0 20px 42px rgba(77, 41, 52, .20);
}

.bouquet-needs__heading {
  margin-bottom: clamp(24px, 6.5vw, 34px);
  text-align: center;
}

.bouquet-needs__heading > span {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 14px);
  padding:
    .42em
    .95em;
  color: #4d2934;
  background: #f2d9df;
  border-radius: 999px;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
}

.bouquet-needs__heading h3 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.6vw, 2.7rem);
  line-height: 1.55;
}

.bouquet-needs__list {
  display: grid;
  gap: clamp(12px, 3.5vw, 16px);
}

.bouquet-needs__list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 3.5vw, 16px);
  padding:
    clamp(15px, 4vw, 19px)
    clamp(14px, 4vw, 20px);
  background: rgba(255, 255, 255, .94);
  border:
    1px
    solid
    rgba(255, 255, 255, .18);
  border-radius: clamp(14px, 4vw, 20px);
}

.bouquet-needs__number {
  display: grid;
  place-items: center;
  width: clamp(42px, 11vw, 50px);
  height: clamp(42px, 11vw, 50px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--bouquet-main) 0%,
      var(--bouquet-main-dark) 100%
    );
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.3vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.bouquet-needs__list p {
  color: #3a2b30;
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1.6;
}

.bouquet-needs .bouquet-needs__lead {
  margin-top: clamp(22px, 6vw, 30px);
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
  text-align: left;
}


/* =========================
   Bouquet Common Heading
========================= */

.bouquet-subheading {
  margin-bottom: clamp(32px, 8.5vw, 48px);
  text-align: center;
}

.bouquet-subheading h3 {
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6.2vw, 3rem);
  line-height: 1.55;
}

.bouquet-subheading p {
  margin-top: clamp(16px, 4.5vw, 22px);
  color: var(--color-text);
  font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  line-height: 1.95;
  text-align: left;
}


/* =========================
   Bouquet Reasons
========================= */

.bouquet-reasons {
  margin-bottom: clamp(76px, 19vw, 118px);
}

.bouquet-reasons__list {
  display: grid;
  gap: clamp(28px, 7.5vw, 40px);
}

.bouquet-reason-card {
  overflow: hidden;
  background: #ffffff;
  border:
    1px
    solid
    var(--bouquet-border);
  border-radius: clamp(20px, 5.5vw, 28px);
  box-shadow:
    0 16px 36px rgba(80, 43, 54, .10);
}

.bouquet-reason-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.bouquet-reason-card__body {
  position: relative;
  padding:
    clamp(24px, 6.5vw, 34px)
    clamp(20px, 5.5vw, 30px)
    clamp(26px, 7vw, 38px);
}

.bouquet-reason-card__number {
  position: absolute;
  top: clamp(-25px, -6vw, -20px);
  left: clamp(20px, 5.5vw, 30px);
  display: grid;
  place-items: center;
  width: clamp(48px, 13vw, 58px);
  height: clamp(48px, 13vw, 58px);
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--bouquet-main) 0%,
      var(--bouquet-main-dark) 100%
    );
  border:
    4px
    solid
    #ffffff;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
}

.bouquet-reason-card h4 {
  margin:
    clamp(8px, 2.5vw, 12px)
    0
    clamp(12px, 3.5vw, 17px);
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5.2vw, 2.35rem);
  line-height: 1.5;
  letter-spacing: .05em;
}

.bouquet-reason-card p {
  color: var(--color-text);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.9;
}

.bouquet-reason-card small {
  display: block;
  margin-top: clamp(10px, 3vw, 14px);
  color: #77706f;
  font-size: clamp(1.05rem, 2.9vw, 1.2rem);
  line-height: 1.6;
}


/* =========================
   Bouquet Plans
========================= */

.bouquet-plans {
  padding:
    clamp(40px, 10.5vw, 58px)
    clamp(18px, 5vw, 28px);
  background:
    linear-gradient(
      180deg,
      #fbf3f5 0%,
      #ffffff 46%,
      #f6ecef 100%
    );
  border:
    1px
    solid
    var(--bouquet-border);
  border-radius: clamp(24px, 6.5vw, 34px);
  box-shadow:
    0 20px 44px rgba(80, 43, 54, .10);
}

.bouquet-plans__image {
  margin-bottom: clamp(28px, 7.5vw, 40px);
  overflow: hidden;
  border-radius: clamp(16px, 4.5vw, 24px);
}

.bouquet-plans__image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.bouquet-plans__list {
  display: grid;
  gap: clamp(16px, 4.5vw, 22px);
}

.bouquet-plan-card {
  position: relative;
  padding:
    clamp(22px, 6vw, 30px)
    clamp(18px, 5vw, 26px);
  overflow: hidden;
  background: rgba(255, 255, 255, .96);
  border:
    1px
    solid
    rgba(155, 95, 112, .20);
  border-radius: clamp(16px, 4.5vw, 22px);
  text-align: center;
  box-shadow:
    0 12px 26px rgba(80, 43, 54, .08);
}

.bouquet-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      var(--bouquet-main) 0%,
      #d3a1af 100%
    );
}

.bouquet-plan-card:nth-child(2)::before {
  background:
    linear-gradient(
      90deg,
      #a87b45 0%,
      #d9b976 100%
    );
}

.bouquet-plan-card:nth-child(3) {
  border-color: rgba(168, 123, 69, .32);
  background:
    linear-gradient(
      145deg,
      #fffdf8 0%,
      #fff8e8 100%
    );
}

.bouquet-plan-card:nth-child(3)::before {
  background:
    linear-gradient(
      90deg,
      #8b622f 0%,
      #d4ad62 100%
    );
}

.bouquet-plan-card__en {
  display: block;
  margin-bottom: clamp(6px, 2vw, 9px);
  color: var(--bouquet-main);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
}

.bouquet-plan-card:nth-child(2) .bouquet-plan-card__en,
.bouquet-plan-card:nth-child(3) .bouquet-plan-card__en {
  color: #8b622f;
}

.bouquet-plan-card h4 {
  margin: 0 0 clamp(10px, 3vw, 14px);
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.3vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: .05em;
}

.bouquet-plan-card__price {
  color: #3a252c;
  line-height: 1.2;
}

.bouquet-plan-card__price strong {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 4.4rem);
  font-weight: 600;
  letter-spacing: .02em;
}

.bouquet-plan-card__price span {
  margin-left: .25em;
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  font-weight: 700;
}

.bouquet-plan-card .bouquet-plan-card__fee {
  margin-top: clamp(10px, 3vw, 14px);
  color: #756a6d;
  font-size: clamp(1.15rem, 3.2vw, 1.3rem);
  line-height: 1.5;
}

.bouquet-message {
  margin-top: clamp(30px, 8vw, 44px);
  padding:
    clamp(26px, 7vw, 36px)
    clamp(18px, 5vw, 28px);
  background:
    linear-gradient(
      145deg,
      #714150 0%,
      #45242e 100%
    );
  border-radius: clamp(18px, 5vw, 26px);
  text-align: center;
}

.bouquet-message__label {
  display: inline-block;
  margin-bottom: clamp(10px, 3vw, 14px);
  color: #efdce1;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
}

.bouquet-message h4 {
  margin: 0 0 clamp(12px, 3.5vw, 17px);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.4vw, 2.45rem);
  line-height: 1.55;
  letter-spacing: .05em;
}

.bouquet-message p {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.35rem, 3.7vw, 1.55rem);
  line-height: 1.85;
}

.bouquet-notes {
  display: grid;
  gap: clamp(8px, 2.5vw, 12px);
  margin-top: clamp(24px, 6.5vw, 34px);
}

.bouquet-notes li {
  position: relative;
  padding-left: 1.2em;
  color: #6d6466;
  font-size: clamp(1.1rem, 3vw, 1.25rem);
  line-height: 1.7;
}

.bouquet-notes li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}



/* =========================
   14. Footer
========================= */
.site-footer {
  padding:
    48px
    var(--section-x)
    36px;
  color: var(--color-white);
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
  text-align: center;
}

.site-footer__sns ul {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__sns li {
  list-style: none;
}

.site-footer__sns a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.site-footer__sns img {
  display: block;
  width: 26px;
  height: auto;
}

.site-footer__nav ul {
  display: grid;
  gap: 10px;
  margin:
    0
    0
    28px;
  padding: 0;
}

.site-footer__nav li {
  list-style: none;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, .82);
  font-size: var(--fz-s);
  line-height: 1.7;
  text-decoration: none;
}

.site-footer__copy {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   Utility
========================= */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-beige);
  outline-offset: 3px;
}

#top-menu .menu-btn:focus,
#top-menu .menu-btn:focus-visible {
  outline: none;
}