/* =========================
   support page
========================= */

.support-main {
  background: #ffffff;
}

/* =========================
   support fv
========================= */

.support-fv {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: calc(var(--header-height) + 96px) 0 104px;
  background: url("../images/support-fv-bg-pc.png") no-repeat center center / cover;
}

/* 文字の可読性用の白グラデ */
.support-fv::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.78) 30%,
      rgba(255, 255, 255, 0.48) 50%,
      rgba(255, 255, 255, 0.16) 66%,
      rgba(255, 255, 255, 0.00) 80%
    );
  pointer-events: none;
}

/* 半透明の面ウェーブ */
.support-fv::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-40 0H1640V250C1484 182 1320 170 1148 210C980 248 824 336 646 334C474 332 342 266 192 202C110 166 38 148 -40 146V0Z' fill='%23dce9ff' fill-opacity='0.34'/%3E%3Cpath d='M-60 0H1660V360C1484 308 1308 308 1122 354C934 400 774 490 586 490C406 490 270 430 124 372C46 342 -8 332 -60 332V0Z' fill='%23cfe2ff' fill-opacity='0.24'/%3E%3Cpath d='M-80 0H1660V520C1482 474 1302 494 1100 554C900 614 724 722 520 736C344 748 194 712 54 666C-4 646 -48 636 -80 636V0Z' fill='%23eef5ff' fill-opacity='0.58'/%3E%3Cpath d='M-60 210C104 148 260 144 432 188C592 228 760 316 948 314C1120 312 1264 250 1418 186C1508 150 1580 132 1648 132' stroke='white' stroke-opacity='0.62' stroke-width='2'/%3E%3Cpath d='M-72 482C96 438 284 456 480 514C684 574 860 678 1068 690C1242 700 1392 668 1530 624C1592 604 1632 594 1660 594' stroke='white' stroke-opacity='0.42' stroke-width='2'/%3E%3C/svg%3E") no-repeat center top / cover;
  opacity: 0.9;
  pointer-events: none;
}

.support-fv-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.support-fv-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 62%);
  padding-top: 96px;
}

.support-fv-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 3.3vw, 60px);
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.92),
    0 8px 24px rgba(255, 255, 255, 0.92),
    0 16px 48px rgba(255, 255, 255, 0.82);
}

.support-fv-title span {
  color: var(--blue-2);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.support-fv-lead {
  margin: 30px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0.03em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94),
    0 6px 18px rgba(255, 255, 255, 0.88),
    0 12px 34px rgba(255, 255, 255, 0.72);
}

/* =========================
   support area
========================= */

.support-area-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(2, 83, 253, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.support-area-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.support-area-heading {
  text-align: center;
}

.support-area-heading .section-label {
  color: #b8d3ff;
}

.support-area-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.support-area-title::after {
  display: block;
  width: 74px;
  height: 5px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue-2), rgba(2, 83, 253, 0.18));
  border-radius: 999px;
}

.support-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 68px;
}

.support-area-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 42px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid rgba(215, 229, 255, 0.95);
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0, 60, 216, 0.08);
}

.support-area-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 38%,
      rgba(255, 255, 255, 0.58) 68%,
      rgba(255, 255, 255, 0.18) 100%
    );
  pointer-events: none;
}

.support-area-card::after {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 190px;
  height: 190px;
  content: "";
  background: rgba(2, 83, 253, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.support-area-card-01 {
  background-image: url("../images/support-area-bg-01.png");
}

.support-area-card-02 {
  background-image: url("../images/support-area-bg-02.png");
}

.support-area-card-03 {
  background-image: url("../images/support-area-bg-03.png");
}

.support-area-card-04 {
  background-image: url("../images/support-area-bg-04.png");
}

.support-area-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: #ffffff;
  background: var(--blue-2);
  border-radius: 50%;
  font-family: Inter, "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(2, 83, 253, 0.18);
}

.support-area-copy {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.support-area-card h3 {
  margin: 0;
  color: var(--blue-2);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.support-area-card p {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.02em;
}

/* =========================
   stance
========================= */

.stance-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:
    linear-gradient(
        180deg,
        rgba(247, 251, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.88) 100%
    ),
    url("../images/support-stance-bg.png") no-repeat center center / cover;
}

.stance-section::before {
  position: absolute;
  top: 82px;
  right: 8%;
  width: 126px;
  height: 126px;
  content: "";
  background-image: radial-gradient(rgba(2, 83, 253, 0.14) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.2;
  pointer-events: none;
}

.stance-section::after {
  position: absolute;
  left: -180px;
  bottom: -160px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(2, 83, 253, 0.07), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.stance-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.stance-heading {
  text-align: center;
}

.stance-heading .section-label {
  color: #b8d3ff;
}

.stance-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.stance-title::after {
  display: block;
  width: 74px;
  height: 5px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue-2), rgba(2, 83, 253, 0.18));
  border-radius: 999px;
}

.stance-list {
  max-width: 1040px;
  margin: 68px auto 0;
  padding: 48px 54px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 42px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 229, 255, 0.95);
  border-radius: 32px;
  box-shadow: 0 22px 52px rgba(0, 60, 216, 0.07);
}

.stance-list li {
  position: relative;
  padding: 0 0 0 38px;
  color: var(--navy);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.stance-list li::before {
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 22px;
  height: 22px;
  content: "";
  background: rgba(2, 83, 253, 0.1);
  border: 1px solid rgba(2, 83, 253, 0.24);
  border-radius: 50%;
}

.stance-list li::after {
  position: absolute;
  left: 7px;
  top: calc(0.36em + 7px);
  width: 8px;
  height: 5px;
  content: "";
  border-left: 2px solid var(--blue-2);
  border-bottom: 2px solid var(--blue-2);
  transform: rotate(-45deg);
}

.stance-list li:last-child {
  grid-column: 1 / -1;
}

.stance-message {
  max-width: 920px;
  margin: 68px auto 0;
  text-align: center;
}

.stance-message p {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.stance-message p + p {
  margin-top: 20px;
}

.stance-message .text-blue {
  color: var(--blue-2);
  font-weight: 900;
}

.stance-message .text-emphasis {
  color: var(--navy);
  font-weight: 900;
  background-image: linear-gradient(
    transparent 68%,
    rgba(255, 220, 40, 0.46) 68%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* =========================
   recommended
========================= */

.recommended-section {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
  background:#EFF5FF;
}

.recommended-section::before {
  position: absolute;
  top: 90px;
  left: 7%;
  width: 126px;
  height: 126px;
  content: "";
  background-image: radial-gradient(rgba(2, 83, 253, 0.14) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.16;
  pointer-events: none;
}

.recommended-section::after {
  position: absolute;
  right: -180px;
  top: 180px;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(2, 83, 253, 0.08), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.recommended-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.recommended-heading {
  text-align: center;
}

.recommended-heading .section-label {
  color: #8fb8ff;
}

.recommended-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.recommended-title::after {
  display: block;
  width: 74px;
  height: 5px;
  margin: 24px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue-2), rgba(2, 83, 253, 0.18));
  border-radius: 999px;
}

.recommended-visual {
  position: relative;
  width: min(320px, 54vw);
  margin: 56px auto 0;
}

.recommended-visual::before {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: -1;
  width: 390px;
  height: 270px;
  content: "";
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(215, 229, 255, 0.8);
  border-radius: 50%;
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.recommended-visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 60, 216, 0.08));
}

.recommended-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-top: 68px;
}

.recommended-visual {
  position: relative;
  width: min(320px, 54vw);
  margin: 58px auto 0;
}

.recommended-card {
  position: relative;
  grid-column: span 2;
  min-height: 136px;
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 215, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(0, 60, 216, 0.06);
}

.recommended-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.recommended-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.recommended-card::before {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 20px;
  content: "";
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(190, 215, 255, 0.95);
  border-bottom: 1px solid rgba(190, 215, 255, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.recommended-card p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.recommended-message {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: center;
}

.recommended-message p {
  margin: 0;
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

/* =========================
   support contact
========================= */

.support-contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
}

.support-contact-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.support-contact-section::after {
  position: absolute;
  left: -160px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.support-contact-inner {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.support-contact-section .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.support-contact-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.support-contact-text {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.support-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  margin-top: 42px;
  padding: 0 34px;
  color: var(--blue-2);
  background: #ffffff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.support-contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}


@media (max-width: 960px) {
  .support-fv {
    min-height: 660px;
    padding: calc(var(--header-height) + 82px) 0 88px;
    background-position: center center;
  }

  .support-fv-inner {
    min-height: 480px;
  }

  .support-fv-copy {
    width: min(660px, 68%);
    padding-top: 76px;
  }

  .support-fv-title {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.55;
  }

  .support-fv-lead {
    font-size: 15px;
  }

  /* support area tablet */
    .support-area-section {
    padding: 100px 0;
    }

    .support-area-inner {
    width: min(100% - 32px, 1180px);
    }

    .support-area-title {
    font-size: 40px;
    line-height: 1.4;
    }

    .support-area-title::after {
    width: 68px;
    height: 5px;
    margin-top: 22px;
    }

    .support-area-list {
    gap: 20px;
    margin-top: 56px;
    }

    .support-area-card {
    min-height: 290px;
    padding: 34px 30px;
    border-radius: 24px;
    }

    .support-area-card::before {
    background:
        linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.88) 44%,
        rgba(255, 255, 255, 0.64) 76%,
        rgba(255, 255, 255, 0.26) 100%
        );
    }

    .support-area-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
    }

    .support-area-copy {
    margin-top: 30px;
    }

    .support-area-card h3 {
    font-size: 28px;
    }

    .support-area-card p {
    font-size: 15px;
    line-height: 1.9;
    }

    /* stance tablet */
    .stance-section {
    padding: 100px 0;
    }

    .stance-section::before {
    top: 56px;
    right: 5%;
    width: 104px;
    height: 104px;
    background-size: 12px 12px;
    opacity: 0.16;
    }

    .stance-section::after {
    left: -220px;
    bottom: -170px;
    width: 460px;
    height: 460px;
    }

    .stance-inner {
    width: min(100% - 32px, 1180px);
    }

    .stance-title {
    font-size: 40px;
    line-height: 1.4;
    }

    .stance-title::after {
    width: 68px;
    height: 5px;
    margin-top: 22px;
    }

    .stance-list {
    max-width: 820px;
    margin-top: 56px;
    padding: 42px 38px;
    gap: 24px 32px;
    }

    .stance-list li {
    padding-left: 36px;
    font-size: 16px;
    line-height: 1.8;
    }

    .stance-message {
    max-width: 760px;
    margin-top: 56px;
    }

    .stance-message p {
    font-size: 18px;
    line-height: 1.95;
    }

    /* recommended tablet */
    .recommended-section {
    padding: 100px 0;
    }

    .recommended-section::before {
    top: 56px;
    left: 5%;
    width: 104px;
    height: 104px;
    background-size: 12px 12px;
    opacity: 0.14;
    }

    .recommended-section::after {
    right: -220px;
    top: 160px;
    width: 460px;
    height: 460px;
    }

    .recommended-inner {
    width: min(100% - 32px, 1180px);
    }

    .recommended-title {
    font-size: 40px;
    line-height: 1.4;
    }

    .recommended-title::after {
    width: 68px;
    height: 5px;
    margin-top: 22px;
    }

    .recommended-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 56px;
    }

    .recommended-card,
    .recommended-card:nth-child(4),
    .recommended-card:nth-child(5) {
    grid-column: auto;
    }

    .recommended-card:last-child {
    grid-column: 1 / -1;
    max-width: calc((100% - 20px) / 2);
    width: 100%;
    margin: 0 auto;
    }

    .recommended-card {
    min-height: 130px;
    padding: 28px 24px;
    border-radius: 22px;
    }



    .recommended-card p {
    font-size: 16px;
    line-height: 1.75;
    }

    .recommended-visual {
    width: min(280px, 48vw);
    margin-top: 48px;
    }

    .recommended-visual::before {
    width: 330px;
    height: 230px;
    }

    .recommended-message {
    max-width: 680px;
    margin-top: 56px;
    }

    .recommended-message p {
    font-size: 18px;
    line-height: 1.9;
    }

    /* support contact tablet */
.support-contact-section {
  padding: 96px 0;
}

.support-contact-inner {
  width: min(100% - 32px, 920px);
}

.support-contact-title {
  font-size: 40px;
  line-height: 1.4;
}

.support-contact-text {
  font-size: 16px;
}

}

@media (max-width: 640px) {
  .support-fv {
    min-height: 620px;
    background-position: 62% top;
    padding: calc(var(--header-height) + 34px) 0 24px;
    background: url("../images/support-fv-bg-sp.png") no-repeat center top / cover;
  }

  .support-fv::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.82) 0%,
        rgba(255, 255, 255, 0.70) 34%,
        rgba(255, 255, 255, 0.28) 64%,
        rgba(255, 255, 255, 0.00) 100%
      );
  }

  .support-fv::after {
    background-position: center top;
    background-size: cover;
    opacity: 0.88;
  }

  .support-fv-inner {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    align-items: flex-start;
  }

  .support-fv-copy {
    width: 100%;
    padding-top: 0;
  }

  .support-fv-title {
    font-size: 24px;
    line-height: 1.42;
  }

  .support-fv-lead {
    margin-top: 18px;
    font-size: 13.5px;
    line-height: 1.85;
  }

  .support-fv-lead br {
    display: none;
  }

/* support area sp */
.support-area-section {
  padding: 76px 0;
}

.support-area-inner {
  width: min(100% - 28px, 1180px);
}

.support-area-title {
  font-size: 30px;
  line-height: 1.45;
}

.support-area-title::after {
  width: 58px;
  height: 4px;
  margin-top: 18px;
}

.support-area-list {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 42px;
}

.support-area-card {
  min-height: 260px;
  padding: 28px 22px;
  border-radius: 20px;
  background-size: cover;
}

.support-area-card::before {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.84) 50%,
      rgba(255, 255, 255, 0.42) 100%
    );
}

.support-area-card-01 {
  background-position: 74% center;
}

.support-area-card-02 {
  background-position: 78% center;
}

.support-area-card-03 {
  background-position: 78% center;
}

.support-area-card-04 {
  background-position: 76% center;
}

.support-area-card::after {
  top: -54px;
  right: -54px;
  width: 140px;
  height: 140px;
}

.support-area-number {
  width: 50px;
  height: 50px;
  font-size: 15px;
}

.support-area-copy {
  margin-top: 28px;
}

.support-area-card h3 {
  font-size: 24px;
  line-height: 1.4;
}

.support-area-card p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.85;
}

/* stance sp */
.stance-section {
  padding: 76px 0;
      background:linear-gradient(180deg, rgb(247 251 255 / 79%) 0%, rgb(255 255 255 / 92%) 100%), url(../images/support-stance-bg.png) no-repeat center right / cover;
}

.stance-section::before {
  top: 34px;
  right: 18px;
  width: 76px;
  height: 76px;
  background-size: 10px 10px;
  opacity: 0.14;
}

.stance-section::after {
  left: -190px;
  bottom: -150px;
  width: 360px;
  height: 360px;
}

.stance-inner {
  width: min(100% - 28px, 1180px);
}

.stance-title {
  font-size: 30px;
  line-height: 1.45;
}

.stance-title::after {
  width: 58px;
  height: 4px;
  margin-top: 18px;
}

.stance-list {
  max-width: 100%;
  margin-top: 42px;
  padding: 28px 22px;
  grid-template-columns: 1fr;
  gap: 18px;
  border-radius: 24px;
}

.stance-list li,
.stance-list li:last-child {
  grid-column: auto;
}

.stance-list li {
  padding-left: 34px;
  font-size: 14.5px;
  line-height: 1.75;
}

.stance-list li::before {
  top: 0.34em;
  width: 20px;
  height: 20px;
}

.stance-list li::after {
  left: 6px;
  top: calc(0.34em + 7px);
  width: 8px;
  height: 5px;
}

.stance-message {
  max-width: 100%;
  margin-top: 42px;
  text-align: left;
}

.stance-message p {
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 700;
}

.stance-message p br {
  display: none;
}

.stance-message p + p {
  margin-top: 18px;
}

/* recommended sp */
.recommended-section {
  padding: 76px 0;
}

.recommended-section::before {
  top: 34px;
  left: 18px;
  width: 76px;
  height: 76px;
  background-size: 10px 10px;
  opacity: 0.12;
}

.recommended-section::after {
  right: -190px;
  top: 120px;
  width: 360px;
  height: 360px;
}

.recommended-inner {
  width: min(100% - 28px, 1180px);
}

.recommended-title {
  font-size: 30px;
  line-height: 1.45;
}

.recommended-title::after {
  width: 58px;
  height: 4px;
  margin-top: 18px;
}

.recommended-list {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 42px;
}

.recommended-card,
.recommended-card:nth-child(4),
.recommended-card:nth-child(5),
.recommended-card:last-child {
  grid-column: auto;
  max-width: none;
  width: 100%;
  margin: 0;
}

.recommended-card {
  min-height: auto;
  padding: 20px 20px;
  border-radius: 18px;
  text-align: left;
  justify-content: flex-start;
}

.recommended-card::before {
  display: none;
}

.recommended-card p {
  font-size: 14.5px;
  line-height: 1.75;
}

.recommended-visual {
  width: min(230px, 68vw);
  margin-top: 34px;
}

.recommended-visual::before {
  display:none;
}

.recommended-message {
  max-width: 100%;
  margin-top: 42px;
  text-align: left;
}

.recommended-message p {
  font-size: 15.5px;
  line-height: 1.9;
}

.recommended-message p br {
  display: none;
}

/* support contact sp */
.support-contact-section {
  padding: 76px 0;
}

.support-contact-inner {
  width: min(100% - 28px, 920px);
}

.support-contact-title {
  font-size: 28px;
  line-height: 1.45;
}

.support-contact-text {
  margin-top: 22px;
  font-size: 14.5px;
  line-height: 1.9;
}

.support-contact-text br {
  display: none;
}

.support-contact-button {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  margin-top: 34px;
  font-size: 15px;
}

}