
@charset "UTF-8";

/* =====================================================
   recuperation LP
   基本設定・色変数
   rk = recuperation kit の略
===================================================== */
#recuperation-lp {
  --rk-pink: #fce6ea;
  --rk-pink-soft: #fff9f8;
  --rk-cream: #fff9e4;
  --rk-scenario-bg: #fcf2ec;
  --rk-white: #ffffff;
  --rk-main: #c97f8c;
  /* メインのピンク（タイトル・番号・CTA） */
  --rk-main-dark: #8a5860;
  /* 強調・濃いめのピンク */
  --rk-main-soft: #e37c8c;
  /* 薄いピンク（バッジ・装飾） */
  --rk-leaf: #b4c97a;
  /* 葉のグリーン（理由番号など） */
  --rk-cat-a: #e7f6d1;
  /* まずは簡単に始めたい（ミントグリーン） */
  --rk-cat-b: #fff9c2;
  /* 少しずつ進めたい（薄黄色） */
  --rk-cat-c: #f6edff;
  /* 作ってそのまま飾りたい（ラベンダー） */
  --rk-cat-d: #fdecd3;
  /* 普段使いしたい（ピーチ） */
  --rk-text: #5a4848;
  --rk-subtext: #6f5a5a;
  --rk-line: #ead7d7;
  --rk-width: 956px;
  --rk-inner-padding: 50px;
  --rk-inner-padding-sp: 20px;
  color: var(--rk-text);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* LP内の余白計算を安定させる */
#recuperation-lp *,
#recuperation-lp *::before,
#recuperation-lp *::after {
  box-sizing: border-box;
}

/* LP内の画像は基本的にトリミングせず、そのまま表示 */
#recuperation-lp img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* LP内リンクの下線をリセット */
#recuperation-lp a {
  color: inherit;
  text-decoration: none;
}

/* 本文の基本調整 */
#recuperation-lp p {
  margin: 0 0 1em;
  font-size: 16px;
  line-height: 1.7;
}

#recuperation-lp p:last-child {
  margin-bottom: 0;
}

/* SP時：LP全体の基本文字サイズを調整 */
@media screen and (max-width: 768px) {
  #recuperation-lp {
    font-size: 16px;
  }

  #recuperation-lp p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =====================================================
   レイアウト
   背景全幅・956px中央寄せ・余白管理
===================================================== */

/* セクション背景の通常状態：親幅内で表示 */
#recuperation-lp .rk-section {
  max-width: var(--rk-width);
  margin: 0 auto;
}

/* 中身は常に956px中央寄せ */
#recuperation-lp .rk-inner {
  max-width: var(--rk-width);
  margin: 0 auto;
  padding: 56px var(--rk-inner-padding) 64px;
}

/* 文章中心のエリアは読みやすい幅に抑える */
#recuperation-lp .rk-inner--narrow {
  max-width: 820px;
}

#recuperation-lp .rk-section--cream {
  background: var(--rk-cream);
}

#recuperation-lp .rk-section--white {
  background: var(--rk-white);
}

/* SP時：セクション内余白を調整 */
@media screen and (max-width: 768px) {
  #recuperation-lp .rk-inner {
    padding: 40px var(--rk-inner-padding-sp) 48px;
  }
}

/* =====================================================
   フォント設計
   本文はゴシック、印象を作る見出し・導入文のみ明朝
   Shippori Mincho は 600 で統一
===================================================== */

/* 大きい見出し */
#recuperation-lp .rk-kv__title,
#recuperation-lp .rk-heading-main,
#recuperation-lp .rk-callout-h,
#recuperation-lp .rk-gift__title,
#recuperation-lp .rk-notice__title,
#recuperation-lp .rk-faq-title {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 600;
}

/* 見出しに添える本文 */
#recuperation-lp .rk-kv__body,
#recuperation-lp .rk-callout__body p {
  font-family: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif !important;
  font-weight: 600;
}

/* =====================================================
   共通見出し・本文
===================================================== */
/* 中央寄せのセリフ見出し */
#recuperation-lp .rk-heading-main {
  margin: 0 0 36px;
  color: var(--rk-text);
  font-size: 28px !important;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

/* SP時：見出しサイズを調整 */
@media screen and (max-width: 768px) {
  #recuperation-lp .rk-heading-main {
    font-size: 22px !important;
  }
}

/* =====================================================
   グローバルヘッダー
===================================================== */
#recuperation-lp .rk-global-header {
  max-width: var(--rk-width);
  margin: 0 auto;
  background: #fff;
}

#recuperation-lp .rk-global-header__inner {
  padding: 18px var(--rk-inner-padding) 14px;
}

#recuperation-lp .rk-site-logo {
  width: 180px;
  height: auto;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-global-header__inner {
    padding: 14px var(--rk-inner-padding-sp) 12px;
  }

  #recuperation-lp .rk-site-logo {
    width: 150px;
  }
}

/* =====================================================
   01. KV キービジュアル
   PC：画像全面 + 左寄せテキスト
   SP：縦長画像 + タイトル重ね + リード文下配置
===================================================== */
#recuperation-lp .rk-kv {
  position: relative;
  max-width: var(--rk-width);
  margin: 0 auto;
  background: var(--rk-white);
  overflow: hidden;
}

#recuperation-lp .rk-kv__picture {
  display: block;
}

#recuperation-lp .rk-kv__picture img {
  width: 100%;
  height: auto;
}

#recuperation-lp .rk-kv__text {
  position: absolute;
  top: 50%;
  left: var(--rk-inner-padding);
  width: 42%;
  transform: translateY(-50%);
}

#recuperation-lp .rk-kv__title {
  margin: 0 0 24px;
  color: var(--rk-main-dark);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.7;
}

#recuperation-lp .rk-kv__body {
  margin: 0;
  color: var(--rk-subtext);
  line-height: 2;
}

/* SP時：タイトルだけ画像上、本文は下に逃がす */
@media screen and (max-width: 768px) {
  #recuperation-lp .rk-kv__text {
    position: static;
    width: auto;
    transform: none;
  }

  #recuperation-lp .rk-kv__title {
    position: absolute;
    top: 34px;
    left: var(--rk-inner-padding-sp);
    right: var(--rk-inner-padding-sp);
    margin: 0;
    font-size: 28px;
    line-height: 1.65;
  }

  #recuperation-lp .rk-kv__body {
    padding: 24px var(--rk-inner-padding-sp) 32px;
    background: var(--rk-white);
    line-height: 1.7;
  }
}

/* =====================================================
  02. 療養中、つらいのは痛みや不調だけではない
===================================================== */
#recuperation-lp .rk-problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 820px;
  margin: 32px auto 0;
}

#recuperation-lp .rk-problem {
  text-align: center;
}

/* ピンクの円形アイコン背景 */
#recuperation-lp .rk-problem__icon {
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0 auto 14px;
  background: none;
}

/* アイコン画像 */
#recuperation-lp .rk-problem__icon-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#recuperation-lp .rk-problem__text {
  margin: 0;
  color: var(--rk-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

/* 中段：軽くまとめる本文 */
#recuperation-lp .rk-soft-text {
  margin: 36px 0 0;
  color: var(--rk-subtext);
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-problems {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  #recuperation-lp .rk-problem__icon {
    max-width: 140px;
  }

  #recuperation-lp .rk-problem__text {
    font-size: 14px !important;
  }
}

/* =====================================================
  03. そんなとき、"手を動かすこと"が支えになる
===================================================== */
#recuperation-lp .rk-callout {
  position: relative;
  max-width: var(--rk-width);
  margin: 0 auto;
  background: var(--rk-cream);
  overflow: hidden;
}

#recuperation-lp .rk-callout__picture {
  display: block;
}

#recuperation-lp .rk-callout__picture img {
  width: 100%;
  height: auto;
}

#recuperation-lp .rk-callout__text {
  position: absolute;
  top: 50%;
  left: var(--rk-inner-padding);
  width: 43%;
  transform: translateY(-50%);
}

#recuperation-lp .rk-callout-h {
  margin: 0 0 24px;
  color: var(--rk-text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.65;
}

#recuperation-lp .rk-callout-h em {
  font-style: normal;
  color: var(--rk-main);
}

#recuperation-lp .rk-callout__body p {
  margin: 0 0 10px;
  color: var(--rk-subtext);
  line-height: 1.7;
}

#recuperation-lp .rk-callout__body p:last-child {
  margin-bottom: 0;
}

/* SP時：タイトルだけ画像上、本文は下に逃がす */
@media screen and (max-width: 768px) {
  #recuperation-lp .rk-callout__text {
    position: static;
    width: auto;
    transform: none;
  }

  #recuperation-lp .rk-callout-h {
    position: absolute;
    top: 34px;
    left: var(--rk-inner-padding-sp);
    right: var(--rk-inner-padding-sp);
    margin: 0;
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: -0.1em;
  }

  #recuperation-lp .rk-callout__body {
    padding: 24px var(--rk-inner-padding-sp) 32px;
    background: var(--rk-cream);
  }

  #recuperation-lp .rk-callout__body p {
    line-height: 1.7;
  }
}

/* =====================================================
  04. 手作りは今を支え、これからの楽しみにもつながる(実体験voice）
===================================================== */
#recuperation-lp .rk-voice-lead {
  margin: 0 0 28px;
  color: var(--rk-subtext);
  line-height: 1.9;
  text-align: center;
}

#recuperation-lp .rk-voice-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ユーザーの声カード */
#recuperation-lp .rk-voice-list .rk-voice {
  flex: 0 0 auto;
  padding: 22px 26px;
  border: 2px solid var(--rk-line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
}

#recuperation-lp .rk-voice-list .rk-voice p {
  margin: 0 0 10px;
  color: var(--rk-subtext);
  line-height: 1.7;
}

/* タグ行：「ご本人の声」「50代」など */
#recuperation-lp .rk-voice__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

#recuperation-lp .rk-tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--rk-pink);
  color: var(--rk-main-dark);
  font-size: 12px;
  font-weight: 700;
}

/* 年代タグなど、薄く出すバリエーション */
#recuperation-lp .rk-tag--age {
  padding: 4px;
  background: transparent;
  color: var(--rk-subtext);
}

/* もっと見る用チェックボックスは非表示 */
#recuperation-lp .rk-voice-toggle {
  display: none;
}

#recuperation-lp .rk-voice-more-wrap {
  position: relative;
  text-align: center;
}

/* 初期状態：PCでは3件目付近でグラデーション */
#recuperation-lp .rk-voice-list--all {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

/* 下方向にフェードを重ねる */
#recuperation-lp .rk-voice-list--all::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: linear-gradient(to bottom,
      rgba(253, 249, 241, 0) 0%,
      var(--rk-cream) 72%);
  pointer-events: none;
}

/* もっと見るボタン */
#recuperation-lp .rk-voice-more {
  display: inline-block;
  position: relative;
  margin: 24px auto 0;
  padding: 12px 48px 12px 28px;
  border-radius: 999px;
  background: var(--rk-main-soft);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(208, 107, 124, 0.18);
  transition: transform 0.15s ease;
}

#recuperation-lp .rk-voice-more::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: var(--rk-main-dark);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

#recuperation-lp .rk-voice-more:hover {
  transform: translateY(-1px);
}

/* 開いた状態：全件表示 */
#recuperation-lp .rk-voice-toggle:checked~.rk-voice-more-wrap .rk-voice-list--all {
  max-height: none;
  overflow: visible;
}

#recuperation-lp .rk-voice-toggle:checked~.rk-voice-more-wrap .rk-voice-list--all::after {
  display: none;
}

#recuperation-lp .rk-voice-toggle:checked~.rk-voice-more-wrap .rk-voice-more {
  display: none;
}

/* SP時：1件目の途中からグラデーション */
@media screen and (max-width: 768px) {
  #recuperation-lp .rk-voice-lead {
    line-height: 1.7;
  }

  #recuperation-lp .rk-voice-list--all {
    max-height: 360px;
  }

  #recuperation-lp .rk-voice-list--all::after {
    height: 100px;
  }

  #recuperation-lp .rk-voice-list .rk-voice {
    padding: 20px 18px;
  }

  #recuperation-lp .rk-voice-list .rk-voice p {
    font-size: 15px !important;
  }
}

/* =====================================================
  05. クラフトキットなら、療養中でもはじめやすい
===================================================== */
#recuperation-lp .rk-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}

#recuperation-lp .rk-reason {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  padding: 22px 18px 24px;
  border-radius: 14px;
  background: #fff;
  text-align: center;
}

/* 緑の番号バッジ */
#recuperation-lp .rk-reason__num {
  display: inline-grid;
  place-items: center;
  justify-self: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-radius: 50%;
  background: var(--rk-leaf);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

/* 高さを揃えて画像位置を統一する */
#recuperation-lp .rk-reason__title {
  min-height: 3em;
  margin: 0 0 14px;
  color: var(--rk-text);
  font-size: 18px;
  line-height: 1.65;
  text-align: left;
}

#recuperation-lp .rk-reason__img {
  aspect-ratio: 4 / 3;
  margin: 0 0 14px;
  border-radius: 8px;
}

#recuperation-lp .rk-reason__desc {
  margin: 0;
  color: var(--rk-subtext);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-reasons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #recuperation-lp .rk-reason__title {
    min-height: 0;
  }
}

/* =====================================================
  06. 手作りがくれる、3つのやさしさ
===================================================== */
#recuperation-lp .rk-powers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}

/* 写真を各カードの底辺で揃える */
#recuperation-lp .rk-power {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  padding: 22px 18px 22px;
  border-radius: 14px;
  background: var(--rk-pink-soft);
  text-align: center;
}

/* ピンクの番号バッジ */
#recuperation-lp .rk-power__num {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-radius: 50%;
  background: var(--rk-main-soft);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

#recuperation-lp .rk-power__title {
  margin: 0 0 14px;
  color: var(--rk-text);
  font-size: 18px;
}

#recuperation-lp .rk-power__desc {
  width: 100%;
  margin: 0 0 14px;
  color: var(--rk-subtext);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

#recuperation-lp .rk-power__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 8px;
  align-self: end;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-powers {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* =====================================================
  07. こんな療養中の毎日に、手作りを
===================================================== */
#recuperation-lp .rk-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
}

#recuperation-lp .rk-scenario {
  padding: 12px;
  border-radius: 12px;
  background: var(--rk-scenario-bg);
  text-align: left;
}

#recuperation-lp .rk-scenario__img {
  aspect-ratio: 4 / 3;
  margin: 0 0 12px;
  border-radius: 8px;
}

#recuperation-lp .rk-scenario__title {
  margin: 0 0 6px;
  padding: 0 4px;
  color: var(--rk-text);
}

#recuperation-lp .rk-scenario__desc {
  margin: 0;
  padding: 0 4px 4px;
  color: var(--rk-subtext);
  font-size: 14px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-scenarios {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #recuperation-lp .rk-scenario__title {
    /*font-size: 16px;*/
  }
}

/* =====================================================
  08. 今の気分や体調に合わせて選べるクラフトキット
===================================================== */
#recuperation-lp .rk-genre-note {
  max-width: 720px;
  margin: -16px auto 32px;
  color: var(--rk-subtext);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-genre-note {
    margin: -20px auto 28px;
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
  }
}

#recuperation-lp .rk-genres {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
}

#recuperation-lp .rk-genre {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

/* カードごとのテーマカラーをカスタムプロパティで保持 */
#recuperation-lp .rk-genre--a {
  --rk-genre-color: var(--rk-cat-a);
  border: 2px solid var(--rk-cat-a);
}

#recuperation-lp .rk-genre--b {
  --rk-genre-color: var(--rk-cat-b);
  border: 2px solid var(--rk-cat-b);
}

#recuperation-lp .rk-genre--c {
  --rk-genre-color: var(--rk-cat-c);
  border: 2px solid var(--rk-cat-c);
}

#recuperation-lp .rk-genre--d {
  --rk-genre-color: var(--rk-cat-d);
  border: 2px solid var(--rk-cat-d);
}

/* カード上部：色付きヘッダー帯（アイコン + タイトル） */
#recuperation-lp .rk-genre__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  background: var(--rk-genre-color);
  color: var(--rk-main-dark);
  font-size: 17px;
  font-weight: 600;
}

#recuperation-lp .rk-genre__head-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

#recuperation-lp .rk-genre__sub {
  margin: 0;
  padding: 16px 22px 0;
  color: var(--rk-subtext);
  font-weight: 500;
  text-align: center;
}

/* 本体：レーダー + 商品（カード内部にパディング） */
#recuperation-lp .rk-genre__body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 12px 22px 16px;
}

/* レーダーチャート（インラインSVG） */
#recuperation-lp .rk-radar {
  aspect-ratio: 1 / 1;
}

#recuperation-lp .rk-radar img {
  display: block;
  width: 100%;
  height: auto;
}

#recuperation-lp .rk-genre__product {
  text-align: center;
}

#recuperation-lp .rk-genre__product-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 10px;
  border-radius: 8px;
}

#recuperation-lp .rk-genre__product-name {
  margin: 0;
  color: var(--rk-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-genre__body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px 16px;
  }

  #recuperation-lp .rk-radar {
    order: 2;
    max-width: 260px;
    margin: 0 auto;
  }

  #recuperation-lp .rk-genre__product {
    order: 1;
    max-width: 220px;
    margin: 0 auto;
  }

  #recuperation-lp .rk-genre__product-name {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* タグ行：ボタンより上に独立して配置 */
#recuperation-lp .rk-genre__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0 22px 14px;
}

#recuperation-lp .rk-genre__tag {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--rk-pink);
  color: var(--rk-main-dark);
  font-size: 11px;
  font-weight: 600;
}

/* CTA行：右寄せ */
#recuperation-lp .rk-genre__cta-row {
  margin-top: auto;
  padding: 0 22px 18px;
  text-align: right;
}

#recuperation-lp .rk-genre__cta {
  position: relative;
  display: inline-block;
  padding: 8px 32px 8px 16px;
  border-radius: 999px;
  background: var(--rk-main-soft);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.15s ease;
}

#recuperation-lp .rk-genre__cta::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--rk-main-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

#recuperation-lp .rk-genre__cta:hover {
  transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-genres {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
  09. 大切な人に、"時間の過ごし方"を贈る
===================================================== */
#recuperation-lp .rk-gift {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  margin: 24px 0;
  padding: 28px;
  border-radius: 16px;
  background: var(--rk-pink-soft);
}

#recuperation-lp .rk-gift__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

#recuperation-lp .rk-gift__title {
  margin: 0 0 16px;
  color: var(--rk-text);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.6;
}

#recuperation-lp .rk-gift__title em {
  font-style: normal;
  color: var(--rk-main);
}

#recuperation-lp .rk-gift p {
  margin: 0 0 8px;
  color: var(--rk-subtext);
  line-height: 1.95;
}

@media screen and (max-width: 768px) {
  #recuperation-lp .rk-gift {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  #recuperation-lp .rk-gift p {
    line-height: 1.7;
  }

  #recuperation-lp .rk-gift__img {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* =====================================================
  10. 無理なく楽しんでいただくために
===================================================== */
#recuperation-lp .rk-notice {
  position: relative;
  margin: 24px 0;
  padding: 28px;
  border: 2px solid var(--rk-line);
  border-radius: 16px;
  background: #fff;
}

#recuperation-lp .rk-notice__title {
  margin: 0 0 18px;
  color: var(--rk-text);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

#recuperation-lp .rk-notice ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#recuperation-lp .rk-notice li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  color: var(--rk-subtext);
  line-height: 1.95;
}

#recuperation-lp .rk-notice li::before {
  content: "●";
  position: absolute;
  top: 6px;
  left: 0;
  color: var(--rk-main-soft);
  font-size: 10px;
}

/* =====================================================
  11. よくあるご質問
===================================================== */
#recuperation-lp .rk-faq-title {
  margin: 0 0 28px;
  color: var(--rk-text);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

/* 見出し前後の装飾（クローバー風） */
#recuperation-lp .rk-faq-title::before,
#recuperation-lp .rk-faq-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 12px;
  background-image: url("https://sakura.itembox.cloud/item/img/handmade-care/recuperation-icon05.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: -4px;
}

#recuperation-lp .rk-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

#recuperation-lp .rk-faq-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--rk-line);
  border-radius: 8px;
  background: #fff;
}

#recuperation-lp .rk-faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--rk-text);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

#recuperation-lp .rk-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Q ピンク四角バッジ */
#recuperation-lp .rk-faq-item summary::before {
  content: "Q";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding-bottom: 4px;
  border-radius: 4px;
  background: var(--rk-main-soft);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

/* 右側の開閉インジケーター */
#recuperation-lp .rk-faq-item summary::after {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid var(--rk-main-dark);
  border-bottom: 2px solid var(--rk-main-dark);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

#recuperation-lp .rk-faq-item[open] summary::after {
  transform: rotate(-135deg);
}

#recuperation-lp .rk-faq-answer {
  padding: 0 20px 18px 56px;
  color: var(--rk-subtext);
  font-size: 15px;
  line-height: 1.7;
}
