/* ==========================================================
   みまもりさん LP スタイル
   トンマナ: ミントグリーン × アイボリー × コーラル
   ========================================================== */

:root {
  --mint: #8FD8C8;
  --pale-green: #EAF8F4;
  --ivory: #FFF8ED;
  --coral: #F6A89E;
  --charcoal: #3A3A3A;
  --light-gray: #E6E6E6;
  --white: #FFFFFF;
  --font-heading: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.9;
  font-size: 16px;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.sp-only {
  display: none;
}

.nowrap {
  display: inline-block;
}

/* ----------------------------------------------------------
   ボタン
---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  border-radius: 32px;
  transition: opacity 0.25s, transform 0.25s;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn--main {
  background: var(--coral);
  color: var(--white);
  padding: 16px 48px;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(246, 168, 158, 0.4);
}

.btn--sub {
  background: var(--white);
  color: var(--charcoal);
  border: 2px solid var(--mint);
  padding: 14px 40px;
  font-size: 16px;
}

.btn--small {
  background: var(--coral);
  color: var(--white);
  padding: 10px 24px;
  font-size: 14px;
}

.btn--large {
  min-width: 300px;
}

/* ----------------------------------------------------------
   ヘッダー
---------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--light-gray);
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo img {
  width: 180px;
}

.header__nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}

.header__nav a {
  white-space: nowrap;
}

.header .btn--small {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .header__nav {
    display: none;
  }
}

.header__nav a:hover {
  color: var(--mint);
}

/* ----------------------------------------------------------
   ファーストビュー
---------------------------------------------------------- */
.hero {
  background: var(--pale-green);
  padding: 72px 24px 80px;
  overflow: hidden;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.label {
  background: var(--white);
  border: 1.5px solid var(--mint);
  color: var(--charcoal);
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 13px;
  font-weight: 700;
}

.label--coral {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero__title-sub {
  display: block;
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
}

.hero__lead {
  font-size: 16px;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__image img {
  border-radius: 32px;
  box-shadow: 0 12px 32px rgba(143, 216, 200, 0.3);
}

/* ----------------------------------------------------------
   セクション共通
---------------------------------------------------------- */
.section {
  padding: 88px 24px;
}

.section--white { background: var(--white); }
.section--mint  { background: var(--pale-green); }
.section--ivory { background: var(--ivory); }

.section__inner {
  max-width: 960px;
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 20px;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--mint);
}

.section__lead {
  text-align: center;
  margin-bottom: 48px;
}

/* ----------------------------------------------------------
   お悩み共感
---------------------------------------------------------- */
.worry-list {
  max-width: 640px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worry-list li {
  background: var(--ivory);
  border-radius: 16px;
  padding: 16px 24px 16px 56px;
  position: relative;
  font-weight: 500;
}

.worry-list li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.7;
}

.worry-message {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  margin-top: 48px;
  line-height: 2;
}

.worry-message strong {
  color: var(--charcoal);
  background: linear-gradient(transparent 60%, rgba(143, 216, 200, 0.5) 60%);
  font-size: 26px;
}

/* ----------------------------------------------------------
   みまもりさんとは
---------------------------------------------------------- */
.about {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  margin-top: 40px;
  box-shadow: 0 6px 24px rgba(143, 216, 200, 0.15);
}

.about__icon img {
  width: 120px;
  min-width: 120px;
}

.about__text p + p {
  margin-top: 16px;
}

.about__point {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
}

.marker {
  background: linear-gradient(transparent 60%, rgba(246, 168, 158, 0.45) 60%);
}

/* ----------------------------------------------------------
   利用シーン
---------------------------------------------------------- */
.scene-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(58, 58, 58, 0.07);
  border: 1px solid var(--light-gray);
}

.scene-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.scene-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  padding: 20px 24px 0;
  color: var(--charcoal);
}

.scene-card h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 8px;
}

.scene-card p {
  padding: 8px 24px 28px;
  font-size: 14.5px;
}

/* ----------------------------------------------------------
   安心設計
---------------------------------------------------------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.safety-item {
  background: var(--white);
  border: 1.5px solid rgba(143, 216, 200, 0.6);
  border-radius: 20px;
  padding: 28px 32px;
}

.safety-item__num {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--mint);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.safety-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
}

.safety-item p {
  font-size: 14.5px;
}

/* ----------------------------------------------------------
   できること・できないこと
---------------------------------------------------------- */
.cando-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cando {
  border-radius: 24px;
  padding: 36px 40px;
}

.cando--ok {
  background: var(--pale-green);
  border: 2px solid var(--mint);
}

.cando--ng {
  background: var(--ivory);
  border: 2px solid var(--light-gray);
}

.cando h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  margin-bottom: 20px;
  text-align: center;
}

.cando__mark {
  display: inline-block;
  margin-right: 6px;
  font-weight: 900;
}

.cando--ok .cando__mark { color: #5BBFA9; }
.cando--ng .cando__mark { color: var(--coral); }

.cando ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cando li {
  background: var(--white);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
}

/* ----------------------------------------------------------
   ご利用の流れ
---------------------------------------------------------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  counter-reset: flow;
}

.flow__step {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 6px 20px rgba(143, 216, 200, 0.18);
}

.flow__num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--mint);
  display: inline-block;
  border-radius: 14px;
  padding: 2px 14px;
  margin-bottom: 14px;
}

.flow__step h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
}

.flow__step p {
  font-size: 14px;
}

/* ----------------------------------------------------------
   初回モニター
---------------------------------------------------------- */
.monitor {
  background: var(--white);
  border: 2.5px solid var(--coral);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
}

.monitor__label {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border-radius: 20px;
  padding: 6px 28px;
  margin-bottom: 24px;
}

.monitor__title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.monitor__text {
  margin-bottom: 28px;
}

.monitor__price {
  margin: 0 auto 32px;
  max-width: 520px;
  background: var(--ivory);
  border-radius: 20px;
  padding: 28px 32px;
}

.monitor__price-label {
  display: inline-block;
  background: var(--mint);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 16px;
  padding: 3px 18px;
  margin-bottom: 10px;
}

.monitor__price-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.monitor__price-value strong {
  font-size: 48px;
  color: #E8897C;
}

.monitor__price-yen {
  font-size: 22px;
}

.monitor__price-tax {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 2px;
}

.monitor__price-regular {
  font-size: 13.5px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--light-gray);
  line-height: 1.8;
}

/* ----------------------------------------------------------
   FAQ
---------------------------------------------------------- */
.faq {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 20px;
  padding: 28px 36px;
}

.faq__item dt {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  padding-left: 38px;
  position: relative;
  margin-bottom: 10px;
}

.faq__item dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__item dd {
  padding-left: 38px;
  position: relative;
  font-size: 15px;
}

.faq__item dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------------------------------------------------------
   最終CTA
---------------------------------------------------------- */
.cta {
  background: linear-gradient(180deg, var(--pale-green) 0%, #DDF2EC 100%);
  padding: 96px 24px;
  text-align: center;
}

.cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta__icon {
  margin: 0 auto 24px;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta__text {
  margin-bottom: 36px;
}

.cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta__note {
  font-size: 13px;
  opacity: 0.7;
}

/* ----------------------------------------------------------
   法務ページ（特商法・プライバシーポリシー）
---------------------------------------------------------- */
.legal {
  background: var(--white);
  padding: 72px 24px 96px;
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 20px;
}

.legal__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--mint);
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin: 40px 0 12px;
  padding-left: 14px;
  border-left: 5px solid var(--mint);
  border-radius: 2px;
}

.legal p {
  margin-bottom: 12px;
  font-size: 15px;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 15px;
}

.legal ul li {
  margin-bottom: 6px;
}

.legal a {
  color: #4FB39C;
  text-decoration: underline;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.legal__table th,
.legal__table td {
  border: 1px solid var(--light-gray);
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.legal__table th {
  background: var(--pale-green);
  font-weight: 700;
  width: 30%;
  white-space: nowrap;
}

.legal__date {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.7;
}

.legal__back {
  margin-top: 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .legal__table th,
  .legal__table td {
    display: block;
    width: 100%;
    border: none;
  }

  .legal__table th {
    border-radius: 8px;
    padding: 10px 16px;
  }

  .legal__table td {
    padding: 12px 16px 20px;
  }

  .legal__table {
    border: none;
  }
}

/* ----------------------------------------------------------
   フッター
---------------------------------------------------------- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: 56px 24px 32px;
  text-align: center;
}

.footer__logo {
  margin: 0 auto 24px;
}

.footer__note {
  font-size: 12.5px;
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto 28px;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  font-size: 13.5px;
}

.footer__links a:hover {
  color: var(--mint);
}

.footer__company {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.6;
}

/* ----------------------------------------------------------
   追従CTA（スマホ用）
---------------------------------------------------------- */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--light-gray);
  z-index: 90;
}

.btn--fixed {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* ----------------------------------------------------------
   レスポンシブ
---------------------------------------------------------- */
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__title-sub {
    font-size: 20px;
  }

  .scene-cards {
    grid-template-columns: 1fr;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .cando-grid {
    grid-template-columns: 1fr;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .about {
    flex-direction: column;
    text-align: left;
    padding: 36px 28px;
  }

  .section {
    padding: 64px 20px;
  }

  .section__title {
    font-size: 26px;
  }

  .monitor {
    padding: 40px 24px;
  }

  .monitor__title {
    font-size: 22px;
  }

  .cta__title {
    font-size: 25px;
  }

  .sp-only {
    display: inline;
  }

  div.sp-only {
    display: block;
  }

  body {
    padding-bottom: 76px; /* 追従CTAの高さ分 */
  }
}
