@charset "utf-8";

/* ==================================================
   デザート キャッチ！ティニピン 特設（catchteenieping3.html）専用

   tiniping4.css は読み込まず、このファイルだけで完結させる。
   読み込み順： reset → stylesheet20260209 → tiniping5 → common
   ================================================== */

:root {
  --dt-berry: #e8548a;        /* いちごベリー（メイン） */
  --dt-strawberry: #ff8fb1;   /* いちごミルク */
  --dt-soda: #7fd4ce;         /* クリームソーダ */
  --dt-lavender: #c9b6f0;     /* ラベンダー */
  --dt-cream: #fff9f5;        /* クリーム地 */
  --dt-choco: #6b4a3e;        /* 本文のこげ茶 */
  --dt-choco-soft: #a4837a;
  --dt-line: #ffe3ee;         /* 淡いいちごの線 */
  --dt-ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------
   ページ全体の下地
------------------------------ */
body {
  font-family: "Zen Maru Gothic", "M PLUS 1p", "Hiragino Maru Gothic ProN", sans-serif;
  font-weight: 500;
  color: var(--dt-choco);
}

/* サイト共通の固定背景（body::before）をデザート配色に差し替える */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(46% 34% at 12% 6%, rgba(255, 173, 202, .55) 0%, rgba(255, 173, 202, 0) 100%),
    radial-gradient(42% 32% at 92% 16%, rgba(174, 226, 222, .5) 0%, rgba(174, 226, 222, 0) 100%),
    radial-gradient(50% 36% at 8% 62%, rgba(213, 197, 246, .42) 0%, rgba(213, 197, 246, 0) 100%),
    radial-gradient(48% 34% at 94% 78%, rgba(255, 202, 170, .38) 0%, rgba(255, 202, 170, 0) 100%),
    linear-gradient(180deg, #fff3f8 0%, #fff9f5 42%, #eefaf8 74%, #fff3f8 100%);
  z-index: -2;
}

/* 水玉のトッピング（うっすら） */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(232, 84, 138, .05) 2.5px, transparent 3px),
    radial-gradient(rgba(127, 212, 206, .05) 2.5px, transparent 3px);
  background-size: 56px 56px, 56px 56px;
  background-position: 0 0, 28px 28px;
  z-index: -1;
  pointer-events: none;
}

/* ------------------------------
   ヘッダー（白ベースは既存踏襲）
------------------------------ */
header {
  background-color: #fff;
  width: 100%;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
}

.header-spacer {
  height: 24px;
  background: transparent;
  width: 100%;
}

/* リリックロゴの右隣にシリーズロゴを小さく併置
   （共通CSSが .logo_container を width固定 !important にしているため、
     コンテナ基準の絶対配置で枠の外側へ並べる） */
header .logo_container {
  position: relative !important;
}

header .logo_container .logo_s4 {
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  height: 46px;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 2px 4px rgba(232, 84, 138, .18));
}

@media (max-width: 767px) {
  header .logo_container .logo_s4 {
    left: calc(100% + 10px);
    height: 36px;
  }
}

/* ------------------------------
   ヒーロー（キービジュアル）
------------------------------ */
.top-visual {
  width: 100%;
  margin: 0 auto;
  padding: 34px 0 0;
  background: transparent;
}

.top-visual-inner {
  position: relative;
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
  box-sizing: border-box;
}

/* ©表記は画像に焼き込まず、上端にオーバーレイで載せる
   （下端は予約カードが重なるため、絶対に被らない右上へ） */
.hero-credit {
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 10.5px;
  letter-spacing: .05em;
  color: #fff;
  text-shadow: 0 1px 5px rgba(150, 90, 140, .65), 0 0 2px rgba(150, 90, 140, .5);
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .hero-credit {
    top: 9px;
    right: 13px;
    font-size: 9px;
  }
}

.top-main-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 26px;
  border: 6px solid #fff;
  box-sizing: border-box;
  box-shadow:
    0 10px 24px rgba(232, 84, 138, .16),
    0 30px 70px rgba(201, 130, 170, .28);
}

@media screen and (max-width: 600px) {
  .top-visual {
    padding-top: 18px;
  }

  .top-main-image {
    border-radius: 16px;
    border-width: 4px;
  }
}

/* ------------------------------
   予約アナウンス（ヒーローに重ねるカード）
------------------------------ */
.catch-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 28px));
  /* 画像下端に「放送・配信中」帯があるため、重ねずに間隔を空ける */
  margin: 18px auto 64px;
  padding: 40px 22px 44px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(201, 130, 170, .30);
  outline: 2px dashed #ffc9dd;
  outline-offset: -13px;
  text-align: center;

  /* ふわっと出す（.visible は slideshow.js が付与） */
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--dt-ease), transform .8s var(--dt-ease);
}

.catch-copy.visible {
  opacity: 1;
  transform: none;
}

.cc-eyebrow {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .34em;
  text-indent: .34em;
  color: var(--dt-strawberry);
}

.catch-copy p {
  color: var(--dt-choco);
  font-size: 1.02rem;
  margin: 0 0 6px;
}

.release-date {
  margin: 10px 0 18px;
  font-weight: 700;
  color: var(--dt-berry);
  font-size: clamp(1.05rem, 3.4vw, 1.3rem);
  line-height: 1.5;
}

.release-date em {
  font-style: normal;
  font-weight: 900;
  font-size: clamp(2.5rem, 9vw, 3.3rem);
  letter-spacing: .02em;
  line-height: 1;
  vertical-align: -0.08em;
  background: linear-gradient(135deg, var(--dt-berry) 20%, var(--dt-strawberry) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.release-date .dow {
  display: inline-block;
  margin: 0 12px 0 8px;
  padding: 3px 9px;
  border-radius: 8px;
  background: var(--dt-soda);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-indent: .18em;
  vertical-align: .55em;
}

@media screen and (max-width: 600px) {
  .catch-copy {
    margin-top: 12px;
    padding: 32px 16px 36px;
  }

  .cc-eyebrow {
    font-size: 10px;
    letter-spacing: .22em;
    text-indent: .22em;
  }

  .release-date .dow {
    margin-right: 8px;
  }
}

/* ------------------------------
   商品カード
------------------------------ */
.product {
  position: relative;
  width: min(1000px, calc(100% - 28px));
  margin: 46px auto;
  padding: 38px 30px 40px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 14px 44px rgba(201, 130, 170, .20);
  transition: transform .5s var(--dt-ease), box-shadow .5s var(--dt-ease), opacity .8s var(--dt-ease);
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(201, 130, 170, .30);
}

/* スクロールで順にふわっと（JSが html.js と .in を付与） */
html.js .product {
  opacity: 0;
  transform: translateY(30px);
}

html.js .product.in {
  opacity: 1;
  transform: none;
}

html.js .product.in:hover {
  transform: translateY(-4px);
}

.item-eyebrow {
  margin: 0 0 4px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-indent: .32em;
  color: #d9a3ba;
}

.product h2 {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 16px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.45rem, 4.4vw, 1.9rem);
  letter-spacing: .06em;
  background: linear-gradient(135deg, var(--dt-berry) 30%, var(--dt-strawberry) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--dt-berry) !important; /* 共通CSSの !important 茶色を打ち消す（clip非対応時の保険） */
}

@supports (-webkit-background-clip: text) {
  .product h2 {
    color: transparent !important;
  }
}

.product h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 58px;
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--dt-strawberry), var(--dt-soda));
}

/* 商品メイン画像 */
.top-image {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
  border-radius: 18px;
}

/* 横長のラインナップ画像はカード幅いっぱいに */
.top-image-wide {
  max-width: 900px;
}

/* トップ画像の自動切り替え（高さ固定・クロスフェード） */
.top-swap {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 3 / 2;
  margin: 0 auto 24px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.top-swap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .9s ease;
}

.top-swap img.is-active {
  opacity: 1;
}

/* ------------------------------
   スライドショー
------------------------------ */
.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.product-card {
  width: 100%;
}

.slideshow-and-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.slideshow-wrapper {
  width: 320px;
  max-width: 100%;
  position: relative;
}

.slideshow-container {
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid var(--dt-line);
  background: #fff;
}

.slides {
  display: flex;
  transition: transform .5s var(--dt-ease);
}

.slide {
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--dt-berry);
  background-color: rgba(255, 255, 255, .92);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(201, 130, 170, .35);
  cursor: pointer;
  user-select: none;
  z-index: 10;
  transition: background .3s, color .3s, transform .3s;
}

.prev:hover,
.next:hover {
  background-color: var(--dt-berry);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3cadb;
  cursor: pointer;
  transition: width .3s var(--dt-ease), background .3s;
}

.dots span.active {
  width: 24px;
  border-radius: 5px;
  background: var(--dt-berry);
}

/* ------------------------------
   商品説明
------------------------------ */
.product-info {
  flex: 1;
  min-width: 250px;
  max-width: 500px;
  box-sizing: border-box;
  padding: 20px 24px;
  background: #fff6f9;
  border: 1.5px solid var(--dt-line);
  border-radius: 18px;
  color: var(--dt-choco);
  font-size: 15.5px;
  line-height: 2;
}

.product-info p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .product {
    padding: 30px 18px 34px;
    margin: 32px auto;
  }

  /* スマホではカードが画面より縦長で、フェード途中の薄い状態が
     読書の邪魔になるため、スクロール演出はPCのみとする */
  html.js .product {
    opacity: 1;
    transform: none;
  }

  /* 横長のラインナップ帯はスマホでは小さすぎるので出さない
     （直後のスライドショーが同じ内容を大きく見せる） */
  .top-image-wide {
    display: none;
  }

  .slideshow-and-text,
  .product-section {
    flex-direction: column;
    align-items: center;
  }

  .slideshow-wrapper {
    width: 100%;
    max-width: 420px;
  }

  .product-info {
    max-width: none;
    font-size: 14.5px;
    padding: 16px 18px;
  }

  .top-image {
    max-width: 100%;
    margin-bottom: 18px;
  }
}

/* ------------------------------
   予約ボタン（共通CSSの緑グラデを上書き）
------------------------------ */
.purchase_ctp {
  text-align: center;
  margin-top: 26px;
  margin-bottom: 0;
}

.purchase_ctp a {
  display: inline-block;
  color: #fff;
  background-image: linear-gradient(135deg, var(--dt-strawberry) 0%, var(--dt-berry) 100%);
  padding: 14px 38px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 10px 24px rgba(232, 84, 138, .35);
  transition: transform .25s var(--dt-ease), box-shadow .25s var(--dt-ease), filter .25s;
}

.purchase_ctp a:hover {
  background-image: linear-gradient(135deg, var(--dt-strawberry) 0%, var(--dt-berry) 100%);
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(232, 84, 138, .42);
}

/* 共通CSSのFont Awesome矢印はフォント未読込だと豆腐になるので、通常の文字に差し替え */
.purchase_ctp a::after {
  font-family: inherit;
  font-weight: 900;
  content: "›";
  margin-left: .6em;
}

/* ------------------------------
   価格バナー・パッケージ一覧グリッド
------------------------------ */
.price-banner {
  margin: 0 0 22px;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  color: var(--dt-choco);
}

.price-banner strong {
  font-weight: 900;
  font-size: 1.45em;
  color: var(--dt-berry);
  padding: 0 2px;
}

.pkg-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.pkg-grid li {
  width: calc(25% - 11px);
  box-sizing: border-box;
  background: #fff;
  border: 2px solid var(--dt-line);
  border-radius: 14px;
  padding: 8px 6px 7px;
  text-align: center;
}

.pkg-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.pkg-grid .pkg-name {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dt-choco);
  line-height: 1.4;
}

.pkg-grid .pkg-price {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--dt-berry);
}

.product-info-center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 600px) {
  .pkg-grid {
    gap: 10px;
  }

  .pkg-grid li {
    width: calc(50% - 5px);
  }

  .pkg-grid .pkg-name {
    font-size: 11px;
  }
}

/* ------------------------------
   コレクション：種類別の予約ボタン
------------------------------ */
.purchase-multi {
  text-align: center;
  margin-top: 26px;
}

.purchase-multi-label {
  margin: 0 0 12px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dt-berry);
}

.purchase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.purchase-grid a {
  display: inline-block;
  color: #fff;
  background-image: linear-gradient(135deg, var(--dt-strawberry) 0%, var(--dt-berry) 100%);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 6px 16px rgba(232, 84, 138, .28);
  transition: transform .25s var(--dt-ease), box-shadow .25s var(--dt-ease), filter .25s;
}

.purchase-grid a::after {
  content: "›";
  font-weight: 900;
  margin-left: .45em;
}

.purchase-grid a:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(232, 84, 138, .38);
}

@media screen and (max-width: 600px) {
  .purchase-grid {
    gap: 8px;
  }

  .purchase-grid a {
    padding: 10px 16px;
    font-size: .88rem;
  }
}

/* ------------------------------
   IP表記・ページトップ
------------------------------ */
.copyright-ip {
  text-align: center;
  color: var(--dt-choco-soft);
  font-size: 12.5px;
  letter-spacing: .1em;
  margin: 44px auto 56px;
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
  opacity: .85;
  transition: opacity .3s;
}

.page-top:hover {
  opacity: 1;
}

/* ------------------------------
   SNS・フッター（このページ用の整え）
------------------------------ */
.sns {
  margin: 48px auto 0;
}

/* フッターは白いカウンター風の帯にまとめる */
footer {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(1000px, calc(100% - 28px));
  margin: 48px auto 0;
  padding: 28px 16px 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -10px 34px rgba(201, 130, 170, .14);
}

.footer_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_list a {
  color: var(--dt-choco);
  font-size: 13.5px;
  font-weight: 700;
}

.footer_list a:hover {
  color: var(--dt-berry);
}

/* 共通CSSの absolute 配置を解除（「問い合わせ」と重なるため） */
footer .copyright,
footer small {
  position: static;
  margin: 0;
}

/* スマホ：SNSブロックの左右50%分割をやめて縦積みセンターに */
@media screen and (max-width: 768px) {
  .sns {
    margin: 36px auto 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .sns_title_l,
  .sns_title_p {
    width: 100%;
    margin-bottom: 8px;
  }

  .sns-item_container,
  .sns-item_s_container {
    width: 100%;
  }

  footer {
    margin-top: 36px;
    padding: 24px 12px 26px;
  }
}
