@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
strong,
figure,
fieldset,
form,
label,
ol,
ul,
li,
button {
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  font-style: normal;
  font-size: 100%;
}

html {
  overflow-x: clip;
  overflow-y: scroll;
}

ol,
ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

picture {
  display: contents;
}

body {
  color: #1e3343;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: clip;
}

@media screen and (max-width: 768px) {
  html.js-fixed,
  body.js-fixed {
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
a {
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-section {
  position: relative;
  width: 100%;
}

.l-inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.l-page {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.l-header {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100px;
  padding: 23px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header {
    z-index: 102;
    height: 70px;
    padding: 11px 0;
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-inline: clamp(16px, -34.2857142857px + 6.5476190476vw, 60px);
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-inline: 16px;
  }
}

.l-header__logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #000;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-header__logo a {
    gap: 8px;
  }
}

.l-header__logo-en {
  font-family: "Futura", "Century Gothic", "Avenir Next", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(22px, 10.5714285714px + 1.4880952381vw, 32px);
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-header__logo-en {
    font-size: clamp(16.4102564103px, 5.1282051282vw, 20px);
    line-height: 20px;
  }
}

.l-header__logo-ja {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(10px, 5.4285714286px + 0.5952380952vw, 14px);
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .l-header__logo-ja {
    font-size: 10px;
    line-height: 10px;
  }
}

.l-header__right {
  display: flex;
  align-items: center;
  gap: clamp(12px, -8.5714285714px + 2.6785714286vw, 30px);
}
@media screen and (max-width: 768px) {
  .l-header__right {
    gap: 12px;
  }
}

.l-header__menu {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 7px 4px 4px;
    border-radius: 8px;
    background-color: #1e3343;
    transition: 0.5s ease;
  }
}

.l-header__menu-label {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__menu-label {
    display: block;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
    font-size: 8px;
    font-weight: 500;
    line-height: 10px;
    color: #fff;
  }
}

.l-header__menu-bar,
.l-header__menu-bar::before,
.l-header__menu-bar::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #1e3343;
}
@media screen and (max-width: 768px) {
  .l-header__menu-bar,
  .l-header__menu-bar::before,
  .l-header__menu-bar::after {
    position: absolute;
    left: 0;
    right: 0;
    width: 16px;
    height: 1.5px;
    margin: auto;
    background-color: #fff;
    transition: 0.5s ease;
  }
}

.l-header__menu-bar {
  position: relative;
  top: 10px;
}
.l-header__menu-bar::before, .l-header__menu-bar::after {
  display: block;
  position: absolute;
  content: "";
  margin: auto;
  left: 0;
}
.l-header__menu-bar::before {
  top: -8px;
}
.l-header__menu-bar::after {
  top: 8px;
}
@media screen and (max-width: 768px) {
  .l-header__menu-bar {
    position: relative;
    top: 0;
    width: 16px;
    height: 1.5px;
  }
  .l-header__menu-bar::before {
    top: -5.75px;
  }
  .l-header__menu-bar::after {
    top: 5.75px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__menu.js-active .l-header__menu-bar {
    top: 0;
    transform: rotate(45deg);
  }
  .l-header__menu.js-active .l-header__menu-bar::before {
    top: 0;
    transform: rotate(-90deg);
  }
  .l-header__menu.js-active .l-header__menu-bar::after {
    opacity: 0;
  }
}

.l-spMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-spMenu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 101;
    width: 100%;
    height: calc(100dvh - 70px);
    padding: 22px 15px 50px;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: auto;
  }
  .l-spMenu.js-active {
    opacity: 1;
    visibility: visible;
  }
}

.l-spMenu__overlay {
  display: none;
}

.l-spMenu__close {
  display: none;
}

.l-spMenu__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.l-spMenu__link {
  display: block;
  padding: 0;
  border-bottom: 0;
  font-size: clamp(15px, 10.4285714286px + 1.4285714286vw, 16px);
}

.l-footer {
  width: 100%;
  padding: 32px 0;
  background-color: #1e3343;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 48px 0;
  }
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    gap: 48px;
    padding-inline: 16px;
  }
}

.l-footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .l-footer__brand {
    gap: 16px;
  }
}

.l-footer__brand-label {
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-footer__brand-label {
    font-size: 16px;
  }
}

.l-footer__brand-logo {
  width: clamp(104px, 66.2857142857px + 4.9107142857vw, 137px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .l-footer__brand-logo {
    width: 137px;
    height: 33px;
  }
}

.l-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.l-footer__copy {
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 16px;
  }
}

.l-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .l-footer__links {
    gap: 12px 16px;
  }
}

.l-footer__link {
  font-size: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .l-footer__link {
    font-size: 16px;
  }
}

.l-footer__sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background-color: #fff;
  transform: rotate(26deg);
}

.c-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, -12.8571428571px + 2.9761904762vw, 30px);
}
@media screen and (max-width: 768px) {
  .c-nav {
    display: none;
  }
}

.c-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 41px;
  text-align: center;
  white-space: nowrap;
}

.c-nav__en {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
  line-height: 1.5;
  color: #1e3343;
}

.c-nav__ja {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(9px, 7.8571428571px + 0.1488095238vw, 10px);
  line-height: 1.5;
  font-weight: 400;
  color: #1e3343;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: clamp(150px, 70px + 10.4166666667vw, 220px);
  padding: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px) clamp(16px, 2.2857142857px + 1.7857142857vw, 28px);
  border-radius: 10px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(15px, 9.2857142857px + 0.744047619vw, 20px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
    font-size: clamp(15px, 10.4285714286px + 1.4285714286vw, 16px);
  }
}

.c-btn.--donate {
  background-image: linear-gradient(90deg, #ff6565 0%, #ff6cb0 100%);
  color: #fff;
}

.c-btn.--ghost {
  background-image: linear-gradient(171deg, #ffeec5 15.894%, #ffebf0 84.931%);
  color: #1e3343;
}

.c-btn.--header {
  min-width: 0;
  height: clamp(42px, 28.2857142857px + 1.7857142857vw, 54px);
  padding: 11px clamp(12px, -0.5714285714px + 1.6369047619vw, 23px);
  font-size: clamp(13px, 7.2857142857px + 0.744047619vw, 18px);
}
@media screen and (max-width: 768px) {
  .c-btn.--header {
    display: none;
  }
}

.c-btn.--more {
  min-width: 0;
  padding: clamp(13px, 7.2857142857px + 0.744047619vw, 18px) clamp(14px, 7.1428571429px + 0.8928571429vw, 20px) clamp(13px, 7.2857142857px + 0.744047619vw, 18px) clamp(18px, 8.8571428571px + 1.1904761905vw, 26px);
  border-radius: 8px;
  background-image: linear-gradient(171deg, #ffeec5 15.894%, #ffebf0 84.931%);
  color: #212121;
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-btn.--more {
    width: auto;
    padding: 18px 20px 18px 26px;
    gap: 12px;
    font-size: clamp(13px, -0.7142857143px + 4.2857142857vw, 16px);
  }
}

.c-btn.--about {
  min-width: clamp(130px, 86.5714285714px + 5.6547619048vw, 168px);
  height: clamp(44px, 34.8571428571px + 1.1904761905vw, 52px);
  padding: 0 clamp(16px, 8px + 1.0416666667vw, 23px);
  background-image: url("../img/common/deco_btn-more.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: #212121;
  font-size: clamp(12px, 9.7142857143px + 0.2976190476vw, 14px);
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-btn.--about {
    margin-top: -7px;
    width: 168px;
    min-width: 168px;
    height: 52px;
    font-size: 14px;
  }
}

.c-btn__icon {
  width: clamp(15px, 9.2857142857px + 0.744047619vw, 20px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.c-btn__icon.--sm {
  width: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  height: auto;
}

.c-fixedDonate {
  position: fixed;
  right: max(clamp(16px, -35.4285714286px + 6.6964285714vw, 61px), 50vw - 659px);
  bottom: 35px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 3.4285714286px + 0.5952380952vw, 12px);
  width: clamp(104px, 58.2857142857px + 5.9523809524vw, 144px);
  height: clamp(104px, 58.2857142857px + 5.9523809524vw, 144px);
  padding: clamp(12px, 2.8571428571px + 1.1904761905vw, 20px) clamp(16px, 2.2857142857px + 1.7857142857vw, 28px);
  border-radius: 79px;
  background-image: linear-gradient(90deg, #ff6565 0%, #ff6cb0 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 101, 101, 0.28);
  transition: opacity 0.3s, visibility 0.3s;
}
.c-fixedDonate.js-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-fixedDonate {
    right: 16px;
    bottom: 16px;
    width: 97px;
    height: 97px;
    padding: 20px 16px;
    gap: 8px;
  }
}

.c-fixedDonate__icon {
  width: clamp(26px, 14.5714285714px + 1.4880952381vw, 36px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-fixedDonate__icon {
    width: 25px;
    height: 21px;
  }
}

.c-fixedDonate__label {
  font-size: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-fixedDonate__label {
    font-size: 15px;
    line-height: 18px;
  }
}

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

.c-ttl.--left {
  align-items: flex-start;
  text-align: left;
}

.c-ttl__en {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(16px, 10.2857142857px + 0.744047619vw, 21px);
  line-height: 1.5;
  background-image: linear-gradient(90deg, #3CA5FC 0%, #44D5FC 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .c-ttl__en {
    font-size: 16px;
  }
}

.c-ttl__ja {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 10px + 2.0833333333vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-ttl__ja {
    font-size: clamp(21.3333333333px, 6.6666666667vw, 26px);
    line-height: 44px;
  }
}

.c-ttl__ja.--faq {
  color: #345772;
}

.c-photoCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.7142857143px + 1.3392857143vw, 21px);
  flex: 1 1 0;
  min-width: 0;
}

.c-photoCard__img {
  width: 100%;
  height: clamp(110px, 30px + 10.4166666667vw, 180px);
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-photoCard__img {
    height: auto;
    aspect-ratio: 279/180;
    border-radius: 12px;
  }
}

.c-photoCard__cap {
  width: 100%;
  font-size: clamp(12px, 5.1428571429px + 0.8928571429vw, 18px);
  font-weight: 700;
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-photoCard__cap {
    font-size: clamp(12px, -6.2857142857px + 5.7142857143vw, 16px);
  }
}

@media screen and (max-width: 768px) {
  .c-photoCard__cap-sub {
    font-size: 14px;
  }
}

.c-crisisCard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(25px, 13.5714285714px + 1.4880952381vw, 35px);
  flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .c-crisisCard {
    gap: 28px;
  }
}

.c-crisisCard.--offset {
  padding-top: clamp(40px, -5.7142857143px + 5.9523809524vw, 80px);
}
@media screen and (max-width: 768px) {
  .c-crisisCard.--offset {
    padding-top: 0;
  }
}

.c-crisisCard__img {
  width: 100%;
  height: clamp(200px, 62.8571428571px + 17.8571428571vw, 320px);
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-crisisCard__img {
    height: 186px;
  }
}

.c-crisisCard__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 10.8571428571px + 1.1904761905vw, 28px);
  line-height: 1.14;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-crisisCard__ttl {
    font-size: clamp(20px, 20px + 0vw, 20px);
    line-height: 1.6;
  }
}

.c-crisisCard__txt {
  margin-top: -8px;
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 400;
  line-height: 1.89;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-crisisCard__txt {
    margin-top: -12px;
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
    line-height: 1.875;
  }
}

.c-reportCard {
  display: flex;
  align-items: center;
  width: 100%;
}

.c-reportCard__inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5714285714px + 1.4880952381vw, 24px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-reportCard__inner {
    gap: 16px;
  }
}
.c-reportCard__inner > picture {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.c-reportCard__img {
  width: clamp(110px, 50.5714285714px + 7.7380952381vw, 162px);
  height: clamp(72px, 33.1428571429px + 5.0595238095vw, 106px);
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-reportCard__img {
    width: 101px;
    height: 66px;
    border-radius: 8px;
  }
}

.c-reportCard__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.c-reportCard__tag {
  padding: 5px 8px 6px 9px;
  border-radius: 3px;
  background-color: #e7f4f8;
  color: #3ca5fc;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

.c-reportCard__ttl {
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 700;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-reportCard__ttl {
    font-size: 16px;
  }
}

.c-reportCard__arrow {
  width: clamp(30px, 12.8571428571px + 2.2321428571vw, 45px);
  height: clamp(30px, 12.8571428571px + 2.2321428571vw, 45px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-reportCard__arrow {
    width: 28px;
    height: 28px;
  }
}

.c-useItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 3.1428571429px + 0.8928571429vw, 16px);
  width: clamp(128px, 45.7142857143px + 10.7142857143vw, 200px);
}
@media screen and (max-width: 768px) {
  .c-useItem {
    width: calc(50% - 8px);
    gap: 12px;
  }
}

.c-useItem__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid rgba(191, 194, 202, 0.2);
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-useItem__icon {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.c-useItem__img {
  width: clamp(62px, 23.1428571429px + 5.0595238095vw, 96px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-useItem__img.--u1 {
    width: 34.7826086957%;
  }
  .c-useItem__img.--u2 {
    width: 45.3416149068%;
  }
  .c-useItem__img.--u3 {
    width: 44.099378882%;
  }
  .c-useItem__img.--u4 {
    width: 36.6459627329%;
  }
}

.c-useItem__label {
  font-size: clamp(13px, 7.2857142857px + 0.744047619vw, 18px);
  font-weight: 600;
  line-height: 1.56;
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-useItem__label {
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
    line-height: 1.5;
  }
}

.c-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.c-step__head {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #fff;
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
}

.c-step__num {
  font-size: clamp(22px, 10.5714285714px + 1.4880952381vw, 32px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-step__num {
    font-size: clamp(22px, 3.7142857143px + 5.7142857143vw, 26px);
  }
}

.c-step__ttl {
  font-size: clamp(17px, 9px + 1.0416666667vw, 24px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-step__ttl {
    font-size: clamp(18px, 8.8571428571px + 2.8571428571vw, 20px);
    line-height: 1.2;
  }
}

.c-step__txt {
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-step__txt {
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
  }
}

.c-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.c-check__icon {
  width: clamp(20px, 13.1428571429px + 0.8928571429vw, 26px);
  height: clamp(20px, 13.1428571429px + 0.8928571429vw, 26px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-check__icon {
    width: 21px;
    height: 21px;
  }
}

.c-check__txt {
  flex: 1 1 0;
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .c-check__txt {
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
  }
}

.c-donate {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  width: 100%;
  padding: clamp(24px, -5.7142857143px + 3.869047619vw, 50px);
  border-radius: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .c-donate {
    padding: 50px 16px;
    border-radius: 36px;
    gap: 32px;
  }
}

.c-donate--modal {
  gap: 0;
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.c-donate__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 6.8571428571px + 1.1904761905vw, 24px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-donate__head {
    gap: 26px;
  }
}

.c-donate__hands {
  width: clamp(120px, 52.5714285714px + 8.7797619048vw, 179px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .c-donate__hands {
    width: 179px;
  }
}

.c-donate__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 8.7142857143px + 1.3392857143vw, 28px);
  font-weight: 500;
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-donate__ttl {
    font-size: 20px;
    line-height: 34px;
  }
}

.c-donate__ttl-em {
  color: #ff8098;
}

.c-donate__lead {
  margin-top: clamp(12px, 2.8571428571px + 1.1904761905vw, 20px);
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-donate__lead {
    font-size: 16px;
    text-align: left;
    margin-top: 24px;
  }
}

.c-donate__box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px, 6.8571428571px + 1.1904761905vw, 24px);
  width: 100%;
  padding: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px) clamp(16px, -2.2857142857px + 2.380952381vw, 32px);
  border-radius: clamp(16px, 2.2857142857px + 1.7857142857vw, 28px);
  background-image: linear-gradient(119.1deg, #e0f3fa 1.823%, #e8fcf6 52.37%, #e4fce8 99.173%);
}
@media screen and (max-width: 768px) {
  .c-donate__box {
    padding: 40px 16px;
    border-radius: 28px;
    gap: 23px;
  }
}

.c-donate--modal .c-donate__box {
  gap: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  padding: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px) clamp(16px, -2.2857142857px + 2.380952381vw, 32px);
}
@media screen and (max-width: 768px) {
  .c-donate--modal .c-donate__box {
    gap: 24px;
    padding: 20px 12px;
  }
}

.c-donate__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.c-donate--modal .c-donate__block {
  gap: 12px;
}

.c-donate__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #1e3343;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .c-donate__label {
    padding-left: 4px;
  }
}

.c-donate--modal .c-donate__label {
  line-height: 22px;
}

.c-donate__types {
  display: flex;
  gap: clamp(10px, 3.1428571429px + 0.8928571429vw, 16px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-donate__types {
    flex-direction: column;
    gap: 16px;
  }
}

.c-donate__type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1 1 0;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c8cdd1;
  border-radius: 12px;
  background-color: #fff;
  text-align: left;
  color: #1e3343;
  white-space: normal;
  overflow-wrap: break-word;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  .c-donate__type {
    flex: 0 0 auto;
  }
}
.c-donate__type.js-active {
  border-color: #3da6fc;
}
@media screen and (min-width: 769px) {
  .c-donate__type:hover {
    border-color: #3da6fc;
  }
  .c-donate__type:hover .c-donate__type-ttl {
    color: #3da6fc;
  }
}

.c-donate__type-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-donate--modal .c-donate__type {
  min-height: clamp(96px, 62.8571428571px + 4.3154761905vw, 125px);
  padding: clamp(10px, 5.4285714286px + 0.5952380952vw, 14px) clamp(12px, 7.4285714286px + 0.5952380952vw, 16px);
}
@media screen and (max-width: 768px) {
  .c-donate--modal .c-donate__type {
    min-height: auto;
    padding: 14px 12px;
  }
}

.c-donate__type-ico {
  width: clamp(15px, 10.4285714286px + 0.5952380952vw, 19px);
  height: clamp(15px, 10.4285714286px + 0.5952380952vw, 19px);
  flex-shrink: 0;
}

.c-donate__type-ttl {
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 700;
}
.c-donate__type.js-active .c-donate__type-ttl {
  color: #3da6fc;
}

.c-donate__type-txt {
  padding-left: clamp(23px, 17.2857142857px + 0.744047619vw, 28px);
  font-size: clamp(12px, 9.7142857143px + 0.2976190476vw, 14px);
  font-weight: 400;
  line-height: 1.5;
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .c-donate__type-txt {
    padding-left: 27px;
    font-size: 14px;
  }
}

.c-donate__amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.c-donate__amount {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(6px, 3.7142857143px + 0.2976190476vw, 8px);
  width: calc((100% - 20px) / 3);
  min-height: clamp(48px, 35.4285714286px + 1.6369047619vw, 59px);
  padding: clamp(12px, 8.5714285714px + 0.4464285714vw, 15px) clamp(9px, 5.5714285714px + 0.4464285714vw, 12px);
  border: 1px solid #c8cdd1;
  border-radius: 12px;
  background-color: #fff;
  color: #1e3343;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-donate__amount {
    width: calc((100% - 10px) / 2);
    padding: 10px 8px;
    gap: 4px;
  }
}
@media screen and (max-width: 768px) {
  .c-donate__amount.--custom {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .c-donate__amount:hover {
    opacity: 1;
    border-color: #3da6fc;
    color: #3da6fc;
  }
}
.c-donate__amount.js-active {
  border-color: #3da6fc;
  color: #3da6fc;
}

.c-donate__amount-ico {
  width: clamp(15px, 10.4285714286px + 0.5952380952vw, 19px);
  height: clamp(15px, 10.4285714286px + 0.5952380952vw, 19px);
  flex-shrink: 0;
}

.c-donate__amount-num {
  font-size: clamp(15px, 11.5714285714px + 0.4464285714vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-donate__amount-num {
    font-size: 15px;
  }
}
.c-donate__amount--custom .c-donate__amount-num {
  font-size: 15px;
  white-space: normal;
}

.c-donate__amount-unit {
  font-size: clamp(11px, 9.8571428571px + 0.1488095238vw, 12px);
  font-weight: 700;
  white-space: nowrap;
}

.c-donate__custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(6px, 1.4285714286px + 0.5952380952vw, 10px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-donate__custom {
    gap: 8px;
  }
}

.c-donate__custom-field {
  display: none;
  align-items: center;
  gap: clamp(6px, 1.4285714286px + 0.5952380952vw, 10px);
}
@media screen and (max-width: 768px) {
  .c-donate__custom-field {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: wrap;
  }
}

.c-donate__custom.is-open .c-donate__custom-field {
  display: flex;
}

.c-donate__custom-input {
  width: 120px;
  min-width: 0;
  height: clamp(48px, 35.4285714286px + 1.6369047619vw, 59px);
  padding: 0 clamp(9px, 5.5714285714px + 0.4464285714vw, 12px);
  border: 1px solid #c8cdd1;
  border-radius: 12px;
  background-color: #fff;
  text-align: right;
  font-size: clamp(15px, 11.5714285714px + 0.4464285714vw, 18px);
  font-weight: 700;
  color: #1e3343;
}
.c-donate__custom-input::-moz-placeholder {
  color: #c8cdd1;
  font-weight: 400;
}
.c-donate__custom-input::placeholder {
  color: #c8cdd1;
  font-weight: 400;
}
.c-donate__custom-input:focus {
  outline: none;
  border-color: #3da6fc;
}
.c-donate__custom-input.--error {
  border-color: #ff4e65;
}

.c-donate__custom-unit {
  font-size: clamp(13px, 10.7142857143px + 0.2976190476vw, 15px);
  font-weight: 700;
  color: #1e3343;
  white-space: nowrap;
}

.c-donate__custom-go {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: clamp(36px, 26.8571428571px + 1.1904761905vw, 44px);
  height: clamp(36px, 26.8571428571px + 1.1904761905vw, 44px);
  border-radius: 50%;
  background-color: #3da6fc;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .c-donate__custom-go:hover {
    opacity: 0.8;
  }
}

.c-donate__custom-msg {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  color: #ff4e65;
}
.c-donate__custom-msg[hidden] {
  display: none;
}

.c-donate__note {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: #1e3343;
}

.c-donate--modal .c-donate__note {
  line-height: 22px;
}

.c-donate__pay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 7.7142857143px + 0.2976190476vw, 12px);
  width: 100%;
  padding: clamp(12px, 7.4285714286px + 0.5952380952vw, 16px) clamp(12px, 5.1428571429px + 0.8928571429vw, 18px) clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  border-radius: 12px;
  background-color: #fff;
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .c-donate__pay {
    gap: 12px;
  }
}

.c-donate__pay-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3px 16px;
  border-radius: 6px;
  background-color: #515151;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.c-donate__brands {
  display: flex;
  align-items: center;
  gap: clamp(8px, 3.4285714286px + 0.5952380952vw, 12px);
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-donate__brands {
    gap: 12px;
  }
}

.c-donate__brand {
  height: clamp(32px, 22.8571428571px + 1.1904761905vw, 40px);
  border: 1px solid #ddd;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fff;
}
.c-donate__brand.--visa, .c-donate__brand.--master {
  width: clamp(46px, 32.2857142857px + 1.7857142857vw, 58px);
}
@media screen and (max-width: 768px) {
  .c-donate__brand.--visa, .c-donate__brand.--master {
    width: 58px;
    height: auto;
    aspect-ratio: 58/40;
  }
}
.c-donate__brand.--jcb {
  width: clamp(42px, 30.5714285714px + 1.4880952381vw, 52px);
}
@media screen and (max-width: 768px) {
  .c-donate__brand.--jcb {
    width: 52px;
    height: auto;
    aspect-ratio: 52/40;
  }
}
.c-donate__brand.--amex {
  width: clamp(32px, 22.8571428571px + 1.1904761905vw, 40px);
}
@media screen and (max-width: 768px) {
  .c-donate__brand.--amex {
    width: 40px;
    height: auto;
    aspect-ratio: 40/40;
  }
}

.c-donateModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 6.8571428571px + 1.1904761905vw, 24px);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-donateModal.js-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .c-donateModal {
    padding: 16px 12px;
  }
}

.c-donateModal__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 44, 67, 0.6);
}

.c-donateModal__dialog {
  position: relative;
  margin: auto;
  width: min(100%, 1200px);
  border-radius: clamp(24px, 14.8571428571px + 1.1904761905vw, 32px);
  background-color: #fff;
  box-shadow: 0 24px 60px rgba(30, 51, 67, 0.18);
}
@media screen and (max-width: 768px) {
  .c-donateModal__dialog {
    width: 100%;
    border-radius: 24px;
  }
}

.c-donateModal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
}
.c-donateModal__close::before, .c-donateModal__close::after {
  display: block;
  position: absolute;
  content: "";
  margin: auto;
  inset: 0;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background-color: #1e3343;
}
.c-donateModal__close::before {
  transform: rotate(45deg);
}
.c-donateModal__close::after {
  transform: rotate(-45deg);
}

.c-donateModal__inner {
  display: flex;
  gap: clamp(20px, 10.8571428571px + 1.1904761905vw, 28px);
  align-items: center;
  padding: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px);
}
@media screen and (max-width: 1080px) {
  .c-donateModal__inner {
    flex-direction: column;
    padding-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .c-donateModal__inner {
    flex-direction: column;
    gap: 20px;
    padding: 48px 12px 16px;
  }
}

.c-donateModal__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 10.8571428571px + 1.1904761905vw, 28px);
  flex: 0 0 clamp(260px, 173.1428571429px + 11.3095238095vw, 336px);
}
@media screen and (max-width: 1080px) {
  .c-donateModal__head {
    flex-basis: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-donateModal__head {
    flex-basis: auto;
    width: 100%;
    gap: 20px;
  }
}

.c-donateModal__hands {
  width: clamp(132px, 78.2857142857px + 6.994047619vw, 179px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-donateModal__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 6.8571428571px + 1.1904761905vw, 24px);
  width: 100%;
  max-width: 336px;
  text-align: center;
}

.c-donateModal__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 13.2857142857px + 0.744047619vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  color: #1e3343;
}

.c-donateModal__ttl-em {
  color: #ff8098;
}

.c-donateModal__lead {
  width: 100%;
  max-width: 324px;
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 300;
  line-height: 1.625;
  color: #1e3343;
  text-align: center;
}

.c-donateModal .c-donate {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.c-faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 1.7142857143px + 2.380952381vw, 36px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-faq {
    gap: 32px;
  }
}

.c-faq__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.c-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, -1.7142857143px + 1.7857142857vw, 24px);
  width: 100%;
  padding: 0 clamp(8px, -11.4285714286px + 2.5297619048vw, 25px);
  background: none;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-faq__q {
    padding: 0 0 0 16px;
    align-items: center;
    gap: 16px;
  }
}

.c-faq__q-main {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.2857142857px + 0.744047619vw, 13px);
}
@media screen and (max-width: 768px) {
  .c-faq__q-main {
    gap: 13px;
  }
}

.c-faq__mark {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 11.1428571429px + 0.8928571429vw, 24px);
  color: #3ca5fc;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .c-faq__mark {
    font-size: 20px;
  }
}

.c-faq__q-txt {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(15px, 11.5714285714px + 0.4464285714vw, 18px);
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-faq__q-txt {
    font-size: clamp(15px, 10.4285714286px + 1.4285714286vw, 16px);
  }
}

.c-faq__icon {
  position: relative;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.c-faq__icon-bar {
  position: absolute;
  background-color: #1e3343;
  transition: transform 0.35s ease;
}
.c-faq__icon-bar.--h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.c-faq__icon-bar.--v {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%) scaleY(1);
}
.c-faq__item.js-open .c-faq__icon-bar.--v {
  transform: translateX(-50%) scaleY(0);
}

.c-faq__a {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2.8571428571px + 1.1904761905vw, 20px);
  width: 100%;
  height: 0;
  margin-top: 0;
  padding: 0 clamp(12px, -2.8571428571px + 1.9345238095vw, 25px);
  border-radius: 18px;
  background-color: #f5f9fa;
  overflow: hidden;
  opacity: 0;
  transition: height 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease, padding-bottom 0.35s ease, opacity 0.35s ease;
}
.c-faq__item.js-open .c-faq__a {
  margin-top: 21px;
  padding-top: 20px;
  padding-bottom: 20px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-faq__a {
    padding-left: 16px;
    padding-right: 16px;
    gap: 16px;
  }
  .c-faq__item.js-open .c-faq__a {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 15px;
  }
}

.c-faq__a-txt {
  flex: 1 1 0;
  font-size: clamp(13px, 10.7142857143px + 0.2976190476vw, 15px);
  font-weight: 400;
  line-height: 1.6;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .c-faq__a-txt {
    font-size: clamp(13px, 3.8571428571px + 2.8571428571vw, 15px);
    line-height: 1.6;
  }
}

.c-faq__line {
  width: 100%;
  height: 1px;
  background-color: #d7e0e4;
}

.p-hero {
  position: relative;
  z-index: 2;
}

.p-hero__inner {
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-hero__inner {
    padding-inline: 16px;
  }
}

.p-hero__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 11.4285714286px + 1.6369047619vw, 35px);
  width: 100%;
  min-height: clamp(300px, 140px + 20.8333333333vw, 440px);
  padding: clamp(20px, 10.8571428571px + 1.1904761905vw, 28px) clamp(28px, -77.1428571429px + 13.6904761905vw, 120px) clamp(36px, 8.5714285714px + 3.5714285714vw, 60px);
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .p-hero__panel {
    min-height: 0;
    height: 609px;
    justify-content: flex-end;
    align-items: stretch;
    gap: 34px;
    padding: 0 24px 48px;
    border-radius: 30px;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .p-hero__panel picture {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-hero__bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-hero__ttl {
  position: relative;
  z-index: 1;
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 6.8571428571px + 3.2738095238vw, 54px);
  font-weight: 500;
  line-height: 1.37;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-hero__ttl {
    font-size: clamp(26.2564102564px, 8.2051282051vw, 32px);
    line-height: 48px;
  }
}

.p-hero__btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(12px, -1.7142857143px + 1.7857142857vw, 24px);
}
@media screen and (max-width: 768px) {
  .p-hero__btns {
    flex-direction: row;
    width: 100%;
    height: 50px;
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-hero__btns .c-btn {
    flex: 1 0 0;
    width: auto;
    min-width: 0;
    padding: 16px 15px;
    gap: 7px;
    font-size: clamp(15px, 10.4285714286px + 1.4285714286vw, 16px);
  }
}

.p-vision {
  position: relative;
  width: 100%;
  padding: clamp(64px, 45.7142857143px + 2.380952381vw, 80px) 0 clamp(120px, -40px + 20.8333333333vw, 260px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-vision {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0 clamp(140px, -317.1428571429px + 142.8571428571vw, 240px);
  }
}

.p-vision__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 0px + 4.1666666667vw, 60px);
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
  margin-top: clamp(20px, -2.8571428571px + 2.9761904762vw, 40px);
}
@media screen and (max-width: 768px) {
  .p-vision__inner {
    gap: 60px;
    padding-inline: 32px;
    margin-top: 0;
  }
}

.p-vision__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-vision__veil {
  position: absolute;
  inset: 0;
}

.p-vision__wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 768px) {
  .p-vision__wave {
    height: 30px;
  }
}

.p-vision__ttl {
  position: relative;
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  font-weight: 500;
  line-height: clamp(35px, 11px + 3.125vw, 56px);
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .p-vision__ttl {
    font-size: clamp(19.6923076923px, 6.1538461538vw, 24px);
    line-height: 42px;
    text-align: left;
  }
}

.p-vision__em {
  color: #01bde0;
}

.p-vision__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .p-vision__body {
    gap: 32px;
  }
}

.p-vision__txt {
  font-size: clamp(13px, 9.5714285714px + 0.4464285714vw, 16px);
  font-weight: 400;
  line-height: clamp(32px, 22.8571428571px + 1.1904761905vw, 40px);
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .p-vision__txt {
    font-size: clamp(13.1282051282px, 4.1025641026vw, 16px);
    line-height: 36px;
    text-align: left;
  }
}

.p-about {
  padding: clamp(40px, 17.1428571429px + 2.9761904762vw, 60px) 0 clamp(32px, 22.8571428571px + 1.1904761905vw, 40px);
  background-color: #01BDE0;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0;
  }
}

.p-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 1439px) {
  .p-about__inner {
    gap: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
  }
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    flex-direction: column;
    gap: 46px;
    padding-inline: 16px;
  }
}

.p-problem__wave-about {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 60px;
  -o-object-fit: fill;
     object-fit: fill;
  transform: rotate(180deg);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-problem__wave-about {
    height: 30px;
  }
}

.p-about__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
}

.p-about__label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-about__label-line {
  width: 43px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__label-line {
    width: 30px;
  }
}

.p-about__label-txt {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 500;
  white-space: nowrap;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__label-txt {
    font-size: clamp(13.1282051282px, 4.1025641026vw, 16px);
  }
}

.p-about__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 6px + 2.0833333333vw, 36px);
  font-weight: 500;
  line-height: 1.72;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__ttl {
    font-size: clamp(21.3333333333px, 6.6666666667vw, 26px);
    line-height: 44px;
  }
}

.p-about__em {
  color: #f6ff4d;
}

.p-about__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(24px, 16px + 1.0416666667vw, 31px);
  width: clamp(420px, 134.2857142857px + 37.2023809524vw, 670px);
  flex-shrink: 0;
  max-width: 100%;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .p-about__right {
    align-items: flex-end;
    width: 100%;
    gap: 50px;
  }
}

.p-about__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(12px, -8.5714285714px + 2.6785714286vw, 30px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__flow {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 17px;
  }
}

.p-about__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 3.1428571429px + 0.8928571429vw, 16px);
  width: clamp(76px, 25.7142857143px + 6.5476190476vw, 120px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__node {
    gap: 12px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-about__node.--body {
    margin-top: -12px;
  }
}
@media screen and (max-width: 768px) {
  .p-about__node.--partner {
    gap: 6px;
  }
}

.p-about__node-ico {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-about__node-ico {
    width: 80px;
    height: auto;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-about__node-ico.--body {
    width: 120px;
    height: 81px;
  }
}

.p-about__node-ico.--photo {
  border: 2px solid #fff;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about__node-ico.--photo {
    width: 104px;
    height: 104px;
  }
}

.p-about__node-name {
  font-size: clamp(11px, 5.2857142857px + 0.744047619vw, 16px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__node-name {
    font-size: clamp(13px, -0.7142857143px + 4.2857142857vw, 16px);
  }
}

.p-about__node-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  text-align: center;
}

.p-about__node-logo-en {
  font-family: "Futura", "Century Gothic", "Avenir Next", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: clamp(15px, 7px + 1.0416666667vw, 22px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about__node-logo-en {
    font-size: 22px;
  }
}

.p-about__node-logo-ja {
  font-size: clamp(9px, 7.8571428571px + 0.1488095238vw, 10px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: clamp(2px, 0.8571428571px + 0.1488095238vw, 3px);
}
@media screen and (max-width: 768px) {
  .p-about__node-logo-ja {
    font-size: 10px;
  }
}

.p-about__node-logo-img {
  width: clamp(72px, 34.2857142857px + 4.9107142857vw, 105px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-about__node-logo-img {
    width: 105px;
    height: auto;
    flex-shrink: 0;
  }
}

.p-about__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
  width: clamp(58px, 15.7142857143px + 5.505952381vw, 95px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about__arrows {
    flex-direction: row;
    align-self: auto;
    width: 168px;
    height: 41px;
    gap: 10px;
  }
}

.p-about__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.4285714286px + 0.5952380952vw, 10px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__arrow {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    width: 72px;
    height: 41px;
    overflow: visible;
  }
  .p-about__arrow picture {
    display: flex;
    flex-shrink: 0;
  }
}

.p-about__arrow-txt {
  font-size: clamp(10px, 5.4285714286px + 0.5952380952vw, 14px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__arrow-txt {
    font-size: clamp(11px, -2.7142857143px + 4.2857142857vw, 14px);
    width: 56px;
    text-align: center;
  }
}

.p-about__arrow-img {
  width: 100%;
  height: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-about__arrow-img {
    width: 15px;
    height: 41px;
    -o-object-fit: contain;
       object-fit: contain;
    transform: none;
    flex-shrink: 0;
  }
}

.p-about__txt {
  width: 100%;
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 600;
  line-height: 1.78;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__txt {
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
    line-height: 1.85;
  }
}

.p-problem {
  position: relative;
  background-color: transparent;
}

.p-problem__visual {
  --visual-h: clamp(640px, 190.8571428571px + 58.4821428571vw, 1033px);
  position: sticky;
  top: min(0px, 100vh - var(--visual-h));
  z-index: 0;
  width: 100%;
  height: max(var(--visual-h), 100vh);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-problem__visual {
    --visual-h: clamp(829.5384615385px, 259.2307692308vw, 1011px);
    top: min(0px, 100vh - var(--visual-h));
    height: max(var(--visual-h), 100vh);
  }
}

.p-problem__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-problem__copy {
  position: absolute;
  top: clamp(130px, 27.1428571429px + 13.3928571429vw, 220px);
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  width: 1200px;
  max-width: calc(100% - clamp(48px, -171.4285714286px + 28.5714285714vw, 240px));
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-problem__copy {
    top: clamp(98.4615384615px, 30.7692307692vw, 120px);
    gap: 40px;
    max-width: calc(100% - clamp(72.2051282051px, 22.5641025641vw, 88px));
  }
}

.p-problem__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 0.8571428571px + 3.2738095238vw, 48px);
  font-weight: 500;
  line-height: 1.83;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-problem__ttl {
    font-size: clamp(22.9743589744px, 7.1794871795vw, 28px);
    line-height: 51px;
  }
}

.p-problem__lead {
  font-size: clamp(14px, 7.1428571429px + 0.8928571429vw, 20px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-problem__lead {
    font-size: clamp(13.1282051282px, 4.1025641026vw, 16px);
    line-height: 32px;
  }
}

.p-problem__mark {
  display: inline;
  padding: 0 8px;
  background-color: rgba(4, 4, 35, 0.7);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media screen and (max-width: 768px) {
  .p-problem__mark {
    padding: clamp(1.641025641px, 0.5128205128vw, 2px) clamp(4.9230769231px, 1.5384615385vw, 6px);
    line-height: 1.4;
  }
}

.p-problem__lead .p-problem__mark {
  padding: 4px 12px;
}
@media screen and (max-width: 768px) {
  .p-problem__lead .p-problem__mark {
    padding: clamp(2.4615384615px, 0.7692307692vw, 3px) clamp(6.5641025641px, 2.0512820513vw, 8px);
  }
}

.p-problem__hold {
  height: clamp(170px, 10px + 20.8333333333vw, 310px);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-problem__hold {
    height: 0px;
  }
}

.p-problem__body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(100px, 8.5714285714px + 11.9047619048vw, 180px) 0 clamp(120px, -17.1428571429px + 17.8571428571vw, 240px);
  background-color: rgba(4, 8, 18, 0.8);
}
@media screen and (max-width: 768px) {
  .p-problem__body {
    padding: clamp(64px, -192px + 80vw, 120px) 0 clamp(100px, -265.7142857143px + 114.2857142857vw, 180px);
  }
}

.p-problem__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(50px, 38.5714285714px + 1.4880952381vw, 60px);
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-problem__inner {
    gap: 33px;
    padding-inline: 32px;
  }
}

.p-problem__wave-top {
  position: absolute;
  left: 0;
  top: -37.7px;
  width: 100%;
  height: 38px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 768px) {
  .p-problem__wave-top {
    top: -30px;
    height: 30px;
  }
}

.p-problem__wave-btm {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 106px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (max-width: 768px) {
  .p-problem__wave-btm {
    height: 29px;
  }
}

.p-problem__crisis-ttl {
  width: 100%;
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 6px + 2.0833333333vw, 36px);
  font-weight: 500;
  line-height: 1.17;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-problem__crisis-ttl {
    font-size: clamp(22px, 12.8571428571px + 2.8571428571vw, 24px);
    line-height: 1.75;
  }
}

.p-problem__cards {
  display: flex;
  gap: clamp(32px, -22.8571428571px + 7.1428571429vw, 80px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-problem__cards {
    flex-direction: column;
    gap: 37px;
  }
}

.p-action {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 5.7142857143px + 6.5476190476vw, 100px) 0 clamp(64px, 0px + 8.3333333333vw, 120px);
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-action {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0 clamp(80px, -102.8571428571px + 57.1428571429vw, 120px);
  }
}

.p-action__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(48px, -9.1428571429px + 7.4404761905vw, 98px);
  padding-inline: clamp(24px, -17.1428571429px + 5.3571428571vw, 60px);
}
@media screen and (max-width: 768px) {
  .p-action__inner {
    gap: clamp(48px, -134.8571428571px + 57.1428571429vw, 88px);
    padding-inline: 26px;
  }
}

@media screen and (max-width: 768px) {
  .p-action .c-ttl__ja {
    font-size: clamp(21.3333333333px, 6.6666666667vw, 26px);
  }
}

@media screen and (max-width: 768px) {
  .p-report .c-ttl__ja,
  .p-faq .c-ttl__ja {
    font-size: clamp(22.9743589744px, 7.1794871795vw, 28px);
  }
}

.p-action__blob {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.p-action__blob.--l {
  left: max(-114px, 50% - 834px);
  top: 128px;
  width: 588px;
  height: 450px;
}
.p-action__blob.--r {
  right: max(-82px, 50% - 802px);
  bottom: 158px;
  top: auto;
  width: 560px;
  height: 599px;
}
@media screen and (max-width: 768px) {
  .p-action__blob.--l {
    left: clamp(-165.7435897436px, -51.7948717949vw, -202px);
    top: clamp(155.0769230769px, 48.4615384615vw, 189px);
    width: clamp(342.9743589744px, 107.1794871795vw, 418px);
    height: clamp(262.5641025641px, 82.0512820513vw, 320px);
  }
  .p-action__blob.--r {
    right: auto;
    left: clamp(165.7435897436px, 51.7948717949vw, 202px);
    top: clamp(1371.8974358974px, 428.7179487179vw, 1672px);
    bottom: auto;
    width: clamp(296.2051282051px, 92.5641025641vw, 361px);
    height: clamp(316.7179487179px, 98.9743589744vw, 386px);
  }
}

.p-action__photos {
  margin-top: -18px;
  display: flex;
  gap: clamp(12px, -6.2857142857px + 2.380952381vw, 28px);
  width: 100%;
  padding: 0 clamp(0px, -68.5714285714px + 8.9285714286vw, 60px);
}
@media screen and (max-width: 768px) {
  .p-action__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
    padding-inline: 6px;
  }
}

.p-action__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  min-height: clamp(320px, 118.8571428571px + 26.1904761905vw, 496px);
  padding: clamp(28px, 14.2857142857px + 1.7857142857vw, 40px) clamp(24px, -17.1428571429px + 5.3571428571vw, 60px);
  border-radius: clamp(48px, -45.7142857143px + 12.2023809524vw, 130px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-action__banner {
    align-items: stretch;
    width: calc(100% + 52px);
    max-width: none;
    margin-inline: -26px;
    min-height: clamp(426.6666666667px, 133.3333333333vw, 520px);
    margin-top: 10px;
    padding: 10px clamp(26.2564102564px, 8.2051282051vw, 32px) clamp(32.8205128205px, 10.2564102564vw, 40px);
    border-radius: clamp(40.2051282051px, 12.5641025641vw, 49px);
    gap: 28px;
  }
}

.p-action__banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-action__banner-veil {
  position: absolute;
  inset: 0;
}

.p-action__banner-txt {
  position: relative;
  margin-top: -32px;
  width: 736px;
  max-width: 100%;
  font-size: clamp(15px, 7px + 1.0416666667vw, 22px);
  font-weight: 600;
  line-height: clamp(39px, 18.4285714286px + 2.6785714286vw, 57px);
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-action__banner-txt {
    align-self: center;
    width: auto;
    margin-top: -5px;
    font-size: clamp(14.7692307692px, 4.6153846154vw, 18px);
    line-height: clamp(32.8205128205px, 10.2564102564vw, 40px);
    text-align: left;
  }
}

.p-action__banner-line {
  display: block;
}

.p-action__banner-num,
.p-action__banner-unit {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  line-height: inherit;
  vertical-align: baseline;
}

.p-action__banner-num {
  font-size: clamp(32px, 13.7142857143px + 2.380952381vw, 48px);
}
@media screen and (max-width: 768px) {
  .p-action__banner-num {
    font-size: clamp(32.8205128205px, 10.2564102564vw, 40px);
  }
}

.p-action__banner-unit {
  font-size: clamp(21px, 8.4285714286px + 1.6369047619vw, 32px);
}
@media screen and (max-width: 768px) {
  .p-action__banner-unit {
    font-size: clamp(22.9743589744px, 7.1794871795vw, 28px);
  }
}

.p-action__banner-foot {
  position: relative;
  width: 736px;
  max-width: 100%;
  font-size: clamp(19px, 6.4285714286px + 1.6369047619vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-action__banner-foot {
    align-self: center;
    width: auto;
    font-size: clamp(16.4102564103px, 5.1282051282vw, 20px);
    text-align: left;
  }
}

.p-action__use {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 9.1428571429px + 1.9345238095vw, 37px);
  width: 100%;
  padding: 0 clamp(0px, -137.1428571429px + 17.8571428571vw, 120px);
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .p-action__use {
    gap: clamp(24px, -35.4285714286px + 18.5714285714vw, 37px);
    margin-top: -8px;
    padding: 0;
  }
}

.p-action__use-ttl {
  font-size: clamp(19px, 6.4285714286px + 1.6369047619vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #1e3343;
}
@media screen and (max-width: 768px) {
  .p-action__use-ttl {
    font-size: clamp(19px, 5.2857142857px + 4.2857142857vw, 22px);
  }
}

.p-action__use-list {
  display: flex;
  gap: clamp(14px, -11.1428571429px + 3.2738095238vw, 36px);
}
@media screen and (max-width: 768px) {
  .p-action__use-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 16px;
  }
}

.p-action__note {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 20px 30px;
  border-radius: 30px;
  background-color: #fcfbf0;
}
@media screen and (max-width: 768px) {
  .p-action__note {
    justify-content: flex-start;
    width: calc(100% + 20px);
    max-width: none;
    margin-inline: -10px;
    min-height: clamp(120px, 34.4vw, 160px);
    margin-top: 24px;
    padding: 25px 16px;
    border-radius: 24px;
  }
}

.p-action__note-txt {
  font-size: clamp(15px, 7px + 1.0416666667vw, 22px);
  font-weight: 600;
  line-height: 1.73;
  text-align: center;
  color: #1e3343;
  padding-right: clamp(140px, 60px + 10.4166666667vw, 210px);
  padding-left: clamp(110px, 30px + 10.4166666667vw, 180px);
}
@media screen and (max-width: 768px) {
  .p-action__note-txt {
    width: 100%;
    padding-right: 27%;
    padding-left: 0;
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
    line-height: 1.75;
    text-align: left;
  }
}

.p-action__note-em {
  color: #ff4e65;
}

.p-action__note-photos {
  position: absolute;
  right: clamp(12px, -13.1428571429px + 3.2738095238vw, 34px);
  top: clamp(-20px, 5.7142857143px + -1.7857142857vw, -8px);
  width: clamp(128px, 48px + 10.4166666667vw, 198px);
  aspect-ratio: 198/176;
  height: auto;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-action__note-photos {
    right: 0;
    top: 12%;
    bottom: auto;
    width: 30%;
    height: auto;
    aspect-ratio: 108/96;
  }
}

.p-action__note-photo {
  position: absolute;
  width: 69.19%;
  height: 48.86%;
}
.p-action__note-photo.--a {
  left: 2.02%;
  top: -5.68%;
  transform: rotate(-5.38deg);
}
.p-action__note-photo.--b {
  left: 27.27%;
  top: 36.93%;
  transform: rotate(7.95deg);
}
@media screen and (max-width: 768px) {
  .p-action__note-photo.--a {
    left: -6%;
    top: -2%;
    width: 88%;
    height: auto;
    aspect-ratio: 75/47;
    transform: rotate(-0.38deg);
  }
  .p-action__note-photo.--b {
    left: 18%;
    top: 42%;
    width: 88%;
    height: auto;
    aspect-ratio: 75/47;
    transform: rotate(-0.05deg);
  }
}

.p-action__note-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p-action__note-photo-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-donate {
  position: relative;
  isolation: isolate;
  padding: clamp(60px, -8.5714285714px + 8.9285714286vw, 120px) 0;
  border-radius: clamp(32px, -22.8571428571px + 7.1428571429vw, 80px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-donate {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) clamp(0px, -73.1428571429px + 22.8571428571vw, 16px);
    border-radius: clamp(24px, -67.4285714286px + 28.5714285714vw, 44px);
  }
}

.p-donate__inner {
  position: relative;
  z-index: 1;
  padding-inline: clamp(24px, -291.4285714286px + 41.0714285714vw, 300px);
}
@media screen and (max-width: 768px) {
  .p-donate__inner {
    padding-inline: 0;
  }
}

.p-donate__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-donate__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-report {
  padding: clamp(56px, 17.1428571429px + 5.0595238095vw, 90px) 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-report {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0;
  }
}

.p-report--empty {
  min-height: 50px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-report--empty {
    min-height: 30px;
  }
}

.p-report__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(32px, -68.5714285714px + 13.0952380952vw, 120px);
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-report__inner {
    flex-direction: column;
    gap: 60px;
    padding-inline: 16px;
  }
}

.p-report__side {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  align-self: stretch;
  flex-shrink: 0;
  min-height: clamp(280px, 126.8571428571px + 19.9404761905vw, 414px);
}
@media screen and (max-width: 768px) {
  .p-report__side {
    display: contents;
  }
}

@media screen and (max-width: 768px) {
  .p-report__side .c-ttl {
    order: 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-report__side .c-btn.--more {
    order: 2;
    align-self: flex-end;
  }
}

.p-report__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  gap: 24px;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .p-report__list {
    width: 100%;
    order: 1;
    gap: 22px;
  }
}

.p-report__line {
  width: 100%;
  height: 1px;
  background-color: #d7e0e4;
}

.p-scape {
  width: 100%;
  height: clamp(320px, 4.5714285714px + 41.0714285714vw, 596px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-scape {
    height: clamp(489.0256410256px, 152.8205128205vw, 596px);
  }
}

.p-scape__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.p-connect {
  padding: clamp(60px, -8.5714285714px + 8.9285714286vw, 120px) 0 clamp(72px, -5.7142857143px + 10.119047619vw, 140px);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-connect {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0 clamp(106.6666666667px, 33.3333333333vw, 130px);
  }
}

.p-connect__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, -5.7142857143px + 5.9523809524vw, 80px);
  padding-inline: clamp(24px, -85.7142857143px + 14.2857142857vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-connect__inner {
    gap: clamp(40px, -51.4285714286px + 28.5714285714vw, 60px);
    padding-inline: 16px;
  }
}

.p-connect__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.p-connect__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-connect__head {
    gap: 50px;
  }
}

.p-connect__ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 5.7142857143px + 2.380952381vw, 40px);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-connect__ttl {
    font-size: clamp(22.9743589744px, 7.1794871795vw, 28px);
    line-height: 46px;
  }
}

.p-connect__lead {
  font-size: clamp(14px, 9.4285714286px + 0.5952380952vw, 18px);
  font-weight: 600;
  line-height: 1.78;
  font-family: "Hiragino Sans";
}
@media screen and (max-width: 768px) {
  .p-connect__lead {
    font-size: clamp(14px, 4.8571428571px + 2.8571428571vw, 16px);
    line-height: 1.875;
    text-align: left;
    padding-inline: 16px;
  }
}

.p-connect__cols {
  position: relative;
  display: flex;
  gap: clamp(20px, -14.2857142857px + 4.4642857143vw, 50px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-connect__cols {
    flex-direction: column;
    gap: 40px;
  }
}

.p-connect__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  gap: clamp(20px, 6.2857142857px + 1.7857142857vw, 32px);
  min-width: 0;
  padding: clamp(20px, 8.5714285714px + 1.4880952381vw, 30px) clamp(16px, -5.7142857143px + 2.8273809524vw, 35px);
  border: 1px solid #fff;
  border-radius: 30px;
}
.p-connect__col.--trust {
  align-items: flex-start;
  align-self: flex-start;
}
@media screen and (max-width: 768px) {
  .p-connect__col.--trust {
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-connect__col {
    padding: clamp(24px, -12.5714285714px + 11.4285714286vw, 32px) clamp(16px, -20.5714285714px + 11.4285714286vw, 24px);
    gap: clamp(24px, -12.5714285714px + 11.4285714286vw, 32px);
    border-radius: clamp(20px, 1.7142857143px + 5.7142857143vw, 24px);
  }
}

.p-connect__col-ttl {
  font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 8.7142857143px + 1.3392857143vw, 28px);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-connect__col-ttl {
    font-size: clamp(19px, 14.4285714286px + 1.4285714286vw, 20px);
    line-height: 1.6;
  }
}

.p-connect__steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.p-connect__hr {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}

.p-connect__checks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-connect__checks {
    gap: 20px;
  }
}

.p-faq {
  padding: clamp(60px, -8.5714285714px + 8.9285714286vw, 120px) 0 clamp(72px, -5.7142857143px + 10.119047619vw, 140px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: clamp(64px, -100.5714285714px + 51.4285714286vw, 100px) 0 clamp(80px, -194.2857142857px + 85.7142857143vw, 140px);
  }
}

.p-faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, -5.7142857143px + 5.9523809524vw, 80px);
  padding-inline: clamp(24px, -154.2857142857px + 23.2142857143vw, 180px);
}
@media screen and (max-width: 768px) {
  .p-faq__inner {
    gap: 50px;
    padding-inline: 16px;
  }
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}