
/* Base Styles */
:root {
    --primary-color: #19b3c7;
    --secondary-color: #f39800;
    --bg-gray: #f8f9fa;
    --text-main: #333;
    --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* ヘッダー高さに合わせて調整 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-gray { background-color: var(--bg-gray); }
.bg-blue { background-color: var(--primary-color); color: white; }
.text-white { color: white; }

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Header */
header {
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
}

.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
  display: flex;
  flex-direction: column; /* ←縦並び */
  line-height: 1.2;
}
.logo img{
    width: 150px;
}
.sub {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.pc-nav a {
    text-decoration: none;
    color: var(--text-main);
    margin-left: 20px;
    font-size: 14px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    text-align: center;
}

.btn-primary { background: var(--primary-color); color: white; }
.btn-secondary { background: var(--secondary-color); color: white; }
.btn-block { width: 100%; border: none; cursor: pointer; font-size: 18px; }

/* =========================
   FV
========================= */
#fv.fv {
  position: relative;
  padding: 10px 0 30px;
  background:
    radial-gradient(circle at top right, rgba(62, 121, 239, 0.08) 0%, rgba(62, 121, 239, 0) 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;

  background: 
  linear-gradient(
      90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.88) 25%,
      rgba(255,255,255,0.55) 50%,
      rgba(255,255,255,0.15) 75%,
      rgba(255,255,255,0) 100%
    ),
    url("/image/fv.jpeg") center center / cover no-repeat;

  opacity: 0.18; /* 薄さ調整 */

  z-index: 0;
}

.fv__inner {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.fv__top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 20px;
  align-items: center;
}

.fv__content {
  max-width: 720px;
}

.fv__title {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 48px); /* ベース */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fv__title strong {
  font-size: 1.4em;
  color: var(--primary-color);
  font-weight: 900;
}

/* 1行目（黒）→ 小さくする */
.fv__title-sub {
  display: inline-block;
  font-size: 0.6em;          /* ←これで小さく */
  font-weight: 600;
  color: #313335;            /* 少し薄くするのがコツ */
}

/* 2行目（メイン）→ 主役 */
.fv__title-main {
  display: inline-block;
  color: var(--text-main);
  font-weight: 900;
}

.fv__lead {
  margin: 15px 0 14px;
  font-size: 17px;
  line-height: 1.9;
  color: #334155;
}

/* visual */
.fv__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv__imageCard {
  position: relative;
  width: 100%;
  max-width: 600px;
  
}

.fv__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 120%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
}


/* stats */
.fv__stats {
  display: flex;              /* ← grid → flex */
  flex-wrap: wrap;            /* 折り返しOK */
  gap: 10px;
}

.fv__stat {
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dbe7f3;
  box-shadow: 0 12px 28px rgba(15, 63, 117, 0.06);
  backdrop-filter: blur(6px);
}

.fv__statLabel {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #64748b;
}

.fv__statValue {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  color: #147592;
  letter-spacing: -0.01em;
}

/* bottom */
.fv__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.fv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 58px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fv__btn:hover {
  transform: translateY(-2px);
}

.fv__btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  box-shadow: 0 14px 28px rgba(15, 63, 117, 0.18);
}

.fv__btn--secondary {
  color: #147592;
  background: #ffffff;
  border: 1px solid #ccdeef;
  box-shadow: 0 10px 22px rgba(15, 63, 117, 0.08);
}

.fv__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fv__note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #0f3f75;
  background: #f4f8fd;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 1100px) {
  .fv__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fv__content {
    max-width: none;
  }

  .fv__visual {
    order: 0;
  }

  .fv__imageCard {
    max-width: 520px;
    margin: 0 auto;
  }

  .fv__stats {
    justify-content: center;
  }
}

@media screen and (max-width: 991px) {
  #fv.fv {
    padding: 56px 0 48px;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  #fv.fv {
    padding: 42px 0 40px;
  }

  .fv__inner {
    gap: 22px;
  }

  .fv__top {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .fv__content {
    order: 1;
  }

  .fv__visual {
    order: 2;
  }


  .fv__title {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: 1.35;
  }

  .fv__title-sub {
    font-size: 0.62em;
  }

  .fv__title-main {
    font-size: 1em;
  }

  .fv__lead {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.85;
  }

  .fv__sublead {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .fv__imageCard {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
  }

  .fv__image {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
  }

  .fv__stats {
    justify-content: center;
    gap: 8px;
  }

  .fv__stat {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 8px;
  }

  .fv__statLabel {
    margin-bottom: 3px;
    font-size: 10px;
  }

  .fv__statValue {
    font-size: 12px;
  }

  .fv__bottom {
    align-items: center;
  }

  .fv__actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .fv__btn {
    width: 100%;
    min-width: auto;
    min-height: 52px;
    font-size: 15px;
  }

  .fv__notes {
    justify-content: center;
    gap: 8px;
  }

  .fv__note {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }
}

/* =========================
   ISSUES
========================= */
#issues.issues {
  padding: 50px 20px;
  background: #f8fbff;
}

.issues__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.issues__head {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.issues__title {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.issues__lead {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #334155;
}

.issues__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.issues__card {
  position: relative;
  min-height: 280px;
  padding: 32px 22px 28px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 10px 14px 25px rgba(5, 31, 61, 0.151);
}

.issues__num {
  position: absolute;
  top: 24px;
  left: 22px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color);
  letter-spacing: 0.02em;
}

.issues__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 3px;
  border-radius: 50%;
}

.issues__icon img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.issues__cardTitle {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  color: #000000;
}

.issues__line {
  display: block;
  width: 36px;
  height: 3px;
  margin: 14px auto 20px;
  background: var(--primary-color);
  border-radius: 999px;
}

.issues__cardText {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #334155;
}

.issues__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #0f75a7 0%, #2fa8c8 100%);
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(15, 117, 167, 0.18);
}

.issues__summaryIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  background: #ffb413;
  border-radius: 50%;
}

.issues__summaryText {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  line-height: 1.6;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Tablet */
@media screen and (max-width: 991px) {
  #issues.issues {
    padding: 72px 20px;
  }

  .issues__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SP */
@media screen and (max-width: 767px) {
  #issues.issues {
    padding: 56px 16px;
  }

  .issues__head {
    margin-bottom: 30px;
    text-align: left;
  }

  .issues__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .issues__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .issues__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .issues__card {
    min-height: auto;
    padding: 28px 18px 24px;
    border-radius: 16px;
  }

  .issues__num {
    top: 20px;
    left: 18px;
    font-size: 18px;
  }

  .issues__icon {
    width: 82px;
    height: 82px;
    margin: 14px auto 18px;
  }

  .issues__icon img {
    width: 44px;
    height: 44px;
  }

  .issues__cardTitle {
    font-size: 22px;
  }

  .issues__cardText {
    font-size: 14px;
    line-height: 1.85;
  }

  .issues__summary {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 20px 16px;
    border-radius: 12px;
  }

  .issues__summaryIcon {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .issues__summaryText {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* =========================
   SOLUTION
========================= */
#solution.solution {
  padding: 50px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.solution__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.solution__head {
  max-width: 920px;
  margin: 0 auto 22px;
  text-align: center;
}

.solution__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.solution__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.solution__flow {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 25px;
}

.solution__card {
  position: relative;
  padding: 20px 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d9e6f3;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  text-align: center;
}

.solution__card--accent {
  background: linear-gradient(180deg, #f3f8ff 0%, #eef5ff 100%);
  border-color: #bfd8f3;
  box-shadow: 0 18px 34px rgba(15, 63, 117, 0.10);
}

.solution__step {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #0f3f75;
  background: #eaf3ff;
  border-radius: 999px;
}

.solution__iconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  margin-bottom: 18px;
}

.solution__iconImage {
  display: block;
  max-width: 100%;
  max-height: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.solution__cardTitle {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}

.solution__cardText {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.solution__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.solution__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  background: #ffffff;
  border: 1px solid #d7e6f7;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(15, 63, 117, 0.05);
}

.solution__arrow {
  position: relative;
  align-self: center;
  width: 100%;
  height: 2px;
  background: #8fb8e4;
}

.solution__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #8fb8e4;
  border-right: 2px solid #8fb8e4;
  transform: translateY(-50%) rotate(45deg);
}

.solution__summary {
  padding: 24px 26px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(15, 63, 117, 0.16);
}

.solution__summaryText {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.65;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {
  #solution.solution {
    padding: 72px 20px;
  }

  .solution__flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .solution__arrow {
    display: none;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  #solution.solution {
    padding: 56px 16px;
  }

  .solution__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .solution__title {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.45;
  }

  .solution__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .solution__flow {
    margin-bottom: 22px;
  }

  .solution__card {
    padding: 22px 18px 20px;
    border-radius: 18px;
    text-align: left;
  }

  .solution__step {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .solution__iconWrap {
    min-height: 110px;
    margin-bottom: 14px;
    justify-content: flex-start;
  }

  .solution__iconImage {
    max-height: 96px;
  }

  .solution__cardTitle {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.45;
  }

  .solution__cardText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .solution__tags {
    justify-content: flex-start;
    gap: 8px;
  }

  .solution__tag {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .solution__summary {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .solution__summaryText {
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
  }
}



/* =========================
   SIMULATOR
========================= */
.simulator {
  padding: 50px 20px;
  background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.12);
backdrop-filter: blur(12px);
}



.simulator__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.simulator__head {
  text-align: center;
  margin-bottom: 48px;
}

.simulator__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.45;
}

.simulator__lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.simulator__content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: stretch;
}

.simulator__form,
.simulator__result {
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(28, 91, 134, .1);
}

.simulator__form {
  display: grid;
  gap: 20px;
}

.simulator__field label {
  display: block;
  margin-bottom: 10px;
  color: #17253a;
  font-size: 15px;
  font-weight: 800;
}

.simulator__inputWrap {
  display: flex;
  align-items: center;
  border: 1px solid #d9e8f4;
  border-radius: 16px;
  background: #fbfdff;
  overflow: hidden;
}

.simulator__inputWrap input {
  width: 100%;
  padding: 16px 18px;
  border: none;
  outline: none;
  background: transparent;
  color: #07172b;
  font-size: 15px;
  font-weight: 600;
}

.simulator__inputWrap span {
  padding: 0 18px;
  color: #40566d;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.simulator__result {
  display: flex;
  flex-direction: column;
}

.simulator__resultTitle {
  margin: 0 0 10px;
  color: #2878a7;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
}

.simulator__resultMain {
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg,#2c86b3 0%,#2878a7 100%);
  color: #fff;
}

.simulator__resultMain span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  opacity: .9;
}

.simulator__resultMain strong {
  display: block;
  font-size: clamp(34px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
}

.simulator__resultGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.simulator__resultItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f4f9fc;
}

.simulator__resultItem span {
  color: #40566d;
  font-size: 14px;
  font-weight: 800;
}

.simulator__resultItem strong {
  color: #07172b;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.simulator__note {
  margin: 20px 0 0;
  color: #6a7a8c;
  font-size: 12px;
  line-height: 1.7;
}

.simulator__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 16px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.simulator__cta:hover {
  transform: translateY(-2px);
  opacity: .9;
}

@media (max-width: 768px) {
  .simulator {
    padding: 72px 16px;
  }

  .simulator__content {
    grid-template-columns: 1fr;
  }

  .simulator__form,
  .simulator__result {
    padding: 24px;
    border-radius: 22px;
  }

  .simulator__resultMain {
    padding: 24px;
  }

  .simulator__resultItem {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   COMPARISON
========================= */
#comparison {
  padding:50px 20px;
  background:
    radial-gradient(circle at top right,
    rgba(40,120,167,0.10),
    transparent 35%),
    linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
}

.comparison__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.comparison__head {
  text-align: center;
  margin-bottom: 48px;
}

.comparison__title {
  font-size: clamp(30px,4vw,38px);
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.comparison__lead {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
}

.comparison__image {
  overflow: hidden;
}

.comparison__image img {
  display: block;
  width: 95%;
  height: auto;
  margin: 0 auto;
}

/* SP */
@media (max-width: 768px) {

  #comparison {
    padding: 70px 16px;
  }

  .comparison__head {
    text-align: left;
    margin-bottom: 30px;
  }

  .comparison__lead br {
    display: none;
  }

}

/* =========================
   CASE
========================= */
.cases {
  padding: 50px 20px;
  background: #f3f8fb;
}

.cases__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cases__head {
  text-align: center;
  margin-bottom: 48px;
}

.cases__title {
  font-size: clamp(30px, 4vw, 38px);
  color: #071f36;
  line-height: 1.4;
  margin-bottom: 14px;
}

.cases__lead {
  color: #526879;
  line-height: 1.8;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.caseCard {
  background: #fff;
  border: 1px solid #dceaf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(22, 64, 91, .08);
}

.caseCard__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.caseCard__num {
  padding: 8px 14px;
  border-radius: 999px;
  background: #e8f5fb;
  color: #2878a7;
  font-size: 13px;
  font-weight: 800;
}

.caseCard__lossTags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.caseCard__lossTags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f7fa;
  color: #3e5566;
  font-size: 12px;
  font-weight: 700;
}

.caseCard__title {
  min-height: 50px;
  font-size: 21px;
  line-height: 1;
  color: #071f36;
}

.caseCard__compare {
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 22px;
}

.caseCard__side {
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #e2ebf1;
}

.caseCard__side--before {
  background: #f7f9fb;
}

.caseCard__side--after {
  background: linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
  border-color: #cfe7f3;
}

.caseCard__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #8a9aa6;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.caseCard__label--after {
  color: #2878a7;
}

.caseCard__side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.caseCard__side li {
  position: relative;
  padding-left: 16px;
  color: #3d5160;
  font-size: 14px;
  line-height: 1.6;
}

.caseCard__side li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9eb5c3;
}

.caseCard__side--after li::before {
  background: #2878a7;
}

.caseCard__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2878a7;
  font-size: 26px;
  font-weight: 900;
}

.caseCard__result {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2878a7 0%, #34a6c8 100%);
  color: #fff;
  justify-content: center;
}

.caseCard__result strong {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.05em;
}

.caseCard__result strong span {
  font-size: 30px;
}

.caseCard__result p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
}

/* SP */
@media (max-width: 768px) {
  .cases {
    padding: 72px 18px;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }

  .caseCard {
    padding: 22px;
    border-radius: 22px;
  }

  .caseCard__top {
    flex-direction: column;
    margin-bottom: 18px;
  }

  .caseCard__lossTags {
    justify-content: flex-start;
  }

  .caseCard__title {
    min-height: auto;
    font-size: 20px;
  }

  .caseCard__compare {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .caseCard__side {
    min-height: auto;
  }

  .caseCard__arrow {
    transform: rotate(90deg);
    height: 28px;
  }

  .caseCard__result strong {
    font-size: 54px;
  }
}

/* =========================
   FEATURES
========================= */
#features.features {
  padding: 50px 20px;
  background: #ffffff;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features__head {
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.features__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.features__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.features__card {
  position: relative;
  height: 100%;
  min-height: 300px;
  padding: 40px 24px 0px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d9e6f3;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(15, 63, 117, 0.06);
  display: flex;
  flex-direction: column;
}

.features__bgNumber {
  position: absolute;
  top: 5px;
  left: 0px;
  z-index: 0;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(49, 164, 199, 0.082);
  pointer-events: none;
  user-select: none;
}

.features__cardContent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.features__cardTitle {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  color: #0f172a;
  text-align: center;
}

.features__cardText {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
}

.features__impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  background: #eef5ff;
  border: 1px solid #d6e5f8;
  border-radius: 999px;
  margin-top: auto;
  align-self: flex-start;
  margin-bottom: 30px;
}

@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #features.features {
    padding: 64px 16px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .features__card {
    min-height: auto;
    padding: 36px 22px 24px;
  }

  .features__bgNumber {
    font-size: 84px;
    top: -18px;
    left: -6px;
  }
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {
  #features.features {
    padding: 72px 20px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .features__card {
    padding: 24px 20px 22px;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  #features.features {
    padding: 56px 16px;
  }

  .features__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .features__title {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.45;
  }

  .features__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .features__card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .features__icon {
    min-width: 48px;
    height: 48px;
    margin-bottom: 14px;
    font-size: 13px;
    border-radius: 14px;
  }

  .features__cardTitle {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .features__cardText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .features__impact {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* =========================
   PRICE - TOP
========================= */
#price.price {
  padding: 50px 20px;
  background: #f3f8fb;
}

.price__inner {
  max-width: 1200px;
  margin: 0 auto;
  
}

.price__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.price__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.price__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.price__wideCard {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  width: 100%;
  padding: 38px;
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 63, 117, 0.08);
}

.price__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: left;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;
  border-radius: 24px;
}

.price__label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #0f3f75;
}

.price__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price__value {
  font-size: clamp(35px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: #236286;
}

.price__unit {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

.price__caption {
  margin: 0 0 24px;
  font-size: 13px;
  color: #64748b;
}

.price__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 0 24px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 63, 117, 0.16);
}

.price__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price__infoItem {
  padding: 24px 20px;
  background: #f8fbff;
  border: 1px solid #d9e6f3;
  border-radius: 20px;
}

.price__infoLabel {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #0f3f75;
  background: #eaf3ff;
  border-radius: 999px;
}

.price__infoValue {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
  color: #0f172a;
}

.price__infoItem p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

@media screen and (max-width: 991px) {
  .price__wideCard {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .price__info {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  #price.price {
    padding: 72px 16px;
  }

  .price__wideCard {
    padding: 18px;
    border-radius: 20px;
  }

  .price__main {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .price__amount {
    flex-wrap: wrap;
  }

  .price__value {
    font-size: 46px;
  }

  .price__unit {
    font-size: 18px;
  }

  .price__btn {
    width: 100%;
  }
}



/* =========================
   PRICE DETAIL PAGE
========================= */
.priceDetail {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.priceDetail__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.priceDetail__head {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.priceDetail__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
}

.priceDetail__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.priceDetail__main {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-bottom: 34px;
}

.priceDetail__priceBox,
.priceDetail__summary {
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(15, 63, 117, 0.09);
}

.priceDetail__priceBox {
  padding: 42px 30px;
  text-align: center;
}

.priceDetail__label {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 800;
  color: #0f3f75;
}

.priceDetail__amount {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1;
  color: #207994;
}

.priceDetail__amount span {
  font-size: clamp(80px, 9vw, 118px);
  letter-spacing: -0.08em;
}

.priceDetail__unit {
  margin: 12px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.priceDetail__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
}

.priceDetail__summary {
  padding: 34px 32px;
}

.priceDetail__summary h2,
.priceDetail__prepare h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 900;
  color: #0f172a;
}

.priceDetail__summary ul,
.priceDetail__prepare ul {
  margin: 0;
  padding-left: 1.2em;
  font-size: 15px;
  line-height: 2;
  color: #475569;
}

.priceDetail__section {
  padding: 34px;
  margin-bottom: 28px;
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(15, 63, 117, 0.07);
}

.priceDetail__sectionHead {
  margin-bottom: 24px;
  text-align: center;
}

.priceDetail__sectionHead p {
  display: inline-block;
  margin: 0 0 10px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f3f75;
  background: #eef5ff;
  border: 1px solid #d6e5f8;
  border-radius: 999px;
}

.priceDetail__sectionHead h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  color: #0f172a;
}

.priceDetail__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.priceDetail__card {
  grid-column: span 2;
  padding: 24px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e1edf8;
  border-radius: 22px;
}

.priceDetail__card--wide {
  grid-column: span 4;
}

.priceDetail__card span {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  color: #31a4c7;
}

.priceDetail__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.priceDetail__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.priceDetail__prepare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.priceDetail__prepare > div {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 63, 117, 0.06);
}

.priceDetail__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 28px;
  box-shadow: 0 22px 44px rgba(15, 63, 117, 0.18);
}

.priceDetail__cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
  color: #ffffff;
}

.priceDetail__cta a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 900;
  color: #0f3f75;
  text-decoration: none;
  background: #ffffff;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .priceDetail__main,
  .priceDetail__prepare {
    grid-template-columns: 1fr;
  }

  .priceDetail__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .priceDetail__card,
  .priceDetail__card--wide {
    grid-column: span 1;
  }

  .priceDetail__cta {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .priceDetail {
    padding: 72px 16px;
  }

  .priceDetail__section {
    padding: 24px;
    border-radius: 26px;
  }

  .priceDetail__grid {
    grid-template-columns: 1fr;
  }

  .priceDetail__priceBox,
  .priceDetail__summary,
  .priceDetail__prepare > div {
    border-radius: 24px;
  }
}


/* =========================
   FAQ
========================= */
#faq.faq {
  padding: 50px 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq__head {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.faq__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.faq__list {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.faq__item {
  background: #ffffff;
  border: 1px solid #d9e6f3;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 63, 117, 0.05);
  overflow: hidden;
}

.faq__item[open] {
  box-shadow: 0 16px 32px rgba(15, 63, 117, 0.08);
}

.faq__question {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  color: #2878a7;
  background: #eef6fb;
  border: 1px solid #d6eaf3;
  border-radius: 10px;
  box-shadow: none;
}

.faq__questionText {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
  color: #0f172a;
}

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #0f3f75;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}

.faq__answer {
  padding: 0 24px 22px 84px;
}

.faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.faq__footer {
  padding: 26px 24px;
  text-align: center;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(15, 63, 117, 0.16);
}

.faq__footerText {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
}

.faq__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  text-decoration: none;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(8, 23, 46, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(8, 23, 46, 0.2);
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {
  #faq.faq {
    padding: 72px 20px;
  }

  .faq__question {
    padding: 20px 20px;
  }

  .faq__answer {
    padding: 0 20px 20px 76px;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  #faq.faq {
    padding: 56px 16px;
  }

  .faq__head {
    margin-bottom: 28px;
    text-align: left;
  }

  .faq__title {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.45;
  }

  .faq__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .faq__list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .faq__item {
    border-radius: 18px;
  }

  .faq__question {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 16px 16px;
  }

  .faq__q {
    min-width: 38px;
    height: 38px;
    font-size: 12px;
    border-radius: 12px;
  }

  .faq__questionText {
    font-size: 16px;
    line-height: 1.6;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
  }

  .faq__answer {
    padding: 0 16px 16px 16px;
  }

  .faq__answer p {
    font-size: 14px;
    line-height: 1.85;
  }

  .faq__footer {
    padding: 20px 16px;
    border-radius: 18px;
    text-align: left;
  }

  .faq__footerText {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .faq__cta {
    width: 100%;
    min-width: auto;
    min-height: 48px;
    font-size: 14px;
  }
}


/* =========================
   FLOW
========================= */
#flow.flow {
  position: relative;
  padding: 50px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(49, 164, 199, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.flow__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.flow__head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.flow__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.5vw, 38px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.flow__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.flow__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.flow__timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8abce8, transparent);
  z-index: 0;
}

.flow__step {
  position: relative;
  z-index: 1;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #d9e6f3;
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(15, 63, 117, 0.08);
  backdrop-filter: blur(10px);
}

.flow__step::after {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  background: rgba(49, 164, 199, 0.08);
  border-radius: 50%;
}


.flow__body {
  position: relative;
  z-index: 1;
}

.flow__label {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.flow__body h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  color: #0f172a;
}

.flow__body p:not(.flow__label) {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

@media (max-width: 900px) {
  .flow__timeline {
    grid-template-columns: 1fr;
  }

  .flow__timeline::before {
    display: none;
  }

  .flow__step,
  .flow__step--active {
    transform: none;
  }
}

@media (max-width: 640px) {
  #flow.flow {
    padding: 72px 16px;
  }

  .flow__head {
    margin-bottom: 36px;
  }

  .flow__step {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }
}

/* =========================
   FINAL CTA
========================= */
#final-cta.final-cta {
  padding: 50px 20px 64px;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
}

.final-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta__box {
  position: relative;
  overflow: hidden;
  padding: 46px 40px;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  border-radius: 32px;
  box-shadow: 0 24px 54px rgba(15, 63, 117, 0.20);
}

.final-cta__box::before,
.final-cta__box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.final-cta__box::before {
  top: -90px;
  right: -70px;
  width: 240px;
  height: 240px;
}

.final-cta__box::after {
  bottom: -120px;
  left: -80px;
  width: 280px;
  height: 280px;
}

.final-cta__head,
.final-cta__actions,
.final-cta__notes,
.final-cta__mini {
  position: relative;
  z-index: 1;
}

.final-cta__head {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.final-cta__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.final-cta__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.final-cta__btn:hover {
  transform: translateY(-2px);
}

.final-cta__btn--primary {
  color: #0f3f75;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(8, 23, 46, 0.18);
}

.final-cta__btn--secondary {
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.final-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.final-cta__notes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}

.final-cta__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.final-cta__mini {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.final-cta__miniItem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: #0f3f75;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 23, 46, 0.12);
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {
  #final-cta.final-cta {
    padding: 80px 20px 56px;
  }

  .final-cta__box {
    padding: 38px 28px;
    border-radius: 26px;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {
  #final-cta.final-cta {
    padding: 56px 16px 40px;
  }

  .final-cta__box {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .final-cta__head {
    margin-bottom: 22px;
    text-align: left;
  }

  .final-cta__title {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 1.45;
  }

  .final-cta__lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .final-cta__actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .final-cta__btn {
    width: 100%;
    min-width: auto;
    min-height: 52px;
    font-size: 15px;
  }

  .final-cta__notes {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
  }

  .final-cta__note {
    font-size: 13px;
    line-height: 1.75;
  }

  .final-cta__mini {
    justify-content: flex-start;
    gap: 8px;
  }

  .final-cta__miniItem {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 40px 20px 24px;
}

/* 上段 */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ロゴ */
.footer__logo img{
  margin-bottom: 8px;
  width: 180px;
}

.footer__sub {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* ナビ */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: 0.2s;
}

.footer__nav a:hover {
  color: #ffffff;
}

/* CTA */
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #207994 0%, #31a4c7 100%);
  color: #ffffff;
}

.footer__btn--sub {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #ffffff;
}

/* 下部 */
.footer__bottom {
  margin-top: 20px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {
  .footer {
    padding: 48px 16px 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: flex-start;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .footer__cta {
    width: 100%;
  }

  .footer__btn {
    width: 100%;
  }
}