@charset "UTF-8";

/* =========================
   Base
========================= */

:root {
  --color-text: #1f1f1f;
  --color-muted: #5f5a52;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-soft: #fbf3f5;
  --color-border: rgba(155, 95, 112, .22);
  --color-main: #9b5f70;
  --color-main-dark: #713f4e;
  --color-accent: #b28a4d;

  --container: 1120px;
  --container-narrow: 920px;
  --container-wide: 1240px;

  --font-serif:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "HGS明朝E",
    serif;
  --font-sans:
    "Yu Gothic",
    "YuGothic",
    "Hiragino Kaku Gothic ProN",
    "Meiryo",
    sans-serif;

  --shadow-card:
    0 18px 42px rgba(80, 43, 54, .08);
  --shadow-strong:
    0 24px 60px rgba(80, 43, 54, .14);

  --z-header: 100;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 1200px;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .03em;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  margin-bottom: 1.1em;
}

/* =========================
   Common Layout
========================= */

.section-inner {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.section-inner--narrow {
  width: min(100% - 48px, var(--container-narrow));
}

.section-inner--wide {
  width: min(92%, var(--container-wide));
}

/* =========================
   Header
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid rgba(7, 21, 37, .10);
  background: rgba(246, 241, 232, .92);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  width: min(100% - 80px, 1400px);
  height: 90px;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.header__logo:hover {
  opacity: .78;
  transform: translateY(-1px);
}

.header__logo img {
  width: 220px;
  height: auto;
}

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

.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #f4e8eb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      #f4e8eb 0%,
      #f4e8eb 24%,
      rgba(244, 232, 235, .96) 34%,
      rgba(244, 232, 235, .82) 46%,
      rgba(244, 232, 235, .42) 60%,
      rgba(244, 232, 235, 0) 74%
    );
}

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

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

.hero__content {
  position: relative;
  z-index: 2;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
  padding-top: 58px;
}

#hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin:
    0
    0
    18px;
  padding:
    8px
    22px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--color-main) 0%,
      var(--color-main-dark) 100%
    );
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  box-shadow:
    0 10px 22px rgba(113, 63, 78, .20);
}

.hero__lead {
  width: 620px;
  margin: 20px 0 0;
  color: #5b4149;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .035em;
}

/* =========================
   08. パンくず
========================= */

.breadcrumb {
  padding:
    clamp(9px, 1vw, 14px)
    0;
  font-size: clamp(1.45rem, 1vw, 1.56rem);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  list-style: none;
}

.breadcrumb li + li::before {
  content: ">";
  margin-right: 10px;
}

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

.breadcrumb a:hover {
  text-decoration: none;
}

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

.examples-intro {
  padding:
    88px
    0
    112px;
  background:
    linear-gradient(
      180deg,
      #f8f2f4 0%,
      #ffffff 28%,
      #fbf5f7 100%
    );
}

.examples-intro .section-inner {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
}

.bouquet-intro {
  max-width: 820px;
  margin:
    0
    auto
    48px;
  text-align: center;
}

.bouquet-intro h2 {
  margin:
    0
    0
    22px;
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.bouquet-intro p {
  margin: 0;
  color: #4f4548;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .04em;
}

.bouquet-intro__visual {
  width: 920px;
  margin:
    0
    auto
    88px;
}

.bouquet-intro__visual img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow:
    0 24px 54px rgba(80, 43, 54, .14);
}

.bouquet-intro__visual p {
  margin:
    12px
    0
    0;
  color: #777071;
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}


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

.bouquet-needs {
  margin-bottom: 108px;
  padding:
    48px
    54px
    44px;
  background:
    linear-gradient(
      135deg,
      #7d4b5b 0%,
      #4b2934 100%
    );
  border-radius: 30px;
  box-shadow:
    0 24px 54px rgba(77, 41, 52, .20);
}

.bouquet-needs__heading {
  margin-bottom: 34px;
  text-align: center;
}

.bouquet-needs__heading > span {
  display: inline-block;
  margin-bottom: 14px;
  padding:
    7px
    18px;
  color: #4d2934;
  background: #f2d9df;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .06em;
}

.bouquet-needs__heading h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

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

.bouquet-needs__list li {
  display: grid;
  grid-template-columns:
    54px
    minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 92px;
  padding:
    18px
    22px;
  background: rgba(255, 255, 255, .96);
  border:
    1px
    solid
    rgba(255, 255, 255, .20);
  border-radius: 18px;
}

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

.bouquet-needs__list p {
  margin: 0;
  color: #3a2b30;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.7;
}

.bouquet-needs__lead {
  margin:
    28px
    0
    0;
  color: rgba(255, 255, 255, .90);
  font-size: 1.5rem;
  line-height: 1.85;
  text-align: center;
}


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

.bouquet-subheading {
  max-width: 820px;
  margin:
    0
    auto
    46px;
  text-align: center;
}

.bouquet-subheading h3 {
  margin: 0;
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.bouquet-subheading p {
  margin:
    20px
    auto
    0;
  color: #4f4548;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .04em;
}


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

.bouquet-reasons {
  margin-bottom: 110px;
}

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

.bouquet-reason-card {
  overflow: hidden;
  background: #ffffff;
  border:
    1px
    solid
    var(--color-border);
  border-radius: 24px;
  box-shadow:
    0 18px 42px rgba(80, 43, 54, .10);
}

.bouquet-reason-card__image {
  height: 230px;
  overflow: hidden;
}

.bouquet-reason-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform .45s ease;
}

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

.bouquet-reason-card__body {
  position: relative;
  min-height: 270px;
  padding:
    38px
    28px
    30px;
}

.bouquet-reason-card__number {
  position: absolute;
  top: -30px;
  left: 26px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--color-main) 0%,
      var(--color-main-dark) 100%
    );
  border:
    5px
    solid
    #ffffff;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.bouquet-reason-card h4 {
  margin:
    4px
    0
    14px;
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.bouquet-reason-card p {
  margin: 0;
  color: #4f4548;
  font-size: 1.45rem;
  line-height: 1.9;
  letter-spacing: .04em;
}

.bouquet-reason-card small {
  display: block;
  margin-top: 12px;
  color: #777071;
  font-size: 1.2rem;
  line-height: 1.6;
}


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

.bouquet-plans {
  padding:
    60px
    54px
    52px;
  background:
    linear-gradient(
      180deg,
      #fbf3f5 0%,
      #ffffff 46%,
      #f6ecef 100%
    );
  border:
    1px
    solid
    var(--color-border);
  border-radius: 30px;
  box-shadow:
    0 24px 54px rgba(80, 43, 54, .10);
}

.bouquet-plans__image {
  width: 760px;
  margin:
    0
    auto
    42px;
  overflow: hidden;
  border-radius: 22px;
}

.bouquet-plans__image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

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

.bouquet-plan-card {
  position: relative;
  overflow: hidden;
  padding:
    30px
    24px
    28px;
  background: rgba(255, 255, 255, .96);
  border:
    1px
    solid
    rgba(155, 95, 112, .20);
  border-radius: 20px;
  text-align: center;
  box-shadow:
    0 14px 30px rgba(80, 43, 54, .08);
}

.bouquet-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      var(--color-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: 8px;
  color: var(--color-main);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  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
    12px;
  color: #3a252c;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
}

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

.bouquet-plan-card__price strong {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.bouquet-plan-card__price span {
  margin-left: .25em;
  font-size: 1.6rem;
  font-weight: 700;
}

.bouquet-plan-card .bouquet-plan-card__fee {
  margin:
    12px
    0
    0;
  color: #756a6d;
  font-size: 1.3rem;
  line-height: 1.5;
}

.bouquet-message {
  margin-top: 38px;
  padding:
    34px
    38px;
  background:
    linear-gradient(
      135deg,
      #714150 0%,
      #45242e 100%
    );
  border-radius: 22px;
  text-align: center;
}

.bouquet-message__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #efdce1;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .18em;
}

.bouquet-message h4 {
  margin:
    0
    0
    14px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.bouquet-message p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.5rem;
  line-height: 1.85;
}

.bouquet-notes {
  display: grid;
  width: fit-content;
  gap: 8px;
  margin:
    28px
    0
    0
    auto;
  padding: 0;
  list-style: none;
}

.bouquet-notes li {
  color: #6d6466;
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: right;
}


/* =========================
   15. Footer
========================= */

.footer {
  padding:
    clamp(64px, 7vw, 92px)
    0
    clamp(28px, 3vw, 40px);
  color: #ffffff;
  background:
    linear-gradient(
      180deg,
      #0f1317 0%,
      #171b20 100%
    );
}

.footer__inner {
  display: grid;
  grid-template-columns:
    1.1fr
    .9fr;
  gap: clamp(36px, 3vw, 56px);
  width: min(88%, var(--container));
  margin: 0 auto;
}

.footer__logo-link {
  display: inline-block;
  color: inherit;
  transition:
    opacity .3s ease,
    transform .3s ease,
    text-shadow .3s ease;
}

.footer__logo-link:hover {
  opacity: .72;
  transform: translateY(-2px);
  text-shadow:
    0 0 8px rgba(255, 255, 255, .18),
    0 0 18px rgba(255, 255, 255, .14);
}

.footer__logo {
  margin-bottom: 24px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.6;
  letter-spacing: .08em;
}

.footer__lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.5rem;
  line-height: 2;
}

.footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.45rem;
  line-height: 2;
}

.footer__contact a {
  transition: color .2s ease;
}

.footer__contact a:hover {
  color: #ffffff;
}

.footer__nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__sns {
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.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);
  transition:
    transform .2s ease,
    background .2s ease;
}

.footer__sns a:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap:
    14px
    18px;
  max-width: 460px;
}

.footer__nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 1.4rem;
  transition: color .2s ease;
}

.footer__nav a:hover {
  color: #ffffff;
}

.footer__copy {
  display: block;
  margin-top: 64px;
  color: rgba(255, 255, 255, .42);
  font-size: 1.2rem;
  letter-spacing: .06em;
  text-align: center;
}

/* =========================
   Focus
========================= */

a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}