:root {
  --lp-black: #050505;
  --lp-dark: #2d2d2d;
  --lp-white: #ffffff;
  --lp-text: #111111;
  --lp-text-soft: #222222;
  --lp-red: #A70310;
  --lp-red-deep: #970E0E;
  --lp-blue: #1D3D5E;
  --lp-gold: #ccb966;
  --lp-cream: #F6ECCA;
  --lp-border: rgba(255, 255, 255, 0.72);
  --lp-white-80: rgba(255, 255, 255, 0.8);
  --lp-surface-soft: rgba(255, 255, 255, 0.9);
  --lp-shell: 1200px;
  --lp-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  --lp-banner-shadow: 5px 5px 20px rgba(59, 59, 59, 0.8);
  --lp-gold-gradient: linear-gradient(
    180deg,
    #ccb966 0%,
    #c8be8e 25%,
    #ccb966 50%,
    #a49556 75%,
    #9c8c47 100%
  );
  --lp-highlight-yellow: rgba(233, 211, 45, 0.6);
  --lp-font-base: "Noto Sans JP", sans-serif;
  --lp-font-body: "Noto Sans JP", sans-serif;
  --lp-font-heading: "Noto Sans JP", sans-serif;
  --lp-font-accent: "Source Serif 4", serif;
  --lp-radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lp-text);
  font-family: var(--lp-font-base);
  line-height: 1.75;
  background: var(--lp-white);
}

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

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

a,
button {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.is-sp {
  display: none;
}

.is-pc {
  display: block;
}

@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
  .is-pc {
    display: none;
  }
}

.lp-shell {
  width: min(var(--lp-shell), calc(100% - 48px));
  margin: 0 auto;
}

.lp-main {
  overflow: hidden;
}

.lp-header {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 20;
}

.lp-header__logo {
  display: block;
}

.lp-header__logo img {
  width: 296px;
}

.lp-block-title {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}

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

.lp-block-title--gold {
  color: var(--lp-gold);
  background: var(--lp-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-more-button,
.lp-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 72px;
  border-radius: var(--lp-radius-pill);
  position: relative;
}

.lp-more-button {
  padding: 0 56px;
  background: var(--lp-white);
  color: var(--lp-black);
  font-family: var(--lp-font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.lp-more-button::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/corp/lp/icon-right.svg") center / contain no-repeat;
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.lp-hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 96px;
  background: url("../img/corp/lp/hero-bg.png") center / cover no-repeat;
  color: var(--lp-white);
}

.lp-hero__bg,
.lp-lead__bg,
.lp-cta__bg {
  display: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.lp-hero__title {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.6;
}

.lp-hero__title__small {
  font-size: 42px;
}

.lp-hero__lead {
  display: inline-block;
  margin: 32px 0 0;
  padding: 16px 16px;
  border-top: 1px solid var(--lp-white-80);
  border-bottom: 1px solid var(--lp-white-80);
}

.lp-hero__lead__small {
  font-size: 25.6px;
  padding-inline: 4px;
}

.lp-hero__lead p {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
}

.lp-hero__list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.lp-hero__list li {
  padding-left: 40px;
  position: relative;
  font-family: var(--lp-font-heading);
  font-size: 25.6px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.lp-hero__list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../img/corp/lp/icon-check.svg") center / contain no-repeat;
}

.lp-achievement {
  position: relative;
  isolation: isolate;
  padding: 80px 0;
}

.lp-achievement::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.95) 0%,
    #000 70%,
    #000 100%
  );
  opacity: 0.9;
}

.lp-achievement > .lp-shell {
  position: relative;
  z-index: 1;
}

.lp-achievement__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-achievement-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--lp-white);
}

.lp-achievement-card__label {
  margin: 0;
  padding: 0 16px;
  background: var(--lp-white);
  color: var(--lp-text);
  font-family: var(--lp-font-heading);
  font-size: 25.6px;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
}

.lp-achievement-card__value {
  margin: 0;
  color: #ccb966;
  font-family: var(--lp-font-accent);
  background: var(--lp-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.lp-achievement-card__value span {
  font-size: 128px;
}

.lp-banner {
  display: block;
  margin-top: 80px;
  width: min(1080px, 100%);
  margin-inline: auto;
  box-shadow: var(--lp-banner-shadow);
}

/* =========================================
   MV（メインビジュアル）
   背景＋右側イラストは 1 枚画像。サイズは 1440px ディスプレイ基準の相対値
   ========================================= */
.lp-mv {
  position: relative;
  width: 100%;
  aspect-ratio: 2880 / 1520; /* 背景素材の比率 */
  min-height: 320px;
  background: url("../img/corp/lp/mv_bg.jpg") center / cover no-repeat;
  background-color: #e9edf0; /* 画像読込前のフォールバック */
  overflow: hidden;
}

.lp-mv__inner {
  /* 左側＝テキスト領域。右側イラストに被らないよう幅を制限 */
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  height: 100%;
  /* 上 130px(9.03vw) / 右 0 / 下 4.5% / 左 4.2% */
  padding: 9.03vw 0 4.5% 4.2%;
  display: flex;
  flex-direction: column;
  /* MV は明朝（Zen Old Mincho）で固定。ベースフォント変更の影響を受けない */
  font-family: "Zen Old Mincho", serif;
  color: #2b2f33;
}

/* ---- タイトル（版ずれ込みの SVG） ---- */
.lp-mv__title {
  margin: 0;
  line-height: 0;
}

.lp-mv__title-img {
  display: block;
  width: 65vw; /* 1440px で 936px */
  max-width: 937px; /* SVG 原寸 */
  height: auto;
}

/* ---- リード文 ---- */
.lp-mv__lead {
  margin: 0.7em 0 0;
  font-weight: 700;
  font-size: 2.22vw; /* 1440px で 32px */
  letter-spacing: 0.02em;
}

/* ---- 選ばれる理由（いい場所 × マンション） ---- */
.lp-mv__choice {
  margin: 0.6em 0 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap; /* デザイン同様 1 行に収める */
  gap: 0.35em;
  font-weight: 700;
  font-size: 2.22vw; /* 1440px で 32px */
  white-space: nowrap;
}

.lp-mv__box {
  display: inline-block;
  font-size: 2.96vw; /* 1440px で 42.67px。他より少し大きく */
  padding: 0.28em 0.55em;
  border: 0.07em solid #2b2f33;
  background: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.lp-mv__times {
  font-size: 1.1em;
  margin: 0 0.05em;
}

.lp-mv__tail {
  letter-spacing: 0.02em;
}

/* ---- 実績バッジ（テキスト・数値込みのエンブレム画像） ---- */
.lp-mv__badges {
  margin: 5vw 0 0; /* 上余白 1440px で 72px */
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-end;
  gap: 1.11vw; /* エンブレム間 1440px で 16px */
}

.lp-mv__badge {
  flex: 0 0 auto;
  width: 15.28vw; /* 1440px で 220px */
}

.lp-mv__emblem {
  display: block;
  width: 100%;
  height: auto;
}

.lp-voice {
  padding: 80px 0;
  background: #000000;
}

.lp-voice .lp-block-title,
.lp-case .lp-block-title,
.lp-faq .lp-block-title {
  font-size: 32px;
}

.lp-voice .lp-block-title {
  text-align: left;
}

.lp-voice__slider {
  margin-top: 60px;
}

.lp-voice__track {
  display: flex;
  gap: 32px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.lp-voice-card {
  flex: 0 0 550px;
  display: grid;
  grid-template-columns: 275px 1fr;
  min-height: 340px;
  background: var(--lp-white);
}

.lp-voice-card--ghost {
  opacity: 1;
}

.lp-voice-card picture {
  display: block;
  aspect-ratio: 275 / 340;
}

.lp-voice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-voice-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px;
}

.lp-voice-card__heading {
  margin: 0 0 12px;
  color: #1D3D5E;
  font-family: var(--lp-font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-voice-card__text {
  margin: 0;
  color: var(--lp-text-soft);
  font-family: var(--lp-font-body);
  font-size: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.lp-voice-card__link {
  margin-top: 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 4px;
  border-bottom: 1px solid var(--lp-text);
  font-size: 14.222px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-voice-card__link::after {
  content: "";
  width: 4px;
  height: 8px;
  background: url("../img/corp/lp/icon-arrow.svg") center / contain no-repeat;
}

.lp-voice__controls {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.lp-voice__controls .lp-more-button {
  font-size: 18.29px;
}

.lp-voice__arrows {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  gap: 22px;
  transform: translateY(-50%);
}

.lp-voice__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--lp-white);
  cursor: pointer;
}

.lp-voice__arrow img {
  width: 12px;
  height: 12px;
}

.lp-voice__arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.lp-voice__profile {
  display: grid;
  grid-template-columns: 440px 1fr;
  align-items: center;
  gap: 64px;
  margin-top: 88px;
  padding: 80px 80px;
  border: 1px solid var(--lp-white);
}

.lp-voice__graph {
  align-self: center;
}

.lp-voice__profile-content h3 {
  margin: 0 0 16px;
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-voice__profile-content > p {
  margin: 0 0 40px;
  color: var(--lp-white);
  font-size: 18.29px;
  line-height: 1.5;
  text-indent: 8px;
}

.lp-voice__profile-box {
  background: var(--lp-white);
  padding: 40px 40px;
}

.lp-voice__profile-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-voice__profile-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18.29px;
  line-height: 1.5;
}

.lp-voice__profile-list__label,
.lp-voice__profile-list__label + strong {
  font-weight: 500;
}

.lp-voice__profile-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-voice__profile-list__label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
}

.lp-voice__profile-list__label--primary::before {background-color: #1D3D5E;}
.lp-voice__profile-list__label--secondary::before {background-color: #B8D0ED;}
.lp-voice__profile-list__label--tertiary::before {background-color: #7B9098;}
.lp-voice__profile-list__label--quaternary::before {background-color: #87B5C7;}


.lp-lead {
  position: relative;
  padding: 160px 0 460px;
  background: url("../img/corp/lp/lead-bg.jpg") center / cover no-repeat;
  color: var(--lp-white);
  text-align: center;
}

.lp-lead__inner {
  position: relative;
  z-index: 1;
}

.lp-lead__heading {
  display: grid;
  justify-content: center;
  gap: 24px;
}

.lp-lead__heading-frame {
  display: inline-block;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 32px;
  background: var(--lp-red-deep);
  font-family: var(--lp-font-heading);
  font-size: 42.67px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-lead__heading-frame__small {
  font-size: 32px;
}

.lp-lead__text {
  margin: 40px 0 0;
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

.lp-comparison {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.93);
}

.lp-compare-section {
  padding: 80px 60px;
  border: 1px solid var(--lp-white);
  background: rgba(255, 255, 255, 0.1);
}

.lp-compare-section + .lp-compare-section {
  margin-top: 40px;
}

.lp-compare-section__header {
  margin-bottom: 40px;
  text-align: center;
}

.lp-compare-section__header h2 {
  margin: 0;
  color: var(--lp-gold);
  background: var(--lp-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-compare-section__header p {
  margin: 24px 0 0;
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 21.33px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

.lp-compare-card h3 {
  width: fit-content;
  margin: -28px auto 0;
  padding: 4px 16px;
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.lp-compare-card--good h3 {
  background: var(--lp-red);
}

.lp-compare-card--caution h3 {
  background: var(--lp-blue);
}

.lp-compare-list {
  min-height: 208px;
  margin: 24px 0 32px;
  padding: 0 32px;
  list-style: none;
  text-align: left;
}

.lp-compare-list li {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 48px;
  color: #333333;
  font-family: var(--lp-font-body);
  font-size: 21.33px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 40px;
}

.lp-compare-list li + li {
  margin-top: 16px;
}

.lp-compare-list--good li::before,
.lp-compare-list--caution li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
}

.lp-compare-list--good li::before {
  background: url("../img/corp/lp/icon-circle-check.svg") center / contain no-repeat;
}

.lp-compare-list--caution li::before {
  background: url("../img/corp/lp/icon-caution.svg") center / contain no-repeat;
}

.lp-compare-card__note {
  margin: -8px 32px 32px;
  padding: 24px 16px;
  color: var(--lp-white);
  font-family: var(--lp-font-body);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.lp-compare-card__note__small {
  font-size: 21.33px;
}

.lp-compare-card__note--good {
  background: var(--lp-red);
}

.lp-compare-card__note--caution {
  background: var(--lp-blue);
}

.lp-compare-emphasis {
  display: grid;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}

.lp-compare-emphasis p {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 32px;
  background: var(--lp-white);
  color: var(--lp-text);
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}

.lp-compare-emphasis strong {
  color: var(--lp-red);
  font-weight: 500;
}

.lp-design {
  position: relative;
  padding: 80px 0;
  margin-bottom: 156px;
  background: var(--lp-cream);
}

.lp-design::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -155px;
  width: 100%;
  height: 156px;
  background: var(--lp-cream);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.lp-design__heading {
  text-align: center;
}

.lp-design__heading p,
.lp-design__heading h2 {
  margin: 0;
  font-family: var(--lp-font-heading);
  color: var(--lp-text);
}

.lp-design__heading p {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-design__heading h2 {
  margin-top: 12px;
  font-size: 42.67px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-design__risk-list__dots {
  display: inline-flex;
  gap: 0.08em;
}

.lp-design__risk-list__dots span {
  position: relative;
  display: inline-block;
}

.lp-design__risk-list__dots span::before {
  content: "";
  position: absolute;
  top: -2px;
  left: calc(50% - 2px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a70310;
  transform: translateX(-50%);
}

.lp-design__risk-list {
  display: grid;
  grid-template-columns: repeat(4, 240px);
  justify-content: center;
  gap: 16px;
  margin: 40px auto 0;
  padding: 8px 0;
  list-style: none;
}

.lp-design__risk-list li {
  padding: 16px 16px;
  background: #333;
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 21.33px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}

.lp-design__message {
  margin-top: 52px;
  text-align: center;
}

.lp-design__message p {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}

.lp-design__message strong {
  padding: 0;
  font-size: 42.67px;
  color: var(--lp-red);
  background: linear-gradient(transparent 70%, var(--lp-highlight-yellow) 70%);
  font-weight: 700;
}

.lp-design__image {
  width: 611px;
  margin: 80px auto 0;
}

.lp-support {
  padding: 80px 0;
  background: var(--lp-white);
}

.lp-support__title h2 {
  width: fit-content;
  margin: 0 auto 80px;
  padding: 8px 32px;
  background: var(--lp-red-deep);
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 42.67px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}

.lp-support-section + .lp-support-section {
  margin-top: 80px;
}

.lp-support-section--selection {
  display: grid;
  grid-template-columns: 952px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 0;
}

.lp-support-section--selection::before {
  content: "";
  position: absolute;
  top: 0;
  right: 320px;
  width: 1000px;
  height: 460px;
  background: url("../img/corp/lp/support01-image.jpg") center / cover no-repeat;
  z-index: -1;
}

.lp-support-section__selection-image {
  display: none;
}

.lp-support-section__visual {
  position: relative;
}

.lp-support-section__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 120px 0;
}

.lp-support-icon-card {
  min-height: 220px;
  padding: 28px 20px 22px;
  border: 1px solid #444444;
  background: var(--lp-white);
  text-align: center;
}

.lp-support-icon-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.lp-support-icon-card p {
  margin: 0;
  font-size: 21.33px;
  font-weight: 600;
  line-height: 1.5;
  font-family: var(--lp-font-body);
}

.lp-support-section__side {
  position: relative;
  height: 100%;
  text-align: right;
}

.lp-support-section__number {
  color: rgba(29, 61, 94, 0.1);
  font-family: var(--lp-font-accent);
  font-size: 128px;
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
}

.lp-support-section__side h3 {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 56px;
  right: 80px;
  text-align: left;
}

.lp-support-section__heading {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.lp-support-section__heading h3 {
  margin: 0;
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-support-section__heading p {
  margin: 16px 0 0;
  font-size: 21.33px;
  line-height: 1.5;
  font-weight: 500;
}

.lp-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 80px;
}

.lp-support-card h4 {
  margin: 16px 0;
  font-family: var(--lp-font-heading);
  font-size: 25.6px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.lp-support-card p {
  margin: 0;
  font-family: var(--lp-font-body);
  font-size: 16px;
  line-height: 1.8;
}

.lp-support-insurance {
  position: relative;
}

.lp-support-insurance__wide {
  position: relative;
  height: 488px;
  margin-bottom: 40px;
}

.lp-support-insurance__wide img {
  width: 1080px;
  position: absolute;
  top: 0;
  right: 240px;
  object-fit: cover;
}

.lp-support-insurance__content {
  width: 760px;
  margin-top: 42px;
}

.lp-support-insurance__content p {
  margin: 0;
  font-family: var(--lp-font-body);
  font-size: 16px;
  line-height: 2;
}

.lp-support-insurance__content p + p {
  margin-top: 24px;
}

.lp-support-insurance__side {
  position: absolute;
  right: 0;
  top: 320px;
  width: 320px;
}

.lp-banner-section {
  padding: 40px 0 80px;
  /* 上から下へ：黒 80% → 黒 100%（不透明度） */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

.lp-banner-section .lp-banner {
  margin-top: 0;
}
.lp-case {
  padding: 80px 0;
  background: #000000;
}

.lp-case__lead {
  margin: 24px 0 40px;
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 21.33px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.lp-case__gallery {
  margin-bottom: 80px;
}

.lp-faq__list {
  width: 800px;
  margin: 40px auto 0;
}

.lp-faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

.lp-faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.lp-faq-item summary {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 24px 54px 24px 16px;
  color: var(--lp-white);
  font-size: 21.33px;
  font-weight: 500;
  line-height: 1.5;
  list-style: none;
  cursor: pointer;
}

.lp-faq-item__label {
  flex: none;
  font-family: var(--lp-font-accent);
  font-size: 21.33px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-faq-item__text {
  font-family: var(--lp-font-heading);
  font-size: 18.29px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 16px;
  height: 16px;
  background: url("../img/corp/lp/icon-down.svg") center / contain no-repeat;
  transform: translateY(-50%);
  transition: transform 0.32s ease;
}

.lp-faq-item.is-open summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.lp-faq-item__answer {
  padding: 0 54px 24px 16px;
  overflow: hidden;
  opacity: 0;
}

.lp-faq-item__answer p {
  display: flex;
  gap: 24px;
  margin: 0;
  color: var(--lp-white);
  font-size: 18.29px;
  font-weight: 700;
  line-height: 1.9;
}

.lp-faq-item.is-open .lp-faq-item__answer {
  opacity: 1;
}

.lp-faq .lp-more-button {
  display: flex;
  margin: 40px auto 0;
  font-size: 18.29px;
}

.lp-cta {
  position: relative;
  padding: 80px 0;
  background: url("../img/corp/lp/cta-bg.jpg") center / cover no-repeat;
}

.lp-cta > .lp-shell {
  position: relative;
  z-index: 1;
}

.lp-cta__panel {
  position: relative;
  padding: 80px 80px;
  background: var(--lp-surface-soft);
}

.lp-cta__copy {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.lp-cta__headline-group {
  display: grid;
  justify-content: center;
  gap: 16px;
}

.lp-cta__headline {
  width: fit-content;
  margin: 0 auto;
  padding: 8px 32px;
  background: var(--lp-red-deep);
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.lp-cta__lead {
  margin: 24px 0 0;
  font-family: var(--lp-font-heading);
  font-size: 21.33px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-cta__list {
  display: grid;
  justify-content: center;
  gap: 8px;
  margin: 32px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.lp-cta__list li {
  padding-left: 48px;
  position: relative;
  color: var(--lp-text);
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-cta__list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 40px;
  height: 40px;
  background: url("../img/corp/lp/icon-circle-check.svg") center / contain no-repeat;
}

.lp-cta__note {
  margin: 32px 0 0;
  font-family: var(--lp-font-heading);
  font-size: 18.29px;
  font-weight: 500;
  line-height: 1.5;
}

.lp-cta__button {
  margin-top: 8px;
  background: var(--lp-gold-gradient);
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-size: 25.6px;
  font-weight: 500;
  line-height: 1;
}

.lp-cta__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: url("../img/corp/lp/icon-right.svg") center / contain no-repeat;
  mask: url("../img/corp/lp/icon-right.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

.lp-cta__tel {
  width: 420px;
  margin: 45px auto 0;
  padding-block: 16px;
  border-block: 1px solid #000000;
}

.lp-cta__tel p {
  margin: 0 0 8px;
  font-family: var(--lp-font-heading);
  font-size: 21.33px;
  font-weight: 700;
  line-height: 1.5;
}

.lp-cta__tel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-cta__tel img {
  width: 69px;
}

.lp-cta__tel span {
  font-family: var(--lp-font-accent);
  font-size: 42.67px;
  font-weight: 400;
  line-height: 1.5;
}

.lp-cta__person {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.lp-cta__person--left {
  left: -90px;
  width: 349px;
}

.lp-cta__person--right {
  right: -92px;
  width: 381px;
}

.lp-footer {
  padding: 24px 24px;
  background: #000000;
  color: var(--lp-white);
  text-align: center;
}

.lp-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #dcdcdc;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.lp-pagetop img {
  width: 16px;
  height: 16px;
}

.lp-footer small {
  font-family: var(--lp-font-accent);
  font-size: 12.8px;
  line-height: 1.5;
}

@media (hover: hover) {
  .lp-header__logo:hover,
  .lp-cta__tel a:hover,
  .lp-voice-card__link:hover,
  .lp-more-button:hover,
  .lp-pagetop:hover {
    opacity: 0.75;
  }

  .lp-banner:hover {
    box-shadow: 12px 12px 36px rgba(59, 59, 59, 0.9);
  }

  .lp-cta__button:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 767px) {
  .lp-shell {
    width: min(var(--lp-shell), calc(100% - 48px));
  }

  .lp-header {
    top: 8px;
    left: 16px;
  }

  .lp-header__logo img {
    width: 196px;
  }

  .lp-block-title {
    font-size: 25.6px;
    line-height: 1.5;
  }

  .lp-more-button {
    width: 100%;
    height: auto;
    min-width: 0;
    padding: 24px 48px 24px 32px;
    font-size: 16px;
  }

  .lp-more-button::after {
    right: 28px;
    width: 10px;
    height: 10px;
  }

  .lp-hero,
  .lp-lead,
  .lp-cta {
    background: none;
  }

  .lp-hero__bg,
  .lp-lead__bg,
  .lp-cta__bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .lp-hero__bg img,
  .lp-lead__bg img,
  .lp-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lp-hero {
    width: 100%;
    min-height: auto;
    aspect-ratio: 375 / 658;
    padding: 92px 0 0;
  }

  .lp-hero__inner {
    align-items: flex-start;
  }

  .lp-hero__content {
    width: 100%;
    max-width: 310px;
  }

  .lp-hero__title {
    font-size: 21.33px;
    line-height: 1.6;
  }

  .lp-hero__title__small {
    font-size: 16px;
  }

  .lp-hero__lead {
    margin-top: 14px;
    padding: 8px 4px;
  }

  .lp-hero__lead p {
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-hero__lead__small {
    font-size: 12.8px;
  }

  .lp-hero__list {
    gap: 8px;
    margin-top: 18px;
  }

  .lp-hero__list li {
    padding-left: 18px;
    font-size: 12.8px;
    line-height: 1.5;
  }

  .lp-hero__list li::before {
    top: 4px;
    width: 11px;
    height: 11px;
  }

  .lp-achievement {
    padding: 40px 0;
  }

  .lp-achievement__stats,
  .lp-voice__profile,
  .lp-compare-grid,
  .lp-support-grid {
    grid-template-columns: 1fr;
  }

  .lp-achievement__stats {
    gap: 16px;
  }

  .lp-achievement-card {
    width: 280px;
    margin: 0 auto;
    padding: 12px;
  }

  .lp-achievement-card__label {
    padding-inline: 12px;
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-achievement-card__value {
    font-size: 16px;
  }

  .lp-achievement-card__value span {
    font-size: 64px;
  }

  .lp-banner {
    width: 100%;
    margin-top: 40px;
    box-shadow: 4px 4px 16px rgba(59, 59, 59, 0.8);
  }

  .lp-voice {
    padding: 40px 0;
  }

  .lp-voice .lp-block-title {
    font-size: 21.33px;
    line-height: 1.5;
    text-align: center;
  }

  .lp-voice__slider {
    margin-top: 32px;
    overflow: visible;
  }

  .lp-voice__viewport {
    width: min(300px, calc(100vw - 75px));
    margin: 0 auto;
    overflow: visible;
  }

  .lp-voice__track {
    gap: 24px;
  }

  .lp-voice-card {
    flex: 0 0 min(300px, calc(100vw - 75px));
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .lp-voice-card--ghost {
    display: none;
  }

  .lp-voice-card picture,
  .lp-voice-card img {
    display: block;
    width: 100%;
  }

  .lp-voice-card__body {
    padding: 16px 16px;
  }

  .lp-voice-card__text {
    font-size: 14.22px;
    line-height: 1.8;
  }

  .lp-voice-card__link {
    margin-top: 16px;
    align-self: center;
    line-height: 1.5;
  }

  .lp-voice__controls {
    display: block;
    margin-top: 40px;
  }

  .lp-voice__controls .lp-more-button {
    height: auto;
    font-size: 16px;
    margin-bottom: 40px;
    padding-block: 24px;
  }

  .lp-voice__arrows {
    position: static;
    justify-content: center;
    transform: none;
    gap: 16px;
  }

  .lp-voice__arrow {
    width: 40px;
    height: 40px;
  }

  .lp-voice__profile {
    gap: 32px;
    margin-top: 40px;
    padding: 24px;
  }

  .lp-voice__graph {
    width: 100%;
    margin: 0 auto;
  }

  .lp-voice__profile-content h3 {
    font-size: 18.29px;
    line-height: 1.5;
    text-align: center;
  }

  .lp-voice__profile-content > p {
    margin-bottom: 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-indent: 0;
    text-align: center;
  }

  .lp-voice__profile-box {
    padding: 16px 16px;
  }

  .lp-voice__profile-list li,
  .lp-voice__profile-list strong {
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-voice__profile-list__label::before {
    width: 16px;
    height: 16px;
  }

  .lp-lead {
    padding: 64px 0;
    width: 100%;
    aspect-ratio: 375 / 463;
  }

  .lp-lead__heading {
    gap: 16px;
  }

  .lp-lead__heading-frame {
    padding: 0;
    background: none;
    display: grid;
    gap: 16px;
  }
  .lp-lead__heading-frame--sp {
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 4px 8px;
    font-size: 21.33px;
    line-height: 1.5;
    background: var(--lp-red-deep);
    font-family: var(--lp-font-heading);
  }

  .lp-lead__heading-frame__small {
    font-size: 18.29px;
  }

  .lp-lead__text {
    margin-top: 28px;
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-comparison {
    padding: 40px 0;
  }

  .lp-compare-section {
    padding: 24px 16px;
  }

  .lp-compare-section + .lp-compare-section {
    margin-top: 24px;
  }

  .lp-compare-section__header {
    margin-bottom: 24px;
  }

  .lp-compare-section__header h2 {
    font-size: 21.33px;
    line-height: 1.5;
  }

  .lp-compare-section__header p {
    margin-top: 16px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-compare-grid {
    gap: 24px;
  }

  .lp-compare-card h3 {
    margin-top: -16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-compare-list {
    min-height: 0;
    margin: 16px 0 24px;
    padding-inline: 16px;
  }

  .lp-compare-list li {
    min-height: 0;
    padding-left: 18px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-compare-list--good li::before,
  .lp-compare-list--caution li::before {
    width: 16px;
    height: 16px;
    top: 2px;
  }

  .lp-compare-card {
    text-align: center;
  }

  .lp-compare-card__note {
    display: inline-block;
    margin: 0 16px 16px;
    padding: 8px;
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-compare-card__note__small {
    font-size: 12.8px;
    line-height: 1.5;
  }

  .lp-compare-emphasis {
    gap: 12px;
    margin-top: 32px;
  }

  .lp-compare-emphasis {
    display: block;
    padding: 8px;
    background: var(--lp-white);
  }

  .lp-compare-emphasis p {
    width: 100%;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-compare-emphasis p strong {
    display: block;
    font-size: 18.29px;
  }

  .lp-design {
    padding: 40px 0;
    margin-bottom: 48px;
  }

  .lp-design::after {
    bottom: -48px;
    height: 48px;
  }

  .lp-design__heading p {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-design__heading h2 {
    margin-top: 8px;
    font-size: 21.33px;
    line-height: 1.5;
  }

  .lp-design__risk-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin-top: 16px;
  }

  .lp-design__risk-list li {
    padding: 10px 8px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-design__risk-list__dots span::before {
    width: 6px;
    height: 6px;
    left: 50%;
  }

  .lp-design__message {
    margin-top: 16px;
  }

  .lp-design__message p {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-design__message strong {
    font-size: 21.33px;
  }

  .lp-design__image {
    width: 261px;
    margin-top: 40px;
  }

  .lp-support {
    padding: 40px 0;
  }

  .lp-support__title h2 {
    width: 100%;
    margin-bottom: 40px;
    padding: 8px 16px;
    font-size: 25.6px;
    line-height: 1.5;
  }

  .lp-support-section + .lp-support-section {
    margin-top: 56px;
  }

  .lp-support-section--selection {
    display: flex;
    flex-direction: column;
  }

  .lp-support-section--selection::before {
    display: none;
  }

  .lp-support-section__selection-image {
    position: absolute;
    top:24px;
    left: -24px;
    display: block;
    width: 100vw;
    z-index: -1;
  }

  .lp-support-section__selection-image img {
    height: 280px;
  }

  .lp-support-section__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
  }

  .lp-support-icon-card {
    min-width: 156px;
    min-height: 156px;
    padding: 21px 8px;
  }

  .lp-support-icon-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }

  .lp-support-icon-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-support-section__side,
  .lp-support-section__heading,
  .lp-support-insurance__heading {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .lp-support-section__side {
    text-align: left;
    order: 1;
  }

  .lp-support-section__visual {
    order: 2;
    position: relative;
    z-index: 0;
  }

  .lp-support-section__number {
    display: block;
    font-size: 64px;
    line-height: 0.9;
  }

  .lp-support-section__side h3 {
    position: static;
    margin-top: 4px;
    font-size: 18.29px;
    line-height: 1.5;
    writing-mode: horizontal-tb;
  }

  .lp-support-section__heading {
    margin-bottom: 24px;
  }

  .lp-support-section__heading h3 {
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-support-section__heading p {
    margin-top: 10px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-support-grid {
    gap: 40px;
  }

  .lp-support-card h4 {
    margin: 20px 0 12px;
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-support-card p,
  .lp-support-insurance__content p {
    font-size: 14.22px;
    line-height: 1.8;
  }

  .lp-support-insurance {
    display: flex;
    flex-direction: column;
  }

  .lp-support-insurance__wide {
    height: auto;
    margin-bottom: 24px;
    order: 2;
  }

  .lp-support-insurance__wide img {
    position: relative;
    top: 0;
    right: inherit;
  }
  
  .lp-support-insurance__section-heading {
    order: 1;
  }

  .lp-support-insurance__wide img,
  .lp-support-insurance__content,
  .lp-faq__list,
  .lp-cta__copy,
  .lp-cta__list,
  .lp-cta__tel {
    width: 100%;
  }

  .lp-support-insurance__content {
    margin-top: 0;
    order: 3;
  }

  .lp-support-insurance__content p + p {
    margin-top: 16px;
  }

  .lp-support-insurance__side {
    display: none;
  }

  .lp-banner-section {
    padding: 24px 0 40px;
  }

  .lp-case {
    padding: 40px 0;
  }

  .lp-case .lp-block-title {
    font-size: 25.6px;
  }

  .lp-case__lead {
    margin: 20px auto 32px;
    width: 327px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-case__gallery {
    padding-inline: 24px;
    margin-bottom: 40px;
  }

  .lp-faq .lp-block-title {
    font-size: 18.29px;
  }

  .lp-faq__list {
    margin-top: 32px;
  }

  .lp-faq-item summary {
    gap: 16px;
    padding: 18px 38px 18px 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-faq-item__label,
  .lp-faq-item__text {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-faq-item summary::after {
    right: 0;
    width: 14px;
    height: 14px;
  }

  .lp-faq-item__answer {
    padding: 0 0 18px 0;
  }

  .lp-faq-item__answer p {
    gap: 16px;
    font-size: 16px;
    line-height: 1.8;
  }

  .lp-faq .lp-more-button {
    margin-top: 32px;
    font-size: 16px;
  }

  .lp-cta {
    padding: 24px 0;
  }

  .lp-cta__panel {
    min-height: auto;
    padding: 40px 24px 40px;
  }

  .lp-cta__headline-group {
    display: block;
    gap: 12px;
  }

  .lp-cta__headline {
    width: 100%;
    padding: 10px 12px;
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-cta__headline:first-child {
    padding-right: 12px;
  }

  .lp-cta__lead {
    margin-top: 24px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-cta__list {
    gap: 8px;
    margin-top: 28px;
  }

  .lp-cta__list li {
    padding-left: 34px;
    font-size: 18.29px;
    line-height: 1.5;
  }

  .lp-cta__list li::before {
    top: 2px;
    width: 22px;
    height: 22px;
  }

  .lp-cta__note {
    margin-top: 32px;
    font-size: 14.22px;
    line-height: 1.5;
  }

  .lp-cta__button {
    width: 100%;
    height: 64px;
    font-size: 18.29px;
  }

  .lp-cta__tel {
    margin-top: 32px;
    padding-block: 16px;
  }

  .lp-cta__tel p {
    font-size: 16px;
    line-height: 1.5;
  }

  .lp-cta__tel img {
    width: 48px;
  }

  .lp-cta__tel span {
    font-size: 32px;
    line-height: 1.5;
  }

  .lp-cta__person {
    display: none;
  }

  .lp-pagetop {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .lp-pagetop img {
    width: 14px;
    height: 14px;
  }
}

/* =========================================
   MV（メインビジュアル） SP
   ========================================= */
@media (max-width: 767px) {
  .lp-mv {
    aspect-ratio: auto;
    min-height: 0;
    background-image: url("../img/corp/lp/mv_bg_sp.jpg");
    background-position: top center;
    background-size: cover;
  }

  .lp-mv__inner {
    position: static;
    width: 100%;
    padding-inline: 16px;
    padding-top: 64px;
  }

  .lp-mv__title-img {
    width: 100%;
    max-width: none;
  }

  .lp-mv__lead {
    font-size: 5vw;
  }

  .lp-mv__choice {
    flex-wrap: wrap;
    margin-top: 1rem;
    gap: 1rem 0.5rem;
    white-space: normal;
  }

  .lp-mv__times {
    font-size: 4.5vw;
  }

  .lp-mv__box {
    font-size: 4.5vw;
  }

  .lp-mv__tail {
    width: 100%;
    font-size: 5vw;
  }

  .lp-mv__badges {
    gap: 16px;
    margin-top: 45vw;
  }

  .lp-mv__badge {
    width: calc(100% / 3 - (16px * 2 / 3));
  }
}
