/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
  --color-primary-blue: #0F2DBD;
  --color-dark-blue: #344377;
  --color-dark: #2C2C2C;
  --color-gray: #595959;
  --color-white: #FFFFFF;
  --color-yellow: #FFD75E;
  --color-orange: #E76100;
  --color-orange-secondary: #F39800;
  --color-blue-tertiary: #0684DE;
  --color-light-blue-bg: #DDEDF8;
  --color-light-yellow-bg: #FFF8E1;
  --color-comp-header: #FCF1CD;
  --color-disable: #C4C4C4;

  --gradient-blue: linear-gradient(-90deg, rgba(0,111,245,1) 0%, rgba(104,203,255,1) 100%);
  --gradient-gray: linear-gradient(270deg, rgba(230,237,244,1) 15%, rgba(246,248,249,1) 100%);
  --gradient-lightblue: linear-gradient(-90deg, rgba(236,248,255,1) 0%, rgba(255,255,255,1) 100%);
  --gradient-orange: linear-gradient(-69.13deg, rgba(243,138,0,1) 0%, rgba(253,192,9,1) 100%);

  --font-base: 'Noto Sans JP', sans-serif;
  --font-en: 'Inter', sans-serif;

  --content-width: 1200px;
}

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-base);
  color: var(--color-dark);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========================================
   Page Wrapper
   ======================================== */
.page-wrapper {
  background: var(--gradient-gray);
  overflow: hidden;
  position: relative;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 991px;
}
.hero__bg {
  position: absolute;
  top: -34px;
  right: -550px;
  width: 1100px;
  height: auto;
  z-index: 0;
}
.hero__logo {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 313px;
  height: 70px;
  object-fit: cover;
  z-index: 2;
}

/* Hero badges (5年補償 が自動付帯なのに 35万円 もお得) */
.hero__badges {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  position: absolute;
  left: 223px;
  top: 256px;
  z-index: 2;
}
.hero__badge-item {
  background: var(--color-yellow);
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__badge-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}
.hero__badge-unit {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}
.hero__badge-sep {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-dark);
}

/* SP-only line break (hidden on PC/tablet) */
.sp-br { display: none; }

/* Hero title */
.hero__title {
  position: absolute;
  left: 213px;
  top: 336px;
  font-family: var(--font-base);
  font-size: 84px;
  font-weight: 900;
  color: var(--color-primary-blue);
  z-index: 2;
  line-height: 1.2;
}
.hero__subtitle {
  position: absolute;
  left: 223px;
  top: 558px;
  font-family: var(--font-base);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: var(--color-dark-blue);
  z-index: 2;
}

/* Hero pills (blue circles) */
.hero__pills {
  position: absolute;
  left: 693px;
  top: 546px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.hero__pill {
  background: var(--gradient-blue);
  border-radius: 136px;
  width: 176px;
  height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.hero__pill span {
  color: #fff;
  text-align: center;
  font-family: var(--font-base);
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
}
.hero__pill-num {
  font-family: var(--font-en) !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 130% !important;
}
.hero__pill-unit {
  font-family: var(--font-base) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.hero__pill-en {
  font-family: var(--font-en) !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}
.hero__pill-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: -8px;
}

/* Hero CTA button */
.hero__cta-btn {
  position: absolute;
  left: 224px;
  top: 672px;
  width: 288px;
  height: 68px;
  background: var(--gradient-orange);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  z-index: 2;
  transition: opacity 0.3s;
}
.hero__cta-btn:hover { opacity: 0.85; }

/* Hero illustrations */
.hero__ill1 {
  position: absolute;
  left: 439px;
  top: 770px;
  width: 180px;
  height: 130px;
  z-index: 1;
}
.hero__ill2 {
  position: absolute;
  left: 901px;
  top: 150px;
  width: 143px;
  height: 125px;
  z-index: 1;
}
.hero__ill-people {
  position: absolute;
  left: 790px;
  top: 88px;
  width: auto;
  height: auto;
  z-index: 1;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ========================================
   INTRODUCTION
   ======================================== */
.introduction {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Wave shapes */
.introduction__wave-top,
.introduction__wave-bottom,
.service__wave-top,
.service__wave-bottom {
  width: 100%;
  line-height: 0;
}
.introduction__wave-top {
  position: relative;
  z-index: 2;
}
.introduction__wave-top svg,
.introduction__wave-bottom svg,
.service__wave-top svg,
.service__wave-bottom svg {
  width: 100%;
  height: 82px;
  display: block;
}

/* Blue gradient area */
.introduction__blue {
  background: var(--gradient-blue);
  width: 100%;
  position: relative;
}
.introduction__blue-inner {
  padding: 96px 0 150px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}
.introduction__title {
  color: #fff;
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Concerns */
.introduction__concerns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 1133px;
  position: relative;
  padding-bottom: 40px;
}
.concern-row {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.concern-row--top { justify-content: center; }
.concern-row--mid { justify-content: space-between; padding: 0 180px; margin-top: -50px; }
.concern-row--bottom { justify-content: space-between; padding: 0 40px; margin-top: -215px; }

.concern {
  position: relative;
  width: 251px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.concern__bg {
  width: 251px;
  height: 176px;
}
.concern__text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary-blue);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  white-space: nowrap;
}
.concern__dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: -10px;
  transform-origin: top center;
}
.concern-row--mid .concern:first-child .concern__dots {
  transform: rotate(-55deg);
}
.concern-row--mid .concern:last-child .concern__dots {
  transform: rotate(55deg);
}
.concern-row--bottom .concern__text {
  top: 50%;
}
.concern-row--bottom .concern:first-child .concern__dots {
  position: absolute;
  left: 90%;
  top: 50%;
  margin-top: 0;
  transform: rotate(-100deg);
}
.concern-row--bottom .concern:last-child .concern__dots {
  position: absolute;
  right: 90%;
  top: 50%;
  margin-top: 0;
  transform: rotate(100deg);
}
.concern__dot {
  background: #fff;
  border-radius: 50%;
  display: block;
}
.concern__dot--lg { width: 24px; height: 24px; }
.concern__dot--md { width: 15px; height: 15px; }
.concern__dot--sm { width: 10px; height: 10px; }

.introduction__ill {
  position: relative;
  width: 429px;
  height: 296px;
  margin-top: -20px;
  margin-bottom: -50px;
  z-index: 0;
}

/* Stats area */
.introduction__stats-area {
  background: var(--gradient-blue);
  padding: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.stats-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.stat-card {
  background: var(--gradient-lightblue);
  border-radius: 32px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: var(--content-width);
  backdrop-filter: blur(15px);
  margin: 0 auto;
}
.stat-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.stat-card__head-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.stat-card__label,
.stat-card__label-inline {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-align: center;
}
.stat-card__highlight-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.stat-card__hl {
  background: var(--color-yellow);
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-card__hl-ja {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.stat-card__hl-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.stat-card__hl-num2 {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.stat-card__suffix {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.stat-card__desc {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
}
.stat-card__desc-num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  line-height: 140%;
}
.stat-card__img {
  width: 880px;
  height: auto;
  object-fit: cover;
}
.stat-card__source {
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  width: 880px;
  text-align: left;
}

/* ========================================
   REASON
   ======================================== */
.reason {
  padding: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Section header (shared) */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.section-header__en {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-en);
  font-size: 88px;
  font-weight: 700;
  text-align: center;
}
.section-header__en--sm {
  font-size: 72px;
}
.section-header__ja,
.section-header__ja-blue {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--color-dark);
}
.section-header__ja-blue {
  color: var(--color-primary-blue);
}
.section-header--white .section-header__en {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.section-header--white .section-header__ja {
  color: #fff;
}

/* Reason header area */
.reason__header-area {
  padding: 104px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Reason circles (summary) */
.reason__circles {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  width: var(--content-width);
  margin: 0 auto;
}
.reason__circle-item {
  width: 378px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.reason__circle-bg {
  width: 378px;
  height: 378px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}
.reason__circle-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-lightblue);
  opacity: 0.7;
}
.reason__circle-icon {
  position: relative;
  z-index: 1;
  max-width: 200px;
  max-height: 200px;
}
.reason__circle-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-blue);
  border-radius: 28px;
  border: 1.5px solid transparent;
  padding: 6px 32px;
  display: flex;
  align-items: center;
  gap: 2px;
  width: 168px;
  height: 51px;
  justify-content: center;
  box-shadow: 0px 8px 16px 0px rgba(85,172,234,0.16);
}
.reason__circle-point {
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.reason__circle-num {
  color: #fff;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.reason__circle-text {
  font-family: var(--font-base);
  font-size: 30px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 2;
}
.reason__circle-sub {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 118%;
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
}
.reason__circle-orange {
  color: var(--color-orange);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
}
.reason__circle-orange-sm {
  color: var(--color-orange);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
}
.reason__circle-gray {
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
}
.reason__circle-gray-sm {
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
}
.reason__circle-arrow {
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  margin: 0 4px;
}

/* Reason detail cards */
.reason__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
.reason__card {
  background: #fff;
  border-radius: 28px;
  padding: 72px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: var(--content-width);
  margin: 0 auto;
  position: relative;
  box-shadow: 0px 16px 48px 0px rgba(102,136,204,0.1);
}

/* POINT tab on card */
.reason__card-tab {
  position: absolute;
  left: 0;
  top: 64px;
  width: 208px;
  height: 72px;
  border-radius: 0 36px 36px 0;
  border: 1.5px solid transparent;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0px 8px 16px 0px rgba(85,172,234,0.16);
}
.reason__card-tab--blue,
.reason__card-tab--orange {
  background: var(--gradient-blue);
}
.reason__card-tab-label {
  color: #fff;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.reason__card-tab-num {
  color: #fff;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Card body content */
.reason__card-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.reason__card-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.reason__card-title {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
}
.reason__card-highlight-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.reason__card-hl {
  background: var(--color-yellow);
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.reason__card-hl-num {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
}
.reason__card-hl-text {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
}
.reason__card-img {
  width: 880px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Point 2 compare */
.reason__card-compare {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.reason__card-compare-old {
  padding: 0 8px;
}
.reason__card-compare-num {
  font-family: var(--font-en);
  font-size: 44px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.reason__card-compare-unit {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.reason__card-compare-arrow {
  width: 36px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.reason__card-compare-new {
  background: var(--color-yellow);
  padding: 0 8px;
}
.reason__card-compare-num-new {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.reason__card-compare-unit-new {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
}
.reason__card-desc {
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
}
.reason__card-desc-bold {
  font-family: var(--font-en);
  font-weight: 700;
}

/* Point 3 options */
.reason__card-options {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}
.reason__card-option {
  width: 300px;
  height: 300px;
  position: relative;
}
.reason__card-option::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-lightblue);
  opacity: 0.5;
}
.reason__card-option-icon {
  position: absolute;
  top: 115px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 120px;
  height: auto;
}
.reason__card-option-name {
  position: absolute;
  top: 59px;
  left: 0;
  right: 0;
  z-index: 1;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
.reason__card-note {
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: right;
  width: 100%;
}

/* ========================================
   SERVICE
   ======================================== */
.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.service__blue {
  background: var(--gradient-blue);
  width: 100%;
}
.service__blue-inner {
  padding: 104px 0 160px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.service__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* Service block titles */
.service__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: var(--content-width);
}
.service__block-title {
  color: #fff;
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.03em;
  text-align: center;
}

/* Service items */
.service__items {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
  width: var(--content-width);
}
.service__item {
  width: 276px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  background: #fff;
  border-radius: 100px;
}
.service__item-badge {
  background: var(--gradient-orange);
  border-radius: 28px;
  border: 1.5px solid transparent;
  padding: 14px 32px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0px 8px 16px 0px rgba(243,152,0,0.16);
}
.service__item-icon {
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.service__item-value {
  text-align: center;
  color: var(--color-dark);
}
.service__item-big {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  line-height: 140%;
}
.service__item-unit {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
.service__item-value--ja {
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
}

/* Compensation table */
.service__comp-table {
  display: flex;
  flex-direction: column;
  width: var(--content-width);
}
.service__comp-row {
  display: flex;
  width: 100%;
}
.service__comp-th {
  background: var(--color-comp-header);
  padding: 20px 32px;
  text-align: center;
  color: var(--color-orange);
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #fff;
  box-shadow: 0px 8px 16px 0px rgba(243,152,0,0.16);
}
.service__comp-th--first {
  border-radius: 12px 0 0 0;
  border-left: none;
  border: 1.5px solid transparent;
}
.service__comp-th--last {
  border-radius: 0 12px 0 0;
}
.service__comp-td {
  padding: 24px 32px;
  text-align: center;
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: #fff;
  border-left: 2px solid var(--color-comp-header);
}
.service__comp-td--first {
  border-left: none;
}
.service__comp-big {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  line-height: 140%;
}
.service__comp-unit {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.04em;
}

/* Equipment row */
.service__comp-equip {
  display: flex;
  flex-direction: column;
  width: var(--content-width);
  margin-top: -30px;
}
.service__comp-equip-th {
  background: var(--color-comp-header);
  padding: 20px 32px;
  color: var(--color-orange);
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 8px 16px 0px rgba(243,152,0,0.16);
  border-left: 2px solid #fff;
}
.service__comp-equip-td {
  background: #fff;
  border-radius: 0 0 12px 12px;
  padding: 32px 40px;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
  align-items: center;
  border-left: 2px solid var(--color-comp-header);
}

/* ========================================
   COST
   ======================================== */
.cost {
  padding: 104px 0 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.cost__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: var(--content-width);
}
.cost__sub {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
}
.cost__card {
  background: #fff;
  border-radius: 28px;
  padding: 64px 80px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: center;
  width: var(--content-width);
  box-shadow: 0px 16px 48px 0px rgba(102,136,204,0.1);
}
.cost__pill {
  background: var(--gradient-blue);
  border-radius: 36px;
  border: 1.5px solid transparent;
  padding: 10px 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0px 8px 16px 0px rgba(85,172,234,0.16);
}
.cost__pill-num {
  color: #fff;
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cost__pill-label {
  color: #fff;
  font-family: var(--font-base);
  font-size: 28px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.07em;
}
.cost__price-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.cost__price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cost__price-num {
  color: var(--color-primary-blue);
  font-family: var(--font-en);
  font-size: 72px;
  font-weight: 700;
  line-height: 100%;
}
.cost__price-unit {
  color: var(--color-primary-blue);
  font-family: var(--font-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
}
.cost__tax {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 500;
  line-height: 200%;
  text-align: center;
  color: var(--color-dark);
}
.cost__note {
  color: var(--color-gray);
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 150%;
  text-align: right;
  width: 100%;
}

/* ========================================
   ADVANTAGE
   ======================================== */
.advantage {
  padding: 0 0 160px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.advantage__inner {
  background: #fff;
  border-radius: 28px;
  padding: 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  width: var(--content-width);
  margin: 0 auto;
  box-shadow: 0px 16px 48px 0px rgba(102,136,204,0.1);
}
.advantage__sub-wrap {
  width: 100%;
}
.advantage__sub {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-align: center;
}

.advantage .section-header {
  align-self: center;
}

/* Advantage table */
.adv-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.adv-table thead th {
  padding: 16px 0;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  color: #fff;
  text-align: center;
  height: 56px;
}
.adv-table__th-us {
  background: var(--color-orange-secondary);
  font-size: 26px !important;
}
.adv-table__th-other {
  background: var(--gradient-blue);
}

.adv-table tbody td {
  padding: 40px 8px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-disable);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}
.adv-table__td-label {
  font-family: var(--font-base) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  padding: 40px 0 !important;
  text-align: center;
  background: var(--color-light-blue-bg);
}
.adv-table__td-us {
  background: var(--color-light-yellow-bg);
  border-bottom: 1px solid var(--color-disable);
  padding: 40px 0;
}
.adv-table__us-price {
  color: var(--color-orange);
}
.adv-table__us-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  line-height: 120%;
}
.adv-table__us-note {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-dark);
}
.adv-table__other-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}
.adv-table__other-unit {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}

/* Circle and Triangle marks */
.adv-table__circle {
  color: var(--color-orange);
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.adv-table__circle-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
}
.adv-table__triangle {
  font-family: var(--font-base);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.adv-table__triangle-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
}

.adv-table__circle-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 5px solid var(--color-blue-tertiary);
  border-radius: 50%;
}
.adv-table__triangle-mark {
  display: inline-block;
  width: 48px;
  height: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 42'%3E%3Cpolygon points='24,3 45,39 3,39' fill='none' stroke='%23E76100' stroke-width='5' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.adv-table__x-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cline x1='4' y1='4' x2='44' y2='44' stroke='%23595959' stroke-width='5' stroke-linecap='round'/%3E%3Cline x1='44' y1='4' x2='4' y2='44' stroke='%23595959' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.adv-table__option-note {
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  color: var(--color-dark);
  display: block;
}

.adv-table__td-dash {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark);
}
.adv-table__td-none {
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-dark);
}

/* Overlay: mark behind, text on top */
.adv-table__overlay {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 96px;
}
.adv-table__overlay .adv-table__circle-mark {
  position: absolute;
  width: 48px;
  height: 48px;
}
.adv-table__overlay .adv-table__triangle-mark {
  position: absolute;
  width: 48px;
  height: 42px;
}
.adv-table__overlay .adv-table__x-mark {
  position: absolute;
  width: 48px;
  height: 48px;
}
.adv-table__overlay .adv-table__circle,
.adv-table__overlay .adv-table__triangle,
.adv-table__overlay .adv-table__td-none {
  position: relative;
  z-index: 1;
  text-shadow:
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff;
}
.adv-table__overlay .adv-table__circle-text,
.adv-table__overlay .adv-table__triangle,
.adv-table__overlay .adv-table__td-none {
  padding: 4px 10px;
  border-radius: 4px;
}

/* Advantage table + badges wrapper */
.advantage__body {
  display: flex;
  gap: 0;
  align-items: center;
  width: 100%;
}
.advantage__table-wrap {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  position: relative;
}

/* Advantage check badges */
.advantage__badges {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-right: -30px;
  align-self: stretch;
}
.advantage__badge:nth-child(1) { margin-top: 240px; }
.advantage__badge:nth-child(2) { margin-top: 155px; }
.advantage__badge:nth-child(3) { margin-top: 200px; }
.advantage__badge:nth-child(4) { margin-top: 155px; }

.advantage__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 600;
  line-height: 130%;
  color: var(--color-orange);
}
.advantage__badge > span:last-child {
  position: relative;
  z-index: 1;
  text-align: center;
}
.advantage__badge-check {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage__badge-check::after {
  content: '';
  display: block;
  width: 36px;
  height: 26px;
  background: url('../images/check-blue.svg') center/contain no-repeat;
}
.advantage__note {
  margin-left: auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--gradient-lightblue);
  padding: 136px 130px;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.cta-section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.cta-section__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}
.cta-section__line {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  color: var(--color-dark);
}
.cta-section__hl {
  background: var(--color-yellow);
  padding: 0 8px;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.cta-section__appeal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.cta-section__lead {
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-dark);
}
.cta-section__brand {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-dark);
}
.cta-section__brand-name {
  color: var(--color-orange);
  font-family: var(--font-base);
  font-size: 36px;
  font-weight: 900;
  line-height: 150%;
}
.cta-section__question {
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
  color: var(--color-dark);
}
.cta-section__ill {
  flex-shrink: 0;
  width: 568px;
  height: 444px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--gradient-blue);
  padding: 24px 264px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer__text {
  color: #fff;
  font-family: var(--font-base);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  width: 100%;
}

/* ========================================
   FOLLOW BUTTON
   ======================================== */
.follow-btn {
  position: fixed;
  right: 56px;
  bottom: 56px;
  width: 144px;
  height: 144px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.follow-btn--visible {
  opacity: 1;
  visibility: visible;
}
.follow-btn__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--gradient-orange);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  text-align: center;
  transition: opacity 0.3s;
}
.follow-btn__link:hover { opacity: 0.85; }

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.modal-overlay--visible .modal {
  transform: scale(1);
  opacity: 1;
}

.modal {
  background: var(--color-white);
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal__header {
  background: var(--gradient-blue);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.modal__header-text h2 {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.modal__header-text p {
  color: var(--color-white);
  font-size: 12px;
  opacity: 0.9;
  margin-top: 4px;
}
.modal__close {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.modal__close svg {
  width: 24px;
  height: 24px;
}

.modal__body {
  padding: 28px;
  overflow-y: auto;
}

.form-group {
  margin-bottom: 20px;
}
.form-group__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}
.form-group__optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray);
}
.form-group__required {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-orange);
}
.form-group__note {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-gray);
}
.form-group__input,
.form-group__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group__input::placeholder,
.form-group__textarea::placeholder {
  color: var(--color-disable);
}
.form-group__input:focus,
.form-group__textarea:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 45, 189, 0.1);
}
.form-group__textarea {
  resize: none;
}

.form-radio-group {
  display: flex;
  gap: 12px;
}
.form-radio-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 14px;
  font-weight: 500;
}
.form-radio-label:hover {
  background: #f9fafb;
}
.form-radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary-blue);
}

.form-radio-sub {
  display: none;
  margin-top: 8px;
  background: var(--color-light-blue-bg);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #bfe0f5;
}
.form-radio-sub--visible {
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-radio-sub__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-blue);
  white-space: nowrap;
}
.form-radio-sub__input {
  width: 80px;
  padding: 6px 12px;
  border: 1px solid #93c5fd;
  border-radius: 6px;
  font-family: var(--font-base);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-radio-sub__input:focus {
  border-color: var(--color-primary-blue);
  box-shadow: 0 0 0 3px rgba(15, 45, 189, 0.1);
}
.form-radio-sub__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-blue);
}

.form-submit {
  margin-top: 28px;
}
.form-submit__btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-orange);
  border: none;
  border-radius: 12px;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
  box-shadow: 0 4px 16px rgba(231, 97, 0, 0.3);
}
.form-submit__btn:hover {
  opacity: 0.85;
}
.form-submit__arrow {
  width: 20px;
  height: 20px;
}
.form-submit__spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.form-submit__sending {
  display: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Loading state */
.form-submit__btn--loading {
  pointer-events: none;
  opacity: 0.7;
}
.form-submit__btn--loading .form-submit__label,
.form-submit__btn--loading .form-submit__arrow {
  display: none;
}
.form-submit__btn--loading .form-submit__spinner,
.form-submit__btn--loading .form-submit__sending {
  display: inline-block;
}
.form-submit__note {
  text-align: center;
  font-size: 10px;
  color: var(--color-gray);
  margin-top: 16px;
}

/* Success message */
.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.success-overlay--visible {
  opacity: 1;
  visibility: visible;
}
.success-overlay--visible .success-box {
  transform: scale(1);
  opacity: 1;
}
.success-box {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 40px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  border-top: 6px solid #22c55e;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.success-box__icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.success-box__icon svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}
.success-box__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}
.success-box__text {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 32px;
  line-height: 1.8;
}
.success-box__close {
  width: 100%;
  padding: 12px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  transition: background 0.2s;
}
.success-box__close:hover {
  background: #e5e7eb;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — Tablet
   ======================================== */
@media (max-width: 1200px) {
  :root {
    --content-width: 90vw;
  }
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero__bg {
    width: 60%;
    top: 0;
  }
  .hero__badges,
  .hero__title,
  .hero__subtitle,
  .hero__pills,
  .hero__cta-btn,
  .hero__ill1,
  .hero__ill2,
  .hero__ill-people {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 40px 40px;
    gap: 24px;
  }
  .hero__logo {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 200px;
    height: auto;
  }
  .hero__badges { order: 1; }
  .hero__title { order: 2; font-size: 56px; text-align: center; }
  .hero__subtitle { order: 3; font-size: 32px; }
  .hero__pills { order: 4; box-shadow: none; }
  .hero__cta-btn { order: 5; }
  .hero__ill1,
  .hero__ill2 { display: none; }
  .hero__ill-people { order: 6; width: 300px; }

  .introduction__concerns { width: 100%; padding-bottom: 0; }
  .introduction__ill {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0 auto;
  }
  .concern-row--mid,
  .concern-row--bottom { padding: 0 40px; }

  .stat-card__img { width: 100%; }
  .stat-card__source { width: 100%; }
  .reason__circles { width: 100%; flex-wrap: wrap; }
  .reason__card-img { width: 100%; }
  .service__items { flex-wrap: wrap; gap: 24px; }
  .service__comp-table,
  .service__comp-equip { width: 100%; }
  .cta-section { padding: 80px 40px; flex-direction: column; }
  .cta-section__ill { width: 100%; max-width: 400px; height: auto; }
  .footer { padding: 24px 40px; }
}

/* ========================================
   RESPONSIVE — SP (Mobile)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --content-width: 100%;
  }

  /* ── Hero SP ── */
  /* タブレット用のflex配置をリセットし、SP用の絶対配置に戻す */
  .hero {
    display: block;
    position: relative;
    min-height: 812px;
    padding: 0;
  }
  .hero__bg {
    position: absolute;
    right: -108px;
    top: 437px;
    width: 483px;
    height: auto;
  }
  .hero__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 32px;
    width: 218px;
    height: 50px;
  }
  /* 5年補償/35万円 badges: 2行×2列グリッドで badge + sep を同行に */
  .hero__badges {
    position: absolute;
    display: grid;
    grid-template-columns: auto auto;
    gap: 8px 4px;
    align-items: center;
    left: 31px;
    top: 113px;
  }
  .hero__badge-num { font-size: 28px; }
  .hero__badge-unit { font-size: 21px; }
  .hero__badge-sep { font-size: 23px; }
  .hero__title {
    position: absolute;
    left: 27px;
    top: 204px;
    font-size: 48px;
    line-height: 1.2;
    text-align: left;
  }
  .hero__subtitle {
    position: absolute;
    left: 32px;
    top: 385px;
    font-size: 26px;
  }
  .hero__pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 28px;
    top: 436px;
  }
  .hero__pill { width: 88px; height: 88px; padding: 0px; }
  .hero__pill span { font-size: 16px; }
  .hero__pill-num { font-size: 24px !important; }
  .hero__pill-unit { font-size: 16px !important; }
  .hero__pill-en { font-size: 16px !important; }
  .hero__pill-row { gap: 8px; margin-top: -8px; }
  .sp-br { display: inline; }
  .hero__cta-btn { display: none; }
  /* ill001: 底部左側のイラスト (sp.html _2 の位置に合わせる) */
  .hero__ill1 {
    display: block;
    position: absolute;
    left: 50px;
    top: 646px;
    width: 125px;
    height: auto;
    z-index: 1;
  }
  /* ill002: 右上の小さな装飾 (sp.html group-163847 の位置に合わせる) */
  .hero__ill2 {
    display: block;
    position: absolute;
    right: 67px;
    top: 173px;
    width: 67px;
    height: auto;
    z-index: 1;
  }
  .hero__ill-people {
    position: absolute;
    left: auto;
    right: -10px;
    top: 195px;
    height: 280px;
    width: auto;
  }

  /* ── Introduction SP ── */
  /* sp.html の frame-1290 参考:
     HTML 順: top(1件) → mid(2件) → ill → bottom(2件)
     SP 表示順: mid(2件) → top(1件・中央) → bottom(2件) → ill
     CSS order で並び替え */
  .introduction__title { font-size: 24px; }
  .introduction__blue-inner { padding: 64px 16px 48px; gap: 24px; }
  .introduction__concerns {
    width: 100%;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* 表示順: 2アイテム行 → 1アイテム行(中央) → 2アイテム行 → イラスト */
  .concern-row--mid {
    order: 1;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    padding: 0;
    margin-top: 0;
  }
  .concern-row--top {
    order: 2;
    margin-top: -12px;
  }
  .concern-row--bottom {
    order: 3;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    padding: 0;
    margin-top: -12px;
  }
  .introduction__ill {
    order: 4;
    position: relative;
    left: auto; right: auto; bottom: auto;
    transform: none;
    width: 272px;
    height: auto;
    margin: 16px auto 0;
  }
  .concern { width: 160px; }
  .concern__bg { width: 160px; height: 112px; }
  .concern__text { font-size: 15px; }
  .concern__dots { display: flex; }
  /* concern-row--top (1件・中央): ドットを斜め下方向へ */
  .concern-row--top .concern__dots {
    transform: rotate(-55deg);
  }
  /* concern-row--bottom: PCの絶対配置をリセットし concern-row--mid と同じスタイルを適用 */
  .concern-row--bottom .concern__text {
    top: 40%;
  }
  .concern-row--bottom .concern:first-child .concern__dots {
    position: static;
    left: auto;
    top: auto;
    margin-top: -10px;
    transform: rotate(-55deg);
  }
  .concern-row--bottom .concern:last-child .concern__dots {
    position: static;
    right: auto;
    top: auto;
    margin-top: -10px;
    transform: rotate(55deg);
  }
  .introduction__stats-area { padding: 0 16px 64px; }
  .stat-card { padding: 32px 16px; border-radius: 20px; gap: 24px; }
  .stat-card__label,
  .stat-card__label-inline { font-size: 18px; }
  .stat-card__hl-ja { font-size: 22px; }
  .stat-card__hl-num,
  .stat-card__hl-num2 { font-size: 32px; }
  .stat-card__suffix { font-size: 18px; }
  .stat-card__desc { font-size: 16px; }
  .stat-card__desc-num { font-size: 17px; }
  .stat-card__img { width: 100%; height: auto; }
  .stat-card__source { font-size: 12px; width: 100%; }

  /* ── Section header SP ── */
  .section-header__en { font-size: 64px; }
  .section-header__en--sm { font-size: 48px; }
  .section-header__ja,
  .section-header__ja-blue { font-size: 18px; }

  /* ── Reason SP ── */
  .reason { padding: 0 0 64px; }
  .reason__header-area { padding: 64px 0 56px; gap: 32px; }
  .reason__circles { flex-direction: column; align-items: center; gap: 16px; width: 100%; }
  .reason__circle-item { width: 293px; }
  .reason__circle-bg { width: 293px; height: 293px; }
  .reason__circle-icon { max-width: 130px; max-height: 130px; }
  .reason__circle-label { width: 140px; height: 40px; padding: 6px 32px; }
  .reason__circle-point { font-size: 16px; }
  .reason__circle-num { font-size: 24px; }
  .reason__circle-text { font-size: 22px; top: 55px; }
  .reason__circle-sub { font-size: 16px; top: 130px; }
  .reason__circle-orange { font-size: 24px; }
  .reason__circle-orange-sm { font-size: 18px; }
  .reason__circle-gray { font-size: 24px; }
  .reason__circle-gray-sm { font-size: 18px; }
  .reason__circle-arrow { font-size: 18px; }

  .reason__cards { gap: 28px; padding: 0 16px; }
  .reason__card { padding: 40px 24px 32px; border-radius: 12px; width: 100%; gap: 24px; }
  .reason__card-img { width: 100%; height: auto; }
  /* sp.html frame-13144 参考: カード上端に中央配置・完全な pill 形状 */
  .reason__card-tab {
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
    width: auto;
    height: 34px;
    padding: 10px 20px;
    border-radius: 18px;
  }
  .reason__card-tab-label { font-size: 15px; }
  .reason__card-tab-num { font-size: 20px; }
  .reason__card-title { font-size: 22px; }
  .reason__card-hl-num { font-size: 32px; }
  .reason__card-hl-text { font-size: 22px; }
  .reason__card-compare-num { font-size: 24px; }
  .reason__card-compare-unit { font-size: 18px; }
  .reason__card-compare-num-new { font-size: 28px; }
  .reason__card-compare-unit-new { font-size: 18px; }
  .reason__card-desc { font-size: 14px; }
  .reason__card-options { flex-direction: row; gap: 12px; justify-content: center; flex-wrap: nowrap; }
  .reason__card-option { width: 120px; height: 120px; }
  .reason__card-option-name { font-size: 14px; top: 20px; }
  .reason__card-option-icon { width: 60px; top: 50px; }
  .reason__card-note { font-size: 12px; text-align: center; }

  /* ── Service SP ── */
  .service__blue-inner { padding: 48px 16px 80px; gap: 32px; }
  .service__content { width: 100%; }
  .service__block { width: 100%; }
  .service__block-title { font-size: 22px; }
  .service__items { flex-wrap: wrap; gap: 16px; justify-content: center; width: 100%; }
  .service__item { width: 152px; height: 152px; }
  .service__item-badge { font-size: 13px; padding: 8px 12px; }
  .service__item-big { font-size: 32px; }
  .service__item-unit { font-size: 18px; }
  .service__item-value--ja { font-size: 22px; }
  .service__comp-table { overflow-x: auto; width: 100%; }
  .service__comp-equip { width: 100%; margin-top: -30px; }
  .service__comp-th,
  .service__comp-td { font-size: 13px; padding: 10px 6px; min-width: 80px; flex-wrap: wrap; align-items: baseline; align-content: center; }
  .service__comp-big { font-size: 28px; }
  .service__comp-unit { font-size: 14px; }
  .service__comp-equip-th { font-size: 13px; padding: 12px 16px; }
  .service__comp-equip-td { font-size: 13px; padding: 16px; }

  /* ── Cost SP ── */
  .cost { padding: 48px 16px; gap: 32px; }
  .cost__inner { width: 100%; gap: 16px; }
  .cost__sub { font-size: 22px; }
  .cost__card { padding: 24px; border-radius: 8px; gap: 10px; width: 100%; }
  .cost__price-group { flex-direction: row; align-items: flex-end; gap: 0; }
  .cost__pill { height: auto; padding: 4px 12px; }
  .cost__pill-num { font-size: 18px; }
  .cost__pill-label { font-size: 16px; }
  .cost__price-num { font-size: 32px; }
  .cost__price-unit { font-size: 24px; }
  .cost__tax { font-size: 13px; }
  .cost__note { font-size: 12px; text-align: center; }

  /* ── Advantage SP ── */
  .advantage { padding: 0 0 64px; }
  .advantage__inner { padding: 48px 0; border-radius: 24px; gap: 40px; }
  .advantage .section-header,
  .advantage__sub-wrap { padding: 0 16px; }
  .advantage__sub { font-size: 22px; }
  .advantage__body { flex-direction: row; gap: 0; align-items: flex-start; }
  .advantage__table-wrap { order: 0; overflow-x: auto; flex: 1; min-width: 0; padding: 0 16px 0 0; }
  .advantage__badges {
    order: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
    margin-right: -30px;
    align-self: stretch;
    padding: 0;
  }
  .advantage__badge:nth-child(1) { margin-top: 180px; }
  .advantage__badge:nth-child(2) { margin-top: 115px; }
  .advantage__badge:nth-child(3) { margin-top: 155px; }
  .advantage__badge:nth-child(4) { margin-top: 115px; }
  .advantage__badge { font-size: 12px; }
  .advantage__badge-check { width: 56px; height: 56px; }
  .advantage__badge-check::after { width: 24px; height: 18px; }
  .adv-table { min-width: 460px; }
  .adv-table thead th { font-size: 14px; height: 40px; }
  .adv-table__th-us { font-size: 18px !important; }
  .adv-table tbody td { padding: 16px 4px; font-size: 14px; }
  .adv-table__us-num { font-size: 28px; }
  .adv-table__us-note { font-size: 10px; }
  .adv-table__other-num { font-size: 18px; }
  .adv-table__circle-mark,
  .adv-table__triangle-mark,
  .adv-table__x-mark { transform: scale(0.7); }
  .adv-table__option-note { font-size: 11px; }

  /* ── CTA SP ── */
  .cta-section { padding: 64px 24px; flex-direction: column; gap: 24px; }
  .cta-section__inner { width: 100%; }
  .cta-section__line { font-size: 18px; }
  .cta-section__hl { font-size: 18px; }
  .cta-section__lead { font-size: 18px; }
  .cta-section__brand { font-size: 22px; }
  .cta-section__brand-name { font-size: 24px; }
  .cta-section__question { font-size: 22px; }
  .cta-section__ill { position: static; width: 100%; max-width: none; height: auto; }

  /* ── Footer SP ── */
  .footer { padding: 16px; }
  .footer__text { font-size: 16px; }

  /* ── Follow button SP ── */
  .follow-btn { width: 112px; height: 112px; right: 16px; bottom: 16px; }
  .follow-btn__link { font-size: 14px; }
}

/* ── Form Errors ── */
.form-error {
  color: #e94949;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}
