@charset "UTF-8";

/* =============================================
   LP shared styles (heatstroke-day / heatstroke-month / covid-care)
   ============================================= */

.lp { background: var(--color-white); }

.lp__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad-sp);
}
@media (min-width: 768px) {
  .lp__inner { padding: 0 24px; }
  .lp__inner--narrow { padding: 0 215px; }
}

.section { padding: 32px 0; }
.section--alt { background: var(--color-gray10); }
@media (min-width: 768px) { .section { padding: 48px 0; } }

.section__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 8px;
  color: var(--color-gray90);
}
.section__subtitle {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--color-gray70);
  margin: 0 0 24px;
}
.section__title + .section__body { margin-top: 24px; }
@media (min-width: 768px) {
  .section__title { font-size: 32px; }
  .section__subtitle { font-size: 18px; margin-bottom: 32px; }
}

/* ---------- Main Visual / Carousel ---------- */
.mv {
  position: relative;
  background: var(--lp-mv-bg);
  overflow: hidden;
}
.mv__inner {
  position: relative;
  height: 320px;
  max-width: var(--content-max);
  margin: 0 auto;
}
@media (min-width: 768px) { .mv__inner { height: 526px; } }

.mv__tag {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-accent);
  color: var(--color-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .mv__tag { top: 32px; font-size: 24px; line-height: 36px; height: 36px; padding: 0 18px; }
}

.mv__carousel {
  position: relative;
  height: 100%;
}
.mv__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 32px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.mv__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.mv__slideTitle {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 16px;
  color: var(--color-gray90);
}
.mv__slidePic {
  width: 200px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv__slidePic img { max-width: 100%; max-height: 100%; }
@media (min-width: 768px) {
  .mv__slide { padding: 80px 0 0; }
  .mv__slideTitle { font-size: 40px; margin-bottom: 24px; }
  .mv__slidePic { width: 300px; height: 252px; }
}

.mv__indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.mv__indicatorDot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-gray10);
  border: none;
  padding: 0;
  cursor: pointer;
}
.mv__indicatorDot.is-active { background: var(--color-gray70); }
@media (min-width: 768px) { .mv__indicator { bottom: 32px; } }

.mv__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-gray70);
  z-index: 2;
}
.mv__nav::before {
  content: "";
  width: 12px; height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.mv__nav--prev { left: 8px; }
.mv__nav--prev::before { transform: rotate(-135deg); margin-left: 4px; }
.mv__nav--next { right: 8px; }
.mv__nav--next::before { transform: rotate(45deg); margin-right: 4px; }
@media (min-width: 768px) {
  .mv__nav { width: 48px; height: 48px; }
  .mv__nav::before { width: 20px; height: 20px; }
  .mv__nav--prev { left: 215px; }
  .mv__nav--next { right: 215px; }
}

/* ---------- Lead text ---------- */
.lead {
  padding: 24px 0;
  text-align: center;
}
.lead__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-gray80);
  margin: 0;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .lead { padding: 32px 0 24px; }
  .lead__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-gray90);
  }
}

/* ---------- Recommend ---------- */
.recommend__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.recommend__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.recommend__pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend__pic img { max-width: 100%; max-height: 100%; }
.recommend__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.56;
  color: var(--color-gray90);
  margin: 0;
}
@media (min-width: 768px) {
  .recommend__list { gap: 24px; }
  .recommend__pic { width: 150px; height: 150px; }
  .recommend__text { font-size: 18px; }
}

/* covid テーマでは円形背景にターコイズ薄色を敷く */
.lp--covid .recommend__pic { background: var(--color-turquoise5); }
/* heatstroke テーマでは円形背景にレッド薄色を敷く */
.lp--heatstroke .recommend__pic { background: var(--color-red5); }
.lp--covid .recommend__text,
.lp--heatstroke .recommend__text { font-weight: 300; }

/* ---------- Service grid ---------- */
.service__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
/* Service カード（gray10 2x2、covid-care / heatstroke 共通） */
.service__item {
  background: var(--color-gray10);
  border: none;
  border-radius: 4px;
  padding: 11px 12px;
  text-align: center;
}
.service__pic {
  width: 128px;
  height: 64px;
  margin: 0 auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-gray80);
  margin: 0;
}
.service__item--full { grid-column: 1 / -1; }
.service__item--full .service__pic { margin-bottom: 8px; }
@media (min-width: 768px) {
  .service__list { gap: 16px; }
  .service__text { font-size: 18px; }
}

/* ---------- Service note (月額プランはこちら等) ---------- */
.service__note {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin-top: 32px;
  color: var(--color-gray90);
}
.service__noteLink {
  color: var(--color-blue50);
  text-decoration: none;
}

/* ---------- HowTo (LINE flow) ---------- */
.howto {
  text-align: center;
}
.howto__pic {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
}
.howto__pic img {
  max-width: 343px;
}
.howto__text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 32px;
  color: var(--color-gray80);
}
.howto__sns {
  display: flex;
  justify-content: center;
}

/* ---------- Claim steps ---------- */
.claim__point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-gray10);
  border-radius: 4px;
  margin: 0 auto 24px;
  max-width: 380px;
}
.claim__pointPic { width: 80px; height: 36px; display: flex; align-items: center; }
.claim__pointText { font-size: 16px; font-weight: 600; margin: 0; }
.claim__notice {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 auto 24px;
  font-size: 13px;
  color: var(--color-gray70);
  line-height: 1.7;
  max-width: 640px;
}
.claim__noticeIcon {
  display: block;
  flex: 0 0 24px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: unset;
}

/* SP: 横スクロール1列 / PC: 4カラムグリッド */
.claim__steps {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding: 0 var(--content-pad-sp);
  margin-left: calc(-1 * var(--content-pad-sp));
  margin-right: calc(-1 * var(--content-pad-sp));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.claim__steps::-webkit-scrollbar { display: none; }
.claim__step {
  position: relative;
  flex: 0 0 146px;
  padding-top: 16px;
  text-align: left;
}
.claim__stepNum {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-gray70);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-white);
  z-index: 1;
}
.claim__stepPic {
  width: 130px;
  height: 200px;
  margin: 0 0 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.claim__stepText {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-gray90);
  margin: 0;
  margin-left: 16px;
  max-width: 130px;
}
@media (min-width: 768px) {
  .claim__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0;
    overflow: visible;
  }
  .claim__step { flex: initial; }
}

/* 保険金請求 notice 構造（covid-care / heatstroke 共通） */
.claim__noticeBody {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.claim__noticeTitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray90);
  margin: 0;
}
.claim__noticeDesc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.43;
  color: var(--color-gray90);
  margin: 0;
}

/* 保険金請求セクション 共通レイアウト上書き */
.section--claim { padding: 48px 0 56px; }
.section__title + .section__body.howto { margin-top: 32px; }
.claim__stepLink {
  color: var(--color-blue50);
  text-decoration: none;
}
@media (min-width: 768px) {
  .claim__stepLink {
    color: inherit;
    pointer-events: none;
    cursor: text;
  }
}

/* ---------- Benefit (どこでもおトク) ---------- */
.benefit__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray20);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.benefit__textArea { flex: 1; }
.benefit__heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-gray90);
  margin: 0 0 8px;
}
.benefit__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray90);
  margin: 0;
}
.benefit__pic {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .benefit__item { padding: 32px; gap: 32px; }
  .benefit__heading { font-size: 20px; }
  .benefit__desc { font-size: 18px; }
  .benefit__pic { flex-basis: 200px; width: 200px; height: 200px; }
}

/* ---------- Other products ---------- */
.otherProducts__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.otherProducts__link {
  display: flex;
  width: 100%;
  min-width: 164px;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid var(--color-gray30);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-gray70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.otherProducts__link:hover { text-decoration: none; background: var(--color-gray10); }
.otherProducts__icon {
  width: 32px;
  height: 32px;
  display: block;
  color: var(--color-gray70);
}
.otherProducts__toTop {
  margin-top: 24px;
  text-align: center;
}
.otherProducts__toTopLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  color: var(--color-blue50);
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
  text-decoration: none;
}

/* その他の商品 共通上書き */
.otherProducts__list > li {
  width: 100%;
  max-width: 248px;
}

/* ---------- Floating CTA (PC) ---------- */
.fab {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.05);
  padding: 12px var(--content-pad-sp) calc(12px + env(safe-area-inset-bottom));
  z-index: 100;
  display: flex;
  justify-content: center;
}
.fab__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 44px;
  padding: 8px 16px;
  background: var(--lp-cta);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.fab__button svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

body.has-fab { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }

/* ---------- Covid Features (画像化済み — ラッパーと注釈のみ) ---------- */
.covidFeature {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.covidFeature__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.covidFeature__card img {
  width: 100%;
  height: auto;
}
.covidFeature__note {
  font-size: 14px;
  color: var(--color-gray60);
  margin: 0;
  line-height: 1.43;
}

/* ---------- Insurance Table (covid-care 保険料と保障内容) ---------- */
.insuranceTable {
  position: relative;
  border: 1px solid var(--color-turquoise20);
  border-radius: 2px;
  overflow: hidden;
}
.insuranceTable__row {
  display: flex;
  width: 100%;
}
.insuranceTable__cell {
  flex: 1 0 0;
  min-width: 0;
  padding: 8px 4px;
  border-right: 1px solid var(--color-turquoise20);
  border-bottom: 1px solid var(--color-turquoise20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray80);
  text-align: center;
}
.insuranceTable__row:last-child .insuranceTable__cell {
  border-bottom: none;
}
.insuranceTable__row--header .insuranceTable__cell {
  background: var(--color-turquoise10);
}
.insuranceTable__cell--val-lg {
  font-weight: 300;
  font-size: 12px;
  color: var(--color-gray90);
}
.insuranceTable__row--separator {
  position: relative;
  height: 40px;
}
.insuranceTable__shionogi {
  position: absolute;
  top: 4px;
  right: 7px;
  bottom: 4px;
  left: 7px;
  background: var(--color-gray20);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-gray80);
}
.insuranceTable__shionogiTitle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  font-weight: 600;
}
.insuranceTable__cellLabel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.insuranceTable__shionogiValue {
  font-weight: 300;
  color: var(--color-gray90);
}
.insuranceTable__row--customer {
  border-top: 2px solid var(--color-turquoise50);
  border-bottom: 2px solid var(--color-turquoise50);
}
.insuranceTable__row--customer .insuranceTable__cell {
  border-bottom: none;
  font-weight: 300;
  font-size: 11px;
  color: var(--color-gray90);
}
.insuranceTable__row--customer .insuranceTable__cell--accent {
  background: var(--color-turquoise50);
  color: var(--color-white);
  font-weight: 600;
  font-size: 10px;
}
.insuranceTable__row--subheader .insuranceTable__cell {
  flex: 1;
  background: var(--color-turquoise5);
}
.insuranceTable__cell--th-left {
  align-items: flex-start;
  text-align: left;
  padding: 8px;
}
@media (min-width: 768px) {
  .insuranceTable__cell {
    font-size: 14px;
    padding: 8px;
  }
  .insuranceTable__cell--val-lg {
    font-size: 16px;
    line-height: 1.5;
  }
  .insuranceTable__shionogi {
    font-size: 14px;
  }
  .insuranceTable__row--customer .insuranceTable__cell {
    font-size: 14px;
  }
  .insuranceTable__row--customer .insuranceTable__cell--accent {
    font-size: 12px;
  }
}

/* covid-care フッター */
.lp--covid .footer__info {
  color: var(--color-gray50);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}
.lp--covid .footer__note {
  color: var(--color-gray50);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* covid-care / heatstroke SP Figma 修正（タグ・スライドタイトル） */
.lp--covid .mv__tag,
.lp--heatstroke .mv__tag {
  font-size: 16px;
  padding: 0 12px;
  line-height: 24px;
}
.lp--covid .mv__tag { background: #08c3c3; }
.lp--covid .mv__slideTitle,
.lp--heatstroke .mv__slideTitle {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .lp--covid .mv__tag,
  .lp--heatstroke .mv__tag {
    padding: 0 18px;
    font-size: 24px;
    line-height: 36px;
    height: 36px;
  }
  .lp--covid .mv__slideTitle,
  .lp--heatstroke .mv__slideTitle {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

.lp--covid .lead { padding: 24px 0 12px; }
.lp--covid .lead__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray90);
}
@media (min-width: 768px) {
  .lp--covid .lead { padding: 32px 0 24px; }
  .lp--covid .lead__text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
  }
}

.lp--covid .recommend__list { gap: 16px; }
.lp--covid .recommend__text { line-height: 1.43; }

.lp--covid .section--feature { padding: 12px 0 24px; }
.lp--covid .covidFeature__card { gap: 8px; }
.lp--covid .covidFeature__note {
  font-size: 12px;
  line-height: 1.5;
}

/* =============================================
   LINE QR モーダル（PC 専用）
   ============================================= */
.lineModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lineModal:not([hidden]) { display: flex; }
.lineModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.lineModal__dialog {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius8);
  width: 640px;
  padding: 32px 0 64px;
  display: flex;
  flex-direction: column;
}
.lineModal__closeArea {
  display: flex;
  justify-content: flex-end;
  padding: 0 32px;
  margin-bottom: 24px;
}
.lineModal__closeBtn {
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  color: var(--color-gray70);
}
.lineModal__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 128px;
}
.lineModal__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.lineModal__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray90);
  text-align: center;
  margin: 0;
}
.lineModal__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.lineModal__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-gray60);
  text-align: center;
  margin: 0;
}
.lineModal__qr {
  width: 150px;
  height: 150px;
  background: var(--color-gray20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineModal__qr img { width: 100%; height: 100%; object-fit: contain; }
.lineModal__btn {
  width: 100%;
  padding: 10px 0;
  background: var(--color-blue50);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius4);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}
.lineModal__btn:hover { opacity: 0.9; }

/* =============================================
   Info Sheet (SP: BottomSheet / PC: Modal)
   ?ボタンタップで開く補足説明
   ============================================= */
.insuranceTable__infoBtn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 0;
  cursor: pointer;
  color: var(--color-blue50);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.insuranceTable__infoBtn:hover { opacity: 0.7; }
.insuranceTable__cell--accent .insuranceTable__infoBtn {
  color: var(--color-white);
}
.insuranceTable__infoBtn svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.infoSheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: block;
  pointer-events: none;
}
.infoSheet[hidden] {
  display: block;
  pointer-events: none;
}
.infoSheet:not([hidden]) { pointer-events: auto; }
.infoSheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.infoSheet:not([hidden]) .infoSheet__overlay { opacity: 1; }
.infoSheet__dialog {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.infoSheet:not([hidden]) .infoSheet__dialog { transform: translateY(0); }
.infoSheet__closeArea {
  display: flex;
  justify-content: flex-end;
  padding: 12px 12px 0;
}
.infoSheet__closeBtn {
  background: none;
  border: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  color: var(--color-gray70);
}
.infoSheet__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 24px;
}
.infoSheet__illust {
  width: 128px;
  height: 64px;
}
.infoSheet__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.infoSheet__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-gray90);
  text-align: center;
  margin: 0;
}
.infoSheet__alert {
  width: 100%;
  background: var(--color-gray10);
  border-radius: var(--radius4);
  padding: 12px;
  margin-top: 8px;
}
.infoSheet__alertText {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: var(--color-gray80);
  margin: 0;
}
.infoSheet__alertText + .infoSheet__alertText {
  margin-top: 8px;
}
.infoSheet__footer {
  padding: 0 16px calc(16px + env(safe-area-inset-bottom));
}
.infoSheet__btn {
  width: 100%;
  padding: 10px 0;
  background: var(--color-blue50);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius4);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
}
.infoSheet__btn:hover { opacity: 0.9; }

@media (min-width: 768px) {
  .infoSheet,
  .infoSheet[hidden],
  .infoSheet:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .infoSheet__dialog {
    position: relative;
    width: 400px;
    border-radius: var(--radius8);
    max-height: 80vh;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .infoSheet:not([hidden]) .infoSheet__dialog {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =============================================
   heatstroke 保障/保険料表（<table> ベース）
   ============================================= */
.heatstrokeTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-red20);
  border-radius: var(--radius2);
  overflow: hidden;
  background: var(--color-white);
  table-layout: fixed;
}
.heatstrokeTable th,
.heatstrokeTable td {
  padding: 8px;
  border-right: 1px solid var(--color-red20);
  border-bottom: 1px solid var(--color-red20);
  text-align: center;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--color-gray80);
}
.heatstrokeTable td {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-gray90);
}
.heatstrokeTable thead th {
  background: var(--color-red5);
}
.heatstrokeTable--month thead th {
  background: var(--color-red10);
}
.heatstrokeTable tr > *:last-child { border-right: none; }
.heatstrokeTable tr:last-child > * { border-bottom: none; }
/* 期間選択型: 行ヘッダ列を 116px 固定にする modifier（? ボタン分の余白を確保） */
.heatstrokeTable--narrow th[scope="row"] { width: 116px; }
/* 月額型: 行ヘッダ列を 116px 固定にして ? アイコン分の余白を確保 */
.heatstrokeTable--month thead th:first-child,
.heatstrokeTable--month tbody th[scope="row"] { width: 116px; }
/* 保険料表（heatstroke-day 用）はヘッダだけ 11px */
.heatstrokeTable--priceList thead th {
  font-size: 11px;
  line-height: 16px;
}
.heatstrokeTable__note {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: var(--color-gray60);
}
.heatstrokeTable__caption {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: var(--color-gray60);
}

/* SP: 保険料表で「100円」のように数字と円が分断されないよう改行ルールを調整 */
@media (max-width: 767px) {
  .heatstrokeTable--priceList td {
    word-break: keep-all;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* heatstroke セクションサブタイトル(Figma: PC 24px gray60) */
.lp--heatstroke .section__title { margin-bottom: 4px; }
@media (min-width: 768px) {
  .lp--heatstroke .section__subtitle {
    font-size: 24px;
    color: var(--color-gray60);
    line-height: 1.5;
    margin-bottom: 32px;
  }
}

/* =============================================
   Top LP（統合LP /index.html）専用スタイル
   ============================================= */

/* ---------- Top LP の recommend (2項目で中央配置) ---------- */
.lp--top .recommend__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 343px;
  margin: 0 auto;
}
.lp--top .recommend__pic { background: transparent; }
@media (min-width: 768px) {
  .lp--top .recommend__list {
    gap: 32px;
    max-width: 500px;
  }
}

/* ---------- Top LP の section--alt（現在ご案内中の商品） ---------- */
.lp--top .section--alt { padding: 56px 0; }
.lp--top .section--alt .section__title + .section__body { margin-top: 32px; }

/* ---------- Top Main Visual ---------- */
.topMv {
  background: var(--lp-mv-bg);
  padding: 32px 16px;
}
.topMv__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.topMv__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-accent);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.topMv__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-gray90);
  margin: 0 0 4px;
}
.topMv__lead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray80);
  margin: 0 0 24px;
}
.topMv__pic {
  width: 100%;
  max-width: 343px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topMv__pic img { max-width: 100%; height: auto; }
@media (min-width: 768px) {
  .topMv { padding: 48px 24px; }
  .topMv__tag { font-size: 16px; padding: 10px 18px; }
  .topMv__title { font-size: 40px; margin-bottom: 8px; }
  .topMv__lead { font-size: 20px; margin-bottom: 32px; }
  .topMv__pic { max-width: 500px; }
}

/* ---------- Product Card ---------- */
.productCard__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 524px;
  margin: 0 auto;
}
.productCard {
  background: var(--color-white);
  border: 1.5px solid var(--color-gray20);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  align-items: stretch;
  gap: 16px;
}
.productCard__pic {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius4);
  overflow: hidden;
}
.productCard__pic img { width: 100%; height: 100%; object-fit: cover; }
.productCard__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.productCard__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-gray90);
  margin: 0;
}
.productCard__desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-gray90);
  margin: 0;
}
.productCard__btn {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid var(--color-blue50);
  border-radius: var(--radius4);
  background: transparent;
  color: var(--color-blue50);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}
.productCard__btn:hover {
  background: rgba(36, 128, 255, 0.04);
  text-decoration: none;
}
@media (min-width: 768px) {
  .productCard { padding: 20px; gap: 24px; }
  .productCard__pic { flex-basis: 150px; width: 150px; height: 150px; }
  .productCard__title { font-size: 27px; line-height: 42px; }
  .productCard__desc { font-size: 18px; line-height: 27px; }
}

/* ---------- Yahoo!ほけんのポイント（Figma 254:11650） ---------- */
.point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}
.point__item {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray30);
  border-radius: 8px;
  padding: 24px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  justify-self: center;
}
.point__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray30);
  color: var(--color-gray70);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  border-radius: 8px 0 8px 0;
}
.point__pic {
  width: 120px;
  height: 120px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point__pic img { max-width: 100%; max-height: 100%; }
.point__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-gray90);
  margin: 0;
}
.point__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: var(--color-gray70);
  margin: 0;
}
/* SP: 5番目のアイテムは1列だけだが、他と同じサイズで中央配置 */
.point__item:nth-child(5):last-child {
  grid-column: 1 / -1;
  justify-self: center;
}
@media (min-width: 768px) {
  /* PC: flex-wrap + justify-center で「3列+2列(中央寄せ)」を実現 */
  .point__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 16px;
    max-width: 770px;
  }
  .point__item {
    width: 220px;
    padding: 28px 16px;
  }
  /* SP用の grid-column 指定を解除 */
  .point__item:nth-child(5):last-child { grid-column: auto; }
  .point__pic { width: 150px; height: 150px; }
  .point__title { font-size: 18px; line-height: 28px; }
  .point__desc { font-size: 16px; line-height: 24px; }
}

/* ---------- Top CTA（下部ボタン） ---------- */
.topCta {
  background: var(--color-white);
  padding: 24px 16px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: center;
}
.topCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 44px;
  padding: 8px 16px;
  background: var(--lp-cta);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.topCta__btn svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.topCta__btn:hover {
  text-decoration: none;
  opacity: 0.95;
}
