/* =========================
   HERO
========================= */

.osechi-hero {
  position: relative;
  width: 100%;
  min-height: 720px;
  overflow: hidden;

  /* ここをお持ちのおせち画像に変更 */
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 252, 245, 0.98) 0%,
      rgba(255, 252, 245, 0.94) 27%,
      rgba(255, 252, 245, 0.45) 43%,
      rgba(255, 252, 245, 0) 60%
    ),
    url("https://gigaplus.makeshop.jp/Lbose2022/top/2026-osechi-LP/top-bnr.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  color: #30231e;
}


/* ごく薄い和紙感 */
.osechi-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;

  background-image:
    radial-gradient(
      rgba(112, 74, 42, .18) 0.5px,
      transparent 0.5px
    );

  background-size: 7px 7px;
}


/* =========================
   CONTENT
========================= */

.osechi-hero__inner {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  min-height: 720px;

  margin: 0 auto;
  padding: 72px 48px;

  display: flex;
  align-items: center;
}


.osechi-hero__content {
  width: 43%;
  max-width: 520px;
}


/* =========================
   EYEBROW
========================= */

.osechi-hero__eyebrow {
  display: flex;
  flex-direction: column;
  gap: 3px;

  margin: 0 0 34px;

  font-family:
    "Times New Roman",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: 12px;
  line-height: 1.4;
  letter-spacing: .12em;

  color: #967c67;
}


/* =========================
   TITLE
========================= */

.osechi-hero__title {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;

  font-weight: 400;

  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.42;

  letter-spacing: .06em;

  color: #2c211d;
}


/* 「福」だけ赤 */
.osechi-hero__title span {
  color: #b62922;

  font-size: 1.28em;
  font-weight: 500;

  margin-right: .08em;
}


/* =========================
   LEAD
========================= */

.osechi-hero__lead {
  margin: 28px 0 32px;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 15px;
  line-height: 2;

  letter-spacing: .08em;

  color: #56463d;
}


/* =========================
   RESERVATION
========================= */

.osechi-hero__reservation {
  position: relative;

  display: flex;
  align-items: center;

  margin-top: 28px;
}


/* 日付カード */
.deadline {
  width: 185px;
  min-height: 102px;

  padding: 13px 18px;

  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    rgba(255, 252, 245, .82);

  border: 1px solid #bda789;
}


.deadline strong {
  display: flex;
  align-items: baseline;

  font-family:
    "Times New Roman",
    "Yu Mincho",
    serif;

  font-weight: 400;
}


.deadline__date {
  font-size: 18px;
  letter-spacing: .01em;
  line-height: 1.4;
  white-space: nowrap;
}


.deadline__day {
  margin-left: 4px;

  font-size: 13px;
}


.deadline__text {
  margin-top: 5px;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 16px;

  letter-spacing: .07em;
}


/* 数量限定 */
.limited {
  width: 82px;
  height: 82px;

  margin-left: -10px;

  border-radius: 50%;
  white-space: nowrap;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #ca3f38,
      #9e1718
    );

  box-shadow:
    0 6px 18px rgba(117, 30, 26, .16);
}


.limited small {
  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 12px;
  line-height: 1.2;

  letter-spacing: .08em;
}


.limited strong {
  margin-top: 2px;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 23px;
  font-weight: 400;

  line-height: 1.1;

  letter-spacing: .08em;
}


/* =========================
   CTA BUTTON
========================= */

.osechi-hero__button {
  width: 230px;
  height: 58px;

  margin-top: 26px;
  padding: 0 22px;

  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 999px;

  text-decoration: none;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 15px;

  letter-spacing: .1em;

  color: #fff;

  background:
    linear-gradient(
      180deg,
      #c52f29,
      #a81917
    );

  box-shadow:
    0 8px 20px rgba(124, 25, 22, .17);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.osechi-hero__button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 26px rgba(124, 25, 22, .25);
}


.osechi-hero__arrow {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;

  font-family: sans-serif;
  font-size: 13px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  .osechi-hero {
    min-height: 100svh;

    /*
      スマホでは画像を上側に見せて、
      下に文章を置く構成
    */
    background-image:
      linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(255,252,245,.15) 50%,
        rgba(255,252,245,.95) 80%,
        rgba(255,252,245,1) 100%
      ),
      url("https://gigaplus.makeshop.jp/Lbose2022/top/2026-osechi-LP/top-sp-bnr.jpg");

    background-size:
       100% 100%,
       cover;

    background-position:
        center center,
        center center;  

    background-repeat: no-repeat;
  }


    .osechi-hero__inner {
    min-height: 100svh;

    padding: 28px 22px 38px;

    align-items: flex-end;
  }


  .osechi-hero__content {
    width: 100%;
    max-width: none;
  }


  .osechi-hero__eyebrow {
    position: absolute;
    top: 22px;
    left: 22px;

    margin: 0;

    font-size: 9px;
  }


  .osechi-hero__title {
    font-size: 37px;
    line-height: 1.45;
    white-space: nowrap;
  }


  .osechi-hero__lead {
    margin: 17px 0 20px;

    font-size: 12px;
    line-height: 1.85;
  }


  .deadline {
    width: 158px;
    min-height: 84px;
    white-space: nowrap;
    padding: 11px 16px;
  }


  .deadline__date {
   font-size: 16px;
   line-height: 1.4;
   white-space: nowrap;
   letter-spacing: 0;
  }


  .deadline__text {
    font-size: 13px;
  }


  .limited {
    width: 70px;
    height: 70px;
  }


  .limited strong {
    font-size: 19px;
  }


  .osechi-hero__button {
    width: 100%;
    max-width: 310px;

    height: 54px;

    margin-top: 20px;
  }

}


/* ========================================
   おせちが選ばれる理由
======================================== */

.osechi-reasons {
  position: relative;
  overflow: hidden;

  /*
    ★ここをお持ちの背景画像に変更してください
  */
  background-image: url("https://gigaplus.makeshop.jp/Lbose2022/top/2026-osechi-LP/sec-2-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding: 70px 30px 55px;

  color: #35231c;
}


/* 全体幅 */
.osechi-reasons__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}


/* ========================================
   見出し
======================================== */

.osechi-reasons__heading {
  text-align: center;
  margin-bottom: 42px;
}


/* 上の梅マーク */
.osechi-reasons__heading-icon {
  margin-bottom: 13px;

  color: #c89a43;
  font-size: 32px;
  line-height: 1;
}


/* メインタイトル */
.osechi-reasons__title {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;

  font-size: clamp(34px, 4.1vw, 64px);
  font-weight: 400;

  line-height: 1.4;
  letter-spacing: .08em;

  color: #32231e;

  white-space: nowrap;
}


/* 「おせち」だけ赤 */
.osechi-reasons__title span {
  color: #a91d1a;

  font-size: 1.17em;
  font-weight: 500;
}


/* サブコピー */
.osechi-reasons__subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;

  margin-top: 18px;
}


.osechi-reasons__subtitle p {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: clamp(15px, 1.35vw, 22px);
  line-height: 1.6;
  letter-spacing: .1em;

  color: #49342c;

  white-space: nowrap;
}


/* 左右の飾り線 */
.subtitle-line {
  position: relative;

  display: block;

  width: 115px;
  height: 1px;

  background: #d4aa5f;
}


.subtitle-line::after {
  content: "";

  position: absolute;
  top: -3px;

  width: 7px;
  height: 7px;

  border: 1px solid #d4aa5f;

  transform: rotate(45deg);

  background: #fff8ec;
}


.subtitle-line:first-child::after {
  right: -3px;
}


.subtitle-line:last-child::after {
  left: -3px;
}


/* 水引っぽい飾り */
.mizuhiki {
  position: relative;

  width: 180px;
  height: 30px;

  margin: 12px auto 0;
}


.mizuhiki::before,
.mizuhiki::after {
  content: "";

  position: absolute;
  top: 15px;

  width: 70px;
  height: 1px;

  background: #c9554e;
}


.mizuhiki::before {
  left: 0;
}


.mizuhiki::after {
  right: 0;
}


.mizuhiki span {
  position: absolute;

  top: 7px;
  left: 50%;

  width: 24px;
  height: 14px;

  border: 1.5px solid #c9554e;
  border-radius: 50%;

  transform:
    translateX(-100%)
    rotate(25deg);
}


.mizuhiki span::after {
  content: "";

  position: absolute;

  top: -1px;
  left: 22px;

  width: 24px;
  height: 14px;

  border: 1.5px solid #c9554e;
  border-radius: 50%;

  transform: rotate(-50deg);
}


/* ========================================
   カード
======================================== */

.osechi-reasons__cards {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 26px;
}


/* 1カード */
.reason-card {
  overflow: hidden;

  background: rgba(255, 253, 248, .92);

  border:
    1px solid
    rgba(181, 138, 81, .13);

  border-radius: 28px;

  box-shadow:
    0 10px 30px rgba(93, 60, 35, .09);
}


/* ========================================
   写真
======================================== */

.reason-card__image-wrap {
  position: relative;

  margin: 18px 18px 0;

  overflow: visible;
}


.reason-card__image {
  display: block;

  width: 100%;
  height: 260px;

  object-fit: cover;

  border-radius: 20px;
}


/* ========================================
   01 / 02 / 03 バッジ
======================================== */

.reason-card__number {
  position: absolute;

  z-index: 3;

  top: -14px;
  left: -8px;

  width: 67px;
  height: 67px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #9e1c18;

  border:
    2px solid
    #f6d4aa;

  transform: rotate(45deg);

  box-shadow:
    0 4px 8px rgba(95, 14, 10, .15);
}


.reason-card__number::before {
  content: "";

  position: absolute;
  inset: 5px;

  border:
    1px solid
    rgba(255,255,255,.75);
}


.reason-card__number span {
  transform: rotate(-45deg);

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

  color: #fff;

  font-size: 27px;

  line-height: 1;
}


/* ========================================
   カード本文
======================================== */

.reason-card__body {
  padding: 26px 26px 30px;
}


.reason-card__content {
  display: flex;
  align-items: flex-start;

  gap: 20px;
}


/* 左の六角形風アイコン */
.reason-card__icon {
  flex: 0 0 72px;

  width: 72px;
  height: 72px;

  display: flex;
  justify-content: center;
  align-items: center;

  clip-path:
    polygon(
      25% 6%,
      75% 6%,
      100% 50%,
      75% 94%,
      25% 94%,
      0 50%
    );

  background: #ca9b3d;
}


.reason-card__icon::before {
  content: "";

  position: absolute;
}


/* アイコンの中を白く見せる */
.reason-card__icon span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  clip-path:
    polygon(
      25% 6%,
      75% 6%,
      100% 50%,
      75% 94%,
      25% 94%,
      0 50%
    );

  background: #fffaf1;

  color: #bc8a30;

  font-family:
    "Noto Serif JP",
    serif;

  font-size: 19px;
}


/* テキスト */
.reason-card__text {
  min-width: 0;

  flex: 1;
}


.reason-card__text h3 {
  margin:
    0
    0
    12px;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    "YuMincho",
    serif;

  font-size: clamp(19px, 1.5vw, 26px);
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: .06em;

  color: #34241f;
}


/* 赤い強調文字 */
.reason-card__text h3 em {
  color: #b12420;

  font-style: normal;

  font-weight: 500;
}


/* 説明文 */
.reason-card__text p {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: 15px;
  line-height: 1.85;

  letter-spacing: .04em;

  color: #59443b;
}


/* ========================================
   下部メッセージ
======================================== */

.osechi-reasons__message {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 18px;

  margin-top: 36px;
}


.osechi-reasons__message span {
  color: #c89b43;

  font-size: 20px;
}


.osechi-reasons__message p {
  margin: 0;

  font-family:
    "Noto Serif JP",
    "Yu Mincho",
    serif;

  font-size: clamp(15px, 1.35vw, 20px);

  letter-spacing: .08em;

  color: #49342c;

  white-space: nowrap;
}


/* ========================================
   タブレット
======================================== */

@media (max-width: 1100px) {

  .osechi-reasons {
    padding:
      60px
      24px
      50px;
  }


  .osechi-reasons__cards {
    gap: 18px;
  }


  .reason-card__image {
    height: 210px;
  }


  .reason-card__body {
    padding:
      23px
      18px
      27px;
  }


  .reason-card__content {
    gap: 13px;
  }


  .reason-card__icon {
    flex-basis: 58px;

    width: 58px;
    height: 58px;
  }


  .reason-card__icon span {
    width: 50px;
    height: 50px;

    font-size: 16px;
  }


  .reason-card__text p {
    font-size: 13px;
  }

}


/* ========================================
   スマホ
======================================== */

@media (max-width: 767px) {

  .osechi-reasons {
    padding:
      48px
      16px
      38px;

    /*
      背景画像がPC用の場合は
      スマホで見せたい位置を調整してください
    */
    background-position: center top;
  }


  .osechi-reasons__heading {
    margin-bottom: 30px;
  }


  .osechi-reasons__heading-icon {
    font-size: 24px;

    margin-bottom: 8px;
  }


  .osechi-reasons__title {
    font-size: clamp(25px, 8vw, 37px);

    white-space: normal;
  }


  .osechi-reasons__title span {
    font-size: 1.12em;
  }


  .osechi-reasons__subtitle {
    gap: 10px;

    margin-top: 13px;
  }


  .osechi-reasons__subtitle p {
   font-size: 12px;
   white-space: normal;
    line-height: 1.7;
   text-align: center;
  }


  .subtitle-line {
    width: 30px;
  }


  .mizuhiki {
    width: 130px;
  }


  .mizuhiki::before,
  .mizuhiki::after {
    width: 48px;
  }


  /* 3列 → 縦並び */
  .osechi-reasons__cards {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .reason-card {
    border-radius: 22px;
  }


  .reason-card__image-wrap {
    margin:
      13px
      13px
      0;
  }


  .reason-card__image {
    height: auto;

    aspect-ratio: 16 / 10;
  }


  .reason-card__number {
    width: 58px;
    height: 58px;

    top: -8px;
    left: -5px;
  }


  .reason-card__number span {
    font-size: 23px;
  }


  .reason-card__body {
    padding:
      21px
      19px
      25px;
  }


  .reason-card__content {
    gap: 14px;
  }


  .reason-card__icon {
    flex-basis: 57px;

    width: 57px;
    height: 57px;
  }


  .reason-card__icon span {
    width: 49px;
    height: 49px;

    font-size: 15px;
  }


  .reason-card__text h3 {
    font-size: 18px;

    margin-bottom: 8px;
  }


  .reason-card__text p {
    font-size: 13px;

    line-height: 1.8;
  }


  .reason-card__text p br {
    display: none;
  }


  .osechi-reasons__message {
    gap: 8px;

    margin-top: 27px;
  }


  .osechi-reasons__message p {
    font-size: 12px;

    line-height: 1.8;

    text-align: center;

    white-space: normal;
  }

}



:root {
  --osechi-bg: #fff9f5;
  --osechi-pink: #eaa39d;
  --osechi-pink-light: #f8d9d3;
  --osechi-red: #b91518;
  --osechi-brown: #2b1b15;
  --osechi-gold: #c89542;
  --osechi-border: #d6ae72;
}

.osechi-showcase {
  position: relative;
  overflow: hidden;
  padding: 70px 20px 60px;
  background:
    radial-gradient(
      circle at 0 10%,
      rgba(247, 175, 179, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(247, 175, 179, 0.2),
      transparent 30%
    ),
    var(--osechi-bg);
  color: var(--osechi-brown);
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}

.osechi-showcase::before,
.osechi-showcase::after {
  content: "✿";
  position: absolute;
  color: rgba(216, 145, 121, 0.17);
  font-size: 180px;
  line-height: 1;
  pointer-events: none;
}

.osechi-showcase::before {
  top: -40px;
  left: -30px;
}

.osechi-showcase::after {
  right: -30px;
  bottom: -50px;
}

.osechi-showcase__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* heading */

.osechi-showcase__heading {
  margin-bottom: 38px;
  text-align: center;
}

.osechi-showcase__symbol {
  margin-bottom: 8px;
  color: var(--osechi-gold);
  font-size: 34px;
}

.osechi-showcase__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.osechi-showcase__title span {
  color: var(--osechi-red);
}

.osechi-showcase__lead {
  margin: 12px 0 0;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.12em;
}

/* layout */

.osechi-showcase__content {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* left nav */

.osechi-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0;
}

.osechi-nav::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 56px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--osechi-gold) 10%,
    var(--osechi-gold) 90%,
    transparent
  );
}

.osechi-nav__item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 116px;
  padding: 12px 20px 12px 10px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.osechi-nav__item:hover {
  transform: translateX(4px);
}

.osechi-nav__item.is-active {
  background:
    linear-gradient(
      90deg,
      rgba(236, 164, 157, 0.65),
      rgba(248, 215, 209, 0.62)
    );
  box-shadow:
    inset 0 1px rgba(255,255,255,.7),
    inset 0 -1px rgba(210,140,130,.18);
}

.osechi-nav__item.is-active::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 30px;
  height: 30px;
  background: #edaaa3;
  transform:
    translateY(-50%)
    rotate(45deg);
}

.osechi-nav__thumb {
  position: relative;
  z-index: 2;
  display: block;
  width: 82px;
  height: 82px;
  padding: 5px;
  border: 1px solid var(--osechi-gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(99, 57, 38, 0.14);
}

.osechi-nav__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.osechi-nav__name {
  position: relative;
  z-index: 2;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.osechi-nav__selected {
  position: absolute;
  left: 118px;
  top: 22px;
  z-index: 3;
  color: var(--osechi-red);
  font-size: 13px;
  font-weight: 700;
}

.osechi-nav__item.is-active .osechi-nav__name {
  padding-top: 25px;
  color: var(--osechi-red);
}

.osechi-nav__arrow {
  position: absolute;
  z-index: 3;
  right: -13px;
  top: 50%;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 32px;
  transform: translateY(-52%);
}

/* detail */

.osechi-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, 0.95fr);
  gap: 34px;
  min-height: 600px;
  padding: 46px;
  border: 1px solid var(--osechi-border);
  border-radius: 4px;
  background:
    linear-gradient(
      rgba(255,255,255,.72),
      rgba(255,255,255,.72)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(200,149,66,.04) 0,
      rgba(200,149,66,.04) 1px,
      transparent 1px,
      transparent 8px
    );
  box-shadow:
    0 12px 34px rgba(131, 91, 64, 0.08),
    inset 0 0 0 8px rgba(255,255,255,.5);
}

.osechi-detail::before,
.osechi-detail::after {
  content: "✦";
  position: absolute;
  color: var(--osechi-gold);
  font-size: 22px;
}

.osechi-detail::before {
  left: 18px;
  top: 16px;
}

.osechi-detail::after {
  right: 18px;
  bottom: 16px;
}

/* detail visual */

.osechi-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.osechi-detail__image-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  padding: 14px;
  border: 2px solid var(--osechi-gold);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
}

.osechi-detail__image-frame::before,
.osechi-detail__image-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.osechi-detail__image-frame::before {
  inset: 7px;
  border: 1px solid rgba(200,149,66,.45);
}

.osechi-detail__image-frame::after {
  inset: -13px;
  border: 1px solid rgba(236,164,157,.5);
}

.osechi-detail__image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  transition:
    opacity 0.2s ease,
    transform 0.35s ease;
}

.osechi-detail__flower {
  position: absolute;
  bottom: 59px;
  left: calc(50% - 150px);
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 4px solid white;
  border-radius: 50%;
  background: #df8e82;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(90, 43, 30, 0.18);
}

/* detail text */

.osechi-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 0;
}

.osechi-detail__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.osechi-detail__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 26px 0;
  color: var(--osechi-gold);
}

.osechi-detail__divider::before,
.osechi-detail__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 149, 66, 0.55);
}

.osechi-detail__catch {
  margin: 0 0 20px;
  color: var(--osechi-red);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.osechi-detail__description {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.osechi-detail__point {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--osechi-border);
  background: rgba(255, 250, 245, 0.78);
}

.osechi-detail__point-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid var(--osechi-gold);
  border-radius: 50%;
  color: #d47f72;
  font-size: 28px;
}

.osechi-detail__point h4 {
  margin: 0 0 8px;
  color: #d36f63;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.osechi-detail__point p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
}

/* CTA */

.osechi-showcase__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 34px auto 0;
}

.osechi-showcase__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 18px 25px;
  border: 1px solid var(--osechi-border);
  background: rgba(255,255,255,.82);
  color: var(--osechi-brown);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(100,60,40,.08);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.osechi-showcase__cta:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 8px 22px rgba(100,60,40,.14);
}

.osechi-showcase__cta > span:first-child {
  color: var(--osechi-gold);
}

.osechi-showcase__cta-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  align-self: stretch;
  margin: -18px -25px -18px auto;
  background: #efaa96;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 26px;
}

/* responsive */

@media (max-width: 900px) {

  .osechi-showcase {
    padding-inline: 14px;
  }

  .osechi-showcase__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .osechi-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;

  width: 100%;
  max-width: 100%;

  padding: 10px 2px 18px;

  overflow: visible;
}

  .osechi-nav::-webkit-scrollbar {
    display: none;
  }

  .osechi-nav::before {
    display: none;
  }

  .osechi-nav__item {
  width: 100%;
  min-width: 0;
  min-height: auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 10px 5px;

  text-align: center;
}
  /* 1段目：3商品 */
  .osechi-nav__item:nth-child(1) {
    grid-column: 1 / 3;
  }

  .osechi-nav__item:nth-child(2) {
    grid-column: 3 / 5;
  }

  .osechi-nav__item:nth-child(3) {
    grid-column: 5 / 7;
  }


  /* 2段目：2商品を中央配置 */
  .osechi-nav__item:nth-child(4) {
    grid-column: 2 / 4;
  }

  .osechi-nav__item:nth-child(5) {
    grid-column: 4 / 6;
  }



  .osechi-nav__item.is-active::before {
    right: auto;
    top: auto;
    bottom: -8px;
    left: 50%;
    width: 18px;
    height: 18px;
    transform:
      translateX(-50%)
      rotate(45deg);
  }

  .osechi-nav__thumb {
    width: 68px;
    height: 68px;
  }

  .osechi-nav__name {
    font-size: 13px;
  }

  .osechi-nav__selected {
    position: static;
    order: 2;
    font-size: 11px;
  }

  .osechi-nav__item.is-active .osechi-nav__name {
    padding-top: 0;
  }

  .osechi-nav__arrow {
    display: none;
  }

  .osechi-detail {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 28px 20px;
    min-width: 0;
    max-width: 100%;
  }

  .osechi-detail__image-frame {
    width: min(85vw, 430px);
  }

  .osechi-detail__flower {
    display: none;
  }

}

@media (max-width: 560px) {

  .osechi-showcase {
    padding-top: 45px;
  }

  .osechi-showcase__title {
    letter-spacing: 0.04em;
  }

  .osechi-showcase__lead {
    line-height: 1.8;
  }

  .osechi-detail {
    gap: 18px;
  }

  .osechi-detail__title {
    text-align: center;
  }

  .osechi-detail__catch {
    font-size: 20px;
  }

  .osechi-detail__description {
    font-size: 14px;
  }

  .osechi-detail__point {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .osechi-detail__point-icon {
    margin: 0 auto;
  }

  .osechi-showcase__cta {
    min-width: 0;
    width: 100%;
    gap: 10px;
    padding-left: 15px;
    font-size: 15px;
  }

}


@media (max-width: 700px) {

  .osechi-showcase__footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .osechi-showcase__cta {
    position: relative;

    width: 100%;
    max-width: 100%;
    min-width: 0;

    padding: 16px 60px 16px 16px;

    box-sizing: border-box;

    font-size: 15px;
  }

}




.osechi-select {
  --select-bg: #fff9f5;
  --select-pink: #efaaa2;
  --select-pink-light: #f9ded9;
  --select-red: #b6161b;
  --select-brown: #2d1d17;
  --select-gold: #c99a4b;
  --select-border: #d7b477;

  position: relative;
  overflow: hidden;
  padding: 80px 20px 90px;
  background:
    radial-gradient(
      circle at 0 0,
      rgba(244, 167, 175, .25),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(244, 167, 175, .22),
      transparent 30%
    ),
    #fff9f5;

  color: var(--select-brown);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}

/* 背景の装飾 */

.osechi-select::before,
.osechi-select::after {
  content: "✿";
  position: absolute;
  color: rgba(224, 144, 137, .11);
  font-size: 220px;
  line-height: 1;
  pointer-events: none;
}

.osechi-select::before {
  top: -70px;
  left: -50px;
}

.osechi-select::after {
  right: -55px;
  bottom: -85px;
}

.osechi-select__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

/* --------------------------------
 heading
-------------------------------- */

.osechi-select__heading {
  margin-bottom: 46px;
  text-align: center;
}

.osechi-select__symbol {
  margin-bottom: 8px;
  color: var(--select-gold);
  font-size: 34px;
}

.osechi-select__title {
  margin: 0;

  font-size: clamp(
    36px,
    5vw,
    64px
  );

  font-weight: 500;
  letter-spacing: .1em;
}

.osechi-select__title span {
  color: var(--select-red);
}

.osechi-select__lead {
  margin: 14px 0 0;

  font-size: clamp(
    14px,
    1.7vw,
    18px
  );

  letter-spacing: .1em;
  line-height: 1.8;
}

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

.osechi-select__cards {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 32px;
}

/* カード本体 */

.osechi-select-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding:
    34px
    32px
    32px;

  border:
    1px solid
    var(--select-border);

  border-radius: 6px;

  background:
    linear-gradient(
      rgba(255,255,255,.84),
      rgba(255,255,255,.84)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(201,154,75,.04) 0,
      rgba(201,154,75,.04) 1px,
      transparent 1px,
      transparent 8px
    );

  box-shadow:
    0 12px 30px
    rgba(114, 75, 47, .08);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

/* 二重枠 */

.osechi-select-card::before {
  content: "";
  position: absolute;
  inset: 8px;

  border:
    1px solid
    rgba(201,154,75,.35);

  pointer-events: none;
}

/* 三段重だけほんのりピンク */

.osechi-select-card--primary {
  background:
    linear-gradient(
      rgba(255,247,245,.90),
      rgba(255,247,245,.90)
    ),
    repeating-linear-gradient(
      45deg,
      rgba(232,162,153,.06) 0,
      rgba(232,162,153,.06) 1px,
      transparent 1px,
      transparent 8px
    );
}

.osechi-select-card:hover {
  transform:
    translateY(-5px);

  box-shadow:
    0 18px 40px
    rgba(114, 75, 47, .14);
}

/* 上部装飾 */

.osechi-select-card__ornament {
  text-align: center;

  color:
    var(--select-gold);

  font-size: 22px;
}

/* タイトル */

.osechi-select-card__title {
  margin:
    8px
    0
    0;

  text-align: center;

  font-size:
    clamp(
      32px,
      4vw,
      48px
    );

  font-weight: 500;

  letter-spacing: .12em;
}

.osechi-select-card--primary
.osechi-select-card__title {
  color:
    var(--select-red);
}

/* ライン */

.osechi-select-card__divider {
  display: flex;
  align-items: center;

  gap: 12px;

  margin:
    16px auto
    24px;

  width: 70%;

  color:
    var(--select-gold);
}

.osechi-select-card__divider::before,
.osechi-select-card__divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(
      201,
      154,
      75,
      .55
    );
}

/* --------------------------------
 product image
-------------------------------- */

.osechi-select-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 280px;

  padding:
    12px 10px 22px;
}

.osechi-select-card__visual img {
  display: block;

  width: 100%;
  max-width: 430px;

  height: 280px;

  object-fit: contain;

  filter:
    drop-shadow(
      0 14px 12px
      rgba(
        73,
        48,
        34,
        .12
      )
    );

  transition:
    transform .35s ease;
}

.osechi-select-card:hover
.osechi-select-card__visual img {
  transform:
    translateY(-4px)
    scale(1.015);
}

/* --------------------------------
 information box
-------------------------------- */

/* =====================================
   おすすめ吹き出し
===================================== */

.osechi-select-card {
  overflow: visible;
  margin-top: 22px;
}

.osechi-select-card__recommend-bubble {
  position: absolute;

  top: -20px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 3;

  width: max-content;
  max-width: 85%;

  padding: 7px 18px;

  border: 1px solid rgba(205, 137, 127, .75);

  border-radius: 999px;

  background: #fff8f5;

  color: #b94a4d;

  font-size: 12px;
  line-height: 1.4;

  letter-spacing: .05em;

  white-space: nowrap;

  box-shadow:
    0 4px 10px rgba(120, 70, 55, .08);
}


/* 吹き出しの三角 */

.osechi-select-card__recommend-bubble::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -7px;

  width: 12px;
  height: 12px;

  border-right: 1px solid rgba(205, 137, 127, .75);
  border-bottom: 1px solid rgba(205, 137, 127, .75);

  background: #fff8f5;

  transform:
    translateX(-50%)
    rotate(45deg);
}


/* 三段重だけ少し強調 */

.osechi-select-card--primary
.osechi-select-card__recommend-bubble {
  background: #fce4df;
  color: #ad3038;
}


/* =====================================
   種類・人数 横並び
===================================== */

.osechi-select-card__stats {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 8px;

  margin-top: 2px;
}


/* それぞれの情報 */

.osechi-select-card__stat {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  min-height: 58px;

  padding: 7px 10px;

  border:
    1px solid
    rgba(201, 154, 75, .42);

  background:
    rgba(255, 252, 248, .82);
}


/* アイコン */

.osechi-select-card__stat-icon {
  display: grid;
  place-items: center;

  flex: 0 0 auto;

  width: 30px;
  height: 30px;

  border:
    1px solid
    rgba(201,154,75,.7);

  border-radius: 50%;

  color:
    var(--select-gold);

  font-size: 14px;
}


/* 文字部分 */

.osechi-select-card__stat-text {
  display: flex;
  flex-direction: column;

  gap: 1px;
}


/* 品数 / 人数 */

.osechi-select-card__stat-label {
  color: #9a7660;

  font-size: 10px;

  line-height: 1.2;

  letter-spacing: .1em;
}


/* 38種 / 4〜5人前 */

.osechi-select-card__stat-value {
  color: var(--select-brown);

  font-size: 13px;

  line-height: 1.2;

  white-space: nowrap;
}

.osechi-select-card__stat-value strong {
  color: var(--select-red);

  font-size: 21px;

  font-weight: 500;
}


/* =====================================
   上下余白をさらに圧縮
===================================== */

.osechi-select-card {
  padding-top: 16px;
  padding-bottom: 16px;
}

.osechi-select-card__title {
  margin-top: 2px;

  font-size:
    clamp(23px, 2.2vw, 30px);
}

.osechi-select-card__divider {
  margin:
    6px auto
    8px;
}


/* 商品画像は大きさを維持 */

.osechi-select-card__visual {
  padding:
    0 10px
    4px;
}


/* ボタン */

.osechi-select-card__button {
  min-height: 44px;

  margin-top: 10px;

  padding:
    7px
    20px;

  font-size: 14px;
}


/* =====================================
   スマホ
===================================== */

@media (max-width: 700px) {

  .osechi-select-card {
    margin-top: 18px;
  }

  .osechi-select-card__recommend-bubble {
    top: -17px;

    padding: 6px 13px;

    font-size: 11px;
  }

  .osechi-select-card__stats {
    gap: 6px;
  }

  .osechi-select-card__stat {
    min-height: 52px;

    gap: 6px;

    padding: 6px;
  }

  .osechi-select-card__stat-icon {
    width: 26px;
    height: 26px;

    font-size: 12px;
  }

  .osechi-select-card__stat-value {
    font-size: 11px;
  }

  .osechi-select-card__stat-value strong {
    font-size: 18px;
  }

}




.osechi-select-card__row:last-child {
  border-bottom: 0;
}

.osechi-select-card__icon {
  color:
    var(--select-gold);

  font-size: 21px;
}

.osechi-select-card__label {
  margin-right: 7px;

  font-size: 17px;
}

.osechi-select-card__value {
  font-size: 22px;

  letter-spacing: .04em;
}

.osechi-select-card__value strong {
  color:
    var(--select-red);

  font-size: 32px;

  font-weight: 500;
}

.osechi-select-card__recommend {
  grid-column:
    2 / -1;

  font-size: 16px;

  line-height: 1.7;
}

/* --------------------------------
 CTA
-------------------------------- */

.osechi-select-card__button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  margin:
    22px auto
    0;

  width: 90%;

  min-height: 68px;

  padding:
    15px
    26px;

  border:
    1px solid
    #c68078;

  border-radius: 999px;

  background:
    linear-gradient(
      180deg,
      #efb0a6,
      #df8077
    );

  color: white;

  font-size:
    20px;

  letter-spacing:
    .15em;

  text-decoration:
    none;

  box-shadow:
    inset
    0 1px
    rgba(255,255,255,.45),

    0 8px
    18px
    rgba(
      130,
      67,
      61,
      .15
    );

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

/* 三段重だけ少し濃く */

.osechi-select-card--primary
.osechi-select-card__button {
  background:
    linear-gradient(
      180deg,
      #df6f72,
      #bd3947
    );
}

.osechi-select-card__button:hover {
  transform:
    translateY(-2px);

  filter:
    brightness(1.04);

  box-shadow:
    0 10px 22px
    rgba(
      130,
      67,
      61,
      .23
    );
}

.osechi-select-card__button span {
  position: absolute;

  right: 24px;

  font-family:
    Arial,
    sans-serif;

  font-size:
    26px;
}

/* --------------------------------
 tablet
-------------------------------- */

@media (
  max-width: 900px
) {

  .osechi-select {
    padding:
      65px
      16px
      70px;
  }

  .osechi-select__cards {
    gap:
      20px;
  }

  .osechi-select-card {
    padding:
      28px
      22px
      26px;
  }

  .osechi-select-card__visual {
    min-height:
      220px;
  }

  .osechi-select-card__visual img {
    height:
      220px;
  }

  .osechi-select-card__value {
    font-size:
      18px;
  }

  .osechi-select-card__value strong {
    font-size:
      27px;
  }

}

/* --------------------------------
 smartphone
-------------------------------- */

@media (
  max-width: 700px
) {

  .osechi-select__heading {
    margin-bottom:
      32px;
  }

  .osechi-select__cards {
    grid-template-columns:
      1fr;

    gap:
      22px;
  }

  .osechi-select-card {
    max-width:
      520px;

    width:
      100%;

    margin:
      0 auto;
  }

  .osechi-select-card__visual {
    min-height:
      240px;
  }

  .osechi-select-card__visual img {
    height:
      240px;
  }

}

/* --------------------------------
 small smartphone
-------------------------------- */

@media (
  max-width: 480px
) {

  .osechi-select {
    padding:
      50px
      12px
      55px;
  }

  .osechi-select-card {
    padding:
      26px
      16px
      20px;
  }

  .osechi-select-card__title {
    font-size:
      34px;
  }

  .osechi-select-card__visual {
    min-height:
      200px;
  }

  .osechi-select-card__visual img {
    height:
      200px;
  }

  .osechi-select-card__row {
    grid-template-columns:
      28px
      auto
      1fr;

    min-height:
      60px;

    padding:
      10px
      12px;
  }

  .osechi-select-card__recommend {
    font-size:
      14px;
  }

  .osechi-select-card__button {
    width:
      100%;

    min-height:
      60px;

    font-size:
      17px;
  }

}











/* =====================================
   おせち選択カード
   配置そのまま・縦幅だけコンパクト化
===================================== */

/* セクション全体の上下余白 */
.osechi-select {
  padding-top: 34px;
  padding-bottom: 38px;
}

/* セクション見出し */
.osechi-select__heading {
  margin-bottom: 20px;
}

.osechi-select__symbol {
  margin-bottom: 2px;
  font-size: 20px;
}

.osechi-select__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.osechi-select__lead {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.5;
}


/* -------------------------------------
   カード
------------------------------------- */

.osechi-select__cards {
  gap: 22px;
}

.osechi-select-card {
  padding: 18px 24px 20px;
}


/* カード上部の桜・装飾を削除 */
.osechi-select-card__ornament {
  display: none;
}


/* 三段重 / 二段重 */
.osechi-select-card__title {
  margin: 0;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.25;
}


/* タイトル下の飾り線 */
.osechi-select-card__divider {
  width: 64%;
  margin: 8px auto 10px;
  gap: 7px;
}

.osechi-select-card__divider span {
  font-size: 12px;
}


/* -------------------------------------
   商品画像
   大きさはほぼそのまま
------------------------------------- */

.osechi-select-card__visual {
  min-height: 260px;
  padding: 0 10px 8px;
}

.osechi-select-card__visual img {
  height: 260px;
}


/* -------------------------------------
   概要欄
------------------------------------- */

.osechi-select-card__info {
  margin-top: 0;
}


/* 1行あたりの高さを圧縮 */
.osechi-select-card__row {
  min-height: 46px;
  padding: 5px 14px;
}


/* 左アイコン */
.osechi-select-card__icon {
  font-size: 15px;
}


/* 「全」「約」 */
.osechi-select-card__label {
  margin-right: 4px;
  font-size: 13px;
}


/* 「種」「人前」など */
.osechi-select-card__value {
  font-size: 15px;
  line-height: 1.2;
}


/* 38、4〜5など数字 */
.osechi-select-card__value strong {
  font-size: 24px;
  line-height: 1;
}


/* 誰向け */
.osechi-select-card__recommend {
  font-size: 12px;
  line-height: 1.45;
}


/* -------------------------------------
   詳細を見るボタン
------------------------------------- */

.osechi-select-card__button {
  width: 88%;
  min-height: 48px;

  margin-top: 12px;

  padding: 8px 22px;

  font-size: 15px;
  line-height: 1;

  letter-spacing: .1em;
}

.osechi-select-card__button span {
  right: 18px;
  font-size: 19px;
}


/* =====================================
   タブレット
===================================== */

@media (max-width: 900px) {

  .osechi-select {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .osechi-select-card {
    padding: 16px 18px 18px;
  }

  .osechi-select-card__visual {
    min-height: 240px;
  }

  .osechi-select-card__visual img {
    height: 240px;
  }

}


/* =====================================
   スマホ
===================================== */

@media (max-width: 700px) {

  .osechi-select {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .osechi-select__heading {
    margin-bottom: 16px;
  }

  .osechi-select__cards {
    gap: 14px;
  }

  .osechi-select-card {
    padding: 15px 14px 16px;
  }

  .osechi-select-card__title {
    font-size: 26px;
  }

  .osechi-select-card__divider {
    margin-top: 6px;
    margin-bottom: 8px;
  }

  .osechi-select-card__visual {
    min-height: 220px;
    padding-bottom: 5px;
  }

  .osechi-select-card__visual img {
    height: 220px;
  }

  .osechi-select-card__row {
    min-height: 43px;
    padding: 4px 10px;
  }

  .osechi-select-card__value strong {
    font-size: 22px;
  }

  .osechi-select-card__button {
    min-height: 46px;
    margin-top: 10px;
    font-size: 14px;
  }

}









.osechi-book-select {
  --book-bg: #fff9f5;
  --book-brown: #2c1b17;
  --book-red: #b51c26;
  --book-gold: #c99743;

  position: relative;
  overflow: hidden;

  padding: 48px 20px 56px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(242,165,173,.23),
      transparent 27%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(244,180,187,.22),
      transparent 29%
    ),
    #fff9f5;

  color: var(--book-brown);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}


/* 背景装飾 */

.osechi-book-select::before,
.osechi-book-select::after {
  content: "✿";

  position: absolute;

  color:
    rgba(221,140,136,.11);

  font-size: 210px;

  pointer-events: none;
}

.osechi-book-select::before {
  top: -70px;
  left: -55px;
}

.osechi-book-select::after {
  right: -50px;
  bottom: -80px;
}


.osechi-book-select__inner {
  position: relative;
  z-index: 1;

  max-width: 1080px;
  margin: 0 auto;
}


/* =========================
   heading
========================= */

.osechi-book-select__heading {
  text-align: center;
  margin-bottom: 30px;
}

.osechi-book-select__symbol {
  color: var(--book-gold);

  font-size: 26px;

  margin-bottom: 5px;
}

.osechi-book-select__title {
  margin: 0;

  font-size:
    clamp(30px, 4vw, 50px);

  font-weight: 500;

  letter-spacing: .08em;
}

.osechi-book-select__title span {
  color: var(--book-red);
}

.osechi-book-select__lead {
  margin: 9px 0 0;

  font-size: 14px;

  line-height: 1.7;

  letter-spacing: .07em;
}

.osechi-book-select__divider {
  display: flex;

  align-items: center;

  gap: 10px;

  max-width: 620px;

  margin: 17px auto 0;

  color: var(--book-gold);
}

.osechi-book-select__divider::before,
.osechi-book-select__divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(201,151,67,.55);
}


/* ==================================================
   BOOK SELECT
   本を画像で表示するバージョン
================================================== */

.osechi-book-select__books {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 42px;

  width: 100%;
  max-width: 850px;

  margin: 0 auto;
}


/* 本全体 */

.osechi-book {
  position: relative;

  display: block;

  min-width: 0;

  color: inherit;
  text-decoration: none;

  transition:
    transform .35s ease,
    filter .35s ease;
}


/* 本画像 */

.osechi-book__image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 16px 18px rgba(82, 47, 36, .16)
    );

  transition:
    transform .35s ease,
    filter .35s ease;
}


/* 三段重だけほんの少し角度をつける */

.osechi-book--sandan {
  transform: rotate(-1deg);
}


/* 二段重 */

.osechi-book--nidan {
  transform: rotate(1deg);
}


/* hover */

.osechi-book:hover {
  transform:
    translateY(-7px)
    scale(1.015);
}


.osechi-book--sandan:hover {
  transform:
    translateY(-7px)
    rotate(-1deg)
    scale(1.015);
}


.osechi-book--nidan:hover {
  transform:
    translateY(-7px)
    rotate(1deg)
    scale(1.015);
}


.osechi-book:hover
.osechi-book__image {
  filter:
    drop-shadow(
      0 22px 24px rgba(82, 47, 36, .22)
    );
}


/* ==================================================
   人気No.1
================================================== */

.osechi-book__badge {
  position: absolute;

  top: 1%;
  left: -7%;

  z-index: 5;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  width: 82px;
  height: 82px;

  border:
    2px solid
    #d9ae63;

  border-radius:
    46% 54% 48% 52%;

  background:
    linear-gradient(
      145deg,
      #dd7474,
      #b82d3b
    );

  color: #fff;

  text-align: center;

  box-shadow:
    0 7px 16px
    rgba(94,41,39,.18);
}


.osechi-book__badge span {
  display: block;

  font-size: 12px;

  line-height: 1.2;
}


.osechi-book__badge strong {
  display: block;

  margin-top: 2px;

  font-size: 20px;

  font-weight: 500;

  line-height: 1.1;
}


/* ==================================================
   summary
================================================== */

.osechi-book-select__summary {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 0;

  max-width: 800px;

  margin:
    30px auto 0;

  padding:
    16px 22px;

  border:
    1px solid
    rgba(201,151,67,.45);

  background:
    rgba(255,253,248,.86);

  box-shadow:
    0 7px 16px
    rgba(102,64,43,.07);
}


/* 概要 */

.osechi-book-select__summary-item {
  display: flex;

  align-items: center;

  gap: 8px;

  padding:
    0 20px;

  border-right:
    1px solid
    rgba(201,151,67,.35);
}


.osechi-book-select__summary-item > span {
  color:
    var(--book-gold);

  font-size: 21px;
}


.osechi-book-select__summary-item p {
  margin: 0;

  font-size: 14px;
}


.osechi-book-select__summary-item strong {
  color:
    var(--book-red);

  font-size: 23px;

  font-weight: 500;
}


/* 価格 */

.osechi-book-select__price {
  display: flex;

  align-items: baseline;

  gap: 4px;

  padding-left: 20px;
}


.osechi-book-select__price span {
  padding:
    2px 4px;

  background:
    var(--book-red);

  color:
    #fff;

  font-size: 10px;
}


.osechi-book-select__price strong {
  color:
    var(--book-red);

  font-size: 37px;

  font-weight: 500;

  line-height: 1;
}


.osechi-book-select__price small {
  color:
    var(--book-red);

  font-size: 16px;
}


/* ==================================================
   tablet
================================================== */

@media (max-width: 900px) {

  .osechi-book-select__books {
    gap: 26px;

    max-width: 720px;
  }

}


/* ==================================================
   smartphone
================================================== */

@media (max-width: 700px) {

  .osechi-book-select {
    padding:
      38px 14px 44px;
  }


  .osechi-book-select__heading {
    margin-bottom: 24px;
  }


  /* スマホでも2冊横並び */
  .osechi-book-select__books {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
  }


  .osechi-book--sandan {
    transform: rotate(-.5deg);
  }


  .osechi-book--nidan {
    transform: rotate(.5deg);
  }


  .osechi-book__badge {
    top: -5px;
    left: -5px;

    width: 54px;
    height: 54px;
  }


  .osechi-book__badge span {
    font-size: 9px;
  }


  .osechi-book__badge strong {
    font-size: 14px;
  }


  .osechi-book-select__summary {
    margin-top: 22px;

    padding:
      12px 8px;
  }


  .osechi-book-select__summary-item {
    padding:
      6px 9px;
  }


  .osechi-book-select__summary-item > span {
    font-size: 17px;
  }


  .osechi-book-select__summary-item p {
    font-size: 11px;
  }


  .osechi-book-select__summary-item strong {
    font-size: 18px;
  }


  .osechi-book-select__price {
    padding:
      7px 9px;
  }


  .osechi-book-select__price strong {
    font-size: 29px;
  }

}


/* ==================================================
   very small smartphone
================================================== */

@media (max-width: 450px) {

  .osechi-book-select__books {
    gap: 6px;
  }


  .osechi-book__badge {
    width: 48px;
    height: 48px;
  }


  .osechi-book__badge strong {
    font-size: 12px;
  }

}












/* ==================================================
   三段重 詳細
================================================== */

.osechi-book-detail {
  --detail-main: #b82734;
  --detail-main-light: #e99593;
  --detail-gold: #c99543;
  --detail-brown: #302019;

  display: block;

  padding: 55px 20px 70px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(239,157,165,.17),
      transparent 25%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(239,157,165,.18),
      transparent 28%
    ),
    #fff9f5;

  color: var(--detail-brown);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}

.osechi-book-detail.is-open {
  display: block;

  animation:
    osechiDetailIn .55s ease both;
}

@keyframes osechiDetailIn {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

}

.osechi-book-detail__inner {
  max-width: 1180px;
  margin: 0 auto;
}


/* =========================
   heading
========================= */

.osechi-book-detail__heading {
  margin-bottom: 28px;
  text-align: center;
}

.osechi-book-detail__heading-mark {
  display: block;

  margin-bottom: 3px;

  color: var(--detail-gold);

  font-size: 25px;
}

.osechi-book-detail__heading h2 {
  margin: 0;

  font-size:
    clamp(30px, 4vw, 48px);

  font-weight: 500;

  letter-spacing: .08em;
}

.osechi-book-detail__heading h2 span {
  color: var(--detail-main);
}

.osechi-book-detail__heading p {
  margin: 7px 0 0;

  font-size: 14px;

  letter-spacing: .06em;
}


/* ==================================================
   開いた本
================================================== */

.osechi-open-book {
  position: relative;

  max-width: 980px;

  margin: 0 auto;

  perspective: 1800px;
}

.osechi-open-book__book {
  position: relative;

  min-height: 620px;

  padding:
    15px
    20px
    28px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #d55d61,
      #b73440 55%,
      #972632
    );

  box-shadow:
    0 27px 43px rgba(74,42,31,.23),
    inset 0 1px rgba(255,255,255,.15);
}


/* 赤い表紙 */

.osechi-open-book__cover {
  position: absolute;

  inset: 8px;

  border:
    1px solid rgba(255,215,147,.55);

  border-radius: 15px;

  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,.04),
    inset 0 1px rgba(255,255,255,.2);

  pointer-events: none;
}


/* =========================
   ページの厚み
========================= */

.osechi-open-book__page-stack {
  position: absolute;

  z-index: 2;
}

.osechi-open-book__page-stack--left {
  top: 24px;
  bottom: 34px;
  left: 14px;

  width: 27px;

  border-radius: 10px 0 0 10px;

  background:
    repeating-linear-gradient(
      90deg,
      #fff8ea 0,
      #fff8ea 3px,
      #dbc8a8 3px,
      #dbc8a8 4px
    );
}

.osechi-open-book__page-stack--right {
  top: 24px;
  right: 14px;
  bottom: 34px;

  width: 27px;

  border-radius: 0 10px 10px 0;

  background:
    repeating-linear-gradient(
      90deg,
      #dbc8a8 0,
      #fff8ea 3px,
      #fff8ea 4px
    );
}

.osechi-open-book__page-stack--bottom {
  right: 30px;
  bottom: 12px;
  left: 30px;

  height: 25px;

  border-radius: 0 0 14px 14px;

  background:
    repeating-linear-gradient(
      to bottom,
      #fff8ea 0,
      #fff8ea 3px,
      #ddc9aa 3px,
      #ddc9aa 4px
    );

  box-shadow:
    0 6px 10px rgba(71,43,29,.1);
}


/* ==================================================
   紙面
================================================== */

.osechi-open-book__paper {
  position: relative;

  z-index: 5;

  min-height: 575px;

  overflow: visible;

  border-radius: 12px;

  background:
    linear-gradient(
      90deg,
      #fff8ec 0%,
      #fffaf2 44%,
      #f1e3cd 48.5%,
      #cbb395 50%,
      #f1e3cd 51.5%,
      #fffaf2 56%,
      #fff8ec 100%
    );

  box-shadow:
    inset 0 0 0 1px rgba(201,149,67,.4),
    inset 0 -14px 22px rgba(91,59,39,.04);
}


/* 金の内枠 */

.osechi-open-book__paper::before {
  content: "";

  position: absolute;

  inset: 21px;

  border:
    1px solid rgba(201,149,67,.45);

  border-radius: 4px;

  pointer-events: none;
}


/* 紙の質感 */

.osechi-open-book__paper::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background:
    repeating-linear-gradient(
      45deg,
      rgba(202,155,86,.018) 0,
      rgba(202,155,86,.018) 1px,
      transparent 1px,
      transparent 7px
    );

  pointer-events: none;
}


/* 中央の綴じ目 */

.osechi-open-book__center {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  z-index: 40;

  width: 38px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      90deg,
      rgba(69,43,28,.03),
      rgba(76,46,28,.14),
      rgba(255,255,255,.13),
      rgba(76,46,28,.15),
      rgba(69,43,28,.03)
    );

  box-shadow:
    inset 9px 0 11px rgba(76,46,28,.05),
    inset -9px 0 11px rgba(76,46,28,.05);

  pointer-events: none;
}


/* ==================================================
   各ページ
================================================== */

.osechi-book-page {
  position: absolute;

  inset: 0;

  z-index: 10;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;
}

.osechi-book-page.is-active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

.osechi-book-page__left,
.osechi-book-page__right {
  position: relative;

  min-width: 0;

  padding: 42px 46px;
}

.osechi-book-page__left {
  padding-right: 58px;

  box-shadow:
    inset -18px 0 25px rgba(80,48,29,.05);
}

.osechi-book-page__right {
  padding-left: 58px;

  box-shadow:
    inset 18px 0 25px rgba(80,48,29,.05);
}


/* =========================
   桜
========================= */

.osechi-page-sakura {
  position: absolute;

  color: rgba(224,139,132,.15);

  font-size: 85px;

  pointer-events: none;
}

.osechi-page-sakura--left {
  bottom: 23px;
  left: 24px;

  transform: rotate(-10deg);
}

.osechi-page-sakura--right {
  top: 22px;
  right: 24px;

  transform: rotate(12deg);
}


/* =========================
   ページタイトル
========================= */

.osechi-book-page__title {
  position: relative;

  z-index: 5;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  margin: 0 0 18px;

  font-size: 28px;

  font-weight: 500;

  letter-spacing: .12em;
}

.osechi-book-page__title span {
  color: var(--detail-gold);

  font-size: 14px;
}


/* =========================
   画像
========================= */

.osechi-book-page__image {
  position: relative;

  z-index: 5;

  height: 345px;

  padding: 8px;

  border:
    1px solid rgba(201,149,67,.7);

  background:
    rgba(255,255,255,.7);

  box-shadow:
    0 8px 17px rgba(70,43,28,.1);
}

.osechi-book-page__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* 説明 */

.osechi-book-page__caption {
  position: relative;

  z-index: 5;

  max-width: 350px;

  margin: 15px auto 0;

  text-align: center;

  font-size: 12px;

  line-height: 1.8;

  letter-spacing: .03em;
}


/* ==================================================
   お品書き
================================================== */

.osechi-book-menu__heading {
  position: relative;

  z-index: 5;

  margin-bottom: 18px;

  text-align: center;
}

.osechi-book-menu__heading span {
  display: block;

  margin-bottom: 4px;

  color: #9b7661;

  font-size: 11px;

  letter-spacing: .14em;
}

.osechi-book-menu__heading strong {
  font-size: 27px;

  font-weight: 500;

  letter-spacing: .12em;
}

.osechi-book-menu {
  position: relative;

  z-index: 5;

  margin: 0;

  padding: 0;

  list-style: none;
}

.osechi-book-menu li {
  position: relative;

  padding: 8px 8px 8px 31px;

  border-bottom:
    1px dotted rgba(185,145,89,.4);

  font-size: 14px;

  letter-spacing: .03em;
}

.osechi-book-menu li::before {
  content: "✿";

  position: absolute;

  left: 7px;

  color: var(--detail-gold);

  font-size: 11px;
}

.osechi-book-menu__note {
  position: relative;

  z-index: 5;

  margin-top: 18px;

  padding: 12px 15px;

  border:
    1px solid rgba(201,149,67,.35);

  background:
    rgba(255,249,240,.7);

  text-align: center;

  font-size: 11px;

  line-height: 1.7;
}

.osechi-book-menu__note span {
  color: var(--detail-main);
}


/* ==================================================
   インデックス
================================================== */

.osechi-book-tabs {
  position: absolute;

  top: 50px;

  right: -78px;

  z-index: 100;

  display: flex;

  flex-direction: column;

  gap: 8px;
}

.osechi-book-tab {
  width: 90px;
  height: 102px;

  padding: 8px;

  border:
    1px solid rgba(185,137,79,.55);

  border-radius:
    0 14px 14px 0;

  background:
    #fff8ef;

  color:
    #5d4234;

  font-family: inherit;

  font-size: 15px;

  writing-mode:
    vertical-rl;

  letter-spacing: .12em;

  cursor: pointer;

  box-shadow:
    5px 6px 13px rgba(74,46,30,.09);

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.osechi-book-tab:hover {
  transform: translateX(4px);
}

.osechi-book-tab.is-active {
  transform: translateX(7px);

  border-color:
    var(--detail-main);

  background:
    linear-gradient(
      180deg,
      var(--detail-main-light),
      var(--detail-main)
    );

  color: white;
}

.osechi-book-tab--review {
  background: #f7eef1;
}


/* ==================================================
   ページめくり
================================================== */

.osechi-page-flip {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  z-index: 80;

  width: 50%;

  opacity: 0;

  visibility: hidden;

  transform-origin:
    left center;

  transform-style:
    preserve-3d;

  pointer-events: none;
}

.osechi-page-flip__front,
.osechi-page-flip__back {
  position: absolute;

  inset: 0;

  border:
    1px solid rgba(201,149,67,.35);

  background:
    linear-gradient(
      90deg,
      #fff7e9,
      #fffaf2
    );

  backface-visibility: hidden;

  box-shadow:
    -13px 0 23px rgba(75,46,30,.14);
}

.osechi-page-flip__front::after {
  content: "";

  position: absolute;

  inset: 20px;

  border:
    1px solid rgba(201,149,67,.35);
}

.osechi-page-flip__back {
  transform:
    rotateY(180deg);

  background:
    linear-gradient(
      90deg,
      #eedfc8,
      #fff7e9
    );
}

.osechi-page-flip__ornament {
  position: absolute;

  top: 35px;
  right: 37px;

  color:
    rgba(225,140,135,.18);

  font-size: 70px;
}

.osechi-page-flip.is-turning {
  visibility: visible;

  animation:
    osechiPageFlip
    .82s
    cubic-bezier(.35,.05,.2,1)
    both;
}

@keyframes osechiPageFlip {

  0% {
    opacity: 0;

    transform:
      rotateY(0deg);
  }

  5% {
    opacity: 1;
  }

  40% {
    opacity: 1;

    transform:
      rotateY(-78deg);
  }

  50% {
    transform:
      rotateY(-96deg);
  }

  95% {
    opacity: 1;

    transform:
      rotateY(-178deg);
  }

  100% {
    opacity: 0;

    transform:
      rotateY(-180deg);
  }

}


/* ==================================================
   口コミ
================================================== */

.osechi-review {
  position: relative;

  z-index: 5;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.osechi-review__item {
  padding: 15px;

  border:
    1px solid rgba(201,149,67,.35);

  background:
    rgba(255,251,246,.74);
}

.osechi-review__meta {
  display: flex;

  justify-content:
    space-between;

  margin-bottom: 6px;

  font-size: 10px;
}

.osechi-review__meta strong {
  color: #d49c3c;
}

.osechi-review h4 {
  margin: 0 0 6px;

  color: var(--detail-main);

  font-size: 14px;
}

.osechi-review p {
  margin: 0;

  font-size: 12px;

  line-height: 1.7;
}

.osechi-review-summary {
  position: relative;

  z-index: 5;

  padding: 70px 25px 0;

  text-align: center;
}

.osechi-review-summary__label {
  display: block;

  margin-bottom: 10px;

  color: #98725d;

  font-size: 12px;
}

.osechi-review-summary > strong {
  display: block;

  color: var(--detail-main);

  font-size: 70px;

  font-weight: 500;

  line-height: 1;
}

.osechi-review-summary__stars {
  margin-top: 8px;

  color: #d69b35;

  font-size: 21px;

  letter-spacing: .08em;
}

.osechi-review-summary p {
  margin: 20px 0;

  font-size: 13px;

  line-height: 1.9;
}

.osechi-review-summary small {
  color: #9b8478;

  font-size: 9px;
}


/* ==================================================
   商品情報
================================================== */




/* ==================================================
   スマホ
================================================== */

@media (max-width: 750px) {

  .osechi-book-detail {
    padding:
      38px 10px
      50px;
  }

  .osechi-open-book {
    display: flex;

    flex-direction: column;

    max-width: 100%;
  }


  /* タブを上に */
  .osechi-book-tabs {
    position: static;

    order: -1;

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    gap: 4px;

    margin-bottom: 7px;
  }

  .osechi-book-tab {
    width: auto;
    height: auto;

    min-height: 42px;

    padding: 6px 2px;

    border-radius:
      8px 8px 0 0;

    writing-mode:
      horizontal-tb;

    font-size: 10px;

    letter-spacing: .02em;
  }

  .osechi-book-tab.is-active {
    transform:
      translateY(2px);
  }


 


  

  .osechi-product-info {
    padding: 18px 14px;
  }

  .osechi-product-info__stats p {
    font-size: 16px;
  }

  .osechi-product-info__stats strong {
    font-size: 24px;
  }

  .osechi-product-info__stats span {
    font-size: 22px;
  }

  .osechi-product-info__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .osechi-buy-button {
    min-height: 56px;
    font-size: 15px;
  }


}




























/* ==================================================
   三段重詳細 上書きCSS
================================================== */

.osechi-book-detail {
  --detail-main: #b82734;
  --detail-main-light: #e99593;
  --detail-gold: #c99543;
  --detail-brown: #302019;

  display: none;
  padding: 58px 20px 72px;
  background:
    radial-gradient(
      circle at 0 0,
      rgba(239,157,165,.17),
      transparent 25%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(239,157,165,.18),
      transparent 28%
    ),
    #fff9f5;
  color: var(--detail-brown);
  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}



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

.osechi-book-detail__inner {
  max-width: 1260px;
  margin: 0 auto;
}

.osechi-book-detail__heading {
  margin-bottom: 30px;
  text-align: center;
}

.osechi-book-detail__heading-mark {
  display: block;
  margin-bottom: 4px;
  color: var(--detail-gold);
  font-size: 26px;
}

.osechi-book-detail__heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: .08em;
}

.osechi-book-detail__heading h2 span {
  color: var(--detail-main);
}

.osechi-book-detail__heading p {
  margin: 9px 0 0;
  font-size: 14px;
  letter-spacing: .06em;
}


/* ==================================================
   見開き本
================================================== */

.osechi-open-book {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 88px;
  box-sizing: border-box;
  perspective: 1800px;
}

.osechi-open-book__book {
  position: relative;
  width: 100%;
  min-height: 760px;
  padding: 14px 18px 24px;
  box-sizing: border-box;
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      #d76166 0%,
      #bb3944 55%,
      #9a2632 100%
    );
  box-shadow:
    0 24px 38px rgba(74,42,31,.18),
    inset 0 1px rgba(255,255,255,.14);
}

.osechi-open-book__cover {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,215,147,.55);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,.04),
    inset 0 1px rgba(255,255,255,.18);
  pointer-events: none;
}

.osechi-open-book__page-stack {
  position: absolute;
  z-index: 2;
}

.osechi-open-book__page-stack--left {
  top: 22px;
  bottom: 28px;
  left: 11px;
  width: 22px;
  border-radius: 10px 0 0 10px;
  background:
    repeating-linear-gradient(
      90deg,
      #fff8ea 0,
      #fff8ea 3px,
      #dbc8a8 3px,
      #dbc8a8 4px
    );
}

.osechi-open-book__page-stack--right {
  top: 22px;
  bottom: 28px;
  right: 11px;
  width: 22px;
  border-radius: 0 10px 10px 0;
  background:
    repeating-linear-gradient(
      90deg,
      #dbc8a8 0,
      #fff8ea 3px,
      #fff8ea 4px
    );
}

.osechi-open-book__page-stack--bottom {
  left: 26px;
  right: 26px;
  bottom: 10px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background:
    repeating-linear-gradient(
      to bottom,
      #fff8ea 0,
      #fff8ea 3px,
      #ddc9aa 3px,
      #ddc9aa 4px
    );
  box-shadow:
    0 6px 10px rgba(71,43,29,.08);
}

.osechi-open-book__paper {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: 700px;
  box-sizing: border-box;
  overflow: visible;
  border-radius: 12px;
  background:
    linear-gradient(
      90deg,
      #fff8ec 0%,
      #fffaf2 43%,
      #f4e8d7 47.5%,
      #cdb89a 50%,
      #f4e8d7 52.5%,
      #fffaf2 57%,
      #fff8ec 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(201,149,67,.38),
    inset 0 -8px 18px rgba(91,59,39,.03);
}

.osechi-open-book__paper::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(201,149,67,.42);
  border-radius: 4px;
  pointer-events: none;
}

.osechi-open-book__center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 30;
  width: 34px;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      rgba(72,44,27,0) 0%,
      rgba(72,44,27,.07) 23%,
      rgba(84,49,28,.15) 43%,
      rgba(255,255,255,.1) 50%,
      rgba(84,49,28,.15) 57%,
      rgba(72,44,27,.07) 77%,
      rgba(72,44,27,0) 100%
    );
  pointer-events: none;
}


/* ==================================================
   各ページ
================================================== */

.osechi-book-page {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.osechi-book-page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.osechi-book-page__left,
.osechi-book-page__right {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}

.osechi-book-page__left {
  display: flex;
  flex-direction: column;
  padding: 40px 52px 34px 40px;
}

.osechi-book-page__right {
  display: flex;
  flex-direction: column;
  padding: 40px 38px 34px 54px;
}


/* 左ページタイトル */

.osechi-book-page__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: .12em;
}

.osechi-book-page__title span {
  color: var(--detail-gold);
  font-size: 15px;
}


/* PNG画像そのまま表示 */

.osechi-book-page__image {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.osechi-book-page__image img {
  display: block;
  max-width: 100%;
  max-height: 510px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(75,46,30,.14));
}


/* ==================================================
   お品書き
================================================== */

.osechi-book-menu__heading {
  flex: 0 0 auto;
  margin: 0 0 14px;
  text-align: center;
}

.osechi-book-menu__heading span {
  display: block;
  margin-bottom: 6px;
  color: #9b7661;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .13em;
}

.osechi-book-menu__heading strong {
  display: block;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .12em;
}

.osechi-book-menu {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.osechi-book-menu li {
  position: relative;
  min-height: 29px;
  display: flex;
  align-items: center;
  padding: 0 4px 0 26px;
  box-sizing: border-box;
  border-bottom: 1px dotted rgba(185,145,89,.38);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .04em;
}

.osechi-book-menu li::before {
  content: "✿";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--detail-gold);
  font-size: 10px;
}


/* ==================================================
   インデックス
================================================== */

.osechi-book-tabs {
  position: absolute;
  top: 48px;
  right: -18px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.osechi-book-tab {
  width: 82px;
  height: 94px;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid rgba(185,137,79,.52);
  border-radius: 0 13px 13px 0;
  background: #fff8ef;
  color: #6b493a;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  writing-mode: vertical-rl;
  letter-spacing: .12em;
  cursor: pointer;
  box-shadow: 4px 4px 10px rgba(74,46,30,.07);
  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.osechi-book-tab:hover {
  transform: translateX(4px);
}

.osechi-book-tab.is-active {
  transform: translateX(5px);
  border-color: #a92531;
  background:
    linear-gradient(
      180deg,
      #e98484,
      #c62f3c
    );
  color: #fff;
}

.osechi-book-tab--review {
  background: #f7eef1;
}


/* ==================================================
   ページめくり
================================================== */

.osechi-page-flip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform-origin: left center;
  transform-style: preserve-3d;
  pointer-events: none;
}

.osechi-page-flip__front,
.osechi-page-flip__back {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  border: 1px solid rgba(201,149,67,.35);
  background:
    linear-gradient(
      90deg,
      #fff8ec,
      #fffaf3
    );
  backface-visibility: hidden;
  box-shadow:
    -10px 0 20px rgba(75,46,30,.12);
}

.osechi-page-flip__front::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,149,67,.4);
}

.osechi-page-flip__back {
  transform: rotateY(180deg);
  background:
    linear-gradient(
      90deg,
      #ead9be,
      #fff7e9
    );
}

.osechi-page-flip.is-turning {
  visibility: visible;
  animation:
    osechiPageFlipFix .8s
    cubic-bezier(.35,.05,.2,1)
    both;
}

@keyframes osechiPageFlipFix {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  5% {
    opacity: 1;
  }
  42% {
    opacity: 1;
    transform: rotateY(-82deg);
  }
  52% {
    opacity: 1;
    transform: rotateY(-100deg);
  }
  95% {
    opacity: 1;
    transform: rotateY(-178deg);
  }
  100% {
    opacity: 0;
    transform: rotateY(-180deg);
  }
}


/* ==================================================
   お客様の声
================================================== */

.osechi-book-page--review .osechi-book-page__left,
.osechi-book-page--review .osechi-book-page__right {
  display: block;
}

.osechi-review {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.osechi-review__item {
  padding: 18px;
  border: 1px solid rgba(201,149,67,.35);
  background: rgba(255,251,246,.74);
}

.osechi-review__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 11px;
}

.osechi-review__meta strong {
  color: #d49c3c;
}

.osechi-review h4 {
  margin: 0 0 7px;
  color: var(--detail-main);
  font-size: 15px;
}

.osechi-review p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.osechi-review-summary {
  padding: 120px 28px 0;
  text-align: center;
}

.osechi-review-summary__label {
  display: block;
  margin-bottom: 10px;
  color: #98725d;
  font-size: 13px;
}

.osechi-review-summary > strong {
  display: block;
  color: var(--detail-main);
  font-size: 78px;
  font-weight: 500;
  line-height: 1;
}

.osechi-review-summary__stars {
  margin-top: 8px;
  color: #d69b35;
  font-size: 24px;
  letter-spacing: .08em;
}

.osechi-review-summary p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.9;
}

.osechi-review-summary small {
  color: #9b8478;
  font-size: 10px;
}


/* ==================================================
   商品情報
================================================== */

.osechi-product-info {
  max-width: 900px;
  margin: 34px auto 0;
  padding: 24px 32px;
  border: 1px solid rgba(201,149,67,.5);
  background: rgba(255,252,247,.92);
  box-shadow: 0 9px 20px rgba(92,61,41,.08);
}

.osechi-product-info__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid rgba(201,149,67,.35);
}

.osechi-product-info__stats > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px 14px;
}

.osechi-product-info__stats span {
  color: var(--detail-gold);
  font-size: 26px;
}

.osechi-product-info__stats p {
  margin: 0;
  font-size: 20px;
}

.osechi-product-info__stats strong {
  color: var(--detail-main);
  font-size: 30px;
  font-weight: 500;
}

.osechi-product-info__text {
  max-width: 680px;
  margin: 15px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

.osechi-product-info__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.osechi-product-info__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.osechi-product-info__price span {
  padding: 3px 4px;
  background: var(--detail-main);
  color: #fff;
  font-size: 10px;
}

.osechi-product-info__price strong {
  color: var(--detail-main);
  font-size: 47px;
  font-weight: 500;
  line-height: 1;
}

.osechi-product-info__price small {
  color: var(--detail-main);
  font-size: 17px;
}

.osechi-product-info__campaign {
  padding: 7px 20px;
  border: 1px solid rgba(201,149,67,.5);
  text-align: center;
}

.osechi-product-info__campaign strong,
.osechi-product-info__campaign span,
.osechi-product-info__campaign b {
  display: block;
}

.osechi-product-info__campaign strong,
.osechi-product-info__campaign b {
  color: var(--detail-main);
}


/* ==================================================
   購入ボタン
================================================== */

.osechi-buy-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 640px;
  min-height: 66px;
  margin: 24px auto 0;
  border: 1px solid #9e3039;
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #e97876,
      var(--detail-main)
    );
  color: #fff;
  font-size: 20px;
  letter-spacing: .14em;
  text-decoration: none;
  box-shadow:
    0 10px 22px rgba(125,47,48,.2);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.osechi-buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(125,47,48,.25);
}

.osechi-buy-button__arrow {
  position: absolute;
  right: 25px;
  font-size: 24px;
}


/* ==================================================
   レスポンシブ
================================================== */

@media (max-width: 980px) {
  .osechi-open-book {
    max-width: 100%;
    padding-right: 0;
    display: flex;
    flex-direction: column;
  }

  .osechi-book-tabs {
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 8px;
  }

  .osechi-book-tab {
    width: auto;
    height: auto;
    min-height: 44px;
    padding: 6px 3px;
    border-radius: 8px 8px 0 0;
    writing-mode: horizontal-tb;
    font-size: 11px;
    letter-spacing: .02em;
  }

  .osechi-book-tab.is-active {
    transform: translateY(2px);
  }

  /* =========================================
   タブレット・スマホ：本 → 和紙カード風
  ========================================= */

  .osechi-open-book__book {
  width: 100%;
  height: auto;
  min-height: 0;

  padding: 8px;

  border-radius: 18px;

  box-sizing: border-box;
  }


  /* 紙部分 */
  .osechi-open-book__paper {
    width: 100%;
    height: auto;
    min-height: 0;

    border-radius: 12px;

    /* PCの「見開き中央線」をなくす */
    background:
      linear-gradient(
      135deg,
      #fffaf1,
      #fff7e9
    );

  overflow: hidden;
  }


  /* 紙の内側の飾り枠 */
  .osechi-open-book__paper::before {
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;

  border-radius: 5px;
  }


  /* 1ページ表示 */
  .osechi-book-page {
    position: relative;
    inset: auto;

    display: none;

    grid-template-columns: minmax(0, 1fr);

    width: 100%;
    height: auto;
    min-height: 0;
  }


  /* 選択されているページだけ表示 */
  .osechi-book-page.is-active {
    display: grid;
  }


  /* 左ページ：スマホでは画像エリアとして表示 */
  .osechi-book-page__left {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;

    padding: 14px 8px 0px;

    box-sizing: border-box;

    box-shadow: none;
  }

  /* 一の重などのタイトル */
  .osechi-book-page__title {
    margin-bottom: 0;
    margin-top: 8px;
  } 

  /* スマホでは右ページを1枚のカードにする */
  .osechi-book-page__right {
   width: 100%;
    min-width: 0;

    padding: 6px 14px 22px;

    box-sizing: border-box;

    box-shadow: none;
}


  /* 商品画像 */
  .osechi-book-page__image {
    flex: none;

    width: 100%;

    margin: 0;
  }


  
  /* 商品画像本体 */
  .osechi-book-page__image img {
    display: block;

    width: auto;
    max-width: min(100%, 280px);
    max-height: none;
    height: auto;

    margin: 0 auto;
  }

  /* 見開きの中央影はスマホでは不要 */
.osechi-open-book__center {
  display: none;
}


/* ページめくり演出も消す */
.osechi-page-flip {
  display: none;
}


/* 本のページ束もスマホでは簡略化 */
.osechi-open-book__page-stack--left,
.osechi-open-book__page-stack--right {
  display: none;
}


/* 下側だけ少しページ感を残す */
.osechi-open-book__page-stack--bottom {
  left: 18px;
  right: 18px;
  bottom: 5px;

  height: 8px;
}

  .osechi-review-summary {
    padding: 10px 0 0;
  }

  .osechi-product-info {
    padding: 18px 14px;
  }

  .osechi-product-info__stats p {
    font-size: 16px;
  }

  .osechi-product-info__stats strong {
    font-size: 18px;
  }

  .osechi-product-info__bottom {
    flex-direction: column;
    gap: 12px;
  }

  .osechi-buy-button {
    min-height: 56px;
    font-size: 15px;
  }
}



/* ==================================================
   詳細は最初から常時表示
================================================== */

#sandan-detail,
#nidan-detail,
.osechi-book-detail {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}












/* ==================================================
   配送について
================================================== */

.osechi-delivery {
  --delivery-bg: #fff9f5;
  --delivery-paper: #fffdf8;
  --delivery-pink: #e8a09a;
  --delivery-pink-dark: #c95e63;
  --delivery-red: #b92b32;
  --delivery-gold: #c89a45;
  --delivery-brown: #34231d;
  --delivery-border: #dfbf8a;

  position: relative;
  overflow: hidden;

  padding: 78px 20px 90px;

  .osechi-delivery {
  background:
    radial-gradient(
      circle at 0 0,
      rgba(232, 145, 155, .30),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(232, 145, 155, .26),
      transparent 30%
    ),
    #fbe6e4;
  }

  color: var(--delivery-brown);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}


.osechi-delivery::before,
.osechi-delivery::after {
  content: "✿";

  position: absolute;

  color:
    rgba(225,145,143,.10);

  font-size: 220px;

  line-height: 1;

  pointer-events: none;
}


.osechi-delivery::before {
  top: -70px;
  left: -55px;
}


.osechi-delivery::after {
  right: -55px;
  bottom: -70px;
}


.osechi-delivery__inner {
  position: relative;
  z-index: 2;

  max-width: 1180px;

  margin: 0 auto;
}


/* =========================
   heading
========================= */

.osechi-delivery__heading {
  margin-bottom: 42px;

  text-align: center;
}


.osechi-delivery__symbol {
  margin-bottom: 8px;

  color: var(--delivery-gold);

  font-size: 30px;
}


.osechi-delivery__title {
  margin: 0;

  font-size:
    clamp(34px, 4.5vw, 58px);

  font-weight: 500;

  letter-spacing: .12em;
}


.osechi-delivery__lead {
  margin: 12px 0 0;

  font-size:
    clamp(14px, 1.6vw, 18px);

  letter-spacing: .08em;

  line-height: 1.8;
}


.osechi-delivery__divider {
  display: flex;

  align-items: center;

  gap: 12px;

  max-width: 540px;

  margin: 20px auto 0;

  color: var(--delivery-gold);
}


.osechi-delivery__divider::before,
.osechi-delivery__divider::after {
  content: "";

  flex: 1;

  height: 1px;

  background:
    rgba(200,154,69,.55);
}


/* ==================================================
   お届け可能日
================================================== */

.osechi-delivery__dates {
  padding: 26px 30px;

  border:
    1px solid
    rgba(200,154,69,.38);

  border-radius: 10px;

  background:
    rgba(255,253,248,.82);

  box-shadow:
    0 10px 30px
    rgba(106,69,45,.06);
}


.osechi-delivery__dates-title {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-bottom: 22px;

  color:
    var(--delivery-pink-dark);
}


.osechi-delivery__dates-icon {
  font-size: 26px;
}


.osechi-delivery__dates-title strong {
  font-size: 24px;

  font-weight: 500;

  letter-spacing: .1em;
}


.osechi-delivery__date-list {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap: 14px;
}


.osechi-delivery__date {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 76px;

  border:
    1px solid
    rgba(200,154,69,.45);

  border-radius: 8px;

  background:
    rgba(255,255,255,.7);
}


.osechi-delivery__date strong {
  font-size:
    clamp(27px, 3vw, 38px);

  font-weight: 500;

  letter-spacing: .03em;
}


.osechi-delivery__date span {
  display: grid;

  place-items: center;

  min-width: 34px;
  min-height: 34px;

  padding: 4px 7px;

  border-radius: 999px;

  background:
    #e99593;

  color: #fff;

  font-size: 12px;
}


.osechi-delivery__date--newyear strong {
  color:
    var(--delivery-red);
}


.osechi-delivery__date-notes {
  display: flex;

  justify-content: center;

  gap: 35px;

  margin-top: 18px;

  font-size: 12px;

  line-height: 1.7;
}


.osechi-delivery__date-notes p {
  margin: 0;
}


/* ==================================================
   お届け状態
================================================== */

.osechi-delivery__shipping {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  margin-top: 28px;

  border:
    1px solid
    rgba(200,154,69,.4);

  border-radius: 12px;

  overflow: hidden;

  background:
    rgba(255,253,248,.82);

  box-shadow:
    0 12px 30px
    rgba(106,69,45,.06);
}


.osechi-delivery__shipping-left,
.osechi-delivery__shipping-right {
  position: relative;

  padding: 32px;
}


.osechi-delivery__shipping-left {
  border-right:
    1px solid
    rgba(200,154,69,.25);
}


/* section title */

.osechi-delivery__section-heading {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 18px;
}


.osechi-delivery__section-icon {
  color:
    var(--delivery-pink-dark);

  font-size: 38px;
}


.osechi-delivery__section-heading small {
  display: block;

  margin-bottom: 3px;

  color:
    #927263;

  font-size: 11px;

  letter-spacing: .12em;
}


.osechi-delivery__section-heading h3 {
  margin: 0;

  color:
    var(--delivery-pink-dark);

  font-size: 30px;

  font-weight: 500;

  letter-spacing: .1em;
}


/* wrap */

.osechi-delivery__wrap-content {
  display: grid;

  grid-template-columns:
    minmax(200px, 1fr)
    minmax(160px, .8fr);

  gap: 20px;

  align-items: center;
}


.osechi-delivery__wrap-image {
  display: flex;

  align-items: center;

  justify-content: center;
}


.osechi-delivery__wrap-image img {
  display: block;

  width: 100%;

  max-width: 330px;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 15px 16px
      rgba(77,47,31,.13)
    );
}


.osechi-delivery__wrap-lead {
  margin: 0 0 24px;

  font-size: 18px;

  line-height: 1.9;

  letter-spacing: .06em;
}


.osechi-delivery__size {
  padding-top: 15px;

  border-top:
    1px solid
    rgba(200,154,69,.45);
}


.osechi-delivery__size span {
  display: block;

  margin-bottom: 8px;

  color:
    #a66a43;

  font-size: 13px;
}


.osechi-delivery__size strong {
  font-size: 18px;

  font-weight: 500;
}


/* osechi image */

.osechi-delivery__shipping-right {
  display: flex;

  align-items: center;

  justify-content: center;
}


.osechi-delivery__osechi-image {
  position: relative;

  width: 100%;

  max-width: 430px;

  padding:
    25px
    35px
    35px
    10px;
}


.osechi-delivery__osechi-image img {
  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(
      0 17px 15px
      rgba(69,44,31,.15)
    );
}


.osechi-delivery__measure {
  position: absolute;

  color:
    #5c4439;

  font-size: 12px;
}


.osechi-delivery__measure--width {
  bottom: 6px;
  left: 50%;

  transform:
    translateX(-50%);
}


.osechi-delivery__measure--height {
  top: 50%;
  right: 0;

  transform:
    translateY(-50%);

  writing-mode:
    vertical-rl;
}


/* ==================================================
   アレルギー情報
================================================== */

.osechi-allergy {
  margin-top: 28px;

  padding: 30px;

  border:
    1px solid
    rgba(200,154,69,.35);

  border-radius: 12px;

  background:
    rgba(255,253,248,.82);

  box-shadow:
    0 10px 26px
    rgba(106,69,45,.05);
}


.osechi-allergy__heading {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 22px;
}


.osechi-allergy__icon {
  color:
    var(--delivery-pink-dark);

  font-size: 34px;
}


.osechi-allergy__heading h3 {
  margin: 0 0 4px;

  color:
    var(--delivery-pink-dark);

  font-size: 30px;

  font-weight: 500;

  letter-spacing: .08em;
}


.osechi-allergy__heading p {
  margin: 0;

  font-size: 13px;

  letter-spacing: .05em;
}


.osechi-allergy__list {
  display: grid;

  grid-template-columns:
    repeat(8, minmax(0,1fr));

  gap: 12px;
}


.osechi-allergy__item {
  text-align: center;
}


.osechi-allergy__circle {
  display: grid;

  place-items: center;

  width: 72px;
  height: 72px;

  margin: 0 auto 8px;

  border:
    1px solid
    rgba(200,154,69,.6);

  border-radius: 50%;

  background:
    rgba(255,255,255,.6);

  color:
    var(--delivery-pink-dark);

  font-size: 20px;
}


.osechi-allergy__item span {
  font-size: 12px;
}


.osechi-allergy__note {
  margin: 20px 0 0;

  font-size: 11px;

  line-height: 1.7;
}


/* ==================================================
   responsive
================================================== */

@media (max-width: 900px) {

  .osechi-delivery__date-list {
    grid-template-columns:
      repeat(2,1fr);
  }


  .osechi-delivery__shipping {
    grid-template-columns:
      1fr;
  }


  .osechi-delivery__shipping-left {
    border-right: 0;

    border-bottom:
      1px solid
      rgba(200,154,69,.25);
  }


  .osechi-allergy__list {
    grid-template-columns:
      repeat(4,1fr);
  }

}


@media (max-width: 600px) {

  .osechi-delivery {
    padding:
      52px
      12px
      60px;
  }


  .osechi-delivery__dates {
    padding:
      20px 14px;
  }


  .osechi-delivery__date-list {
    gap: 8px;
  }


  .osechi-delivery__date {
    min-height: 62px;
  }


  .osechi-delivery__date strong {
    font-size: 24px;
  }


  .osechi-delivery__date-notes {
    flex-direction: column;

    gap: 3px;

    text-align: center;
  }


  .osechi-delivery__shipping-left,
  .osechi-delivery__shipping-right {
    padding:
      23px 18px;
  }


  .osechi-delivery__wrap-content {
    grid-template-columns: 1fr;
  }


  .osechi-delivery__wrap-text {
    text-align: center;
  }


  .osechi-delivery__wrap-lead {
    font-size: 15px;
  }


  .osechi-allergy {
    padding:
      23px 16px;
  }


  .osechi-allergy__heading h3 {
    font-size: 24px;
  }


  .osechi-allergy__list {
    grid-template-columns:
      repeat(4,1fr);

    gap:
      15px 7px;
  }


  .osechi-allergy__circle {
    width: 58px;
    height: 58px;

    font-size: 16px;
  }


  .osechi-allergy__item span {
    font-size: 10px;
  }

}



/* ==================================================
   風呂敷画像＋説明文を縦並びに
================================================== */

.osechi-delivery__wrap-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.osechi-delivery__wrap-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.osechi-delivery__wrap-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.osechi-delivery__wrap-text {
  width: 100%;
  text-align: center;
}

.osechi-delivery__wrap-lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .06em;
}

.osechi-delivery__size {
  max-width: 360px;
  margin: 0 auto;
}























/* ==================================================
   FAQ
================================================== */

.osechi-faq {
  --faq-bg: #f8dedc;
  --faq-paper: #fffaf4;
  --faq-pink: #df8f8d;
  --faq-red: #b62b32;
  --faq-gold: #c99a48;
  --faq-brown: #34231d;
  --faq-line: rgba(201,154,72,.38);

  position: relative;
  overflow: hidden;

  padding:
    80px
    20px
    95px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(224,137,147,.23),
      transparent 27%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(224,137,147,.19),
      transparent 30%
    ),
    var(--faq-bg);

  color:
    var(--faq-brown);

  font-family:
    "Yu Mincho",
    "Hiragino Mincho ProN",
    "Noto Serif JP",
    serif;
}


/* 背景の桜 */

.osechi-faq::before,
.osechi-faq::after {
  content: "✿";

  position: absolute;

  color:
    rgba(255,255,255,.18);

  font-size:
    230px;

  line-height: 1;

  pointer-events: none;
}


.osechi-faq::before {
  top: -65px;
  left: -55px;
}


.osechi-faq::after {
  right: -55px;
  bottom: -75px;
}


.osechi-faq__inner {
  position: relative;

  z-index: 2;

  max-width:
    1000px;

  margin:
    0 auto;
}


/* ==================================================
   heading
================================================== */

.osechi-faq__heading {
  margin-bottom:
    42px;

  text-align:
    center;
}


.osechi-faq__symbol {
  margin-bottom:
    8px;

  color:
    var(--faq-gold);

  font-size:
    30px;
}


.osechi-faq__title {
  margin:
    0;

  font-size:
    clamp(
      34px,
      4.5vw,
      58px
    );

  font-weight:
    500;

  letter-spacing:
    .12em;
}


.osechi-faq__lead {
  margin:
    12px 0 0;

  font-size:
    15px;

  line-height:
    1.8;

  letter-spacing:
    .08em;
}


.osechi-faq__divider {
  display:
    flex;

  align-items:
    center;

  gap:
    12px;

  max-width:
    480px;

  margin:
    20px auto 0;

  color:
    var(--faq-gold);
}


.osechi-faq__divider::before,
.osechi-faq__divider::after {
  content: "";

  flex:
    1;

  height:
    1px;

  background:
    rgba(201,154,72,.55);
}


/* ==================================================
   FAQ LIST
================================================== */

.osechi-faq__list {
  display:
    flex;

  flex-direction:
    column;

  gap:
    12px;
}


.osechi-faq__item {
  overflow:
    hidden;

  border:
    1px solid
    var(--faq-line);

  border-radius:
    12px;

  background:
    rgba(255,250,244,.93);

  box-shadow:
    0 7px 18px
    rgba(106,69,45,.055);

  transition:
    border-color .25s ease,
    box-shadow .25s ease;
}


.osechi-faq__item.is-open {
  border-color:
    rgba(201,154,72,.7);

  box-shadow:
    0 10px 24px
    rgba(106,69,45,.09);
}


/* ==================================================
   QUESTION
================================================== */

.osechi-faq__question {
  position:
    relative;

  display:
    grid;

  grid-template-columns:
    48px
    1fr
    42px;

  gap:
    14px;

  align-items:
    center;

  width:
    100%;

  min-height:
    78px;

  padding:
    14px
    20px;

  border:
    0;

  background:
    transparent;

  color:
    inherit;

  font:
    inherit;

  text-align:
    left;

  cursor:
    pointer;
}


.osechi-faq__question:hover {
  background:
    rgba(255,255,255,.35);
}


/* Q */

.osechi-faq__q,
.osechi-faq__a {
  display:
    grid;

  place-items:
    center;

  width:
    42px;

  height:
    42px;

  border:
    1px solid
    rgba(201,154,72,.7);

  border-radius:
    50%;

  background:
    rgba(255,255,255,.75);

  color:
    var(--faq-red);

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

  font-size:
    20px;
}


.osechi-faq__question-text {
  font-size:
    17px;

  line-height:
    1.7;

  letter-spacing:
    .05em;
}


/* +/- */

.osechi-faq__toggle {
  display:
    grid;

  place-items:
    center;

  width:
    34px;

  height:
    34px;

  border:
    1px solid
    rgba(223,143,141,.65);

  border-radius:
    50%;

  color:
    var(--faq-red);

  font-family:
    Arial,
    sans-serif;

  font-size:
    21px;

  line-height:
    1;

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease;
}


.osechi-faq__item.is-open
.osechi-faq__toggle {
  transform:
    rotate(45deg);

  background:
    var(--faq-pink);

  color:
    #fff;
}


/* ==================================================
   ANSWER
================================================== */

.osechi-faq__answer {
  display:
    grid;

  grid-template-rows:
    0fr;

  transition:
    grid-template-rows
    .35s ease;
}


.osechi-faq__item.is-open
.osechi-faq__answer {
  grid-template-rows:
    1fr;
}


.osechi-faq__answer-inner {
  overflow:
    hidden;

  display:
    grid;

  grid-template-columns:
    48px
    1fr;

  gap:
    14px;

  padding:
    0
    20px;

  opacity:
    0;

  transition:
    opacity .25s ease,
    padding .35s ease;
}


.osechi-faq__item.is-open
.osechi-faq__answer-inner {
  padding:
    6px
    20px
    22px;

  opacity:
    1;
}


.osechi-faq__a {
  color:
    var(--faq-gold);
}


.osechi-faq__answer p {
  margin:
    4px 0 0;

  padding-top:
    12px;

  border-top:
    1px dotted
    rgba(201,154,72,.42);

  font-size:
    14px;

  line-height:
    1.9;

  letter-spacing:
    .035em;
}


/* ==================================================
   mobile
================================================== */

@media (max-width: 600px) {

  .osechi-faq {
    padding:
      55px
      12px
      65px;
  }


  .osechi-faq__heading {
    margin-bottom:
      30px;
  }


  .osechi-faq__lead {
    font-size:
      12px;
  }


  .osechi-faq__question {
    grid-template-columns:
      36px
      1fr
      30px;

    gap:
      10px;

    min-height:
      66px;

    padding:
      12px
      14px;
  }


  .osechi-faq__q,
  .osechi-faq__a {
    width:
      34px;

    height:
      34px;

    font-size:
      16px;
  }


  .osechi-faq__question-text {
    font-size:
      14px;

    line-height:
      1.6;
  }


  .osechi-faq__toggle {
    width:
      28px;

    height:
      28px;

    font-size:
      17px;
  }


  .osechi-faq__answer-inner {
    grid-template-columns:
      36px
      1fr;

    gap:
      10px;

    padding:
      0
      14px;
  }


  .osechi-faq__item.is-open
  .osechi-faq__answer-inner {
    padding:
      4px
      14px
      18px;
  }


  .osechi-faq__answer p {
    font-size:
      12px;

    line-height:
      1.8;
  }

}