@charset "utf-8";

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
.p-subsc body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  font-family: "Hiragino Sans", "Noto Serif JP";
  -webkit-font-smoothing: antialiased;
  --ff-serif: var(--ff-noto-serif-jp, "Noto Serif JP"), "游明朝", "Yu Mincho", "YuMincho", serif;
  --ff-latin: var(--ff-cardo, "Cardo"), "Times New Roman", serif;
  --ff-sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
}

.p-subsc img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.p-subsc {
  width: 100%;
  margin: 0 auto;
}

.p-subsc__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.p-subsc__main-title{
  font-family: "Noto Serif JP";
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #f2f7fc;
  background-image: 
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px),
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  color: #277BD5;
  font-size: 20px;
  font-weight: bold;
  background-repeat: repeat;
}
/* セクションタイトル */
.p-subsc__section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  background-color: #f2f7fc;
  background-image: 
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px),
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  color: #277BD5;
  font-size: 20px;
  font-weight: bold;
  background-repeat: repeat;
  margin: 20px;
}

.p-subsc__section-title-top {
  font-family: var(--ff-serif);
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  width: 170px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 85px 85px 0 0;
  box-sizing: border-box;
}

.p-subsc__section-title-bottom {
  font-family: var(--ff-serif);
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 12px 0 16px 0;
  letter-spacing: 0.05em;
}

.p-subsc__kv-summary-title2 {
  color: #FF9F06;
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 12px 0 16px 0;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   1. KEY VISUAL SECTION (KV)
   ========================================================================== */
.p-subsc__kv {
  padding: 0;
  background: none;
  margin: 0;
}

.p-subsc__kv-pc {
  display: block !important;
  width: 100%;
  height: auto;
}

.p-subsc__kv-sp {
  display: none !important;
  width: 100%;
  height: auto;
}

/* お届け概要チェックリストボックス */
.p-subsc__kv-summary {
  position: relative;
  border: 1px solid #dbe6f4;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 30px 20px 25px;
  max-width: 500px;
  margin: 40px auto 30px;
  text-align: center;
  box-sizing: border-box;
}

.p-subsc__kv-summary-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 0 15px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  color: #1a1a1a;
  white-space: nowrap;
  font-weight: bold;
}

.p-subsc__kv-summary-list {
  font-family: var(--ff-sans);
  counter-reset: num;
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.p-subsc__kv-summary-list li {
  font-size: 15px;
  line-height: 2;
  color: #333333;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-weight: bold;
}

.p-subsc__kv-summary-list li:last-child {
  margin-bottom: 0;
}

.p-subsc__kv-summary-list li::before {
  counter-increment: num;
  content: counter(num); 
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #ff9900; 
  color: #ffffff; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  
  font-size: 12px;
  font-weight: bold;
  transform: none;
  border: none;
}
.p-subsc__kv-summary-list li::first-letter {
  color: #FF9F06; /* 例：鮮やかな青色（#ff9900などにすればオレンジになります） */
  font-weight: bold;
}

/* CTAボタンエリア */
.p-subsc__kv-cta {
  font-family: var(--ff-sans);
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
  margin-bottom: 80px;
}

.p-subsc__kv-cta-item {
  text-align: center;
  width: 300px;
}

.p-subsc__kv-cta-label {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

.p-subsc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006cd0;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 57, 115, 0.2);
  transition: opacity 0.2s;
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  font-size: 14px;
}

.p-subsc__btn--orange {
  background-color: #ff9900;
  box-shadow: 0 4px 12px rgba(230, 138, 0, 0.2);
}

.p-subsc__btn:hover {
  opacity: 0.85;
}

/* ==========================================================================
   2. BENEFITS SECTION (定期特典)
   ========================================================================== */
.p-subsc__benefits {
  position: relative;
  padding-bottom: 40px;
  z-index: 2;
  background-color: #f2f7fc;
  background-image: 
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px),
    radial-gradient(rgba(226, 235, 244, 0.13) 13px, transparent 13px);
  background-size: 28px 28px, 28px 28px;
  background-position: 0 0, 14px 14px;
  background-repeat: repeat;
}

.p-subsc__benefits::before {
  content: "";
  position: absolute;
  top: -50px; /* 直径の半分くらい上に飛び出させる（高さに合わせて微調整） */
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  width: 200px;  /* アーチの横幅（デザインに合わせて微調整） */
  height: 100px;  /* アーチの高さ */
  border-radius: 100px 100px 0 0; 
  background-color: #f2f7fc;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  background-repeat: inherit;
  z-index: -1; /* 文字などの下に潜り込ませたい場合は調整 */
}

.p-subsc__benefits-list {
  font-family: var(--ff-sans);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.p-subsc__benefit-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 20px;
  box-shadow: none;
}

.p-subsc__benefit-badge {
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 5px;
}

.p-subsc__benefit-badge-label {
  background: none;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1; 
}

.p-subsc__benefit-badge-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #ff9900; /* オレンジ色の丸 */
  color: #ffffff;            /* 白文字 */
  font-size: 17px;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1;
}
.p-subsc__benefit-badge-num::after {
content: "";
  position: absolute;
  top: -13px;
  right: -20px;
  width: 30px;  /* 全体サイズをほんの少し大きく */
  height: 24px;
  /* SVGデータ：上から「上の短い線」「真ん中の長い線」「下の短い線」 */
  background-image: url("../../img/subscription/subs-icon5.png");
  background-repeat: no-repeat;
  background-size: contain;
}


.p-subsc__benefit-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  margin-top: 5px;
  font-weight: bold;
}

.p-subsc__benefit-title::after {
  content: "";
  width: 240px;
  height: 4px;
  background-color: #ff9900;
  display: block;
  margin: 10px auto 0;
}

.p-subsc__benefit-body--flex {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
}

.p-subsc__benefit-body--center {
  align-items: center;
  gap: 25px;
}

.p-subsc__benefit-icon {
  margin: 0;
  flex-shrink: 0;
}

.p-subsc__benefit-txt {
  margin: 0;
  font-size: 14px;
  color: #444444;
  line-height: 1.7;
  text-align: left;
  padding: 10px 30px;
}

/* 価格表記 */
.p-subsc__price-area {
  flex: 1;
}


.p-subsc__price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
}

.p-subsc__price-label {
  font-size: 0.85rem;
  background-color: #f0f4f8;
  padding: 2px 8px;
  border-radius: 3px;
  color: #666666;
}

.p-subsc__price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: #888888;
}

.p-subsc__price-arrow {
  color: #a0aec0;
  font-size: 0.9rem;
  padding-left: 60px;
  margin: 2px 0;
}

.p-subsc__price-row--discount .p-subsc__price-label {
  background-color: #fff0f0;
  color: #d63031;
  font-weight: bold;
}

.p-subsc__price-new {
  font-size: 1.8rem;
  font-weight: bold;
  color: #d63031;
}

.p-subsc__price-tax {
  font-size: 0.8rem;
  font-weight: normal;
  margin-left: 2px;
}

.pc-price {
  display: block !important;
  width: 650px;
  height: auto;
}

.sp-price {
  display: none !important;
  height: auto;
}

/* ==========================================================================
   3. STEPS SECTION
   ========================================================================== */
.p-subsc__steps {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.p-subsc__steps-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.p-subsc__step-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px 15px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

.p-subsc__step-card:not(:last-child)::after {
 content: "»";
  position: absolute;
  top: 20px; 
  right: -22px; 
  transform: none; 
  color: #ff9900;
  font-size: 26px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1;
  pointer-events: none;
}

.p-subsc__step-label {
font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  background: #FF9F06;
  width: 60%;             
  margin: 0 auto 12px;   
  text-align: center;  
  padding: 4px 0;  
  border-radius: 2px; 
  line-height: 1.2;
}

.p-subsc__step-txt {
  font-size: 14px;
  margin: 0 0 15px 0;
  min-height: 50px;
  line-height: 16px;
}

/* ==========================================================================
   4. CYCLE SECTION
   ========================================================================== */
.p-subsc__cycle {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.p-subsc__cycle-lead {
  font-size: 14px;
  margin: 25px 0px;
  text-align: center;
  line-height: 1.6;
}

.p-subsc__cycle-chart {
  margin-bottom: 35px;
}

/* 電話窓口 */
.p-subsc__phone-box {
  border: 2px solid #005bac;
  background-color: #f7fafc;
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
  padding: 25px;
  text-align: center;
  box-sizing: border-box;
  margin-top: 20px;
}

.p-subsc__phone-title {
  font-weight: bold;
  color: #005bac;
  margin: 0 0 10px 0;
}

.p-subsc__phone-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #005bac;
  margin: 0 0 5px 0;
  line-height: 1;
}

.p-subsc__phone-time {
  font-size: 0.85rem;
  color: #666666;
  margin: 0;
}
.notice-box {
  font-family: var(--ff-sans);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 650px;
  padding: 16px 24px;
  background-color: #ffffff;
  border: 2px solid #3b66de; /* 枠線の色 */
  border-radius: 16px;       /* 角丸 */
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 10px;
}

/* アイコン（青い丸） */
.icon-wrapper {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: #3b66de; /* 丸背景の色 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* アイコン内のマーク */
.icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: #ffffff; /* アイコンの色（白） */
}

/* テキスト全体のスタイル */
.notice-text {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* 強調文字（青色・太字） */
.highlight {
  color: #3b66de;
  font-weight: bold;
  font-size: 17px; /* 少し大きめにして際立たせる場合 */
}

/* ==========================================================================
   5. GUIDES SECTION
   ========================================================================== */
.p-subsc__guides {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.p-subsc__guides-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.p-subsc__guide-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 20px 0px 10px;
  box-sizing: border-box;
  position: relative;
}

.p-subsc__guide-card-title {
  background-color: #f1f5f9;
  color: #005bac;
  margin: 0;
  padding: 12px;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid #cbd5e1;
}

.p-subsc__guide-card-body {
  padding: 0;
  background-color: #ffffff;
}

.p-subsc__guide-card-label {
  font-weight: bold;
  color: #ffffff;
  font-size: 16px;
  background: #FF9F06;
  width: 50%;
  margin: 0 auto 12px;
  text-align: center;
  padding: 4px 0;
  border-radius: 2px;
  line-height: 1.2;

}

.p-subsc__guide-card:not(:last-child)::after {
  content: "»";
  position: absolute;
  top: 20px;   
  right: -22px; 
  color: #ff9900;
  font-size: 26px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  line-height: 1;
  pointer-events: none;
}

/* ==========================================================================
   6 & 7. ADDITIONAL SECTIONS (解約など)
   ========================================================================== */
.p-subsc__flow {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.p-subsc__flow-chart {
  padding: 20px 0;
}

.p-subsc__cancel {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}


.p-subsc__cancel-text {
  text-align: center;
  margin: 30px 0;
  font-size: 14px;
  line-height: 1.6;
}

.p-subsc__cancel-body {
  text-align: center;
  background-color: #fff5f5;
  border: 1px solid #feb2b2;
  border-radius: 6px;
  padding: 25px;
}

.p-subsc__contact-box {
  border: 1px solid #b3b3b3;
  background-color: #ffffff;
  max-width: 460px;
  margin: 0 auto;
  padding: 20px 25px;
  text-align: center;
  box-sizing: border-box;
}

.p-subsc__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 10px 0;
}

.p-subsc__contact-tel a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
}

/* フリーダイヤル緑アイコン */
.p-subsc__freedial-icon {
  display: inline-flex;
  align-items: center;
  width: 32px;
  height: auto;
}

.p-subsc__freedial-icon img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 受付時間 */
.p-subsc__contact-time {
  font-size: 14px;
  color: #333333;
  margin: 0;
}

.p-subsc__contact-title {
  font-size: 14px;
  color: #333333;
  margin: 0 0 10px 0;
  font-weight: normal;
}

.p-subsc__cancel-body p {
  margin: 0 0 8px 0;
  font-size: 1rem;
}

.p-subsc__cancel-body p:last-child {
  margin-bottom: 0;
}

.p-subsc__cancel-sub {
  color: #c53030;
  font-size: 0.85rem !important;
}

/* ==========================================================================
   8. FAQ SECTION & FOOTER
   ========================================================================== */
.p-subsc__faq {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.p-subsc__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 750px;
  margin: 0 auto;
}

.p-subsc__faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 15px;
}

.p-subsc__faq-q {
  font-weight: bold;
  color: #005bac;
  margin: 0 0 5px 0;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}

.p-subsc__faq-q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: #ff9900;
}

.p-subsc__faq-a {
  margin: 0;
  font-size: 14px;
  color: #444444;
  padding-left: 25px;
  line-height: 1.6;
}

.p-subsc__back {
  text-align: center;
  padding: 50px 0;
}

.p-subsc__back a {
  color: #005bac;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.p-subsc__back a:hover {
  text-decoration: underline;
}

.p-subsc__products {
  font-family: var(--ff-sans);
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

/* リスト全体のレイアウト */
.p-subsc__category-list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 30px 0 50px;
}

/* 各カードのスタイル */
.p-subsc__category-item {
  flex: 1;
}

/* カード（リンク枠）のデザイン */
.p-subsc__category-item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 20px 15px 15px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0; /* 薄いグレーの細い枠線 */
  border-radius: 6px;        /* 角丸 */
  text-decoration: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* ホバー時の効果 */
.p-subsc__category-item a:hover {
  border-color: #006cd0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 商品画像領域 */
.p-subsc__category-item figure {
  margin: 0 0 15px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-subsc__category-item img {
  max-width: 100%;
  max-height: 120px; /* 画像の高さを揃える */
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
}

/* カテゴリテキスト＋右矢印（>） */
.p-subsc__category-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #3880e0; /* 画像に合わせた青色 */
  position: relative;
}

/* 右側の矢印アイコン（>） */
.p-subsc__category-item span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 2px solid #3880e0;
  border-right: 2px solid #3880e0;
  transform: rotate(45deg); /* 斜め傾けて「>」を作成 */
}

/*追加*/
.subs-image img {
  width: 100%;            
  max-width: 800px;    
  height: auto;  
  display: block; 
  margin: 0 auto;  
}

.p-subsc__benefit-link {
  display: flex;
  align-items: center;
  width: 100%;                  /* 親要素の幅いっぱいに広げる（必要に応じて調整） */
  max-width: 200px;             /* 横幅の最大値を設定したい場合 */
  color: #0088e0;               /* 画像のような明るい水色（サイトに合わせて微調整してください） */
  font-size: 14px;
  text-decoration: none;        /* 下線を消す */
  transition: opacity 0.3s ease;
  padding: 10px 30px;
}

/* 右端の矢印「＞」の指定 */
.p-subsc__benefit-link::after {
  content: "";
  display: inline-block;
  width: 8px;                   /* 矢印の幅 */
  height: 8px;                  /* 矢印の高さ */
  border-top: 2px solid #0088e0;  /* 矢印の上の線 */
  border-right: 2px solid #0088e0;/* 矢印の右の線 */
  transform: rotate(45deg);     /* 45度回転させて「＞」を作る */
}

/* ホバー時の挙動 */
.p-subsc__benefit-link:hover {
  opacity: 0.7;
}

.p-subsc__benefit-link1 {
  display: flex;
  align-items: center;
  width: 100%;                  /* 親要素の幅いっぱいに広げる（必要に応じて調整） */
  max-width: 300px;             /* 横幅の最大値を設定したい場合 */
  color: #0088e0;               /* 画像のような明るい水色（サイトに合わせて微調整してください） */
  font-size: 14px;
  text-decoration: none;        /* 下線を消す */
  transition: opacity 0.3s ease;
  padding: 10px 30px;
}

/* 右端の矢印「＞」の指定 */
.p-subsc__benefit-link1::after {
  content: "";
  display: inline-block;
  width: 8px;                   /* 矢印の幅 */
  height: 8px;                  /* 矢印の高さ */
  border-top: 2px solid #0088e0;  /* 矢印の上の線 */
  border-right: 2px solid #0088e0;/* 矢印の右の線 */
  transform: rotate(135deg);     /* 45度回転させて「＞」を作る */
  margin: 0px 10px 3px 6px;
}

/* ホバー時の挙動 */
.p-subsc__benefit-link1:hover {
  opacity: 0.7;
}


/* ==========================================================================
   MEDIA QUERIES (SP対応: 768px以下をここに集約)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* KVの切り替え */
  .p-subsc__kv-pc {
    display: none !important;
  }
  .p-subsc__kv-sp {
    display: block !important;
  }

  /* セクションタイトルの調整 */
  .p-subsc__section-title {
    font-size: 18px;
    padding: 10px;
    margin: 20px 10px;
    height: 50px;
    justify-content: center;
  }
  .p-subsc__section-title-top {
    font-size: 20px;
    width: 140px;
    height: 40px;
  }
  .p-subsc__section-title-bottom {
    font-size: 20px;
    padding: 10px 0 14px 0;
  } 
  .p-subsc__kv-summary{
  margin: 40px 20px 20px 30px;
  }
  /* CTA */
  .p-subsc__kv-cta {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .p-subsc__btn {
    width: 100%;
    max-width: 300px;
  }

  /* 特典カード */
  .p-subsc__benefit-body--flex,
  .p-subsc__benefit-body--center {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .p-subsc__price-arrow {
    padding-left: 0;
    text-align: center;
  }
  .p-subsc__price-row {
    justify-content: center;
  }

  /* 3ステップ */
  .p-subsc__steps-grid {
  flex-direction: column;
    gap: 40px;
  }

  .p-subsc__step-card:not(:last-child)::after {
  content: "︾";
    top: auto;
    bottom: -28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 20px;
  }


  /* 電話番号 */
  .p-subsc__phone-number {
    font-size: 1.8rem;
  }

  /* ガイド */
  .p-subsc__guides-grid {
  flex-direction: column;
    gap: 35px;
  }

  .p-subsc__guide-card:not(:last-child)::after {
    content: "︾"; /* スマホでは下向き矢印 */
    top: auto;
    bottom: -28px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 20px;
  }

    .pc-price {
    display: none !important;
  }
  .sp-price {
    display: block !important;
    margin-top: 30px;
  }

  .p-subsc__benefit-txt{
    padding: 10px 0px;
  }

  .p-subsc__category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列で綺麗に配置 */
    gap: 12px;
  }
  
  .p-subsc__category-item a {
    padding: 15px 10px 12px;
  }
  
  .p-subsc__category-item img {
    max-height: 90px;
  }

  .notice-box{
    margin: 30px 20px;
  }
  .p-subsc__step-txt {
    font-size: 14px;
    margin: 0 0 15px 0;
    min-height: 35px;
  }
  .subs-image img {
  width: 100%;            
  max-width: 400px;     
}
.p-subsc__benefit-link{
  padding: 10px 0px ;
}
.p-subsc__benefit-link1{
  padding: 10px 0px ;
}
}

/* ==========================================================================
   スクロール連動ふわっと表示（フェードイン）
   ========================================================================== */
/* 初期状態：透明 ＆ 少し下に下げておく */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 画面内に入ったら発動するクラス：表示 ＆ 元の位置に戻す */
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}