:root {
  --paper: #f8f3ec;
  --milk: #fffdf8;
  --cream: #f2e9dc;
  --ink: #332d28;
  --muted: #766c62;
  --soft: #9b8d80;
  --gold: #a87328;
  --sage: #7f8b76;
  --line: rgba(83, 66, 51, 0.18);
  --shadow: 0 24px 70px rgba(59, 43, 31, 0.12);
  --title-font: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  --body-font: "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--title-font);
  line-height: 1.9;
}

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

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

section[id] {
  scroll-margin-top: 170px;
}

button,
input,
textarea {
  font: inherit;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 400;
  line-height: 1.14;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.25;
}

h3 {
  margin-bottom: 22px;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.3;
}

p,
li,
summary,
input,
textarea,
button,
.button {
  font-family: var(--body-font);
}

p,
li {
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 2;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--milk);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(62, 45, 31, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-family: var(--title-font);
  font-size: 15px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(24px, 0.13fr) minmax(300px, 550px) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(43, 32, 24, 0.78),
    rgba(43, 32, 24, 0.5) 35%,
    rgba(43, 32, 24, 0.12) 68%,
    rgba(43, 32, 24, 0)
  );
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  padding-top: 72px;
  color: var(--milk);
  text-shadow: 0 2px 24px rgba(31, 22, 16, 0.3);
}

.label,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 15px;
  text-transform: uppercase;
}

.hero .label {
  color: #f1dcca;
}

.hero-copy p:not(.label) {
  max-width: 540px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.9;
  word-break: auto-phrase;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 248, 0.65);
  border-radius: 999px;
  padding: 0 28px;
  font-size: 16px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--milk);
}

.hero .button.primary {
  border-color: var(--milk);
  background: var(--milk);
  color: var(--ink);
}

.button.ghost {
  color: var(--milk);
}

.hero-image {
  position: absolute;
  inset: 0;
}

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

.page-index {
  position: sticky;
  z-index: 12;
  top: 86px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.88);
  padding: 16px clamp(20px, 6vw, 92px);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.page-index::-webkit-scrollbar {
  display: none;
}

.page-index a {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 1px solid rgba(168, 115, 40, 0.32);
  border-radius: 999px;
  background: transparent;
  color: rgba(51, 45, 40, 0.78);
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 15px 4px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.page-index a:hover {
  border-color: rgba(168, 115, 40, 0.72);
  color: var(--gold);
  transform: translateY(-1px);
}

.section-space {
  padding: clamp(86px, 12vw, 158px) clamp(22px, 6vw, 92px);
}

.section-title {
  max-width: 1120px;
  margin: 0 auto clamp(46px, 7vw, 86px);
}

.section-title p:not(.section-kicker) {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 2;
}

.wide-story,
.gateway-grid,
.flow-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.story-copy {
  max-width: 640px;
}

.lead {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.6;
}

.story-image,
.feature-image,
.flow-photo,
.option-story figure {
  margin: 0;
}

.story-image img,
.feature-image img,
.flow-photo img,
.photo-collage img,
.contact-visual img,
.option-story img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.quiet-list,
.check-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li,
.check-list li {
  position: relative;
  padding-left: 32px;
}

.quiet-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(168, 115, 40, 0.42);
  border-radius: 2px;
  background: linear-gradient(135deg, #c89437, #8f5f1c);
  box-shadow: 0 4px 10px rgba(168, 115, 40, 0.16);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.gateway {
  background: var(--milk);
}

.gateway-copy {
  max-width: 660px;
}

.gateway-diagram {
  margin: 0;
}

.gateway-diagram img {
  width: min(100%, 560px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.route-map {
  position: relative;
  display: grid;
  gap: 24px;
  border: 1px solid rgba(168, 115, 40, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.88), rgba(255, 253, 248, 0.9)),
    radial-gradient(circle at 50% 34%, rgba(168, 115, 40, 0.12), transparent 38%);
  box-shadow: var(--shadow);
  padding: 0 clamp(18px, 3vw, 34px) clamp(24px, 4vw, 38px);
  overflow: hidden;
}

.diagram-title {
  margin: 0 calc(clamp(18px, 3vw, 34px) * -1) 0;
  background: linear-gradient(90deg, #34312d, #5f5a51);
  color: var(--milk);
  font-family: var(--title-font);
  font-size: clamp(20px, 2.7vw, 30px);
  line-height: 1.3;
  padding: 14px 18px;
  text-align: center;
}

.route-group {
  position: relative;
}

.route-group p {
  width: fit-content;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #f4eadb;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 22px;
  text-align: center;
}

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

.route-pills span {
  position: relative;
  display: grid;
  min-height: 96px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(168, 115, 40, 0.46);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.route-top .route-pills span::after,
.shop-card::after {
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 26px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.route-top .route-pills span::after {
  bottom: -27px;
}

.route-top .route-pills span:first-child::after {
  transform: translateX(-50%) rotate(-32deg);
  transform-origin: bottom;
}

.route-top .route-pills span:last-child::after {
  transform: translateX(-50%) rotate(32deg);
  transform-origin: bottom;
}

.shop-card::after {
  bottom: -26px;
}

.route-center {
  position: relative;
  justify-self: center;
}

.shop-card {
  display: grid;
  width: min(360px, 88%);
  border: 1px solid rgba(168, 115, 40, 0.46);
  border-radius: 8px;
  background: var(--milk);
  color: var(--gold);
  padding: 12px 12px 18px;
  text-align: center;
}

.shop-card img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 45%;
}

.route-center span {
  display: block;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
}

.route-center small {
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 700;
  text-align: center;
}

.icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 6px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.icon.google {
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  font-family: Arial, sans-serif;
}

.icon.instagram {
  background: radial-gradient(circle at 30% 100%, #feda75, #fa7e1e 32%, #d62976 56%, #962fbf 78%, #4f5bd5);
}

.icon.instagram::before {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 7px;
  content: "";
}

.icon.review {
  border: 2px solid #3e3a35;
  background: transparent;
}

.icon.review::before {
  color: #3e3a35;
  content: "...";
  transform: translateY(-5px);
}

.icon.map {
  border-radius: 8px;
  background: linear-gradient(135deg, #34a853 0 36%, #fbbc05 36% 62%, #4285f4 62%);
}

.icon.map::before {
  color: #ea4335;
  content: "●";
  font-size: 22px;
}

.icon.calendar {
  border: 2px solid #d6cec2;
  border-radius: 8px;
  background: #f5f1eb;
}

.icon.calendar::before {
  color: var(--soft);
  content: "□";
  font-size: 22px;
}

.icon.phone {
  background: #29b04a;
}

.icon.phone::before {
  content: "☎";
  font-size: 20px;
}

.contents {
  background: linear-gradient(180deg, var(--paper), var(--milk) 28%, var(--paper));
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(34px, 8vw, 116px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto clamp(82px, 12vw, 150px);
}

.feature-row.reverse .feature-image,
.feature-row.reverse .photo-collage,
.feature-row.reverse .contact-visual {
  order: 2;
}

.feature-row.last {
  margin-bottom: 0;
}

.feature-copy {
  max-width: 680px;
}

.number {
  display: block;
  margin-bottom: 18px;
  color: #c9b8ad;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.feature-copy p {
  color: var(--ink);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 2.05;
}

.photo-collage,
.contact-visual {
  position: relative;
}

.feature-image img {
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

/* こだわり・想いの縦長写真は、花瓶や小物が見えるよう下寄りに表示 */
.feature-row.reverse .feature-image img {
  object-position: center 78%;
}

.photo-collage img,
.contact-visual img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.menu-card {
  position: absolute;
  right: -34px;
  bottom: -26px;
  width: min(220px, 58%);
  background: rgba(255, 253, 248, 0.96);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(59, 43, 31, 0.16);
  padding: 20px 22px;
}

.menu-card p {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.menu-card-item:first-of-type {
  border-top: 0;
}

.menu-card-item span {
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 14px;
}

.menu-card-item strong {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 400;
}

.phone-card {
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  bottom: -34px;
  width: min(176px, 46%);
  border: 7px solid #25201c;
  border-radius: 26px;
  background: var(--milk);
  box-shadow: 0 18px 40px rgba(37, 32, 28, 0.22);
  padding: 22px 16px;
  text-align: center;
}

.phone-card span {
  display: block;
  width: 46px;
  height: 4px;
  margin: -9px auto 18px;
  border-radius: 999px;
  background: #25201c;
}

.phone-card p {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 17px;
}

.phone-card button {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #edf5e9;
  color: var(--ink);
  padding: 7px 10px;
  font-size: 15px;
}

.phone-card button + button {
  background: #f4ece0;
}

.flow {
  background: linear-gradient(180deg, var(--milk), #f6efe6);
}

.flow-intro {
  margin-bottom: clamp(44px, 7vw, 76px);
}

.flow-intro .section-title {
  margin: 0;
}

.flow-photo img {
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

.flow-step {
  position: relative;
  border-top: 1px solid rgba(168, 115, 40, 0.38);
  background: rgba(255, 253, 248, 0.58);
  padding: 18px 0 28px;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 96px;
  right: -20px;
  color: var(--gold);
  content: ">";
  font-family: var(--title-font);
  font-size: 22px;
}

.flow-step span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 18px 0 20px 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c89437, #855718);
  color: var(--milk);
  font-family: var(--title-font);
  font-size: 22px;
}

.step-photo {
  width: calc(100% - 36px);
  aspect-ratio: 1.32 / 1;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(59, 43, 31, 0.1);
  object-fit: cover;
}

.flow-step h3,
.flow-step p {
  padding-right: 18px;
  padding-left: 18px;
}

.flow-step h3 {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(23px, 2.1vw, 29px);
  font-weight: 400;
  line-height: 1.5;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.95;
}

.plan {
  background: linear-gradient(180deg, #f0e7da, #f7f0e7);
}

.plan-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  max-width: 1120px;
  margin: 0 auto;
}

.plan-panel {
  position: relative;
  border-top: 1px solid rgba(168, 115, 40, 0.44);
  background: rgba(255, 253, 248, 0.62);
  padding: clamp(34px, 5vw, 56px) clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 54px rgba(59, 43, 31, 0.07);
}

.plan-name,
.option-name {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

.plan-panel h3,
.option-story h3 {
  margin-bottom: 22px;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.3;
}

.price-line {
  display: grid;
  gap: 0;
  margin: 26px 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.price-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-row span {
  width: auto;
  border-radius: 999px;
  background: rgba(168, 115, 40, 0.1);
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 400;
  padding: 7px 16px;
  text-align: center;
}

.price-row strong {
  color: var(--ink);
  font-family: var(--title-font);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
}

.price-row.monthly strong {
  color: var(--gold);
  font-size: clamp(26px, 2.8vw, 34px);
}

.plan-subtitle {
  margin: -10px 0 24px;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
}

.note {
  display: grid;
  gap: 9px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.note p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
}

.include-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.plan-panel .check-list {
  gap: 16px;
  margin-top: 0;
}

.plan-panel .check-list li {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
}

.option-story {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(280px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  max-width: 1120px;
  margin: clamp(64px, 9vw, 104px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(42px, 6vw, 68px) 0;
}

.option-story img {
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.option-story h3 {
  margin-bottom: 12px;
}

.option-price {
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1;
}

.option-text {
  display: grid;
  gap: 14px;
  max-width: 660px;
}

.option-text p,
.option-story p:not(.option-name):not(.option-price) {
  max-width: 640px;
  color: var(--ink);
  font-size: 17px;
  line-height: 2.05;
  margin: 0;
}

.homepage-note {
  max-width: 1120px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  color: var(--ink);
  font-size: 17px;
  text-align: center;
}

.faq {
  background: var(--milk);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  display: inline-block;
  width: 36px;
  color: var(--gold);
  content: "Q.";
  font-family: var(--title-font);
}

.faq-item p {
  margin: 14px 0 0 36px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.95;
}

.contact {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.line-contact {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}

.line-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.line-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.line-qr {
  width: 140px;
  height: 140px;
  display: block;
}

.line-qr-label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.line-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  border-radius: 999px;
  padding: 16px 36px;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.line-button:hover {
  background: #05b34c;
  transform: translateY(-2px);
}

.line-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.line-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.share-block {
  margin-top: 32px;
}

.share-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 15px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.share-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.share-circle svg {
  width: 24px;
  height: 24px;
}

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

.share-circle.line {
  background: #06c755;
  color: #fff;
}

.share-circle.x {
  background: #000;
  color: #fff;
}

.share-circle.more {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.6);
  color: var(--ink);
}

.share-circle.more:hover {
  border-color: var(--gold);
}

.share-caption {
  margin: 14px 0 0;
  color: var(--soft);
  font-family: var(--body-font);
  font-size: 13px;
  line-height: 1.7;
}

.brand-mark {
  margin: clamp(48px, 8vw, 80px) 0 0;
  color: var(--gold);
  font-family: var(--title-font);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.brand-mark span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.1em;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 17px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(22px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: var(--milk);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer small {
  color: var(--muted);
  font-family: var(--body-font);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease var(--delay, 0ms), transform 0.8s ease var(--delay, 0ms);
}

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

.headline-animate {
  position: relative;
  display: block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition:
    opacity 2.4s ease var(--delay, 0ms),
    transform 2.4s cubic-bezier(0.19, 1, 0.22, 1) var(--delay, 0ms),
    filter 2.4s ease var(--delay, 0ms);
}

.headline-animate::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 18px;
  background: currentColor;
  content: "";
  opacity: 0.32;
  transition: width 2.4s ease 0.8s;
}

.headline-animate.is-visible,
.reveal.is-visible .headline-animate,
.hero .headline-animate {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.headline-animate.is-visible::after,
.reveal.is-visible .headline-animate::after,
.hero .headline-animate::after {
  width: min(190px, 42vw);
}

@keyframes heroTitleFlow {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero .headline-animate span {
  opacity: 0;
  animation: heroTitleFlow 2.35s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero .headline-animate span:nth-child(2) {
  animation-delay: 0.65s;
}

.hero .headline-animate span:nth-child(3) {
  animation-delay: 1.3s;
}

@media (max-width: 900px) {
  .site-header {
    padding: 18px 20px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    display: none;
    min-width: 190px;
    border: 1px solid var(--line);
    background: var(--milk);
    color: var(--ink);
    padding: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .hero {
    min-height: 92svh;
    grid-template-columns: 20px minmax(0, 1fr) 20px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(43, 32, 24, 0.76), rgba(43, 32, 24, 0.34));
  }

  .hero-copy {
    grid-column: 2;
  }

  .page-index {
    position: static;
    justify-content: flex-start;
    padding: 13px 20px;
  }

  .page-index a {
    min-height: 36px;
    font-size: 16px;
    padding: 0 12px 4px;
  }

  h1 {
    max-width: 9em;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1.18;
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  h3 {
    font-size: clamp(31px, 8vw, 40px);
  }

  p,
  li {
    font-size: 18px;
    line-height: 2;
  }

  .section-title p:not(.section-kicker),
  .hero-copy p:not(.label),
  .gateway-copy p,
  .lead {
    font-size: 18px;
    line-height: 2;
  }

  .lead {
    font-family: var(--title-font);
    font-size: 27px;
    line-height: 1.65;
  }

  .wide-story,
  .gateway-grid,
  .flow-intro,
  .feature-row,
  .plan-layout,
  .option-story,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-image,
  .feature-row.reverse .photo-collage,
  .feature-row.reverse .contact-visual {
    order: 0;
  }

  .feature-row {
    margin-bottom: 82px;
  }

  .menu-card {
    right: clamp(14px, 4vw, 24px);
    bottom: -22px;
    width: min(220px, 60%);
  }

  .route-pills {
    grid-template-columns: 1fr;
  }

  .diagram-style .route-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diagram-style .route-pills span {
    min-height: 86px;
    padding: 8px 5px;
    font-size: 12px;
  }

  .route-center {
    width: 180px;
    height: 180px;
  }

  .diagram-style .route-center {
    width: min(330px, 92%);
    height: auto;
  }

  .flow-intro {
    margin-bottom: 60px;
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -23px;
    left: 18px;
    transform: rotate(90deg);
  }

  .flow-step h3 {
    font-size: 31px;
    font-weight: 400;
  }

  .flow-step p {
    font-size: 18px;
    line-height: 1.95;
  }

  .plan-panel {
    padding: 38px 28px;
  }

  .option-story {
    margin-top: 58px;
    padding: 38px 0;
  }

  .faq-item p {
    margin-left: 0;
  }

  .site-footer {
    display: grid;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .section-space {
    padding: 84px 24px;
  }

  .hero-copy p:not(.label) {
    max-width: 26em;
  }

  .story-image img,
  .feature-image img,
  .flow-photo img,
  .photo-collage img,
  .contact-visual img,
  .option-story img {
    min-height: 260px;
    object-fit: cover;
  }

  .menu-card {
    right: 14px;
    bottom: -20px;
    width: min(200px, 64%);
    padding: 16px 18px;
  }

  .phone-card {
    right: 18px;
    bottom: -26px;
    width: 152px;
    padding: 18px 12px;
  }

  .diagram-style {
    padding-right: 12px;
    padding-left: 12px;
  }

  .diagram-style .diagram-title {
    margin-right: -12px;
    margin-left: -12px;
  }

  .diagram-style .route-group p {
    font-size: 12px;
    padding: 5px 12px;
  }

  .diagram-style .route-pills {
    gap: 7px;
  }

  .diagram-style .route-pills span {
    min-height: 78px;
    font-size: 10px;
  }

  .diagram-style .icon {
    width: 30px;
    height: 30px;
  }

  .route-top .route-pills span::after,
  .shop-card::after {
    height: 20px;
  }

  .route-top .route-pills span::after {
    bottom: -21px;
  }

  .shop-card::after {
    bottom: -20px;
  }

  .contact-visual {
    margin-bottom: 32px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .price-row span {
    width: fit-content;
    font-size: 16px;
    line-height: 1.55;
    padding: 7px 13px;
  }

  .price-row strong {
    font-size: 46px;
  }

  .price-row.monthly strong {
    font-size: 34px;
    line-height: 1.25;
  }

  .plan-panel h3,
  .option-story h3 {
    font-size: 34px;
  }

  .note p,
  .plan-panel .check-list li,
  .option-text p,
  .option-story p:not(.option-name):not(.option-price) {
    font-size: 18px;
    line-height: 2;
  }

  .include-title {
    font-size: 26px;
  }

  .option-price {
    font-size: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
