@charset "UTF-8";
/* ================================================================
   Campaign B — 追加スタイル (2026-07 v3: HTMLカード式POINTブロック + BA拡大)
   ================================================================ */

/* ================================================================
   POINT block: fully HTML/CSS-based 2x4 card grid
   ================================================================ */
.point-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 690px;
  margin: 0 auto;
  padding: 0 12px;
  position: relative;
}

.pc-card{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px 34px;   /* 余白を下に増やして矢印表示エリア確保 */
  background: #FFF;
  border: 2px solid #FFC1D7;   /* ボタン感を出すためのボーダー */
  border-radius: 22px;
  box-shadow: 0 6px 18px rgba(255, 106, 167, .22), inset 0 -3px 0 rgba(255, 106, 167, .08);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
}
.pc-card:hover,
.pc-card:focus{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(255, 106, 167, .38), inset 0 -3px 0 rgba(255, 106, 167, .12);
  border-color: #FF6AA7;
}
.pc-card:active{
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 106, 167, .28), inset 0 -2px 0 rgba(255, 106, 167, .1);
}
/* ボタンであることを明示する矢印CTA - カード右下に表示 */
.pc-card::after{
  content: "詳しく見る \203A";  /* ›=U+203A single right-pointing angle */
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #FFF;
  background: linear-gradient(90deg, #FF8AB4 0%, #FF6AA7 100%);
  padding: 4px 14px 3px;
  border-radius: 999px;
  letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(255, 106, 167, .3);
  transition: transform .15s ease;
}
.pc-card:hover::after,
.pc-card:focus::after{
  transform: translateX(-50%) translateY(-1px);
}

/* POINT XX ribbon label */
.pc-label{
  display: inline-block;
  min-width: 92px;
  padding: 4px 12px 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFC694 0%, #FF8AB4 100%);
  color: #FFF;
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.2;
}

/* Icon container - circular halo (larger, no cropping) */
.pc-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin: 10px auto 8px;
  overflow: visible;
}
.pc-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Part name */
.pc-name{
  display: block;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #4A3A44;
  letter-spacing: .04em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
}

/* Price pill */
.pc-price{
  display: inline-block;
  padding: 4px 12px 3px;
  background: #FFF;
  border: 1.5px solid #FFC1D7;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  color: #E9376E;
  letter-spacing: -.02em;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(255, 106, 167, .12);
}
.pc-price .pc-u{
  font-size: 11px;
  color: #7A6570;
  font-weight: 700;
  margin-right: 2px;
}
.pc-price .pc-tilde{
  font-size: 11px;
  color: #7A6570;
  font-weight: 700;
  margin-left: 1px;
}

/* etc... in the 8th cell */
.pc-etc{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: #B0A0A5;
  padding-bottom: 18px;
}

/* Point block note under the cards */
.point-note{
  margin: 22px auto 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #503C44;
  line-height: 1.55;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.point-note .pink{ color: #FF6AA7; }

@media screen and (max-width: 480px){
  .point-cards{ gap: 10px; padding: 0 8px; }
  .pc-card{ padding: 12px 6px 30px; border-radius: 18px; border-width: 1.5px; }
  .pc-card::after{ font-size: 10px; padding: 3px 12px 2px; bottom: 8px; }
  .pc-label{ font-size: 11px; min-width: 78px; padding: 3px 10px 2px; }
  .pc-icon{ width: 88px; height: 88px; margin: 8px auto 6px; }
  .pc-name{ font-size: 15px; margin-bottom: 6px; }
  .pc-price{ font-size: 13px; padding: 3px 10px 2px; }
  .pc-price .pc-u,
  .pc-price .pc-tilde{ font-size: 10px; }
  .pc-etc{ font-size: 18px; padding-bottom: 12px; }
  .point-note{ font-size: 16px; }
}


/* ================================================================
   POPULAR section: price card + BA imagery (bigger 2x2 grid)
   余白なくして: pop-extra を上寄せ + 説明文カード直下にくっつくよう調整
   ================================================================ */
.pop-extra{
  margin: -8px 0 8px;   /* 上のカード(.info-wrap)と密着 */
  padding: 12px 16px 14px;
  background: #FFF7FA;
  border: 1px solid #FFD6E4;
  border-radius: 14px;
}
/* 説明文とpop-extraをつなぐため、pop-extra直前の説明文の下マージンを削除 */
.popular .info-wrap p + .pop-extra,
.popular .info-wrap div + .pop-extra{
  margin-top: -14px;
}
.pop-price-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;   /* 余白なくして */
}
.pop-price-row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FFF;
  border: 1px solid #FFC1D7;
  border-radius: 10px;
}
.pop-price-row .label{
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #4A3A44;
  line-height: 1.2;
}
.pop-price-row .label .sublabel{
  display: inline-block;
  font-size: 11px;
  color: #FFF;
  background: linear-gradient(90deg, #FFB07A, #FF6AA7);
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
  font-weight: 700;
}
.pop-price-row .value{
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  color: #E9376E;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
.pop-price-row .value .times{
  font-size: 12px;
  color: #7A6570;
  font-weight: 700;
  margin-right: 4px;
}
.pop-price-row .value .yen{
  font-size: 13px;
  font-weight: 800;
  margin-left: 1px;
}
.pop-price-row .value .tax{
  font-size: 10px;
  color: #7A6570;
  font-weight: 600;
  margin-left: 3px;
}

/* BA image grid — each provided image is already a Before|After composite,
   so display 1 image per row, full-width (larger presentation).
   余白なくして: pop-price-list と pop-ba の間隔を詰める */
.pop-ba{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 4px;
}
.pop-ba.pop-ba-2col{
  grid-template-columns: 1fr 1fr;
}
.pop-ba figure{
  margin: 0;
  background: #FFF;
  border: 1px solid #FFD6E4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(255, 106, 167, .08);
}
.pop-ba figure img{
  display: block;
  width: 100%;
  height: auto;
}
.pop-ba.pop-ba-2col figure img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Captions hidden per client request (2026-07 v5) — kept in HTML for a11y but visually hidden */
.pop-ba figure figcaption{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pop-ba-note{
  margin-top: 10px;
  font-size: 11px;
  color: #9A8891;
  line-height: 1.5;
  text-align: left;
}

/* Sub-block for split parts (口周り: 鼻下/唇下/あご先 as independent cards) */
.pop-subblock{
  padding: 12px 14px 14px;
  background: #FFF;
  border: 1px solid #FFD6E4;
  border-radius: 12px;
  margin-bottom: 10px;
}
.pop-subblock:last-child{ margin-bottom: 0; }
.pop-subblock .pop-price-list{ margin-bottom: 10px; }
.pop-subblock .pop-ba{ margin-top: 6px; }
.pop-sub-title{
  display: block;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #E9376E;
  margin-bottom: 8px;
  padding-left: 8px;
  border-left: 4px solid #FF6AA7;
  line-height: 1.2;
}

/* ================================================================
   Anchor jump landmark (for #pop-xxx page-internal links)
   ================================================================ */
html{ scroll-behavior: smooth; }
.pop-anchor{
  display: block;
  position: absolute;
  top: -100px;   /* offset above the section so the pink title banner (translated up -70px) stays fully visible after the jump */
  left: 0;
  height: 1px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  visibility: hidden;
  pointer-events: none;
}
/* Ensure the parent .info-wrap is a positioning context for the absolute anchor */
.popular .info-wrap{ position: relative; }

/* ================================================================
   FIX: Overlap between the white pop-extra card and the next section's
   pink title banner. In the original CSS, .title-wrap .information-wrap
   is translated up by -70px so each pink banner floats upward into the
   previous section's area. When a section now contains our added
   .pop-extra card at its bottom, the next pink banner would sit ON TOP
   of that card. Add ample bottom margin so they never overlap.
   ================================================================ */
.popular .info-wrap{
  margin-bottom: 90px;
}
.popular .info-wrap:last-child{
  margin-bottom: 20px;
}
/* Slightly larger gap before the mouth section which contains sub-blocks. */
.popular .info-wrap.no4{
  margin-bottom: 100px;
}

/* ================================================================
   FIX (v8): 「余白なくして」 - 説明文カード(.ditail-wrap)と料金カード(.pop-extra)の間の余白削減
   ================================================================ */
/* .ditail-wrap の .text は margin-bottom: 41px を持つが、その直後に .pop-extra がある場合は余白不要 */
.popular .info-wrap .ditail-wrap:has(+ .pop-extra) .text{
  margin-bottom: 8px;
}
/* :has() 非対応ブラウザ用フォールバック: .pop-extra を持つ .info-wrap 内の .ditail-wrap 全体を下寄せ */
.popular .info-wrap .ditail-wrap{
  padding-bottom: 4px;
}
/* .pop-extra 自体の上マージンを負にして .ditail-wrap に密着 */
.popular .info-wrap .pop-extra{
  margin-top: -32px;  /* .ditail-wrap の text margin-bottom:41px を打ち消す */
}
/* サブブロックを含む口周りセクションは元の余白量を維持しつつ、pop-extra の位置だけ詰める */
.popular .info-wrap.no4 .pop-extra{
  margin-top: -32px;
}

/* v12: 顔全体セクションだけは説明テキストが .pop-extra の白枠に重なる問題があるため、
   負マージンを解除して余白を確保する。 */
.popular .info-wrap.no2 .pop-extra{
  margin-top: 4px;
  padding-top: 12px;
}
.popular .info-wrap.no2 .ditail-wrap .text{
  margin-bottom: 16px;
}

/* ================================================================
   FIX (v11): ページ内リンクの停止位置を全面修正
   旧実装は .pop-anchor (top:-100px) をターゲットにしていたため、
   セクションごとの margin / transform の影響を受けて見出し位置が不安定だった。
   そこでリンク先IDを実見出しの .title-wrap に移し、固定ヘッダー直下で
   オレンジ見出しが必ず全文見える位置に統一する。
   ================================================================ */
#pop-eyebrow,
#pop-face-all,
#pop-hairline,
#pop-mouth,
#pop-nose,
#pop-sideburn,
#pop-forehead {
  scroll-margin-top: 84px;
}

/* ================================================================
   FIX (v10): 口周りセクションのテキスト重なり修正
   あご先の説明文と鼻下サブブロックのタイトルが重なっている原因:
   .pop-extra { margin-top: -32px } の負マージンが強すぎる。
   口周りセクションだけ、負マージンを弱めて余白を確保する。
   ================================================================ */
.popular .info-wrap.no4 .pop-extra{
  margin-top: 8px;  /* 負マージンを解除して、あご先の説明文と鼻下ヘッダーが被らないようにする */
  padding-top: 16px;
}
/* サブブロック間の余白も微増（読みやすさUP） */
.popular .info-wrap.no4 .pop-subblock{
  margin-bottom: 14px;
}
