@charset "UTF-8";

/* =========================
  Support Page Common
========================= */


.support-section {
  padding: 100px 0;
  background: #fff;
}

.support-inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.support-heading {
  margin-bottom: 56px;
  text-align: center;
}

.support-heading span {
  display: block;
  margin-bottom: 12px;
  color: #df4d6d;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.support-heading h1,
.support-heading h2 {
  margin: 0;
  color: #3b2b2b;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.support-heading-left {
  text-align: left;
}

/* =========================
  Support MV HTMLテキスト版
========================= */

.support-mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff8f5;
}

.support-mv__picture,
.support-mv__picture img {
  display: block;
  width: 100%;
}

.support-mv__picture img {
  height: auto;
}

/* 文字が乗る左側だけ、画像になじむ #fef3ee グラデーション */
.support-mv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(254, 243, 238, 0.98) 0%,
      rgba(254, 243, 238, 0.92) 31%,
      rgba(254, 243, 238, 0.68) 48%,
      rgba(254, 243, 238, 0.26) 64%,
      rgba(254, 243, 238, 0.00) 78%
    );
}

/* 下のなみなみ */
.support-mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 88px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom center;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,88 C160,42 340,38 520,66 C760,104 980,108 1190,72 C1300,54 1378,54 1440,68 V120 H0 Z' fill='%23ffffff'/></svg>");
}

.support-mv__content {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  transform: translate(-50%, -50%);
}

.support-mv__label {
  display: inline-block;
  margin: 0 0 clamp(32px, 3vw, 56px);
  padding: 8px 22px 9px;
  color: #3f3030;
  background: rgba(254, 218, 212, 0.82);
  border-radius: 5px;
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.support-mv__title {
  margin: 0;
  color: #3b2b2b;
  font-family: var(--font-serif);
  font-size: clamp(44px, 4vw, 76px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.support-mv__lead {
  margin-top: clamp(42px, 4.8vw, 72px);
  color: #342929;
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: 0.05em;
}

.support-mv__lead p {
  margin: 0;
}

.support-mv__lead p + p {
  margin-top: 28px;
}


/* =========================
  支援領域
========================= */

.support-area-section {
  background: #ffffff;
}

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

.support-area-card {
  position: relative;
  min-height: 340px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(217, 69, 95, 0.12);
  box-shadow: 0 18px 42px rgba(169, 36, 70, 0.08);
}

.support-area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.84) 42%,
      rgba(255, 255, 255, 0.42) 72%,
      rgba(255, 255, 255, 0.18) 100%
    );
  z-index: 1;
}

.support-area-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(246, 206, 205, 0.42);
  z-index: 2;
  pointer-events: none;
}

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

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

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

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

.support-area-content {
  position: relative;
  z-index: 3;
  max-width: 500px;
  padding: 54px 54px 54px 33px;
}

.support-area-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 0 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df4a66, #ef7180);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 26px rgba(217, 69, 95, 0.24);
}

.support-area-content h3 {
  margin: 0 0 22px;
  color: #b32850;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.support-area-content p:not(.support-area-number) {
  margin: 0;
  color: #6f5b5b;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}



/* =========================
  Support Stance
========================= */

.support-stance-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fff8f5 55%,
      #ffffff 100%
    );
}

.support-stance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  max-width: 1100px;
  margin: 0 auto;
}

.support-stance-item {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 120px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(180, 102, 112, 0.07);
}

.support-stance-icon {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
}

.support-stance-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-stance-item p {
  margin: 0;
  color: #6d585b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

/* 5つ目だけ中央 */
.support-stance-item-wide {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin-inline: auto;
}

.support-stance-message {
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 56px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(169, 36, 70, 0.05);
}

/* =========================
  Support Message
========================= */

.support-message {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff8f5;
}

.support-message-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.support-message-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 全体の白グラデーションはPCでは残す */
.support-message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 38% 48%,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(255, 255, 255, 0.38) 34%,
      rgba(255, 248, 245, 0.16) 62%,
      rgba(255, 248, 245, 0.08) 100%
    );
  pointer-events: none;
}

.support-message-inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  text-align: left;
}

/* 文字背景の“光彩” */
.support-message-text {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #5f4b4b;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 14px rgba(255, 255, 255, 0.95),
    0 0 30px rgba(255, 255, 255, 0.88),
    0 0 52px rgba(255, 248, 245, 0.78);
}

.support-message-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -28px -44px;
  border-radius: 40px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.48) 42%,
      rgba(255, 255, 255, 0) 76%
    );
  filter: blur(8px);
}

/* なみなみ：上と下の2個 */
.support-message-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 2;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.support-message-wave-top {
  top: -1px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,0 H1440 V44 C1240,94 1040,104 820,66 C590,26 380,20 190,54 C92,72 36,66 0,58 Z' fill='%23ffffff'/></svg>");
}

.support-message-wave-bottom {
  bottom: -1px;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><path d='M0,76 C190,30 390,16 610,52 C840,90 1040,102 1245,66 C1345,48 1408,54 1440,62 V120 H0 Z' fill='%23fff8f5'/></svg>");
}

/* =========================
  For You / Checklist
========================= */

.support-foryou {
  padding: 110px 20px 150px;
  background: #fff8f5;
}

.support-foryou-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.support-foryou-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 56px 48px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 80, 109, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(180, 102, 112, 0.08);
  position: relative;
}

.support-foryou-label {
  margin: 0 0 16px;
  text-align: center;
  color: #df5c79;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.support-foryou-title {
  margin: 0;
  text-align: center;
  color: #3f2c2c;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.support-foryou-list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(226, 80, 109, 0.15);
}

.support-foryou-list li {
  position: relative;
  padding: 24px 0 24px 56px;
  border-bottom: 1px solid rgba(226, 80, 109, 0.15);
  color: #6a5759;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
}

.support-foryou-list li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 26px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2506d, #ef7d91);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(226, 80, 109, 0.18);
}

/* =========================
  Support Contact
========================= */

.support-contact-section {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 190px 20px;
  margin-top: -150px;
}

.support-contact-section .contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/contact-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
}

.support-contact-section .contact-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.support-contact-section .contact-heading {
  margin-bottom: 48px;
}

.support-contact-section .contact-heading span {
  display: block;
  margin-bottom: 18px;
  color: #df4f6a;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.support-contact-section .contact-heading h2 {
  margin: 0;
  color: #3b2a2a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.35;
}

.support-contact-section .contact-text {
  margin: 0 auto;
  color: #6d5757;
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}

.support-contact-section .contact-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.support-contact-section .contact-button {
  min-width: 300px;
  justify-content: center;
}

/* =========================
  footer
========================= */

.support-site-footer{
    margin-top: -50px; }

/* =========================
  Tablet
========================= */

@media (max-width: 920px) {
  .support-section {
    padding: 86px 0;
  }

  .support-mv__title {
  font-size: clamp(30px, 3vw, 76px);
}

  .support-mv__label {
    margin: 0 0 clamp(16px, 2vw, 56px);}

  .support-mv__lead {
    margin-top: clamp(20px, 2.8vw, 72px);
  }

  .support-mv__lead p + p {
    margin-top: 10px;
  }

  .area-grid {
    gap: 22px;
  }

  .area-card {
    padding: 34px 30px 38px;
  }

  .stance-list {
    grid-template-columns: 1fr;
  }

  .target-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .target-copy {
    text-align: center;
  }

  .support-area-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-area-card {
    min-height: 320px;
  }

  .support-area-content {
    padding: 48px;
  }

  .support-stance-list {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 720px;
    margin-inline: auto;
    margin-top: 42px;
  }

  .support-stance-item-wide {
    grid-column: auto;
  }

  .support-stance-message {
    margin-top: 56px;
  }
}

/* =========================
  Smartphone
========================= */

@media (max-width: 640px) {
  .support-inner {
    width: min(100% - 28px, 1120px);
  }

  .support-section {
    padding: 72px 0;
  }

  .support-heading {
    margin-bottom: 38px;
  }

  .support-heading span {
    font-size: 13px;
  }

  .support-heading h1,
  .support-heading h2 {
    font-size: 30px;
    line-height: 1.55;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-area-card {
    min-height: 300px;
    border-radius: 24px;
    background-position: center right;
  }

  .support-area-card::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(255, 255, 255, 0.88) 56%,
        rgba(255, 255, 255, 0.55) 100%
      );
  }

  .support-area-card::after {
    width: 150px;
    height: 150px;
    right: -56px;
    top: -58px;
  }

  .support-area-content {
    max-width: none;
    padding: 34px 28px;
  }

  .support-area-number {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    font-size: 17px;
  }

  .support-area-content h3 {
    margin-bottom: 16px;
    font-size: 25px;
  }

  .support-area-content p:not(.support-area-number) {
    font-size: 15px;
    line-height: 1.9;
  }

  .support-area-content p br {
    display: none;
  }



  .stance-list {
    gap: 16px;
  }

  .stance-item {
    min-height: auto;
    padding: 20px 22px 20px 52px;
    border-radius: 18px;
    font-size: 15px;
  }

  .stance-item::before {
    left: 24px;
    width: 10px;
    height: 10px;
  }

  .support-message {
    margin-top: 36px;
    padding: 30px 22px;
    border-radius: 24px;
  }

  .support-message p {
    margin-top: -126px;
    font-size: 17px;
    line-height: 2;
    text-align: left;
  }

  .target-copy p {
    font-size: 15px;
    line-height: 2;
    text-align: left;
  }

  .target-list {
    gap: 14px;
  }

  .target-item {
    padding: 18px 20px 18px 52px;
    border-radius: 18px;
    font-size: 15px;
  }

  .target-item::before {
    left: 20px;
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .support-contact {
    padding: 100px 20px;
  }

  .support-contact h2 {
    font-size: 32px;
  }

  .support-contact p {
    font-size: 15px;
    line-height: 2;
  }

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

  .support-contact .button-primary {
    width: min(100%, 320px);
    min-width: 0;
  }

  .support-mv {
    min-height: 760px;
  }

  .support-mv__picture {
    position: absolute;
    inset: 0;
  }

  .support-mv__picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .support-mv::before {
    background:
      linear-gradient(
        90deg,
        rgba(254, 243, 238, 0.96) 0%,
        rgba(254, 243, 238, 0.88) 42%,
        rgba(254, 243, 238, 0.54) 66%,
        rgba(254, 243, 238, 0.16) 86%,
        rgba(254, 243, 238, 0.00) 100%
      );
  }

  .support-mv::after {
    height: 64px;
  }

  .support-mv__content {
    top: 42%;
    width: calc(100% - 40px);
    transform: translate(-50%, -50%);
  }

  .support-mv__label {
    margin-bottom: 18px;
    padding: 8px 20px 9px;
    border-radius: 6px;
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .support-mv__title {
    font-size: clamp(26px, 5.6vw, 50px);
    line-height: 1.55;
    letter-spacing: 0.06em;
  }

  .support-mv__lead {
    margin-top: 36px;
    max-width: 86%;
    font-size: clamp(16px, 4vw, 28px);
    line-height: 2.05;
    letter-spacing: 0.04em;
  }

  .support-mv__lead p + p {
    margin-top: 28px;
  }

   .support-stance-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .support-stance-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-stance-item,
  .support-stance-item-wide {
    width: 100%;
  }

  .support-stance-item {
    gap: 16px;
    min-height: auto;
    padding: 20px 22px;
    border-radius: 22px;
  }

  .support-stance-icon {
    flex-basis: 65px;
    width: 65px;
    height: 65px;
  }

  .support-stance-item p {
    font-size: 15px;
    line-height: 1.8;
  }

  .support-stance-message {
    margin-top: 42px;
    padding: 34px 22px;
    border-radius: 22px;
    text-align: left;
  }

  .support-message {
    min-height: 560px;
    padding: 120px 0;
    align-items: center;
  }

  .support-message-bg img {
    object-position: center top;
  }

  .support-message::before {
    background:
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.34) 48%,
        rgba(255, 248, 245, 0.08) 100%
      );
  }

  .support-message-inner {
    width: min(100% - 32px, 520px);
    text-align: left;
  }

  .support-message-text {
    display: inline-block;
    font-size: 22px;
    line-height: 2.05;
    letter-spacing: 0.04em;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95),
      0 0 16px rgba(255, 255, 255, 0.98),
      0 0 34px rgba(255, 255, 255, 0.9);
  }

  .support-message-text::before {
    inset: -22px -18px;
    border-radius: 28px;
    background:
      radial-gradient(
        ellipse at left center,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.48) 48%,
        rgba(255, 255, 255, 0) 78%
      );
    filter: blur(7px);
  }

  .support-message-wave {
    height: 72px;
  }

  .sp-only {
    display: inline;
  }

  .support-foryou {
    padding: 76px 16px 120px;
  }

  .support-foryou-card {
    padding: 36px 22px 30px;
    border-radius: 22px;
  }

  .support-foryou-label {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .support-foryou-title {
    font-size: 31px;
    line-height: 1.55;
  }

  .support-foryou-lead {
    margin: 16px 0 24px;
    font-size: 14px;
    line-height: 1.9;
  }

  .support-foryou-list{
    margin: 30px 0 0;
  }

  .support-foryou-list li {
    padding: 16px 0 16px 42px;
    font-size: 16px;
    line-height: 1.8;
  }

  .support-foryou-list li::before {
    left: 0;
    top: 18px;
    width: 26px;
    height: 26px;
    font-size: 15px;
    line-height: 26px;
  }

  .support-contact-section {
    min-height: auto;
    padding: 120px 20px 130px;
  }

  .support-contact-section .contact-heading {
    margin-bottom: 24px;
  }

  .support-contact-section .contact-heading span {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .support-contact-section .contact-heading h2 {
    font-size: 38px;
  }

  .support-contact-section .contact-text {
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }

  .support-contact-section .contact-text br {
    display:inline;
  }

  .support-contact-section .contact-button-wrap {
    margin-top: 32px;
  }

  .support-contact-section .contact-button {
    width: min(100%, 320px);
    min-width: 0;
  }

  .support-site-footer{
    margin-top: -50px; }

}