@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-light-gray: #F1F1F1;
  --color-light-yellow: #FFF9E2;
  --color-light-orange: #FFAA60;
  --color-sky-blue: #1D98DC;
  --color-light-blue: #ECF9FE;
  --color-dark-gray: #676564;
  --color-text: #333333;
  --color-border: #C9C9C9;
  --color-white: #fff;
  --color-black: #000;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
  --font-yu-gothic: "Yu Gothic Medium", "Yu Gothic", "Helvetica Neue", Arial, sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-noto-sans-jp);
  font-weight: 400;
  color: var(--color-text);
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
  color: var(--color-green);
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/*
html {
  scroll-behavior: smooth;
}
*/
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  height: 6rem;
  transition: all 0.5s ease;
  background-color: var(--color-white);
}
body.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 768px) {
  body.admin-bar .header {
    top: 46px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 1.5625rem;
  height: inherit;
}
@media screen and (max-width: 1400px) {
  .header__inner {
    padding: 0 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    gap: 1.25rem;
    padding: 0 0.625rem;
  }
}

.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
  z-index: 101;
}

.header__logo {
  width: 21.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 341/75;
}
@media screen and (max-width: 430px) {
  .header__logo {
    width: 100%;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  flex-wrap: wrap;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  margin-left: 1.875rem;
}

.header__item {
  height: inherit;
}

.header__link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  height: inherit;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 0.875rem;
  }
}

.header__button {
  max-width: 220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(34deg, #ffd061 0%, #ff6b33 100%);
  border-radius: 6.5625rem;
}
@media screen and (max-width: 768px) {
  .header__button {
    max-width: 33%;
  }
}

.header__button-text {
  font-size: 1.125rem;
  line-height: 3.3888888889;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .header__button-text {
    font-size: 3.6458333333vw;
  }
}

.header__hamburger-wrap {
  display: none;
  width: 3.75rem;
  aspect-ratio: 1/1;
  z-index: 101;
  border: 1px solid var(--color-navy);
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.3125rem;
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-navy);
  transition: all 0.3s;
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.hamburger {
  position: absolute;
  z-index: 9999;
  top: 14px;
  right: 3%;
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--color-green);
  border-radius: 0.625rem;
  cursor: pointer;
}

.hamburger.is-active {
  top: 14px;
  right: 3%;
}

.hamburger__line {
  position: absolute;
  display: inline-block;
  left: 10px;
  top: 6px;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.3s;
  border-radius: 0.0625rem;
}

.hamburger__line:first-child {
  top: 14px;
}

.hamburger__line:nth-child(2) {
  top: 22px;
  transition: opacity 0.3s;
}

.hamburger__line:nth-child(3) {
  top: 30px;
}

.hamburger.is-active .hamburger__line:first-child {
  top: 20px;
  left: 8px;
  transform: rotate(-45deg);
  width: 30px;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 20px;
  left: 8px;
  transform: rotate(45deg);
  width: 30px;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 7.5rem 1.5625rem 6.25rem;
  z-index: 100;
  pointer-events: none;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.drawer__item {
  margin-bottom: 0.9375rem;
}

.drawer__link {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 0.625rem 0;
  text-transform: uppercase;
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer__button {
  max-width: 360px;
  width: 100%;
  background-color: var(--color-yellow);
  border: 1px solid var(--color-navy);
  cursor: pointer;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.125rem;
}

.drawer__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.drawer__button-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-navy);
  text-transform: uppercase;
}

body.is-drawer-active {
  overflow: hidden;
}

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    padding: 1rem 1.25rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-dark-gray);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-sky-blue);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-sky-blue);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.c-button {
  position: relative;
  max-width: 290px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(34deg, #ffd061 0%, #ff6b33 100%);
  border-radius: 6.5625rem;
  cursor: pointer;
  text-decoration: none;
  padding: 0.625rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 3.4210526316vw;
    line-height: 2.1923076923;
    padding: 0.625rem 0.9375rem;
    max-width: 80%;
    margin-inline: auto;
  }
}

.c-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/right-arrow-navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 32px;
  height: 16px;
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
}

.footer {
  background-color: var(--color-white);
}

.footer__copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  padding: 1.875rem 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 3.125vw;
  }
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 60px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.625rem;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 3.125rem;
    height: 3.125rem;
    right: 7%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 1.875rem;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .page-top.active {
    bottom: 3.125rem;
  }
}

/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}

.pagination__arrow {
  color: var(--color-sky-blue);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-sky-blue);
  background-color: var(--color-white);
  border: 1px solid var(--color-sky-blue);
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 0.625rem;
}

.page-numbers:hover {
  opacity: 1;
  background-color: var(--color-sky-blue);
  color: var(--color-white);
}

.page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-sky-blue);
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

/****************************************/
/****************************************/
.top-mv {
  position: relative;
  background-color: var(--color-white);
  margin-top: 6rem;
  padding: 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  body.admin-bar .top-mv {
    margin-top: 110px;
  }
}
@media screen and (max-width: 768px) {
  .top-mv {
    margin-top: 6.875rem;
  }
}

.swiper-slide img {
  aspect-ratio: 47/30;
}
@media screen and (max-width: 768px) {
  .swiper-slide img {
    aspect-ratio: 23/30;
  }
}

.top-mv__copy-wrap {
  position: absolute;
  max-width: 800px;
  width: 100%;
  top: 5.4375rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-mv__copy-wrap {
    width: 95%;
    top: 1.875rem;
  }
}

.top-mv__copy {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  letter-spacing: 0.076em;
}
@media screen and (max-width: 768px) {
  .top-mv__copy {
    font-size: 4.6875vw;
  }
}
.top-mv__copy .text-lg {
  color: var(--color-sky-blue);
  font-family: var(--font-yu-gothic);
  font-size: 2.75rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .top-mv__copy .text-lg {
    font-size: 7.03125vw;
  }
}

/****************************************/
/****************************************/
.top-about {
  background-image: url(../images/bg-about.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 2.8125rem 0 6.5625rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 1200px) {
  .top-about {
    background-position: 70%;
  }
}
@media screen and (max-width: 768px) {
  .top-about {
    background-position: 75%;
    padding: 1.875rem 0 5rem;
  }
}

.top-about__container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-about__container {
    flex-direction: column;
    padding: 0 1.25rem;
    gap: 1.875rem;
  }
}

.top-about__left {
  position: relative;
  max-width: 45%;
  width: 100%;
  padding-left: 6.25rem;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 1400px) {
  .top-about__left {
    max-width: 60%;
    padding-left: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-about__left {
    max-width: 40%;
    padding-left: clamp(1.875rem, -3.701rem + 11.6vw, 5rem);
  }
}
@media screen and (max-width: 768px) {
  .top-about__left {
    max-width: 100%;
    padding-left: 2.5rem;
    margin-top: 3.25rem;
    padding-left: 0;
  }
}

.top-about__title {
  font-family: var(--font-yu-gothic);
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-about__title {
    font-size: 4.9479166667vw;
    text-align: center;
  }
}

.top-about__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-about__subtitle {
    font-size: 4.4270833333vw;
    text-align: center;
  }
}

.top-about__text {
  margin-top: 1.25rem;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-about__text {
    text-align: center;
  }
}

.top-about__right {
  padding-left: 5.6875rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.625rem;
  padding: 0.625rem 0.9375rem 0.625rem 1.875rem;
}
@media screen and (max-width: 1400px) {
  .top-about__right {
    width: 40%;
    padding: 0.625rem 0 0.625rem 1.875rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 1200px) {
  .top-about__right {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .top-about__right {
    padding: 2.5rem 0.9375rem;
    border-top-right-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
  }
}

.top-about__right-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.125rem;
}
@media screen and (max-width: 1400px) {
  .top-about__right-inner {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .top-about__right-inner {
    flex-direction: column;
  }
}

@media screen and (max-width: 1400px) {
  .top-about__right-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 230px;
    border-radius: 0.625rem;
    background-image: url("../images/about-box-img01.png");
    background-size: cover;
    background-position: center;
  }
}

.top-about__right-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-sky-blue);
}
@media screen and (max-width: 768px) {
  .top-about__right-subtitle {
    font-size: 4.4270833333vw;
    text-align: center;
  }
}

.top-about__right-body {
  max-width: 305px;
  width: 100%;
}

.top-about__right-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-about__right-text {
    text-align: center;
  }
}

.top-about__top-img {
  width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 50/23;
  flex: 1;
}
@media screen and (max-width: 1400px) {
  .top-about__top-img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-about__top-img {
    width: 100%;
  }
}

/****************************************/
/****************************************/
.top-assignment {
  padding: 3.75rem 0 4.6875rem;
  background-color: var(--color-light-blue);
}

.top-assignment__inner {
  max-width: 1400px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.top-assignment__box {
  border-radius: 0.625rem;
  background-color: var(--color-white);
  padding: 5rem 5rem 3.6875rem;
}
@media screen and (max-width: 768px) {
  .top-assignment__box {
    padding: 3.75rem 1.25rem 2.8125rem;
  }
}

.top-assignment__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 6.25rem;
       column-gap: 6.25rem;
  row-gap: 2.75rem;
  margin-top: 3.875rem;
}
@media screen and (max-width: 768px) {
  .top-assignment__cards {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
    margin-top: 2.5rem;
  }
}

.top-assignment__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-assignment__card-title {
  font-family: var(--font-yu-gothic);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sky-blue);
  line-height: 61px;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 768px) {
  .top-assignment__card-title {
    font-size: 4.4270833333vw;
  }
}

.top-assignment__card-img {
  width: 100%;
  aspect-ratio: 11/4;
  margin-top: 0.9375rem;
}

.top-assignment__card-text {
  margin-top: 0.6875rem;
}

.top-assignment__message-wrap {
  margin-top: 4.75rem;
}

.top-assignment__message {
  font-family: var(--font-yu-gothic);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 2.0833333333;
  letter-spacing: 0.001em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-assignment__message {
    font-size: 4.4270833333vw;
  }
}
.top-assignment__message .text-lg {
  font-size: 1.875rem;
  color: var(--color-sky-blue);
}
@media screen and (max-width: 768px) {
  .top-assignment__message .text-lg {
    font-size: 5.2083333333vw;
  }
}

.top-assignment__note {
  font-family: var(--font-yu-gothic);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.8888888889;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .top-assignment__note {
    font-size: 3.6458333333vw;
  }
}

/****************************************/
/****************************************/
.top-initiative {
  padding: 5.4375rem 0 3.75rem;
  background-color: var(--color-white);
}

.top-initiative__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-initiative__cards {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
}

.top-initiative__card {
  background-color: var(--color-light-blue);
  border-radius: 0.625rem;
  padding: 2.6875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .top-initiative__card {
    min-height: 14rem;
  }
}

.top-initiative__card-title {
  font-family: var(--font-yu-gothic);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-sky-blue);
  line-height: 1.3636363636;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-initiative__card-title {
    font-size: 4.1666666667vw;
  }
}

.top-initiative__card-img {
  width: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .top-initiative__card-img {
    width: clamp(2rem, 0.571rem + 7.14vw, 4rem);
  }
}
.top-initiative__card-img.top-initiative__card-img--01 {
  width: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-initiative__card-img.top-initiative__card-img--01 {
    width: clamp(1.875rem, 0.536rem + 6.7vw, 3.75rem);
  }
}

/****************************************/
/****************************************/
.top-request {
  padding: 3.75rem 0 3.9375rem;
  background-color: var(--color-light-blue);
}

.top-request__inner {
  max-width: 1400px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.top-request__box {
  position: relative;
  border-radius: 0.625rem;
  background-color: var(--color-white);
  padding: 6.8125rem 2.5rem 3.0625rem;
}
@media screen and (max-width: 768px) {
  .top-request__box {
    padding: 4.6875rem 1.25rem 2.5rem;
  }
}

.top-request__box::before {
  position: absolute;
  content: "";
  background-image: url(../images/request-deco01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 335px;
  aspect-ratio: 335/69;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 430px) {
  .top-request__box::before {
    width: 77%;
  }
}

.top-request__title-img {
  width: 283px;
  aspect-ratio: 283/168;
  margin-top: 0.3125rem;
  margin-inline: auto;
}
@media screen and (max-width: 430px) {
  .top-request__title-img {
    width: 65%;
  }
}

.top-request__title-img + .top-request__text {
  margin-top: 3.125rem;
}

.top-request__text {
  text-align: center;
}

.top-request__list {
  margin-top: 3.125rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 584px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-request__list {
    margin-top: 1.875rem;
  }
}

.top-request__item {
  position: relative;
  color: var(--color-sky-blue);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  padding: 0.9375rem 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-request__item {
    font-size: 3.6458333333vw;
  }
}
.top-request__item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-sky-blue);
  bottom: 0;
}

.top-request__list + .top-request__text {
  margin-top: 2.625rem;
}

p.top-request__name {
  font-weight: 700;
  text-align: center;
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  p.top-request__name {
    margin-top: 1.875rem;
  }
}

/****************************************/
/****************************************/
.top-donation {
  position: relative;
  padding: 11.125rem 0 6.0625rem;
  background: linear-gradient(41.8deg, #ffea95 0%, #ffdbbf 100%);
}
@media screen and (max-width: 768px) {
  .top-donation {
    padding: 6.25rem 0 3.75rem;
  }
}
.top-donation::before {
  position: absolute;
  content: "";
  background-image: url(../images/donation-deco01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 335px;
  aspect-ratio: 335/69;
  left: 50%;
  top: 3.3125rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .top-donation::before {
    top: 0.9375rem;
  }
}
@media screen and (max-width: 430px) {
  .top-donation::before {
    width: 77%;
  }
}

.top-donation__inner {
  max-width: 1400px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.top-donation__title {
  text-align: center;
}

.top-donation__message {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-top: 1.1875rem;
}

.top-donation__text {
  text-align: center;
  margin-top: 1.75rem;
}

.top-donation__tab {
  margin-top: 4.6875rem;
}

.top-donation__tab-list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-donation__tab-list {
    align-items: stretch;
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 430px) {
  .top-donation__tab-list {
    gap: 0.625rem;
  }
}

.top-donation__tab-button {
  position: relative;
  width: 25%;
  min-height: 7.3125rem;
  padding: 0.625rem;
  cursor: pointer;
  background-color: var(--color-light-gray);
  color: var(--color-text);
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 1024px) {
  .top-donation__tab-button {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-donation__tab-button {
    width: 28%;
    flex-direction: column;
    min-height: 8.25rem;
    padding: 0.625rem 0.625rem 2.5rem;
    gap: 0.5rem;
  }
}
.top-donation__tab-button span {
  transition: color 0.3s ease;
}
.top-donation__tab-button.is-active {
  background-color: var(--color-white);
}
.top-donation__tab-button.is-active .top-donation__tab-button-check {
  background-image: url(../images/check-on.svg);
}
.top-donation__tab-button .top-donation__tab-button-check {
  background-image: url(../images/check-off.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.25rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .top-donation__tab-button .top-donation__tab-button-check {
    width: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-donation__tab-button .top-donation__tab-button-check {
    width: 1.25rem;
  }
}
.top-donation__tab-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/down-arrow-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 0.5rem;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.top-donation__tab-button-text {
  font-size: 1.375rem;
  line-height: 1.2727272727;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .top-donation__tab-button-text {
    font-size: clamp(1.125rem, 0.748rem + 0.78vw, 1.25rem);
  }
}
@media screen and (max-width: 768px) {
  .top-donation__tab-button-text {
    font-size: 3.6458333333vw;
  }
}

.top-donation__tab-content {
  display: none;
  background-color: var(--color-white);
  padding: 4.375rem 11.25rem;
  border-radius: 0.625rem;
}
.top-donation__tab-content.is-active {
  display: block;
}
@media screen and (max-width: 1400px) {
  .top-donation__tab-content {
    padding: 4.375rem clamp(3.75rem, -3.105rem + 14.26vw, 9.375rem);
  }
}
@media screen and (max-width: 768px) {
  .top-donation__tab-content {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .top-donation__tab-content {
    padding: 2.5rem 0.9375rem;
  }
}

.top-donation__tab-content-title {
  font-size: 2rem;
  line-height: 0.875;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-donation__tab-content-title {
    font-size: 5.46875vw;
  }
}

.top-donation__tab-content-logo {
  width: 21.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 341/75;
  margin-top: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 430px) {
  .top-donation__tab-content-logo {
    width: 80%;
  }
}

.top-donation__tab-content-text {
  text-align: center;
  margin-top: 2rem;
}

.top-donation__payment-box {
  margin-top: 2.3125rem;
  background-color: var(--color-light-yellow);
  padding: 3rem 4.375rem;
}
@media screen and (max-width: 1024px) {
  .top-donation__payment-box {
    padding: 2.5rem clamp(1.875rem, -3.779rem + 11.76vw, 3.75rem);
  }
}
@media screen and (max-width: 768px) {
  .top-donation__payment-box {
    padding: 2.1875rem 1.25rem;
  }
}

.top-donation__payment-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-donation__payment-title {
    font-size: 3.90625vw;
  }
}

.top-donation__payment-cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .top-donation__payment-cards {
    gap: clamp(1.875rem, -3.779rem + 11.76vw, 3.75rem);
  }
}
@media screen and (max-width: 768px) {
  .top-donation__payment-cards {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}

.top-donation__payment-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.top-donation__payment-card-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-light-orange);
  width: 100%;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-donation__payment-card-title {
    font-size: 3.90625vw;
  }
}

p.top-donation__payment-card-text {
  margin-top: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.top-donation__payment-card-note {
  text-align: center;
  margin-top: 1.375rem;
}

.top-donation__payment-button {
  max-width: 320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(56deg, #fa0 0%, #ff4c00 100%);
  border-radius: 6.5625rem;
  margin-inline: auto;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .top-donation__payment-button {
    max-width: 90%;
  }
}
@media screen and (max-width: 430px) {
  .top-donation__payment-button {
    max-width: 100%;
  }
}

.top-donation__payment-button-icon {
  background-image: url(../images/right-arrow-w.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 2rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top-donation__payment-button-icon {
    font-size: 5.46875vw;
  }
}

.top-donation__payment-button-text {
  font-size: 1.125rem;
  line-height: 3.3888888889;
  font-weight: 700;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-donation__payment-button-text {
    font-size: 3.3854166667vw;
  }
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content h4,
.site-content h5,
.site-content h6 {
  margin-bottom: 1.5625rem;
}

.site-content p,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .site-content p {
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content h2 {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-navy);
  line-height: 1.7058823529;
  padding: 0.3125rem 0.9375rem;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: 4.4736842105vw;
    line-height: 1.375;
  }
}

.site-content h3 {
  position: relative;
  color: var(--color-navy);
  padding-bottom: 0.9375rem;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: 4.6052631579vw;
    line-height: 2.2;
  }
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-navy);
}

.site-content h4 {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
  padding-left: 0.9375rem;
  border-left: 5px solid var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h4 {
    font-size: 4.2105263158vw;
  }
}

.site-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 3.9473684211vw;
  }
}

.site-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .site-content h6 {
    font-size: 3.6842105263vw;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 768px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
  color: var(--color-black);
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .site-content ul li {
    align-items: baseline;
    font-size: 3.4210526316vw;
    line-height: 1.5384615385;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-navy);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.3125rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-navy);
  color: var(--color-white);
}

.site-content table td {
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
}

.site-content a {
  color: var(--color-navy);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  position: relative;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0 1.25rem;
}

.inner1100 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 3.3854166667vw;
    line-height: 1.5384615385;
  }
}

.c-section-title {
  font-family: var(--font-yu-gothic);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 61px;
  letter-spacing: 0.001em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 5.5263157895vw;
    line-height: 1.3095238095;
  }
}

.yellow-marker {
  display: inline-block;
  border-bottom: 2px solid var(--color-yellow3);
}

.page-heading {
  width: 100%;
  text-align: center;
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .page-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .page-heading {
    font-size: 1.25rem;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

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

.page-content {
  position: relative;
  padding: 5.4375rem 0;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.page-content__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 3.125rem;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-content__inner {
    padding: 0 1.5625rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 430px) {
  .post__inner {
    padding: 0 0.9375rem;
  }
}

.post__thumbnail {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
}

.post__body {
  padding-top: 3.75rem;
}

.post__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: inline-block;
  font-weight: 700;
  color: var(--color-navy);
}

.post__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .post__date {
    font-size: 0.875rem;
  }
}

.post__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .post__title {
    font-size: 5.5263157895vw;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--color-navy);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 20px), 1fr));
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-navy);
  color: var(--color-navy);
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-navy);
  color: var(--color-white);
  opacity: 1;
}

.news__category-title-wrap {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__category-title-en {
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-navy);
}
@media screen and (max-width: 768px) {
  .news__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.news__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-navy);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

/****************************************/
/****************************************/
.mv {
  position: relative;
  margin-top: 4.125rem;
  height: 17.5rem;
  background-image: unset;
  background-image: url(../images/bg-about.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 5rem;
    height: 12.5rem;
  }
}

.mv__inner {
  max-width: 1286px;
  width: 100%;
  margin: 0 auto;
  height: inherit;
}

.mv__content {
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mv__title {
  color: var(--color-text);
  font-size: 2.125rem;
  line-height: 1.6764705882;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .mv__title {
    font-size: 2.2222222222vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 5.7894736842vw;
    line-height: 1.3863636364;
  }
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}