.gift-page {
  --gift-paper: rgba(255,255,255,.88);
  --gift-line: rgba(17,17,17,.08);
  --gift-accent: #87aeb9;
  --gift-accent-dark: #6b95a1;
  --gift-muted: rgba(24,24,24,.7);
  background:
    radial-gradient(circle at top left, rgba(135,174,185,.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(205,182,162,.16), transparent 22%),
    linear-gradient(180deg, #fcfbf9 0%, #ffffff 42%, #f8f5f1 100%);
  color: #181818;
}

.gift-page .site-header {
  background: rgba(255,255,255,.92);
}

.gift-page .btn-primary {
  background: var(--gift-accent);
}

.gift-page .btn-primary:hover {
  background: var(--gift-accent-dark);
}

.gift-page .btn-outline {
  border-color: rgba(24,24,24,.7);
}

.gift-hero,
.gift-about,
.gift-flow,
.gift-content,
.gift-price,
.gift-scene,
.gift-faq,
.gift-cta {
  padding: 92px 0;
}

.gift-hero {
  padding-top: 100px;
}

.gift-hero__inner,
.gift-price-card,
.gift-copy-box,
.gift-faq-item,
.gift-cta__inner {
  background: var(--gift-paper);
  border: 1px solid var(--gift-line);
  border-radius: 30px;
  box-shadow: 0 22px 56px rgba(0,0,0,.08);
}

.gift-hero__inner,
.gift-price-card,
.gift-cta__inner {
  text-align: center;
  padding: 56px 32px;
}

.gift-narrow {
  max-width: 860px;
}

.gift-eyebrow,
.gift-section-heading__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gift-accent-dark);
}

.gift-hero h1,
.gift-section-heading h2,
.gift-price-card h2,
.gift-faq-item h3,
.gift-cta__inner h2,
.gift-order__inner h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .05em;
}

.gift-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.gift-hero p,
.gift-copy-box p,
.gift-flow-list,
.gift-grid-list,
.gift-price-card p,
.gift-faq-item p,
.gift-order__inner p {
  color: var(--gift-muted);
  line-height: 2;
}

.gift-hero p {
  margin: 22px auto 0;
  max-width: 34em;
  font-size: clamp(16px, 1.9vw, 20px);
}

.gift-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.gift-hero__actions .btn {
  margin-top: 0;
}

.gift-section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.gift-section-heading h2,
.gift-price-card h2,
.gift-cta__inner h2,
.gift-order__inner h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.gift-copy-box {
  padding: 36px 30px;
  display: grid;
  gap: 10px;
}

.gift-flow-list,
.gift-grid-list {
  margin: 0;
  padding: 0;
}

.gift-flow-list {
  list-style: none;
  display: grid;
  gap: 16px;
  counter-reset: gift-flow;
}

.gift-flow-list li,
.gift-grid-list li {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--gift-line);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(0,0,0,.04);
}

.gift-flow-list li {
  position: relative;
  padding: 22px 24px 22px 72px;
  list-style: none;
}

.gift-flow-list li::before {
  counter-increment: gift-flow;
  content: counter(gift-flow);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(135,174,185,.18);
  color: #2c4b55;
  display: grid;
  place-items: center;
  font-weight: 700;
}

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

.gift-grid-list li {
  padding: 24px 22px;
  text-align: center;
}

.gift-price-card .price {
  margin: 22px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  color: #2c4b55;
  font-weight: 700;
}

.gift-faq-list {
  display: grid;
  gap: 16px;
}

.gift-faq-item.faq-item {
  padding: 0;
  border-bottom: none;
  border: 1px solid rgba(44, 75, 85, 0.12);
  border-radius: 22px;
  background: var(--gift-paper);
  box-shadow: 0 14px 40px rgba(44, 75, 85, 0.06);
  overflow: hidden;
}

.gift-faq-item .faq-q {
  padding: 24px 26px;
  font-size: clamp(17px, 1.8vw, 22px);
  letter-spacing: 0.03em;
  color: var(--gift-ink);
}

.gift-faq-item .faq-q > span:first-child {
  flex: 1;
}

.gift-faq-item .faq-icon {
  color: #7fb6cb;
}

.gift-faq-item .faq-a__inner {
  padding: 0 26px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gift-muted);
}

.gift-faq-item.is-open .faq-a__inner {
  padding-bottom: 24px;
}

.gift-cta__inner .btn {
  margin-top: 24px;
}

.gift-order {
  padding: 100px 0 120px;
}

.gift-order__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 32px;
  text-align: center;
  background: var(--gift-paper);
  border: 1px solid var(--gift-line);
  border-radius: 30px;
  box-shadow: 0 22px 56px rgba(0,0,0,.08);
}

.gift-order__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .gift-page .header-inner {
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 18px 0 12px;
  }

  .gift-page .header-actions {
    margin-left: auto;
    gap: 10px;
  }

  .gift-page .header-actions .btn {
    width: 112px;
    min-width: 112px;
    min-height: 54px;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.2;
    justify-content: center;
  }

  .gift-page .brand {
    min-width: 0;
    max-width: calc(100% - 234px);
  }

  .gift-page .brand-title {
    font-size: 18px;
  }

  .gift-page .brand-sub {
    display: block;
    font-size: 9px;
    letter-spacing: 0;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .gift-hero,
  .gift-about,
  .gift-flow,
  .gift-content,
  .gift-price,
  .gift-scene,
  .gift-faq,
  .gift-cta,
  .gift-order {
    padding: 72px 0;
  }

  .gift-hero {
    padding-top: 76px;
  }

  .gift-hero__inner,
  .gift-price-card,
  .gift-copy-box,
  .gift-faq-item,
  .gift-cta__inner,
  .gift-order__inner {
    padding: 34px 22px;
    border-radius: 24px;
  }

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

  .gift-flow-list li {
    padding: 22px 20px 22px 64px;
  }

  .gift-hero__actions,
  .gift-order__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.gift-note-box {
  margin-top: 24px;
  padding: 28px 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--gift-line);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0,0,0,.04);
}

.gift-note-box h2 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}

.gift-info-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--gift-muted);
  line-height: 2;
}

.gift-info-list li + li {
  margin-top: 8px;
}

.gift-note-box--order {
  text-align: left;
}

@media (max-width: 768px) {
  .gift-note-box {
    padding: 24px 20px;
    border-radius: 22px;
  }
}
.gift-content-band {
  margin: 32px 0 0;
  padding: 12px 0;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--gift-line);
  border-radius: 26px;
  box-shadow: 0 16px 38px rgba(0,0,0,.04);
  overflow: hidden;
}

.gift-content-band__track {
  display: flex;
  width: max-content;
  gap: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: gift-band-scroll 30s linear infinite;
}

.gift-content-band__track img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: clamp(220px, 26vw, 320px);
}

@keyframes gift-band-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gift-content-band__track {
    animation: none;
  }
}

@media (max-width: 768px) {
  .gift-content-band {
    margin-top: 22px;
    padding: 8px 0;
    border-radius: 18px;
  }

  .gift-content-band__track {
    animation-duration: 18s;
  }

  .gift-content-band__track img {
    height: clamp(156px, 44vw, 220px);
    max-width: none;
  }
}

/* Luxe refresh */
.gift-page {
  --gift-paper: rgba(255,255,255,.9);
  --gift-line: rgba(126,110,85,.14);
  --gift-ink: #171412;
  --gift-gold: #b4976e;
  --gift-shadow: 0 28px 76px rgba(36,29,23,.11);
  --gift-shadow-soft: 0 18px 44px rgba(36,29,23,.07);
}

.gift-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 10%, rgba(180, 155, 112, .08), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(135, 174, 185, .12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(194,174,143,.05) 100%);
  z-index: 0;
}

.gift-page main,
.gift-page .site-header,
.gift-page .site-footer {
  position: relative;
  z-index: 1;
}

.gift-page .site-header {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(180, 155, 112, .12);
  box-shadow: 0 12px 40px rgba(41,35,29,.04);
}

.gift-page .btn {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.gift-page .btn:hover {
  transform: translateY(-1px);
}

.gift-page .btn-primary {
  background: linear-gradient(135deg, #9ec4cf 0%, #82abb8 58%, #739ca9 100%);
  border: 1px solid rgba(109,145,155,.35);
  box-shadow: 0 14px 30px rgba(118,156,167,.25);
}

.gift-page .btn-primary:hover {
  background: linear-gradient(135deg, #a7ccd6 0%, #88b0bc 58%, #759ca9 100%);
  box-shadow: 0 18px 36px rgba(118,156,167,.32);
}

.gift-page .btn-outline {
  background: rgba(255,255,255,.78);
  border-color: rgba(63,51,40,.24);
  box-shadow: 0 10px 28px rgba(41,35,29,.06);
}

.gift-page .btn-outline:hover {
  background: rgba(255,255,255,.95);
  border-color: rgba(180, 155, 112, .28);
}

.gift-hero__inner,
.gift-price-card,
.gift-copy-box,
.gift-faq-item.faq-item,
.gift-cta__inner,
.gift-order__inner,
.gift-note-box,
.gift-flow-list li,
.gift-grid-list li,
.gift-content-band {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(251,248,243,.93) 100%);
  border-color: rgba(126,110,85,.12);
  box-shadow: var(--gift-shadow-soft), inset 0 1px 0 rgba(255,255,255,.75);
}

.gift-hero__inner,
.gift-price-card,
.gift-copy-box,
.gift-cta__inner,
.gift-order__inner,
.gift-note-box {
  overflow: hidden;
}

.gift-hero__inner::before,
.gift-price-card::before,
.gift-copy-box::before,
.gift-cta__inner::before,
.gift-order__inner::before,
.gift-note-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.36) 0%, rgba(180,155,112,.05) 44%, rgba(135,174,185,.06) 100%);
}

.gift-hero__inner::after,
.gift-price-card::after,
.gift-cta__inner::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  width: 148px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(180,155,112,0), rgba(180,155,112,.9), rgba(180,155,112,0));
  pointer-events: none;
}

.gift-hero__inner,
.gift-price-card,
.gift-cta__inner {
  padding: 64px 38px;
  box-shadow: var(--gift-shadow), inset 0 1px 0 rgba(255,255,255,.78);
}

.gift-eyebrow,
.gift-section-heading__eyebrow {
  color: var(--gift-gold);
  letter-spacing: .36em;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

.gift-section-heading {
  margin-bottom: 40px;
}

.gift-hero h1,
.gift-section-heading h2,
.gift-price-card h2,
.gift-cta__inner h2,
.gift-order__inner h1 {
  letter-spacing: .08em;
  text-shadow: 0 1px 0 rgba(255,255,255,.82);
}

.gift-hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.24;
}

.gift-hero p,
.gift-copy-box p,
.gift-flow-list,
.gift-grid-list,
.gift-price-card p,
.gift-faq-item .faq-a__inner,
.gift-order__inner p,
.gift-info-list {
  color: rgba(35,30,26,.74);
}

.gift-hero p {
  max-width: 36em;
  font-size: clamp(17px, 1.95vw, 21px);
}

.gift-copy-box {
  padding: 42px 38px;
  gap: 14px;
}

.gift-flow-list li,
.gift-grid-list li {
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,244,238,.92) 100%);
}

.gift-grid-list li {
  font-weight: 500;
  letter-spacing: .04em;
}

.gift-flow-list li::before {
  background: linear-gradient(135deg, rgba(180,155,112,.24), rgba(135,174,185,.18));
  color: #7c6041;
  border: 1px solid rgba(180,155,112,.18);
}

.gift-price-card .price {
  color: #34545f;
  letter-spacing: .04em;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}

.gift-faq-item .faq-q {
  font-family: var(--serif);
  background: transparent;
}

.gift-faq-item .faq-q:hover {
  background: rgba(180,155,112,.04);
}

.gift-faq-item .faq-icon {
  color: var(--gift-gold);
}

.gift-content-band {
  box-shadow: 0 24px 54px rgba(40,33,27,.08), inset 0 1px 0 rgba(255,255,255,.8);
}

@media (max-width: 768px) {
  .gift-hero__inner,
  .gift-price-card,
  .gift-cta__inner,
  .gift-order__inner {
    padding: 38px 24px;
    box-shadow: 0 18px 42px rgba(36,29,23,.08), inset 0 1px 0 rgba(255,255,255,.76);
  }

  .gift-copy-box,
  .gift-note-box {
    padding: 30px 22px;
  }

  .gift-eyebrow,
  .gift-section-heading__eyebrow {
    letter-spacing: .28em;
  }

  .gift-hero h1 {
    font-size: clamp(34px, 10.2vw, 52px);
    letter-spacing: .05em;
  }
}
.gift-order-form {
  margin-top: 26px;
  text-align: left;
}

.gift-order-form__intro {
  margin-bottom: 22px;
  padding: 22px 24px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(126,110,85,.1);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(40,33,27,.04);
}

.gift-order-form__intro p {
  margin: 0;
}

.gift-order-form__intro p + p {
  margin-top: 6px;
}

.gift-form-block {
  margin-top: 20px;
  padding: 28px 28px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,244,238,.92) 100%);
  border: 1px solid rgba(126,110,85,.12);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(40,33,27,.05);
}

.gift-form-block__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gift-gold);
}

.gift-form-block h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.45;
}

.gift-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.gift-field {
  display: grid;
  gap: 8px;
}

.gift-field--full {
  grid-column: 1 / -1;
}

.gift-field span {
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(35,30,26,.78);
}

.gift-field input,
.gift-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(126,110,85,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  color: #181818;
  font: inherit;
  line-height: 1.7;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gift-field textarea {
  min-height: 132px;
  resize: vertical;
}

.gift-field input:focus,
.gift-field textarea:focus {
  outline: none;
  border-color: rgba(126,110,85,.34);
  box-shadow: 0 0 0 4px rgba(135,174,185,.14);
  background: #fff;
}

.gift-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(126,110,85,.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(40,33,27,.04);
}

.gift-check input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
}

.gift-check span {
  flex: 1;
  color: rgba(35,30,26,.78);
  line-height: 1.8;
}

.gift-form-note,
.gift-form-status {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(35,30,26,.66);
}

.gift-form-status {
  min-height: 1.8em;
  color: #34545f;
}

@media (max-width: 768px) {
  .gift-order-form__intro,
  .gift-form-block,
  .gift-check {
    border-radius: 20px;
  }

  .gift-order-form__intro,
  .gift-form-block {
    padding: 22px 20px;
  }

  .gift-form-grid {
    grid-template-columns: 1fr;
  }
}
.gift-order-flow {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  text-align: left;
}

.gift-order-flow .gift-flow-list {
  margin: 0;
}

.gift-order-flow .gift-note-box p {
  margin: 0;
}

.gift-order-flow .gift-note-box p + p {
  margin-top: 8px;
}
.gift-copy-template__box {
  margin: 18px 0 16px;
  padding: 20px 22px;
  white-space: pre-wrap;
  line-height: 2;
  color: rgba(35,30,26,.82);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(126,110,85,.16);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 10px 24px rgba(40,33,27,.04);
}

.gift-copy-template__button {
  margin-top: 0;
}

.gift-copy-template__status {
  min-height: 1.8em;
  margin-top: 12px;
  color: #34545f;
  font-size: 14px;
  text-align: center;
}

.gift-pc-line-note {
  max-width: 680px;
  margin: 4px auto 0;
  padding: 18px 22px;
  text-align: center;
  color: rgba(35,30,26,.74);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,244,236,.88));
  border: 1px solid rgba(126,110,85,.14);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(40,33,27,.06);
}

.gift-pc-line-note p {
  margin: 0;
  line-height: 1.9;
}

.gift-pc-line-note__title {
  margin-bottom: 8px !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: .08em;
  color: #2b2925;
}

@media (max-width: 768px) {
  .gift-copy-template__box {
    padding: 18px 16px;
    font-size: 14px;
  }

  .gift-pc-line-note {
    padding: 16px 18px;
    text-align: left;
    font-size: 14px;
  }
}
/* Gift order luxe upgrade */
.gift-order {
  padding: 126px 0 142px;
  background:
    radial-gradient(circle at 18% 6%, rgba(180,155,112,.14), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(135,174,185,.13), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.64) 0%, rgba(246,242,235,.76) 100%);
}

.gift-order .container {
  max-width: 980px;
}

.gift-order__inner {
  max-width: 900px;
  padding: 72px 68px 66px;
  border-radius: 38px;
  border: 1px solid rgba(180,155,112,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(250,247,241,.95) 56%, rgba(255,255,255,.94) 100%);
  box-shadow: 0 44px 120px rgba(39,32,25,.14), inset 0 1px 0 rgba(255,255,255,.86);
}

.gift-order__inner::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(240px, 42vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(180,155,112,0), rgba(180,155,112,.72), rgba(180,155,112,0));
  pointer-events: none;
}

.gift-order__inner > .gift-section-heading__eyebrow {
  margin-bottom: 18px;
  color: #a78659;
}

.gift-order__inner h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: .09em;
  color: #201c18;
}

.gift-order-flow {
  gap: 28px;
  margin-top: 42px;
}

.gift-order-flow .gift-note-box--order:first-child {
  text-align: center;
  padding: 34px 38px;
  border-color: rgba(180,155,112,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,246,239,.94));
}

.gift-order-flow .gift-note-box--order:first-child h2 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: .08em;
}

.gift-order .gift-flow-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gift-order .gift-flow-list li {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 22px 24px 22px 76px;
  border-radius: 24px;
  border-color: rgba(180,155,112,.17);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,244,237,.93));
  box-shadow: 0 18px 46px rgba(40,33,27,.07), inset 0 1px 0 rgba(255,255,255,.8);
  font-family: var(--serif);
  letter-spacing: .05em;
  color: #2a241e;
}

.gift-order .gift-flow-list li::before {
  left: 24px;
  width: 36px;
  height: 36px;
  background: linear-gradient(145deg, rgba(180,155,112,.32), rgba(255,255,255,.84));
  color: #856542;
  border-color: rgba(180,155,112,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(126,110,85,.12);
}

.gift-order .gift-copy-template,
.gift-order .gift-note-box--order:not(:first-child),
.gift-order .gift-pc-line-note {
  border-color: rgba(180,155,112,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(250,247,242,.94));
  box-shadow: 0 20px 54px rgba(40,33,27,.08), inset 0 1px 0 rgba(255,255,255,.82);
}

.gift-order .gift-copy-template__box {
  border-color: rgba(180,155,112,.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,242,235,.9));
  font-family: var(--serif);
  color: rgba(35,30,26,.84);
}

.gift-order__actions {
  margin-top: 34px;
}

.gift-order__actions .btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .gift-order {
    padding: 84px 0 92px;
  }

  .gift-order__inner {
    padding: 48px 22px 42px;
    border-radius: 28px;
  }

  .gift-order__inner h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    letter-spacing: .06em;
  }

  .gift-order-flow {
    gap: 22px;
    margin-top: 32px;
  }

  .gift-order-flow .gift-note-box--order:first-child {
    padding: 28px 20px;
  }

  .gift-order .gift-flow-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gift-order .gift-flow-list li {
    min-height: 70px;
    padding: 18px 18px 18px 66px;
    border-radius: 20px;
  }

  .gift-order .gift-flow-list li::before {
    left: 20px;
    width: 32px;
    height: 32px;
  }

  .gift-order__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
.gift-page .sp-only {
  display: none;
}

@media (max-width: 768px) {
  .gift-page .sp-only {
    display: block;
  }
}
@media (max-width: 390px) {
  .gift-hero h1 {
    font-size: clamp(29px, 8.2vw, 32px);
    letter-spacing: .02em;
    line-height: 1.42;
  }
}
@media (max-width: 390px) {
  .gift-hero p {
    font-size: 15px;
    line-height: 2.05;
  }
}
@media (max-width: 390px) {
  .gift-about-title {
    font-size: 25px;
    letter-spacing: .02em;
    line-height: 1.55;
  }
}
@media (max-width: 390px) {
  .gift-eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .gift-about-title {
    font-size: clamp(22px, 6.2vw, 27px);
    letter-spacing: .01em;
    line-height: 1.65;
  }

  .gift-about-title span {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .gift-about-title {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 1.7;
  }
}
.gift-page .mobile-line-break {
  display: none;
}

@media (max-width: 768px) {
  .gift-page .mobile-line-break {
    display: block;
  }
}
.gift-about-title__pc-line {
  display: block;
}

.gift-about-title__mobile-line {
  display: none;
}

@media (max-width: 768px) {
  .gift-about-title__pc-line {
    display: none !important;
  }

  .gift-about-title__mobile-line {
    display: block !important;
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .gift-about-title {
    font-size: 21px;
  }
}
.gift-flow-title {
  white-space: nowrap;
}

@media (max-width: 390px) {
  .gift-flow-title {
    font-size: 24px;
    letter-spacing: .01em;
  }
}
@media (max-width: 768px) {
  .gift-about-title {
    font-size: clamp(20px, 5.7vw, 24px);
  }
}

@media (max-width: 390px) {
  .gift-about-title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .gift-about-title {
    font-size: clamp(18.5px, 5.1vw, 22px);
    letter-spacing: -.03em;
  }

  .gift-flow-title {
    font-size: clamp(20px, 5.4vw, 22px);
    letter-spacing: -.02em;
  }
}

@media (max-width: 390px) {
  .gift-about-title {
    font-size: 18.5px;
    letter-spacing: -.04em;
  }

  .gift-flow-title {
    font-size: 20px;
    letter-spacing: -.03em;
  }
}
@media (max-width: 768px) {
  .gift-about-title {
    font-size: clamp(18.5px, 5.1vw, 22px) !important;
  }

  .gift-flow-title {
    font-size: clamp(20px, 5.4vw, 22px) !important;
  }
}

@media (max-width: 390px) {
  .gift-about-title {
    font-size: 18.5px !important;
  }

  .gift-flow-title {
    font-size: 20px !important;
  }
}
@-webkit-keyframes gift-band-scroll-mobile {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes gift-band-scroll-mobile {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .gift-content-band__track {
    min-width: max-content;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-animation: gift-band-scroll-mobile 22s linear infinite !important;
            animation: gift-band-scroll-mobile 22s linear infinite !important;
  }

  .gift-content-band__track img {
    flex: 0 0 auto;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@media (max-width: 768px) {
  .gift-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .gift-content .gift-section-heading {
    margin-bottom: 22px;
  }

  .gift-content .gift-grid-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gift-content .gift-grid-list li {
    min-height: 58px;
    padding: 12px 8px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: .01em;
    display: grid;
    place-items: center;
  }

  .gift-content .gift-content-band {
    margin-top: 14px;
    padding: 6px 0;
  }
}

@media (max-width: 390px) {
  .gift-content .gift-grid-list {
    gap: 8px;
  }

  .gift-content .gift-grid-list li {
    min-height: 54px;
    padding: 10px 6px;
    font-size: 11px;
    line-height: 1.5;
  }

  .gift-content .gift-content-band {
    margin-top: 12px;
  }
}
.gift-price-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .45em;
}

@media (max-width: 768px) {
  .gift-price-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.35;
  }
}

@media (max-width: 390px) {
  .gift-price-line {
    font-size: clamp(24px, 7vw, 28px);
  }
}
@media (max-width: 390px) {
  .gift-order__inner h1 {
    font-size: 25px;
    letter-spacing: .02em;
    line-height: 1.55;
  }
}
@media (max-width: 390px) {
  .gift-order-line-title {
    font-size: 23px !important;
    line-height: 1.55 !important;
    letter-spacing: .04em !important;
  }
}
.gift-order-line-copy {
  line-height: 2.05;
}

@media (max-width: 390px) {
  .gift-order-line-copy {
    font-size: 14px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .gift-page .gift-flow-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .gift-page .gift-flow-list li {
    min-height: 68px !important;
    display: flex !important;
    align-items: center !important;
    padding: 18px 16px 18px 60px !important;
    border-radius: 20px !important;
    font-family: var(--serif) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    letter-spacing: .01em !important;
    color: #2a241e !important;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,244,238,.92) 100%) !important;
    box-shadow: 0 18px 46px rgba(40,33,27,.07), inset 0 1px 0 rgba(255,255,255,.8) !important;
  }

  .gift-page .gift-flow-list li::before {
    left: 18px !important;
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, rgba(180,155,112,.24), rgba(135,174,185,.18)) !important;
    color: #7c6041 !important;
    border: 1px solid rgba(180,155,112,.18) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 18px rgba(126,110,85,.12) !important;
  }
}

@media (max-width: 390px) {
  .gift-page .gift-flow-list li {
    min-height: 64px !important;
    padding: 16px 14px 16px 56px !important;
    font-size: 14px !important;
  }

  .gift-page .gift-flow-list li::before {
    left: 16px !important;
    width: 30px !important;
    height: 30px !important;
  }
}
@media (max-width: 768px) {
  .gift-pc-line-note {
    display: none;
  }
}
.gift-line-content-title__mobile {
  display: none;
}

@media (max-width: 768px) {
  .gift-line-content-title__pc {
    display: none;
  }

  .gift-line-content-title__mobile {
    display: inline;
  }
}
