:root {
  --blue: #001afd;
  --orange: #fe7500;
  --orange2: #ec711e;
  --text: #363640;
  --muted: #6d6d78;
  --bg: #ffffff;
  --card: #ffffff;
  --soft-bg: #f6f7ff;
  --soft-yellow: #fff7de;
  --border: #e1e1e1;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  font-family: "Inter", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

section {
  padding: 48px 0;
}

h2 {
  margin: 0 0 16px;
  line-height: 1.4;
}

p {
  margin: 0 0 12px;
}

sup {
  font-size: 75%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 26px 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn .label {
  font-size: 16px;
  font-weight: 700;
}

.btn .sub {
  font-size: 12px;
}

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

.btn-cta {
  background: linear-gradient(90deg, #fe9759, var(--orange2));
  color: #fff;
}

.btn-line {
  background: #fff;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.btn-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-line .sub {
  color: #000;
}

.btn-cta {
  padding: 26px 26px 26p 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.logo img {
  width: 329px;
  height: auto;
}

.header__actions {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 16px;
}

.header__actions .btn {
  justify-content: center;
}

.header__actions .btn-text {
  align-items: center;
  text-align: center;
}

.menu-toggle {
  margin-left: auto;
  background: none;
  border: none;
  display: grid;
  gap: 6px;
  padding: 6px;
  cursor: pointer;
  align-items: center;
  justify-items: center;
}

.menu-toggle .bar {
  width: 36px;
  height: 2px;
  background: #001AFD;
  border-radius: 4px;
}

.menu-toggle .menu-label {
  font-size: 10px;
  line-height: 10px;
  color: var(--blue);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.hero {
  position: relative;
  height: 584px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  height: 712px;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0;
  padding: 0;
}

.cta-block {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 24px 16px;
}

.cta-block__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}

.cta-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 343px;
  padding: 12px 0;
  background: linear-gradient(90deg, #fe9759, var(--orange2));
  border-radius: 200px;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.cta-main .tag {
  position: absolute;
  left: 9px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: #fff;
  color: #fe9759;
  border-radius: 200px;
  font-size: 12px;
  font-weight: 700;
  line-height: 17px;
}

.cta-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta-lines .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.cta-lines .desc {
  font-size: 12px;
  line-height: 12px;
}

.cta-image {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0;
}

.cta-image img {
  width: 54px;
  height: auto;
  object-fit: cover;
}

.cta-main:hover {
  transform: translateY(-2px);
  opacity: 0.6;
}

.cta-lead {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  background: #fff;
  border-radius: 200px;
  padding: 12px 0;
  width: 100%;
  max-width: 343px;
  font-weight: 700;
  position: relative;
  overflow: visible;
  transition: transform 0.15s ease, opacity 0.15s ease;
  gap: 6px;
}

.cta-secondary::after {
  content: "";
  position: absolute;
  right: 27px;
  top: 50%;
  width: 24px;
  height: 48px;
  background: url("../img/cta-secondary-arrow.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.cta-secondary .sub {
  font-size: 12px;
  color: #363640;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.cta-secondary .sub .line {
  height: auto;
  width: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-secondary .sub .sub-text {
  display: inline-block;
  line-height: 12px;
}

.cta-secondary .title {
  font-size: 20px;
  color: var(--orange);
  text-align: center;
  line-height: 20px;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  opacity: 0.6;
}

.cta-note {
  font-size: 10px;
  line-height: 20px;
  color: #fff;
  margin: 0;
}

.cta-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.cta-phone__lead {
  margin: 0;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-phone__lead .lead-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.cta-phone__lead .lead-sub {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.cta-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  color: #fff;
  padding: 0;
  background: none;
  border: none;
}

.icon-phone {
  display: inline-flex;
  width: 17.23px;
  height: 15px;
  color: #fff;
}

.cta-phone__number .numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  line-height: 1.2;
}

.cta-phone__number .tel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.cta-phone__number .tel img {
  width: 20px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.cta-phone__number .time {
  display: block;
  font-size: 10px;
  color: #fff;
  font-weight: 400;
  margin: 0;
  text-align: right;
  line-height: 10px;
}

.cta-phone__divider {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 0;
}

.cta-block .cta-phone__divider {
  background: #fff;
}

@media (min-width: 768px) {
  .worry-item {
    display: block;
  }

  .worry-card {
    position: relative;
  }

  .worry-card::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -30px;
    width: 23px;
    height: 27px;
    background: url("../img/worry-hukidashi.svg") no-repeat center;
    background-size: contain;
  }

  .worry-icon {
    display: none;
  }

  .cta-block {
    padding: 24px 16px;
  }

  .cta-block__inner {
    gap: 24px;
  }

  .cta-phone {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .cta-phone__lead {
    text-align: left;
  }

  .cta-phone__number {
    justify-content: flex-start;
  }

  .cta-phone__divider {
    display: block;
    width: 1px;
    height: 56px;
  }
}

.worry {
  background: #fff;
  text-align: center;
  padding-top: 96px;
}

.worry .container {
  width: min(1140px, 100% - 32px);
  margin: 0 auto;
}

.worry h2 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #111;
}

.worry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.worry-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.worry-card {
  background: #f6f7ff;
  border-radius: 10px;
  padding: 24px 16px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  min-width: 240px;
  width: 100%;
}

.worry-icon {
  padding-left: 12px;
  width: 23px;
  height: 27px;
}

.worry-icon img {
  width: 23px;
  height: 27px;
  display: block;
}

.worry-illustration {
  margin: 32px auto 0;
  max-width: 278px;
}

.divider {
  position: relative;
  text-align: center;
  padding: 40px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.divider::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -120px;
  width: 140%;
  height: 240px;
  background: #fcf7de;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
  z-index: 0;
}

.divider__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 16px;
}

.divider p {
  margin: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 48px;
  line-height: 64px;
  text-align: center;
  white-space: nowrap;
}

.divider__arrow {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-top: 56px solid var(--blue);
}

.plan {
  background: #FCF9DE;
  padding: 24px 0 88px;
  line-height: 1.5;
}

.plan-heading {
  text-align: center;
  margin-bottom: 24px;
}

.plan-hero {
  display: block;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.plan-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.about-card {
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 40px 48px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.about-card .about-main {
  display: none;
}

.about-card h3 {
  margin: 0;
  font-size: 32px;
  color: #1f1f2c;
}

.about-card .about-text {
  max-width: 816px;
}

.about-card .about-text p {
  margin: 0;
  font-size: 18px;
  color: #1f1f2c;
  text-align: left;
}

.cases {
  display: flex;
  flex-direction: column;
  gap: 82px;
  margin-top: 76px;
  align-items: center;
}

.case-card {
  position: relative;
  background: #fff;
  border: 1px solid #ee9d1d;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 32px 32px;
  width: 100%;
  max-width: 912px;
}

.case-label {
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: #ee9d1d;
  color: #fff;
  text-align: center;
  margin-top: -90px;
}

.cases .case-card:last-child .case-label {
  margin-top: -90px;
}

.case-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 30px;
  height: 30px;
  background: #EE9D1D;
  transform: translateX(-50%) rotate(45deg);
}

.case-label__line {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1.2;
}

.case-label__title {
  font-size: 24px;
  font-weight: 700;
}

.case-label__desc {
  font-size: 24px;
  font-weight: 400;
}

.case-label__note {
  font-size: 16px;
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
  text-align: center;
  padding-top: 16px;
}

.case-illust {
  display: flex;
  justify-content: center;
}

.case-illust img {
  width: 160px;
}

.cases .case-card:first-child .case-illust img {
  width: 240px;
}

.cases .case-card:last-child .case-illust img {
  width: 240px;
  /* margin-left: -62px;
  margin-top: 10px; */
}

.case-calc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  font-size: 18px;
  color: #1f1f2c;
}

.case-calc__block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  /* gap: 6px; */
}

.case-calc__block .case-calc__value {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.case-calc__block .case-calc__value span {
  font-size: 32px;
}

.case-calc__block .case-calc__label {
  font-size: 18px;
  line-height: 27px;
}

.case-calc__block.highlight {
  color: #ee9d1d;
}

.case-calc__block.highlight .case-calc__label {
  font-weight: 700;
}

.case-calc__block.highlight .case-calc__value span {
  font-size: 48px;
}

.case-calc__symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}

.case-calc__symbol img {
  width: 24px;
  height: auto;
  display: block;
}

.case-calc__symbol--times {
  padding-bottom: 9px;
}

.case-calc__symbol--equals {
  padding-bottom: 20px;
}

.case-note {
  font-size: 12px;
  text-align: center;
  color: var(--text);
  margin: 0;
}

.advantage {
  margin: 72px auto 0;
  text-align: left;
  max-width: 912px;
  padding: 0;
}

.benefit-head {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  color: #EE9D1D;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  font-size: 48px;
  line-height: 1.2;
}

.benefit-head__slash {
  width: 22px;
  height: auto;
}

.advantage p {
  margin: 0;
  line-height: 1.6;
  font-size: 18px;
}

.advantage .benefit-text {
  margin-bottom: 16px;
}

.note-text {
  font-size: 12px;
}

p.note-text {
  font-size: 12px;
}

.dividend-card {
  margin: 48px auto 0;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 912px;
}

.dividend-card h3 {
  margin: 0;
  color: #1f1f2c;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.dividend-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #1f1f2c;
  flex: 1;
}

.target {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 24px 28px;
}

.target-illust img {
  width: 164px;
  margin: 0 auto;
}

.target-title {
  margin: 0 0 24px;
  font-weight: 700;
  color: #1f1f2c;
  font-size: 32px;
}

.target ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  color: #1f1f2c;
  list-style: none;
}

.target li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
}

.target-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background: url("../img/target-list-icon.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.voice {
  background: #fff;
  padding: 96px 0;
}

.voice__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.voice h2 {
  color: var(--blue);
  text-align: center;
  font-size: 48px;
  line-height: 64px;
  margin: 0;
  font-weight: 700;
}

.voice-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.voice-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex-shrink: 0;
}

.voice-image {
  width: 257px;
  height: 355px;
  overflow: hidden;
}

.voice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.voice-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  text-align: center;
  margin: 0;
  width: 100%;
}

.voice-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}

.voice-text .lead {
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  color: #000;
  margin: 0;
}

.voice-text p {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  margin: 0;
}

.faq {
  background: #fff;
  padding: 96px 0;
}

.faq .container {
  width: min(912px, 100% - 32px);
}

.faq h2 {
  text-align: center;
  color: var(--blue);
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 40px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.qa {
  background: var(--soft-bg);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  gap: 24px;
}

.qa-q {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qa-a {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.qa-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 400;
  flex-shrink: 0;
}

.qa-badge--q {
  background: var(--blue);
  color: #fff;
}

.qa-badge--a {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  height: 46px;
}

.qa-text {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.qa-a .qa-text {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}

/* FAQ: article.qa 内で span を p に置換した場合の余白リセット */
.qa p {
  margin: 0;
}
.qa p.qa-badge {
  display: inline-flex;
}
.qa p.qa-text {
  margin: 0;
}

@media (max-width: 767px) {
  sup {
    font-size: 10px;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .cta-block .container {
    padding: 0;
  }

  .site-header {
    padding: 0;
  }

  .header__inner {
    padding: 6px 7px 6px 7px;
    justify-content: space-between;
  }

  .logo img {
    width: 194px;
    height: auto;
  }

  .hero {
    height: auto;
    padding: 0;
  }

  .hero__bg {
    width: 100%;
    left: 0;
    transform: none;
    height: auto;
    position: relative;
  }

  .hero__bg img {
    object-fit: contain;
    object-position: center top;
    height: auto;
  }

  .divider__content {
    gap: 11px;
  }

  .divider p {
    font-size: 32px;
    line-height: 48px;
  }

  .divider__arrow {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 40px solid var(--blue);
  }

  .divider::before {
    border-radius: 36% 36% 0 0;
    bottom: -164px;
  }

  .worry {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }

  .worry .container {
    padding: 0;
  }

  .worry h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .worry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .worry-item {
    gap: 4px;
    width: 100%;
  }

  .worry-card {
    min-width: 0;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    padding: 24px 6px;
  }

  .worry-icon {
    padding-left: 12px;
    width: 33px;
    height: auto;
  }

  .worry-icon img {
    width: 33px;
    height: auto;
  }

  .worry-illustration {
    width: 180px;
    height: 130px;
    max-width: 180px;
    margin-top: 0;
  }

  .worry-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .plan {
    padding: 32px 16px 48px;
  }

  .plan .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    width: 100%;
  }

  .plan-heading {
    margin-bottom: 0;
  }

  .about-card {
    padding: 24px;
    gap: 16px;
    border-radius: 16px;
  }

  .about-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .about-card .about-text p {
    font-size: 14px;
    line-height: 22px;
  }

  .cases {
    gap: 24px;
    margin-top: 0;
  }

  .case-card {
    padding: 32px 0 24px;
    border-radius: 16px;
    position: relative;
    padding-top: 0;
    margin-top: 38px;
  }

  .case-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-illust {
    padding: 0;
  }

  .case-illust img {
    width: auto;
    height: auto;
  }

  .cases .case-card:first-child .case-illust img {
    width: 210px;
    height: auto;
  }

  .cases .case-card:last-child .case-illust img {
    width: 220px;
    height: auto;
    margin-left: 0;
  }

  .case-label {
    position: absolute;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    padding: 14px 32px;
    border-radius: 200px;
    margin-top: 0;
    margin-bottom: -20px;
    width: auto;
    min-width: fit-content;
  }

  .case-card:first-child .case-label {
    top: -31px;
  }

  .case-card:last-child .case-label {
    top: 56px;
  }

  .case-label__line {
    display: flex;
    flex-direction: row;
    gap: 0;
    white-space: nowrap;
  }

  .case-label__title {
    font-size: 16px;
  }

  .case-label__desc {
    font-size: 12px;
  }

  .case-label__note {
    font-size: 12px;
  }

  .case-note {
    font-size: 10px;
  }

  .case-calc {
    gap: 8px;
    align-items: center;
  }

  .cases .case-card:last-child .case-calc {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cases .case-card:last-child .case-calc__block {
    width: 100%;
    place-items: center;
    justify-content: center;
  }

  .case-calc__block {
    gap: 0;
    position: relative;
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    line-height: 0;
    text-align: center;
  }

  .case-calc__block .case-calc__label {
    font-size: 12px;
    line-height: 22px;
    margin: 0;
    grid-area: 1 / 1;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    align-self: end;
  }

  .case-calc__block .case-calc__value {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    /* margin-top: 19px; */
    grid-area: 1 / 1;
    text-align: center;
    width: 100%;
    white-space: nowrap;
  }

  .case-calc__block .case-calc__value span {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
  }

  .case-calc__block.highlight .case-calc__value span {
    font-size: 32px;
  }

  .case-calc__block.highlight .case-calc__label {
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
  }

  .case-calc__block.highlight .case-calc__value {
    /* margin-top: 20px; */
  }

  .cases .case-card:last-child .case-calc__block.highlight {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .cases .case-card:last-child .case-calc__block.highlight .case-calc__label {
    grid-area: auto;
    position: static;
    width: auto;
  }

  .cases .case-card:last-child .case-calc__block.highlight .case-calc__value {
    grid-area: auto;
    position: static;
    margin-top: 0;
    width: auto;
  }

  .case-calc__symbol {
    font-size: 24px;
    line-height: normal;
  }

  .case-calc__symbol img {
    width: 16px;
    height: auto;
  }

  .case-calc__symbol--equals {
    padding-bottom: 14px;
  }

  .case-card {
    padding: 32px 32px 24px;
    padding-top: 38px;
  }

  .case-label::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%) rotate(225deg);
    width: 28px;
    height: 28px;
    background: #ee9d1d;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .advantage {
    gap: 24px;
    margin: 0 auto 0;
    padding: 16px 0;
  }

  .benefit-head {
    gap: 10px;
    margin-bottom: 16px;
  }

  .benefit-head span {
    font-size: 32px;
    line-height: 48px;
  }

  .advantage p {
    font-size: 14px;
    line-height: 22px;
  }

  .advantage .benefit-text {
    margin-bottom: 24px;
  }

  .note-text {
    font-size: 14px;
  }

  p.note-text {
    font-size: 14px;
  }

  .dividend-card {
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    margin-top: 0;
  }

  .dividend-card h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .dividend-card p {
    font-size: 14px;
    line-height: 22px;
  }

  .target {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    padding: 0;
    align-items: center;
  }

  .target-illust {
    width: 142.093px;
    height: 180px;
  }

  .target-illust img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .target-title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
    text-align: center;
  }

  .target ul {
    gap: 16px;
  }

  .target li {
    font-size: 14px;
    line-height: 21px;
    gap: 6px;
    justify-content: flex-start;
  }

  .target-icon {
    width: 24px;
    height: 20.044px;
    margin-top: 0;
  }

  .voice {
    padding: 48px 0;
  }

  .voice__inner {
    gap: 24px;
    padding: 0 16px;
  }

  .voice h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .voice-card {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .voice-image-wrapper {
    align-items: center;
    width: 100%;
  }

  .voice-image {
    width: 217px;
    height: 300px;
  }

  .voice-name {
    font-size: 16px;
    line-height: 24px;
  }

  .voice-text {
    gap: 16px;
    width: 100%;
  }

  .voice-text .lead {
    font-size: 18px;
    line-height: 24px;
  }

  .voice-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

.site-footer {
  background: #fff;
  color: #000;
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-insurance {
  padding: 24px;
  background: #f2f2f2;
  margin-bottom: 16px;
}

.footer-insurance h3 {
  margin-top: 0;
}

.site-footer .note-text {
  font-size: 12px;
}

/* 固定: 親の影響を受けず常に12pxにする（優先度を上げる） */
p.note-text {
  font-size: 12px !important;
}

.footer-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-phone__lead {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.footer-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.footer-phone__number:hover {
  opacity: 0.8;
}

.footer-phone__number img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-phone__number .tel {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-phone__number .time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
}

.footer-links {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.footer-links a {
  color: #000;
  transition: opacity 0.15s ease;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-links .sep {
  color: #000;
  font-size: 16px;
  line-height: 24px;
}

.copy {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #000;
}

.sp-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 56px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.sp-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sp-menu {
  background: #fff;
  border-radius: 16px;
  padding: 64px 44px 64px;
  width: 100%;
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.sp-menu .close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
  color: #333;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 26px 12px 16px;
  border-radius: 100px;
  font-weight: 700;
  width: 100%;
  position: relative;
}

.menu-btn .btn-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.menu-btn .btn-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  text-align: center;
}

.menu-btn .label {
  font-size: 16px;
  line-height: 16px;
}

.menu-btn .sub {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}

.menu-btn.outlined {
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.menu-btn.outlined .label {
  color: var(--orange);
}

.menu-btn.outlined .sub {
  color: #000;
}

.menu-btn.filled {
  background: linear-gradient(90deg, #fe9759, #ec711e);
  border: 1px solid #e1e1e1;
  color: #fff;
}

.menu-btn.filled .label {
  color: #fff;
}

.menu-btn.filled .sub {
  color: #fff;
}

@media (min-width: 768px) {
  .cta-block__inner {
    justify-items: center;
  }

  .worry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .target {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .header__actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    height: 712px;
  }

  .hero__bg {
    width: 100%;
    max-width: 1440px;
    height: 712px;
  }

  .cta-block {
    padding: 64px 0;
  }

  .cta-block__inner {
    gap: 32px;
  }

  .cta-main {
    width: 726px;
    max-width: 726px;
    padding: 24px 0;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 200px;
  }

  .cta-main .tag {
    position: absolute;
    left: 25px;
    top: 32px;
    display: flex;
    height: 32px;
    padding: 21px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 200px;
    background: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #fe9759;
  }

  .cta-main .cta-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .cta-main .cta-lines .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
  }

  .cta-main .cta-lines .desc {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
  }

  .cta-main .cta-image {
    position: absolute;
    left: 549px;
    top: -2px;
    transform: none;
    display: flex;
    align-items: flex-start;
    gap: 0;
  }

  .cta-main .cta-image img {
    width: 152px;
    height: auto;
    object-fit: cover;
  }

  .cta-lead {
    font-size: 24px;
    line-height: 32px;
  }

  .cta-secondary {
    width: 726px;
    max-width: 726px;
    padding: 24px 0;
    gap: 8px;
    align-items: center;
  }

  .cta-secondary > .sub {
    font-size: 18px;
    gap: 8px;
    margin-bottom: 0;
  }

  .cta-secondary > .sub .line {
    width: 12px;
  }

  .cta-secondary > .sub .sub-text {
    line-height: 18px;
  }

  .cta-secondary > .title {
    font-size: 32px;
    line-height: 32px;
    margin: 0;
  }

  .cta-secondary::after {
    right: 27px;
    width: 24px;
    height: 48px;
  }

  .cta-note {
    font-size: 12px;
    line-height: 22px;
  }

  .cta-phone {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: auto;
  }

  .cta-phone__lead {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-phone__lead .lead-main {
    font-size: 20px;
    line-height: 24px;
  }

  .cta-phone__lead .lead-sub {
    font-size: 18px;
    line-height: 27px;
  }

  .cta-phone__divider {
    width: 1px;
    height: 56px;
    background: #fff;
  }

  .cta-phone__number {
    gap: 8px;
    pointer-events: none;
    cursor: default;
  }

  .cta-phone__number .numbers {
    gap: 8px;
  }

  .cta-phone__number .tel {
    font-size: 32px;
    line-height: 0;
    gap: 8px;
  }

  .cta-phone__number .tel img {
    width: 29.87px;
    height: 26px;
  }

  .cta-phone__number .time {
    font-size: 16px;
    line-height: 24px;
    text-align: right;
  }

  .worry-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plan-badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .cases {
    grid-template-columns: repeat(2, 1fr);
  }

  .voice {
    padding: 96px 0;
  }

  .voice__inner {
    gap: 48px;
  }

  .voice h2 {
    font-size: 48px;
    line-height: 64px;
  }

  .voice-card {
    gap: 24px;
  }

  .voice-image {
    width: 257px;
    height: 355px;
  }

  .voice-text .lead {
    font-size: 32px;
    line-height: 48px;
  }

  .voice-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer {
    padding: 32px 0 40px;
  }

  .footer__inner {
    gap: 8px;
  }

  .footer-phone {
    flex-direction: row;
    gap: 16px;
  }

  .footer-phone__number {
    flex-direction: row;
    gap: 12px;
  }

  .footer-phone__number .time {
    display: inline;
    margin-left: 8px;
    margin-top: 0;
  }
}

.comparison {
  background: #edfffb;
  padding: 96px 0;
}

.comparison-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  margin-bottom: 48px;
}

.comparison h2 {
  text-align: center;
  color: var(--blue);
  font-size: 48px;
  line-height: 64px;
  margin: 0;
}

.comparison-sub {
  font-size: 18px;
  color: var(--text);
  margin: 0;
}

.comparison-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  background: #fff;
  padding: 0 0 64px;
}

.comparison-image {
  width: 100%;
  max-width: 1100px;
}

.comparison-image img {
  width: 100%;
  height: auto;
  display: block;
}

.free-join {
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.free-join h3 {
  margin: 0 0 24px;
  text-align: center;
  font-size: 32px;
  color: var(--blue);
  font-weight: 700;
  line-height: 48px;
}

.free-join__wrapper {
  position: relative;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  padding-top: 56px;
}

.free-join__wrapper .benefit-head {
  margin-bottom: 56px;
}
.free-join__label {
  position: absolute;
  /* 下にずらして上の "例えば" テキストと被らないようにする */
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.free-join__label.case-label {
  background: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
  align-self: auto;
}

.free-join__label .case-label__line {
  background: #EE9D1D;
  color: #fff;
  padding: 16px 32px;
  border-radius: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -20px;
}

.free-join__label .case-label__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  white-space: nowrap;
}

.free-join__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 30px;
  height: 30px;
  background: #EE9D1D;
  transform: translateX(-50%) rotate(45deg);
}

.free-join__card {
  position: relative;
  padding: 64px 32px 24px;
}


.free-join__illust {
  flex-shrink: 0;
  width: 262px;
}

.free-join__illust img {
  width: 100%;
  height: auto;
  display: block;
}

.free-join__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.free-join__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.free-join__scenario {
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
  margin: 0;
  text-align: center;
}

.free-join__card .case-body {
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
}

.free-join__calc {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 18px;
}

.free-join__calc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.free-join__calc-label {
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.free-join__calc-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--text);
}

.free-join__calc-value span {
  font-size: 40px;
  line-height: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.free-join__calc-item.highlight {
  color: var(--orange);
}

.free-join__calc-item.highlight .free-join__calc-value {
  color: var(--orange);
}

.free-join__calc-item.highlight .free-join__calc-value span {
  font-size: 48px;
  line-height: 48px;
}

.free-join__calc-item.highlight .free-join__calc-label {
  font-weight: 700;
}

.free-join__calc-symbol {
  font-size: 40px;
  font-weight: 400;
  color: var(--text);
  padding-bottom: 9px;
}

.cta-block--second {
  margin-top: 0;
}

.merit {
  background: #fff;
  padding: 96px 0;
}

.merit-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 44px;
}

.merit-heading__deco {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.merit-heading__line {
  height: 18px;
  width: auto;
}

.merit-heading__text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.merit h2 {
  text-align: center;
  color: var(--blue);
  font-size: 48px;
  line-height: 64px;
  margin: 0;
}

.merit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.merit-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.merit-arrow img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.merit-card {
  position: relative;
  background: #fff;
  border: 8px solid var(--blue);
  border-radius: 16px;
  padding: 104px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.merit-card__badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 582px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.merit-card__badge-bg {
  width: 100%;
  height: 100%;
  display: block;
}

.merit-card__badge-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.merit-card__badge-text {
  position: absolute;
  left: 256px;
  top: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 32px;
}

.merit-card__main {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.merit-card__image {
  flex: 0 0 311px;
  height: 240px;
  overflow: hidden;
}

.merit-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merit-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.merit-card__content h3 {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  color: var(--text);
  font-weight: 700;
}

.merit-card__content h3 sup {
  font-size: 50%;
}

.merit-card__content p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text);
}

.merit-card__quote {
  display: flex;
  gap: 24px;
  align-items: center;
}

.merit-card__quote-image {
  flex: 0 0 311px;
  height: 233px;
  overflow: hidden;
}

.merit-card__quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merit-card__quote-text {
  flex: 1;
  background: var(--soft-bg);
  border-radius: 24px;
  padding: 24px;
  position: relative;
}

.merit-card__quote-text::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 23px;
  height: 23px;
  background: var(--soft-bg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.merit-card__quote-text p {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--text);
}

.flow {
  background: var(--soft-bg);
  padding: 96px 0;
}

.flow h2 {
  text-align: center;
  color: var(--blue);
  font-size: 48px;
  line-height: 64px;
  margin-bottom: 48px;
}

.flow-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 912px;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.flow-list::before {
  content: "";
  position: absolute;
  left: 49px;
  top: 96px;
  bottom: 50px;
  width: 1px;
  background: var(--blue);
}

.flow-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.flow-item__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}

.flow-item__step {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.flow-item__num {
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.flow-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-item__content .cta-phone__number .tel {
  color: #363640;
}

.flow-item__content .cta-phone__number .time {
  color: #363640;
}

.flow-item__content .cta-phone__number .tel img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.flow-item .cta-phone__divider {
  background: #363640;
}

.flow-item__content h3 {
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  color: var(--text);
  font-weight: 700;
}

.flow-item__content p {
  margin: 0;
  font-size: 18px;
  /* line-height: 27px; */
  color: var(--text);
}

.flow-item__content .cta-lead {
  font-size: 24px;
}

.cta-secondary-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.cta-secondary-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-secondary-group {
    gap: 10px;
  }
}

.flow-item__content .cta-note {
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.flow-item__cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .cta-lead {
    font-size: 18px;
  }

  .voice {
    padding: 56px 0;
  }

  .voice h2 {
    font-size: 28px;
  }

  .voice-card {
    gap: 24px;
  }

  .voice-image img {
    max-width: 280px;
  }

  .voice-text h3 {
    font-size: 20px;
  }

  .voice-text .lead {
    font-size: 20px;
    line-height: 28px;
  }

  .voice-text p {
    font-size: 14px;
  }

  .comparison {
    padding: 48px 0;
  }

  /* SP: free-join の見出しとラベル間の余白を確保 */
  .free-join__wrapper .benefit-head {
    margin-bottom: 32px;
  }

  .comparison-heading {
    gap: 16px;
    margin-bottom: 48px;
  }

  .comparison h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .comparison-sub {
    font-size: 14px;
    line-height: 22px;
  }

  .comparison-content {
    gap: 56px;
    padding: 0 0 32px;
  }

  .comparison-image {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-image img {
    width: auto;
    min-width: 100%;
    max-width: none;
    height: 540px;
    object-fit: contain;
  }

  .free-join h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .free-join__wrapper {
    padding-top: 24px;
    position: relative;
  }

  .free-join__label {
    position: absolute;
    top: 84px;
    left: calc(50% + 1px);
    transform: translateX(-50%);
    z-index: 1;
    padding-bottom: 20px;
  }

  .free-join__label .case-label__line {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    background: #EE9D1D;
    color: #fff;
    padding: 16px 32px;
    border-radius: 200px;
    margin-bottom: -20px;
  }

  .free-join__label .case-label__title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
  }

  .free-join__label::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -33px;
    width: 28px;
    height: 28px;
    background: #ee9d1d;
    transform: translateX(-50%) rotate(225deg);
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  .free-join__card {
    padding: 48px 16px 24px;
  }

  .free-join__card .case-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .free-join__card .case-illust {
    padding: 12px 56px 0;
  }

  .free-join__content {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .free-join__scenario {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin: 0;
  }

  .free-join__illust {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .free-join__calc {
    gap: 12px;
    justify-content: center;
  }

  .free-join__calc-value span {
    font-size: 32px;
    line-height: 32px;
  }

  .free-join__calc-item.highlight .free-join__calc-value span {
    font-size: 40px;
    line-height: 40px;
  }

  .free-join__calc-symbol {
    font-size: 32px;
  }

  .free-join__card .case-calc {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-end;
  }

  .free-join__card .case-calc__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: auto;
  }

  .free-join__card .case-calc__block .case-calc__label {
    grid-area: auto;
    position: static;
    width: auto;
    align-self: auto;
    white-space: normal;
  }

  .free-join__card .case-calc__block .case-calc__value {
    grid-area: auto;
    position: static;
    width: auto;
    white-space: normal;
  }

  .free-join__card .case-calc__block.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .free-join__card .case-calc__block.highlight .case-calc__label {
    grid-area: auto;
    position: static;
    width: auto;
    margin-top: 0;
  }

  .free-join__card .case-calc__block.highlight .case-calc__value {
    grid-area: auto;
    position: static;
    width: auto;
    margin-top: 0;
  }

  .merit {
    padding: 48px 16px;
  }

  .merit .container {
    padding: 0;
  }

  .merit-heading {
    gap: 16px;
    margin-bottom: 24px;
  }

  .merit-heading__text {
    font-size: 18px;
    line-height: 24px;
  }

  .merit h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .merit-list {
    gap: 32px;
  }

  .merit-arrow {
    margin-top: 40px;
  }

  .merit-arrow img {
    width: 100px;
    height: 36px;
  }

  .merit-card {
    padding: 72px 16px 40px;
    border-width: 8px;
    gap: 24px;
  }

  .merit-card__badge {
    top: 22px;
    left: calc(50% + 0.5px);
    width: 292px;
    height: 76px;
  }

  .merit-card__badge-text {
    left: 111px;
    top: 22px;
    transform: none;
    font-size: 20px;
    line-height: 32px;
  }

  .merit-card__main {
    flex-direction: column;
    gap: 24px;
  }

  .merit-card__image {
    flex: none;
    width: 100%;
    height: 240px;
    margin: 0;
  }

  .merit-card__content {
    gap: 8px;
  }

  .merit-card__content h3 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
    text-align: center;
  }

  .merit-card__content p {
    font-size: 14px;
    line-height: 22px;
  }

  /* SP: merit-card 内の note-text を中央寄せし余白を確保 */
  .merit-card__content .note-text {
    margin-bottom: 16px;
    text-align: center;
  }

  .merit-card__quote {
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
  }

  .merit-card__quote-image {
    flex: none;
    width: 100px;
    height: 75px;
    margin: 0;
  }

  .merit-card__quote-text {
    padding: 24px;
    border-radius: 24px;
    flex: 1;
  }

  .merit-card__quote-text::before {
    left: -12px;
    top: 24px;
    transform: rotate(180deg);
    width: 23px;
    height: 23px;
  }

  .merit-card__quote-text p {
    font-size: 14px;
    line-height: 21px;
  }

  .flow {
    padding: 48px 0;
  }

  .flow .container {
    padding: 0 16px;
  }

  .flow h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 48px;
  }

  .flow-list {
    gap: 48px;
    padding-left: 0;
  }

  .flow-list::before {
    left: 23px;
    top: 40px;
    bottom: auto;
    height: calc(100% - 40px - 81px);
    width: 1px;
  }

  .flow-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
  }

  .flow-item__number {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .flow-item__step {
    font-size: 10px;
    line-height: normal;
  }

  .flow-item__num {
    font-size: 20px;
    line-height: normal;
  }

  .flow-item__content {
    gap: 16px;
    flex: 1;
  }

  .flow-item__content h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .flow-item__content p {
    font-size: 14px;
    line-height: 22px;
  }

  .flow-item__cta {
    gap: 24px;
    margin-top: 0;
  }

  .flow-item__content .cta-main .cta-lines {
    gap: 4px;
  }

  .flow-item__content .cta-main .cta-lines .title {
    font-size: 18px;
    line-height: 24px;
  }

  .flow-item__content .cta-main .cta-lines .desc {
    font-size: 10px;
    line-height: 10px;
  }

  .flow-item__content .cta-lead {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }

  .flow-item__content .cta-secondary .sub .sub-text {
    font-size: 10px;
    line-height: 10px;
  }

  .flow-item__content .cta-secondary .title {
    font-size: 18px;
    line-height: 24px;
  }

  .flow-item__content .cta-note {
    font-size: 10px;
    line-height: 20px;
  }

  .flow-item__content .cta-phone__lead .lead-main {
    font-size: 14px;
    line-height: 14px;
  }

  .flow-item__content .cta-phone__lead .lead-sub {
    font-size: 12px;
    line-height: 12px;
  }

  .flow-item__content .cta-phone__number .tel {
    font-size: 18px;
    line-height: 18px;
  }

  .flow-item__content .cta-phone__number .time {
    font-size: 10px;
    line-height: 20px;
  }

  .faq {
    padding: 48px 16px;
  }

  .faq .container {
    width: 100%;
    padding: 0;
  }

  .faq h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 40px;
  }

  .qa {
    padding: 32px 16px;
    gap: 24px;
  }

  .qa-q {
    gap: 16px;
  }

  .qa-a {
    gap: 16px;
  }

  .qa-badge {
    width: 34px;
    height: 34px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .qa-badge--a {
    height: 34px;
  }

  .qa-text {
    font-size: 20px;
    line-height: 24px;
  }

  .qa-a .qa-text {
    font-size: 14px;
    line-height: 22px;
  }

  .site-footer {
    padding: 40px 0 24px;
  }

  .footer__inner {
    gap: 8px;
  }

  .site-footer .note-text {
    font-size: 12px;
  }

  .footer-links {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-links .sep {
    font-size: 16px;
    line-height: 24px;
  }

  .copy {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (min-width: 768px) {
  .voice-card {
    grid-template-columns: 257px 1fr;
    gap: 24px;
  }

  .voice-image {
    justify-content: flex-start;
  }

  .voice-text h3 {
    text-align: left;
  }

  .comparison-heading {
    gap: 16px;
  }

  .free-join__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .merit-card__main {
    flex-direction: row;
  }

  .merit-card__quote {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .voice {
    padding: 96px 0;
  }

  .voice h2 {
    font-size: 48px;
  }

  .voice-card {
    gap: 24px;
  }

  .voice-text h3 {
    font-size: 16px;
  }

  .voice-text .lead {
    font-size: 32px;
    line-height: 48px;
  }

  .voice-text p {
    font-size: 16px;
  }

  .comparison {
    padding: 96px 0;
  }

  .comparison h2 {
    font-size: 48px;
    line-height: 64px;
  }

  .comparison-content {
    gap: 64px;
  }

  .flow {
    padding: 96px 0;
  }

  .flow h2 {
    font-size: 48px;
    line-height: 64px;
  }

  .flow-list {
    gap: 48px;
  }

  .faq {
    padding: 96px 0;
  }

  .faq h2 {
    font-size: 48px;
    line-height: 64px;
  }
}

@media (max-width: 767px) {
  .faq br {
    display: none;
  }
}
