:root{
  --bg:#ffffff;
  --text:#221f1c;
  --accent:#c4953d;

  --container:1100px;
  --side:240px;
  --content:560px;

  --gap:clamp(32px,4vw,72px);
  --pad:24px;
}

@font-face{
  font-family: "Utsukushi";
  src: url("fonts/UtsukushiFONT.otf")format("opentype");
  font-weight: normal;
  font-style: normal;
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family: "Utsukushi", serif;
  background:var(--bg);
  color:var(--text);
}

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

.page{
  overflow-x:clip;
}
.small {
	font-size: 12px;
}

/* =========================
   Opening
========================= */

html.is-opening,
body.is-opening{
  overflow: hidden;
  height: 100%;
}

body.is-opening .site-header,
body.is-opening .timeline-nav{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.opening{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  z-index: 9999;
  opacity: 1;
}

.opening.is-ending{
  transition: opacity 0.8s ease;
  opacity: 0;
}

.opening__inner{
  position: relative;
  width: min(90vw, 900px);
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
}

.opening__logo,
.opening__text{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity 1.4s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.opening__logo.is-show,
.opening__text.is-show{
  opacity: 1;
  filter: blur(0);
}


.opening__text--3 strong{
  font-size: 42px;
  letter-spacing: .1em;
  font-family: "Utsukushi", serif;
}

.opening__text--3 strong{
  font-size: 42px;
  letter-spacing: .1em;
  font-family: "Utsukushi", serif;
}

/* 純果ブロック専用 */

.opening__text--3{
  line-height: 1; /* ← まずリセット */
}

/* 上の説明 */

.opening__text--3 small{
  display:block;
  font-size:14px;
  letter-spacing:.2em;
}

.opening__text--2{
	transform: translateY(-34px);
}

.opening__text--3{
  line-height: 1;
  display: grid;
  justify-items: center;
  align-content: center;
  transform: translateY(-17px);
}
.en_t {
	margin: 10px 0;
	font-size: 10px;
}

@media (max-width:768px){
  .opening__text--3{
    transform: translateY(-11px);
  }
  .opening__text--2{
    transform: translateY(-22px);
  }
}

.opening__text--3 small{
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  color: #444;
}

.opening__text--3 .ruby{
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
  color: #444;
}

.opening__text--3 strong{
  display: block;
  font-family: "Utsukushi", "Noto Serif JP", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 0 14px;
  color: #222;
}

.opening__text--3 .en{
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0;
  color: #777;
}

/* 共通 */

.en_t {
	margin: 10px 0;
	font-size: 12px;
}

.opening__text{
  font-size: 20px;
  line-height: 1.9;
}

.opening__text span{
  display: block;
  margin-top: 0px;
  line-height: 1.4;
	font-size: 12px;
}

.opening__logo{
  font-size: 18px;
  letter-spacing: .2em;
}

.opening__skip{
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  border: 1px solid rgba(34,31,28,.22);
  background: rgba(255,255,255,.72);
  color: #221f1c;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  padding: 10px 14px;
  cursor: pointer;
  transition: opacity .3s ease, background .3s ease, border-color .3s ease;
}

.opening__skip:hover{
  background: rgba(255,255,255,.95);
  border-color: rgba(34,31,28,.45);
}

@media (max-width:768px){
  .opening__skip{
    right: 16px;
    bottom: 16px;
    font-size: 10px;
    padding: 9px 12px;
  }
}

/* Hero */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.site-header__inner{
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.site-header__logo{
  color: #221f1c;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1;
  padding: 10px 14px;
  border: 1px solid transparent;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.site-header__nav{
  display: flex;
  gap: 10px;
}

.site-header__nav a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #221f1c;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
  background: transparent;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.site-header__logo:hover,
.site-header__nav a:hover{
  background: #221f1c;
  color: #fff;
  border-color: #221f1c;
}
.hero{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.hero__bg{
  position: absolute;
  inset: 0;
}

.hero__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    linear-gradient(to right, rgba(0,0,0,0.12), rgba(0,0,0,0.02) 55%);
  opacity: 0;
}

@keyframes heroOverlayFadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

body.is-hero-ready .hero__overlay{
  animation: heroOverlayFadeIn 1.1s ease forwards;
  animation-delay: .15s;
}

.hero__content{
  position: absolute;
  left: 8%;
  bottom: 15%;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  opacity: 0;
  transform: translateY(24px);
}

.hero__eyebrow{
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.28em;
}

.hero__title{
  margin: 0;
  font-family: "Utsukushi", "Noto Serif JP", serif;
  font-size: clamp(38px, 5.8vw, 64px);
  line-height: 1.38;
  letter-spacing: 0.08em;
  font-weight: normal;
}

.hero__lead{
  margin: 22px 0;
  font-size: 16px;
  line-height: 1.95;
}

.hero__scroll{
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.hero__scroll::after{
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  margin: 8px auto 0;
}

@keyframes heroFadeUp{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px){

  .site-header{
    top: 10px;
    left: 0;
    width: 100%;
    padding: 0 12px;
  }

  .site-header__inner{
    width: 100%;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255,255,255,0.82);
  }

  .site-header__logo{
    flex: 0 0 auto;
    padding: 0;
  }

  .site-header__logo img{
    width: 132px;
    height: auto;
    max-width: none;
  }

  .site-header__nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1;
    min-width: 0;
  }

  .site-header__nav a{
    min-height: auto;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .12em;
    white-space: nowrap;
  }
}

/* =========================
   Hero Intro Animation
========================= */

/* 初期状態 */
.hero__bg img,
.hero__content,
.hero__scroll,
.site-header,
.timeline-nav{
  opacity: 0;
  filter: none;
}

.hero__bg img{
  transform: scale(1.06);
}

.hero__overlay{
  opacity: 0;
}

.hero__content{
  transform: translateY(24px);
}

.hero__scroll{
  transform: translateX(-50%);
}

.site-header{
  transform: translateY(-18px);
}

.timeline-nav{
  transform: translateY(-50%) translateX(16px);
}

/* アニメーション定義 */
@keyframes heroBgFadeIn{
  from{
    opacity: 0;
    transform: scale(1.06);
  }
  to{
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes heroOverlayFadeIn{
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}

@keyframes heroCopyFadeUp{
  from{
    opacity: 0;
    transform: translateY(24px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScrollFadeIn{
  from{
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroNavFadeIn{
  from{
    opacity: 0;
    transform: translateY(-50%) translateX(16px);
  }
  to{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

@keyframes heroHeaderFadeDown{
  from{
    opacity: 0;
    transform: translateY(-18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* 発火後 */
body.is-hero-ready .hero__bg img{
  animation: heroBgFadeIn 1.2s ease forwards;
}

body.is-hero-ready .hero__overlay{
  animation: heroOverlayFadeIn 1s ease forwards;
  animation-delay: .1s;
}

body.is-hero-ready .hero__content{
  animation: heroCopyFadeUp 1s ease forwards;
  animation-delay: 1.0s;
}

body.is-hero-ready .hero__scroll{
  animation: heroScrollFadeIn .9s ease forwards;
  animation-delay: .8s;
}

body.is-hero-ready .timeline-nav{
  animation: heroNavFadeIn .9s ease forwards;
  animation-delay: 3.0s;
}

body.is-hero-ready .site-header{
  animation: heroHeaderFadeDown .9s ease forwards;
  animation-delay: 2.0s;
}



:root{
  --intro-bg:#f3f3f1;
  --intro-text:#221f1c;
  --intro-sub:#4a4742;
}



/* =========================
   section
========================= */
.feature-intro{
  padding: 100px 0;
  overflow: hidden;
}

.feature-intro__wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section--about{
  background: #f3f3f1;
}

.section--spirit{
  background: #FFF;
}

.section--feature{
  background: #ebeae7;
}

.section--gift{
  background: #e9e4df;
}

.section--end{
  background: #ffffff;
}

.section + .section{
  position: relative;
}

.section + .section::before{
  content:"";
  position:absolute;
  top:-60px;
  left:0;
  width:100%;
  height:60px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(0,0,0,0.03)
  );
  pointer-events:none;
}

.about-heading h2 span{
  display:inline-block;
  border-bottom:2px double var(--about-text);
  padding-bottom:3px;
}

.feature-intro__heading .title-line{
  display:inline-block;

  border-bottom:
    2px double var(--about-text);

  padding-bottom:3px;
}

.feature-intro__heading .tm{
  border:none !important;

  display:inline-block;

  font-size:.5em;

  vertical-align:baseline;

  transform:
    translateY(-1em);

  margin-left:-2em;

  opacity:.55;

  line-height:1;

  letter-spacing:0;

  font-family:
    "Times New Roman",
    serif;
}

/* -------------------------
   hero area
------------------------- */
.feature-intro__hero{
  position: relative;
  min-height: 580px;
}

.feature-intro__visual{
  width: min(780px, 58vw);
  margin-left: auto;
  margin-right: 60px;
}

.feature-intro__visual img{
  display: block;
  width: 100%;
  height: auto;
}

.feature-intro__side-title{
  position: absolute;
  top: 0;
  right: 24px;
  z-index: 3;
}

.feature-intro__side-title span{
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--intro-sub);
}

.feature-intro__index{
  position: absolute;
  left: 90px;
  top: 200px;
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  color: var(--intro-sub);
  z-index: 4;
}

.feature-intro__heading{
  position: absolute;
  left: 90px;
  top: 250px;
  width: 600px;
  z-index: 4;
}

.feature-intro__heading h2{
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.95;
  font-weight: 400;
  color: var(--intro-text);
  text-shadow:
0 1px 5px rgba(255,255,255,0.4),
  0 0 9px rgba(255,255,255,0.9),
  0 0 12px rgba(255,255,255,0.9)
}

.feature-intro__heading h2 span{
  display: inline-block;
  border-bottom: 2px double var(--intro-text);
  padding-bottom: 3px;
}

.heading-highlight{
  position: relative;
  display: inline;
  z-index: 1;
  text-shadow:
    0 0 4px rgba(255,255,255,0.95),
    0 0 10px rgba(255,255,255,0.45);
}

.heading-highlight::before{
  content: "";
  position: absolute;
  left: -10px;
  right: -12px;
  top: 55%;
  height: 1.2em;
  transform: translateY(-50%);
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.18) 35%,
    rgba(0,0,0,0.28) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* -------------------------
   body area
------------------------- */
.feature-intro__body{
  max-width: 1000px;
  margin-top: -30px;
  margin-left: 90px;
}

.feature-intro__body p{
  margin: 0 0 16px;
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 2;
  color: var(--intro-text);
}

.feature-intro__en{
  max-width: 1000px;
  margin-top: 40px;
  margin-left: 90px;
  text-align: left;
}

.feature-intro__en p{
  margin: 0 0 10px;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.8;
  color: var(--intro-sub);
}

/* -------------------------
   animation
------------------------- */
.fade-step{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

.step-1{
  transform: translateY(18px) scale(1.02);
}

.step-1.is-show{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.step-2.is-show,
.step-3.is-show,
.step-4.is-show{
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   modifier
------------------------- */
.feature-intro--spirit .feature-intro__index::after,
.feature-intro--craft .feature-intro__index::after{
  content: "";
}

.feature-intro--spirit .feature-intro__heading{
  width: 620px;
}

.feature-intro--craft .feature-intro__heading{
  width: 680px;
}

/* -------------------------
   responsive
------------------------- */
@media (max-width: 1200px){
  .feature-intro__hero{
    min-height: 700px;
  }

  .feature-intro__visual{
    width: min(680px, 56vw);
    margin-right: 70px;
  }

  .feature-intro__index{
    left: 60px;
    top: 220px;
  }

  .feature-intro__heading{
    left: 60px;
    top: 280px;
    width: 390px;
  }

  .feature-intro__body,
  .feature-intro__en{
    margin-left: 60px;
  }
}

@media (max-width: 900px){
  .feature-intro{
    padding: 56px 0 84px;
  }

  .feature-intro__hero{
    min-height: auto;
  }

  .feature-intro__visual{
    width: 100%;
    margin-right: 0;
  }

  .feature-intro__side-title{
    position: static;
    margin: 18px 0 0;
  }

  .feature-intro__side-title span{
    writing-mode: horizontal-tb;
    font-size: 15px;
  }

  .feature-intro__index{
    display:none;
  }

  .feature-intro__heading{
    position: static;
    width: 100%;
    margin-top: 0;
  }

  .feature-intro__heading h2{
	 margin-top: 20px;
    font-size: clamp(24px, 6.5vw, 42px);
    line-height: 1.7;
  }

  .feature-intro__body,
  .feature-intro__en{
    max-width: none;
    margin-left: 0;
    margin-top: 28px;
  }

  .feature-intro__body p{
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 20px;
  }

  .feature-intro__en p{
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================
   Gift Section
========================= */

.gift{
  padding:120px 0;
  background:#fafafa;
}

.gift__inner{
  width:min(90%, 1100px);
  margin:0 auto;
}

/* ---------- header ---------- */

.gift__header{
  text-align:center;
  margin-bottom:72px;
}

.gift__eyebrow{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#777;
}

.gift__title{
  margin:0 0 18px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:clamp(28px, 3vw, 38px);
  font-weight:400;
  letter-spacing:.12em;
  color:#221f1c;
}

.gift__lead{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#555;
}

/* =========================
   Gift Section
========================= */

.gift{
  padding:120px 0;
  background:#fafafa;
}

.gift__inner{
  width:min(90%, 1100px);
  margin:0 auto;
}

/* ---------- header ---------- */

.gift__header{
  text-align:center;
  margin-bottom:72px;
}

.gift__eyebrow{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#777;
}

.gift__title{
  margin:0 0 18px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:clamp(28px, 3vw, 38px);
  font-weight:400;
  letter-spacing:.12em;
  color:#221f1c;
}

.gift__lead{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#555;
}

/* ---------- groups ---------- */

.gift__groups{
  display:grid;
  gap:88px;
}

.gift-group{
  display:grid;
  grid-template-columns:minmax(0, 420px) minmax(0, 1fr);
  gap:56px;
  align-items:center;
}

.gift-group__image{
  position:relative;
  overflow:hidden;
  border-radius:4px;
  background:#f1eee9;
}

.gift-group__image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:4px;
  transition:
    opacity .45s ease,
    transform .45s ease;
}

.gift-group__image img.is-changing{
  opacity:0;
  transform:scale(1.02);
}

.gift-group__info{
  display:grid;
  align-content:center;
}

.gift-group__label{
  margin:0 0 8px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#777;
}

.gift-group__title{
  margin:0 0 18px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:clamp(24px, 2.4vw, 32px);
  font-weight:400;
  letter-spacing:.10em;
  line-height:1.5;
  color:#221f1c;
}

.gift-group__text{
  margin:0 0 28px;
  font-size:15px;
  line-height:1.9;
  color:#555;
  transition:
    opacity .35s ease,
    transform .35s ease;
}

.gift-group__text.is-changing{
  opacity:0;
  transform:translateY(8px);
}

.gift-group__button{
  display:inline-flex;

  align-items:center;

  gap:10px;

  width:fit-content;

  margin:0 0 34px;

  padding-bottom:6px;

  text-decoration:none;

  font-size:14px;

  letter-spacing:.08em;

  color:#221f1c;

  border-bottom:
    1px solid
    rgba(34,31,28,.25);

  transition:
    opacity .3s ease,
    border-color .3s ease;
}

.gift-group__button:hover{
  opacity:.65;

  border-color:
    rgba(34,31,28,.5);
}

.gift-group__button::after{
  content:"→";

  transition:
    transform .3s ease;
}

.gift-group__button:hover::after{
  transform:
    translateX(4px);
}

/* ---------- size cards ---------- */

.gift-group__sizes{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.gift-group__sizes--single{
  grid-template-columns:minmax(180px, 260px);
}

.gift-card{
  appearance:none;
  width:100%;
  background:#fff;
  border:1px solid #ece8e2;
  padding:28px 22px;
  text-align:center;
  font-family:inherit;
  color:inherit;
  cursor:pointer;
  transition:
    border-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease,
    background-color .3s ease;
}

.gift-card:hover{
  border-color:#d9d1c5;
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.gift-card.is-active{
  border-color:#b9aa96;
  background:#fffdf9;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transform:translateY(-3px);
}

.gift-card:focus-visible{
  outline:2px solid #b9aa96;
  outline-offset:3px;
}

.gift-card__count{
  margin:0 0 10px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:22px;
  font-weight:400;
  letter-spacing:.12em;
  color:#221f1c;
}

.gift-card__desc{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:#666;
}

/* ---------- spacing adjustment ---------- */

.gift-group + .gift-group{
  padding-top:8px;
  border-top:1px solid rgba(34, 31, 28, 0.06);
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px){

  .gift{
    padding:96px 0;
  }

  .gift__header{
    margin-bottom:56px;
  }

  .gift__groups{
    gap:72px;
  }

  .gift-group{
    grid-template-columns:1fr;
    gap:32px;
  }

  .gift-group__image{
    max-width:720px;
  }

  .gift-group__image img{
    width:100%;
  }

  .gift-group__sizes{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .gift-group__sizes--single{
    grid-template-columns:minmax(180px, 260px);
  }
}

@media (max-width: 768px){

  .gift{
    padding:80px 0;
  }

  .gift__header{
    margin-bottom:44px;
  }

  .gift__title{
    font-size:clamp(24px, 7vw, 32px);
  }

  .gift__lead{
    font-size:14px;
    line-height:1.85;
  }

  .gift__groups{
    gap:56px;
  }

  .gift-group{
    gap:24px;
  }

  .gift-group__title{
    font-size:clamp(22px, 6vw, 28px);
  }

  .gift-group__text{
    margin-bottom:22px;
    font-size:14px;
  }

  .gift-group__sizes{
    grid-template-columns:1fr;
    gap:14px;
  }

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

  .gift-card{
    padding:24px 18px;
  }

  .gift-card__count{
    font-size:20px;
  }

  .gift-card__desc{
    font-size:13px;
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px){

  .gift{
    padding:96px 0;
  }

  .gift__header{
    margin-bottom:56px;
  }

  .gift__groups{
    gap:72px;
  }

  .gift-group{
    grid-template-columns:1fr;
    gap:32px;
  }

  .gift-group__image{
    max-width:720px;
  }

  .gift-group__image img{
    width:100%;
  }

  .gift-group__sizes{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .gift-group__sizes--single{
    grid-template-columns:minmax(180px, 260px);
  }
}

@media (max-width: 768px){

  .gift{
    padding:80px 0;
  }

  .gift__header{
    margin-bottom:44px;
  }

  .gift__title{
    font-size:clamp(24px, 7vw, 32px);
  }

  .gift__lead{
    font-size:14px;
    line-height:1.85;
  }

  .gift__groups{
    gap:56px;
  }

  .gift-group{
    gap:24px;
  }

  .gift-group__title{
    font-size:clamp(22px, 6vw, 28px);
  }

  .gift-group__text{
    margin-bottom:22px;
    font-size:14px;
  }

  .gift-group__sizes{
    grid-template-columns:1fr;
    gap:14px;
  }

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

  .gift-card{
    padding:24px 18px;
  }

  .gift-card__count{
    font-size:20px;
  }

  .gift-card__desc{
    font-size:13px;
  }
}
/* =========================
   CTA Section
========================= */

.cta{
  padding:120px 0 140px;
  background:#f6f3ee;
}

.cta__inner{
  width:min(90%, 1100px);
  margin:0 auto;
}

.cta__header{
  text-align:center;
  margin-bottom:64px;
}

.cta__eyebrow{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#777;
}

.cta__title{
  margin:0 0 18px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:clamp(30px, 3vw, 40px);
  font-weight:400;
  letter-spacing:.12em;
  color:#221f1c;
}

.cta__lead{
  margin:0;
  font-size:15px;
  line-height:1.95;
  color:#555;
}

.cta__links{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.cta-card{
  display:block;
  background:#fff;
  border:1px solid #ece8e2;
  padding:34px 28px;
  text-decoration:none;
  color:inherit;
  transition:border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.cta-card:hover{
  border-color:#d9d1c5;
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.05);
}

.cta-card__label{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#777;
}

.cta-card__title{
  margin:0 0 14px;
  font-family:"Utsukushi", "Noto Serif JP", serif;
  font-size:22px;
  font-weight:400;
  letter-spacing:.10em;
  line-height:1.5;
  color:#221f1c;
}

.cta-card__text{
  margin:0;
  font-size:14px;
  line-height:1.85;
  color:#666;
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px){
  .cta{
    padding:96px 0 112px;
  }

  .cta__links{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width: 768px){
  .cta{
    padding:80px 0 96px;
  }

  .cta__header{
    margin-bottom:40px;
  }

  .cta__title{
    font-size:clamp(26px, 7vw, 34px);
  }

  .cta__lead{
    font-size:14px;
    line-height:1.9;
  }

  .cta-card{
    padding:28px 22px;
  }

  .cta-card__title{
    font-size:20px;
  }

  .cta-card__text{
    font-size:13px;
  }
}
/* ===============================
   Timeline Side Navigation
================================ */

.timeline-nav{
  position:fixed;
  right:40px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  z-index:999;
}

/* 縦ライン */
.timeline-nav::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:1px;
  background:#ddd;
}

/* 各項目 */

.timeline-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 0;
  text-decoration:none;
  color:#999;
  font-size:11px;
  letter-spacing:0.12em;
  position:relative;
}

/* ○ */

.timeline-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:1.5px solid #999;
  background:#fff;
  z-index:2;
}

/* hover */

.timeline-item:hover{
  color:#333;
}

/* active */

.timeline-item.active .timeline-dot{
  background:#666;
  border:3px solid #fff;
  box-shadow:0 0 0 1.5px #666;
}

.timeline-item.active{
  color:#111;
  font-weight:500;
}

/* スマホ非表示 */

@media (max-width:768px){
  .timeline-nav{
    display:none;
  }
}

    /* ===== Footer ===== */
    .site-footer {
      background: #111;
      color: #fff;
      padding: clamp(40px, 8vw, 72px) 16px 28px;
    }
    .site-footer a {
      color: inherit;
      text-decoration: none;
    }
    .site-footer a:hover {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr; /* brand / nav / legal */
      gap: clamp(20px, 3vw, 40px);
      align-items: start;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #fff;
    }
    .footer-logo svg {
      width: 50px;
      height: 50px;
      display: block;
    }
    .footer-logo .brand {
      font-size: 16px;
      letter-spacing: .12em;
    }
    .footer-tagline {
      margin: 0 0 8px;
      opacity: .9;
    }
    .footer-address {
      font-style: normal;
      line-height: 1.9;
      opacity: .9;
    }
    .footer-address a {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .logo-svg {
      width: 60px;
    }
    .f-head {
      margin: 0 0 8px;
      font-size: 14px;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .9;
    }
    .footer-nav ul, .footer-legal ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 8px;
    }
.f-head {
	margin-top: 20px;
}
    .footer-legal .sns {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .site-footer .ext {
      display: inline-flex;
      vertical-align: middle;
      margin-left: 6px;
    }
    .site-footer .ext svg {
      width: 14px;
      height: 14px;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 26px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }
    .to-top {
      font-size: 13px;
      opacity: .9;
    }
    .copy {
      opacity: .7;
    }
    /* SP */
    @media (max-width:768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .footer-logo {
        justify-content: flex-start;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    }
