@charset "UTF-8";
/* ========================================
   _reset.scss (modern & minimal)
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ol,
ul,
li,
table,
th,
td,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
[type=button],
[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  min-height: 100dvh; /* iOSのアドレスバー対策も兼ねる */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*------------------------------------------
  base.scss
------------------------------------------*/
html {
  font-size: 62.5%; /* 1rem = 10px */
}

body {
  margin: 0;
  padding: 0;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.8rem;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}

a.link__red {
  color: #d53f0c;
}

a.link__red:hover {
  text-decoration: underline;
}

a.link__white {
  color: #fff;
}

a.link__white:hover {
  text-decoration: underline;
}

/* ダーク背景内のリンク（必要ならユーティリティ化も可） */
.bgblack a,
.bgblack02 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/*---- responsive helpers ----*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

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

/*---------- containers ----------*/
.container {
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .container {
    padding-top: 120px;
  }
}
.container__l {
  max-width: 1120px;
  width: 92%;
  margin: 0 auto;
  padding-top: 40px;
}
.container__m {
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
  padding-top: 24px;
}
.container__s {
  max-width: 580px;
  width: 65%;
  margin: 0 auto;
  padding-top: 16px;
}

/*---------- text ----------*/
.heading__01 {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 32px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .heading__01 {
    font-size: 3.6rem;
  }
}

.heading__02 {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .heading__02 {
    font-size: 3rem;
  }
}

.heading__03 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .heading__03 {
    font-size: 2.2rem;
    font-weight: 500;
  }
}

.u-text-center {
  text-align: center;
}

.u-fs-l {
  font-size: 120%;
  font-weight: 600;
}

.u-fs-s {
  font-size: 80%;
}

.u-text-red {
  color: #d53f0c;
}

/*---------- margin ----------*/
.u-mt-s {
  margin-top: 16px;
}

.u-mt-m {
  margin-top: 32px;
}

.u-mt-l {
  margin-top: 54px;
}

/*---- page top button (ここに集約) ----*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #page-top {
    bottom: 20px;
    right: 20px;
  }
}
#page-top a {
  width: 24px;
  display: block;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  #page-top a {
    width: 32px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*---------- btn----------*/
.cta {
  background-color: #faf7f2;
  padding: 54px 0;
  margin: 80px auto 0;
}
.cta img {
  border-radius: 10px;
}
.cta a:hover {
  opacity: 0.8;
  transform: translateY(-4px);
}
.cta__wrap {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
.cta__btn {
  margin: 0 auto 16px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cta__last {
  background-color: #faf7f2;
  padding: 54px 0;
  margin: 0 auto;
}
.cta__btn--single {
  border: solid 1px #ccc;
  border-radius: 10px;
}

.button-2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* img と文字の間はこれが綺麗 */
  padding: 0.9em 2em;
  border-radius: 5px;
  background-color: #f3764a;
  color: #fff;
  font-weight: 600;
  font-size: 1.4rem;
  max-width: 300px;
  margin: 24px auto 0 0;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-2 a:hover {
  transform: translateY(-5px);
  opacity: 1;
}

/* クリック時に少し戻ると気持ちいい */
.button-2 a:active {
  transform: translateY(-2px);
}

.button-2 img {
  max-width: 24px;
  border-radius: inherit;
  float: right;
  margin-right: 8px;
}

/*----header-----*/
.header {
  max-width: 1120px;
  width: 92%;
  margin: 16px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 240px;
  width: 40%;
}
.header__phone {
  width: 300px;
  width: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .header__phone {
    font-size: 2.4rem;
  }
}
.header__phone img {
  width: 20px;
  display: inline-block;
}
.header__phone span {
  display: block;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .header__phone span {
    font-size: 1.4rem;
  }
}

.mv {
  background-image: url("../img/mv_sp.jpg");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: end;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  height: 70vh;
}
@media screen and (min-width: 768px) {
  .mv {
    align-items: center;
    background-image: url("../img/mv_pc.jpg");
    height: 480px;
  }
}
.mv__inner {
  max-width: 600px;
  margin: 0 auto 10%;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .mv__inner {
    margin: 10% auto 0 5%;
  }
}
.mv__catch {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .mv__catch {
    font-size: 4rem;
  }
}
.mv__btn {
  width: 100%;
  max-width: 400px;
  margin: 24px auto 0 0;
}
.mv__btn a {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mv__btn a:hover {
  transform: translateY(-5px);
  opacity: 1;
}
.mv__btn a:active {
  transform: translateY(-3px);
}

/*----lead-----*/
.lead {
  margin: 40px auto 0;
}

/*----perpose-----*/
.purpose {
  display: flex;
  flex-direction: column;
  max-width: 1120px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .purpose {
    flex-direction: row;
    justify-content: flex-start;
    gap: 80px;
  }
}
.purpose__heading01 {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .purpose__heading01 {
    font-size: 4.8rem;
    writing-mode: vertical-rl;
    text-orientation: upright;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.purpose__title {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .purpose__title {
    width: 20%;
    display: flex;
    justify-content: center;
  }
}
.purpose__detail {
  width: 90%;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .purpose__detail {
    width: 80%;
    margin: 120px auto 0;
  }
}
.purpose__plan {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .purpose__plan {
    justify-content: space-between;
    flex-direction: row;
  }
}
.purpose__plan div {
  width: 90%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .purpose__plan div {
    width: 32%;
  }
}
.purpose__price {
  font-size: 2.8rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .purpose__price {
    font-size: 3.6rem;
  }
}
.purpose__lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.purpose__list {
  width: 31%;
  background-color: #29559e;
  color: #fff;
  height: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  margin: 0 0 16px 0;
}
@media screen and (min-width: 1280px) {
  .purpose__list {
    width: 15%;
    margin: 0 auto;
  }
}
.purpose__list div {
  width: 55%;
}
@media screen and (min-width: 1280px) {
  .purpose__list div {
    margin: 0 auto;
  }
}
.purpose__list p {
  font-weight: 600;
  font-size: 1.4rem;
}

/*----story-----*/
.story {
  background-color: #29559e;
  padding-bottom: 80px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .story {
    padding-bottom: 120px;
  }
}
.story__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
}
.story__title {
  grid-column: 1/7;
  grid-row: 1/2;
  z-index: 10;
}
@media screen and (min-width: 1280px) {
  .story__title {
    grid-column: 1/4;
  }
}
.story__img {
  grid-column: 3/7;
  grid-row: 1/2;
}
.story__comment {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .story__comment {
    flex-direction: row;
    padding: 40px;
  }
}
.story__commentImg {
  width: 60%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .story__commentImg {
    width: 20%;
    margin: 0;
  }
}
.story__commentImg img {
  border-radius: 50%;
}
.story__commenttxt {
  width: 100%;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .story__commenttxt {
    width: 78%;
  }
}

/*----cambodia-----*/
.cambodia__points {
  display: flex;
  max-width: 1120px;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cambodia__points {
    justify-content: space-between;
    flex-direction: row;
  }
}
.cambodia__point {
  width: 80%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .cambodia__point {
    width: 32%;
    margin-bottom: 0;
  }
}
.cambodia img {
  margin-bottom: 16px;
}

/*----supporter-----*/
.supporter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 24px;
  background-color: #29559e;
  border-radius: 10px;
  padding: 24px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .supporter {
    justify-content: space-between;
    flex-direction: row;
    padding: 24px 40px;
  }
}
.supporter__img {
  width: 50%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .supporter__img {
    margin: 0;
    width: 15%;
  }
}
.supporter__img img {
  border-radius: 50%;
}
.supporter__message {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .supporter__message {
    width: 80%;
  }
}

.details-summary {
  cursor: pointer;
  transition: 0.2s;
  padding: 6px;
  border-radius: 6px;
  background-color: #dce4f1;
  margin: 4px auto;
  padding: 6px 24px;
  font-size: 1.6rem;
  /* ホバー時のスタイル */
  /* タブフォーカス時のスタイル */
}
.details-summary:hover {
  cursor: pointer;
  background-color: #29559e;
  color: #fff;
}
.details-summary:focus-visible {
  outline: dashed #00a5a0;
}

details p {
  font-size: 1.6rem;
  padding: 16px;
}

/*----media-----*/
.media__list {
  list-style-type: disc;
  list-style-position: inside;
}
.media__list li {
  margin-top: 4px;
}

/*----deduction-----*/
.deduction {
  background-color: #f3764a;
  color: #fff;
  padding: 80px 0;
  margin: 160px auto 0;
}
.deduction__img {
  max-width: 720px;
  margin: 0 auto 24px;
  width: 90%;
}

/*----footer-----*/
footer {
  padding: 24px 0 4px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer {
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer__logo {
  width: 60%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 20%;
    margin: 0;
  }
}
.footer__info {
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__info {
    width: 80%;
    text-align: right;
  }
}
.footer__copy {
  text-align: center;
  font-size: 1.2rem;
  padding-top: 32px;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    padding-top: 16px;
  }
}

/*------------------------------------------
  animation.scss
------------------------------------------*/
.fadein,
.fadein--up,
.fadein--down,
.fadein--left,
.fadein--right {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  will-change: opacity, transform;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
}

.fadein--up.animated,
.fadein--down.animated,
.fadein--left.animated,
.fadein--right.animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 動きを苦手とするユーザ設定に追従 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */