@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: 1.4035087719vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #3D3D40;
}

body:has(.header) :target::before {
  content: "";
  display: block;
  height: 5rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  body:has(.header) :target::before {
    height: 5rem;
    margin-top: -5rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  max-width: 74.375rem;
  width: 100%;
  padding: 0 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 40rem;
    padding: 0 1.25rem;
  }
}

.inner--sub {
  max-width: 66.5625rem;
  width: 100%;
  padding: 0 1.5625rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner--sub {
    max-width: 40rem;
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}

.container {
  display: flex;
  flex-direction: column;
}

main {
  padding-bottom: 7.3125rem;
}
@media screen and (max-width: 767px) {
  main {
    padding-bottom: 4.375rem;
  }
}

/* 画像の中央寄せ */
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像の中央寄せ */
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/* 画像右寄せ */
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/* figureタグで囲まれた画像右寄せ */
.alignright img {
  height: auto;
  max-width: 100%;
}

/* 位置指定のない画像 */
.alignnone {
  height: auto;
  max-width: 100%;
}

/* figureタグで囲まれた位置指定のない画像 */
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

.common-heading {
  max-width: 21.625rem;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background-color: #1A6398;
  text-align: center;
  font-size: 2.0625rem;
  letter-spacing: 0.2em;
  padding: 1.1875rem 0.3125rem;
  border-left: 16px solid #70A4C9;
  border-right: 16px solid #70A4C9;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .common-heading {
    font-size: 1.25rem;
    max-width: 9.375rem;
    border-left: 8px solid #70A4C9;
    border-right: 8px solid #70A4C9;
    padding: 0.15625rem 0.3125rem;
  }
}

.common-heading--white {
  max-width: 18.75rem;
  letter-spacing: 0;
  color: #1A6398;
  background-color: #fff;
  border-left: 10px solid #1A6398;
  border-right: 10px solid #1A6398;
  padding: 0.375rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .common-heading--white {
    max-width: 9.375rem;
    border-left: 5px solid #1A6398;
    border-right: 5px solid #1A6398;
    padding: 0.0625rem 0.3125rem;
  }
}

.donation.container {
  margin-top: 5rem;
  background-color: #DEEFFF;
}
@media screen and (max-width: 767px) {
  .donation.container {
    margin-top: 2.5rem;
  }
}

.donation-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .donation-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .donation-text.small {
    font-size: 0.8125rem;
  }
}

.donation-info__title-sub {
  margin: 2.1875rem 0 0.875rem;
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  color: #1A6398;
}
@media screen and (max-width: 767px) {
  .donation-info__title-sub {
    font-size: 0.9375rem;
    margin: 1.625rem 0 0.71875rem;
  }
}

.donation-info__img {
  margin: 2.5rem 0 2.4375rem;
}
@media screen and (max-width: 767px) {
  .donation-info__img {
    margin: 1.9375rem 0 1.5rem;
  }
}
.donation-info__img img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .donation-info__img img {
    width: 19.5625rem;
  }
}

.donation-info__box.box5 .donation-info__box-wrap:nth-last-child(2) {
  padding-bottom: 3.3125rem;
  border-bottom: 0.0625rem solid #707070;
}
@media screen and (max-width: 767px) {
  .donation-info__box.box5 .donation-info__box-wrap:nth-last-child(2) {
    padding-bottom: 1.6875rem;
  }
}
.donation-info__box.box5 .donation-info__box-wrap:last-child .donation-text:last-child {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .donation-info__box.box5 .donation-info__box-wrap:last-child .donation-text:last-child {
    margin-top: 1.25rem;
  }
}

.donation-comment {
  font-size: 0.9375rem;
  font-weight: 400;
  display: inline-block;
  color: #3D3D40;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .donation-comment {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
  }
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100dvh;
  width: 100%;
  background-color: #fff;
  overflow: auto;
  display: none;
}

.drawer__inner {
  height: inherit;
  min-height: 31.25rem;
}

.drawer__nav {
  margin-top: 5rem;
  padding-bottom: 3.125rem;
}

.drawer__item {
  border-top: 1px solid rgba(123, 143, 188, 0.27);
  padding: 0.4375rem 0;
}

.drawer__item:last-child {
  border-bottom: 1px solid rgba(123, 143, 188, 0.27);
}

.drawer__link {
  font-size: 1rem;
  display: block;
  padding: 1rem 1.4375rem;
  position: relative;
  letter-spacing: -0.05em;
}

.drawer__link::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/common/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 0.9375rem;
  height: 0.625rem;
  right: 1.4375rem;
  top: 50%;
  transform: translateY(-50%);
}

.drawer__link.donation {
  background-color: #96CB6E;
  color: #fff;
}

.drawer__link.donation::after,
.drawer__link.moon::after {
  background-image: url(../images/common/arrow-white.svg);
}

.drawer__link.moon {
  background-color: #698BCC;
  color: #fff;
  padding: 0.625rem 1.4375rem 0.625rem 1.5625rem;
  line-height: 1;
}

.drawer__link.moon img {
  width: 8rem;
  aspect-ratio: 128/25;
  margin-left: 3rem;
  margin-top: 0.3125rem;
}

.drawer__link-moontext {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  padding-left: 4.5625rem;
}

.js-fadeUp {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp-delay {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.load {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  background-color: #fff;
  z-index: 99999;
}

.to-top {
  position: sticky;
  bottom: 0;
  cursor: pointer;
  display: none;
  z-index: 10;
}

.to-top__link {
  width: 5.3125rem;
  height: 5.3125rem;
  background-color: #3F8EC7;
  border-radius: 50%;
  position: absolute;
  bottom: 1.25rem;
  right: 1.875rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .to-top__link {
    width: 2.6875rem;
    height: 2.6875rem;
    bottom: 2.5rem;
    right: 0.625rem;
  }
}

.to-top__link::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 2.92rem;
  height: 1.71625rem;
  background-image: url(../images/common/arrow-top.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .to-top__link::after {
    width: 1.4375rem;
    height: 0.875rem;
  }
}

.news-archive {
  background-color: #DEEFFF;
  margin-top: 5rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    margin-top: 2.5rem;
    padding-top: 3.4375rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .news-archive .common-heading {
    max-width: 12.5rem;
  }
}

.page-news__list {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .page-news__list {
    margin-top: 2.375rem;
  }
}

.pagination {
  margin-top: 5.1875rem;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 3.4375rem;
  }
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .pagination .nav-links {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}
.pagination span, .pagination a {
  font-size: 1.25rem;
  font-weight: 500;
  color: #8B8B8B;
}
@media screen and (max-width: 767px) {
  .pagination span, .pagination a {
    font-size: 0.9375rem;
  }
}
.pagination span.current, .pagination a.current {
  color: #1A6398;
}

.single-post main {
  padding-bottom: 0;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .single-post main {
    padding-top: 2.5rem;
  }
}

.article_body {
  background-color: #DEEFFF;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .article_body {
    padding: 3.125rem 0;
  }
}

.article__contents {
  margin-top: 6.375rem;
  padding: 3.3125rem 3.9375rem 4.4375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .article__contents {
    margin-top: 2rem;
    padding: 1.5625rem 1.1875rem 2.8125rem;
  }
}
.article__contents h1 {
  font-size: 2.0625rem;
  font-weight: 500;
  color: #1A6398;
}
@media screen and (max-width: 767px) {
  .article__contents h1 {
    font-size: 1.25rem;
  }
}
.article__contents time {
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.001em;
  display: block;
  margin-top: 1.125rem;
  text-align: right;
  color: #1A6398;
}
@media screen and (max-width: 767px) {
  .article__contents time {
    font-size: 0.78125rem;
    margin-top: 0.25rem;
  }
}

.article_content {
  margin-top: 2.8125rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .article_content {
    margin-top: 1.375rem;
    padding-bottom: 0;
  }
}
.article_content p {
  font-size: 1.125rem;
  line-height: 2.1666666667;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .article_content p {
    font-size: 0.9375rem;
    line-height: 1.8333333333;
    margin-bottom: 2.625rem;
  }
}
.article_content h2 {
  font-size: 1.4375rem;
  font-weight: 500;
  color: #1A6398;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 767px) {
  .article_content h2 {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
.article_content h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1A6398;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 767px) {
  .article_content h3 {
    font-size: 1.125rem;
    margin-bottom: 1.625rem;
  }
}
.article_content .wp-element-caption {
  font-size: 0.9375rem;
  letter-spacing: 0.001em;
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .article_content .wp-element-caption {
    font-size: 0.875rem;
    margin-top: 0.625rem;
  }
}
.article_content .wp-block-image {
  margin: 4.375rem 0 3.9375rem;
}
@media screen and (max-width: 767px) {
  .article_content .wp-block-image {
    margin: 1.8125rem 0;
  }
}
.article_content a {
  color: #1A6398;
  text-decoration: underline;
  font-weight: 500;
}

.article_pagenation {
  display: grid;
  grid-template-columns: 10rem 10rem 10rem;
  justify-content: center;
  -moz-column-gap: 2.9375rem;
       column-gap: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .article_pagenation {
    grid-template-columns: 5rem 5rem 5rem;
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
.article_pagenation a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.001em;
  color: #1A6398;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .article_pagenation a {
    font-size: 0.8125rem;
  }
}

.donation-contact__contents {
  display: flex;
  -moz-column-gap: 2.5625rem;
       column-gap: 2.5625rem;
  padding: 1.875rem 0;
  border-top: 0.125rem solid #1A6398;
  border-bottom: 0.125rem solid #1A6398;
}
@media screen and (max-width: 767px) {
  .donation-contact__contents {
    flex-direction: column;
    row-gap: 0.9375rem;
    padding: 0.9375rem 0;
  }
}

@media screen and (max-width: 767px) {
  .donation-contact__left {
    display: flex;
    -moz-column-gap: 1.0625rem;
         column-gap: 1.0625rem;
  }
}
@media screen and (max-width: 767px) {
  .donation-contact__left .md-show {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6666666667;
  }
}

.donation-contact__lead {
  flex-shrink: 0;
  font-size: 2.0625rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #1A6398;
  border-radius: 0.8125rem;
  padding: 1rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .donation-contact__lead {
    font-size: 1rem;
    border-radius: 0.375rem;
    padding: 0.125rem 0.625rem;
  }
}

.donation-contact__info .donation-contact__info-wrap {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.9090909091;
}
@media screen and (max-width: 767px) {
  .donation-contact__info .donation-contact__info-wrap {
    font-size: 0.9375rem;
    line-height: 1.6666666667;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.donation-contact__info .donation-contact__tel {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .donation-contact__info .donation-contact__tel {
    pointer-events: all;
  }
}
.donation-contact__info a {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .donation-contact__info .a-blank {
    display: none;
  }
}

.donation-contact__info-sp {
  display: contents;
}
@media screen and (max-width: 767px) {
  .donation-contact__info-sp {
    display: flex;
    justify-content: center;
    -moz-column-gap: 1.5625rem;
         column-gap: 1.5625rem;
  }
}

.donation-info {
  padding: 4.5rem 0 5.9375rem;
}
@media screen and (max-width: 767px) {
  .donation-info {
    padding: 1.375rem 0 3.3125rem;
  }
}

.donation-info__wrap {
  padding: 3.375rem 3.9375rem 4.5625rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .donation-info__wrap {
    padding: 1.75rem 0.6875rem 1.96875rem;
  }
}

.donation-info__box:not(:first-child) {
  margin-top: 6.8125rem;
}
@media screen and (max-width: 767px) {
  .donation-info__box:not(:first-child) {
    margin-top: 2.375rem;
  }
}

.donation-info__title {
  font-size: 2.0625rem;
  font-weight: 500;
  padding-left: 1.0625rem;
  border-left: 0.5625rem solid #1A6398;
  color: #1A6398;
  line-height: 1.1818181818;
}
@media screen and (max-width: 767px) {
  .donation-info__title {
    font-size: 1.25rem;
    padding-left: 0.46875rem;
    border-width: 0.28125rem;
    line-height: 1.1;
  }
}

.donation-info__lead {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .donation-info__lead {
    margin-top: 0.8125rem;
  }
}

.donation-info__body {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .donation-info__body {
    margin-top: 0.9375rem;
  }
}

.donation-info__list {
  padding: 1.5625rem 0;
  border-top: 0.0625rem solid #000000;
  border-bottom: 0.0625rem solid #000000;
}
@media screen and (max-width: 767px) {
  .donation-info__list {
    padding: 0.5625rem 0;
  }
}

.donation-info__item {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .donation-info__item {
    flex-direction: column;
    row-gap: 0.3125rem;
  }
}
.donation-info__item:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .donation-info__item:not(:first-child) {
    margin-top: 1.125rem;
  }
}

.donation-info__item-lead {
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .donation-info__item-lead {
    font-size: 0.9375rem;
  }
}

.donation-info__links {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  padding: 0.75rem 0;
  border-top: 0.0625rem solid #000;
  border-bottom: 0.0625rem solid #000;
}
@media screen and (max-width: 767px) {
  .donation-info__links {
    flex-direction: column;
    row-gap: 0.5rem;
    padding: 1rem 0;
  }
}
.donation-info__links a {
  text-decoration: underline;
  color: #1A6398;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .donation-info__links a {
    font-size: 0.9375rem;
  }
}
.donation-info__links a.link-none {
  pointer-events: none;
  text-decoration: none;
  color: #8F8F91;
}

.donation-info__bank {
  margin-top: 7.6875rem;
  background-color: #DEEFFF;
  padding: 0.875rem 2.0625rem 1.3125rem;
  display: flex;
  -moz-column-gap: 3.375rem;
       column-gap: 3.375rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .donation-info__bank {
    flex-direction: column;
    row-gap: 0.8125rem;
    margin-top: 3.3125rem;
    padding: 1.5625rem 1.375rem 1.1875rem;
  }
}

.donation-info__bank-lead {
  font-size: 1.875rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  max-width: 14.75rem;
  width: 100%;
  flex-shrink: 0;
  background-color: #1A6398;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.03125rem 0;
}
@media screen and (max-width: 767px) {
  .donation-info__bank-lead {
    font-size: 1.25rem;
    max-width: none;
    padding: 0.875rem 0.625rem;
    width: 14.8125rem;
    margin: 0 auto;
  }
}
.donation-info__bank-lead p {
  line-height: 1.2666666667;
}

.donation-info__bank-right p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.1111111111;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .donation-info__bank-right p {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}

.donation-info__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.375rem;
       column-gap: 1.375rem;
  max-width: 23.4375rem;
  width: 100%;
  margin: 0 auto;
  background-color: #1A6398;
  border-radius: 3.125rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  padding: 1.3125rem 0;
}
@media screen and (max-width: 767px) {
  .donation-info__dl {
    -moz-column-gap: 0.9375rem;
         column-gap: 0.9375rem;
    max-width: none;
    width: 15.6875rem;
    font-size: 1rem;
    padding: 0.875rem 0.625rem;
  }
}
.donation-info__dl img {
  width: 1.6875rem;
  height: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .donation-info__dl img {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.donation-info__dl-comment {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .donation-info__dl-comment {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}

.donation-intro {
  padding: 8.75rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .donation-intro {
    padding: 3.125rem 0 1.25rem;
  }
}

.donation-intro__title {
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 2.0625rem;
  font-weight: 500;
  color: #1A6398;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 767px) {
  .donation-intro__title {
    font-size: 1.5rem;
    letter-spacing: 0.4em;
  }
}

.donation-intro__title::before,
.donation-intro__title::after {
  background-color: #1A6398;
  content: "";
  height: 0.125rem;
  width: 7rem;
}
@media screen and (max-width: 767px) {
  .donation-intro__title::before,
  .donation-intro__title::after {
    width: 2.8125rem;
  }
}

.donation-intro__title::before {
  margin-right: 0.96875rem;
}
@media screen and (max-width: 767px) {
  .donation-intro__title::before {
    margin-right: 0.21875rem;
  }
}

.donation-intro__title::after {
  margin-left: 0.96875rem;
}
@media screen and (max-width: 767px) {
  .donation-intro__title::after {
    margin-left: 0.21875rem;
  }
}

.donation-intro__contents {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .donation-intro__contents {
    margin-top: 1.6875rem;
  }
}
.donation-intro__contents p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .donation-intro__contents p {
    font-size: 0.9375rem;
    line-height: 2.1666666667;
  }
}
.donation-intro__contents p:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .donation-intro__contents p:not(:first-child) {
    margin-top: 2rem;
  }
}
.donation-intro__contents a {
  text-decoration: underline;
  color: #1A6398;
  font-weight: bold;
}

.footer {
  background-color: #1A6398;
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 600;
  padding: 1.3125rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1599px) {
  .footer {
    font-size: 1.3020833333vw;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 1.1875rem;
    padding: 0.625rem;
  }
}

.footer__small {
  font-size: 1.125rem;
  display: inline-block;
  margin-right: 0.625rem;
  font-weight: 500;
}
@media screen and (max-width: 1599px) {
  .footer__small {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__small {
    font-size: 0.875rem;
  }
}

.footer__address {
  font-size: 1.125rem;
  font-weight: 400;
  display: inline-block;
  margin-left: 1.25rem;
}
@media screen and (max-width: 1599px) {
  .footer__address {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 0.9375rem;
  }
}

.footer__copyright {
  font-size: 1.125rem;
  font-weight: 400;
  position: absolute;
  right: 2.1875rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1599px) {
  .footer__copyright {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    position: static;
    font-size: 0.875rem;
  }
}

.header {
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  transition: transform 0.6s, opacity 1s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 2.5rem;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  align-items: center;
  padding-left: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 0.75rem 0 1.25rem;
  }
}

.header__logo {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  max-width: 8.1875rem;
  width: 100%;
  height: 3.1875rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 4.125rem;
  }
}

.header__nav {
  height: inherit;
}

.header__list {
  height: inherit;
  display: flex;
}

.header__item {
  height: inherit;
}

.header__link {
  height: inherit;
  display: flex;
  align-items: center;
  padding: 0 2.0625rem;
  position: relative;
  font-size: 1.125rem;
}
@media screen and (max-width: 1299px) {
  .header__link {
    padding: 0 0.9375rem;
  }
}

.header__link::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.0625rem;
  height: 1.625rem;
  background-color: #3D3D40;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header__link--large {
  color: #fff;
}

.header__link--large.donation {
  background-color: #96CB6E;
  padding: 0 3.0625rem;
}
@media screen and (max-width: 1299px) {
  .header__link--large.donation {
    padding: 0 1.5625rem;
  }
}

.header__link--large.moon {
  background-color: #698BCC;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.header__link--large::before {
  content: none;
}

.header__link--large img {
  max-width: 12.9375rem;
  width: 100%;
  aspect-ratio: 207/80;
  display: block;
}
@media screen and (max-width: 1299px) {
  .header__link--large img {
    max-width: 9.875rem;
  }
}

.header__link-flex {
  display: flex;
  -moz-column-gap: 0.5375rem;
       column-gap: 0.5375rem;
}

.header__link-flex span {
  letter-spacing: 0.1em;
  font-size: 1.25rem;
  flex: 1;
}

.header__hamburger {
  position: relative;
  width: 1.6875rem;
  height: inherit;
  cursor: pointer;
  z-index: 10000;
}

.header__hamburger span {
  width: 100%;
  position: absolute;
  height: 1.5px;
  background-color: #3D3D40;
  border-radius: 1.875rem;
  transition: 0.3s transform, 0.3s top;
  left: 50%;
  transform: translateX(-50%);
}

.header__hamburger span:nth-child(1) {
  top: 28%;
}

.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.header__hamburger span:nth-child(3) {
  bottom: 28%;
}

.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%) rotate(-45deg);
}

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

.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%) rotate(45deg);
}

.header.hide {
  transform: translateY(-100%);
}

.mv {
  max-height: 50rem;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 2.5rem;
    max-height: 31.25rem;
  }
}

.mv__inner {
  position: relative;
  max-height: inherit;
  height: 100%;
}

.mv__img {
  max-height: inherit;
  height: 100%;
}

.mv__img img {
  max-height: inherit;
  height: 100%;
  width: 100%;
  aspect-ratio: 1920/697;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.5);
  transition: 5s transform;
}
@media screen and (max-width: 767px) {
  .mv__img img {
    aspect-ratio: 750/833;
  }
}

.mv__img.is-active img {
  transform: scale(1);
}

.mv__title {
  background-color: #1A6398;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.3645833333vw;
  max-width: 14.7395833333vw;
  width: 100%;
  height: 14.7395833333vw;
  padding: 1.5625vw 0;
  position: absolute;
  top: 6.9270833333vw;
  left: 6.5625vw;
  font-weight: 500;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__title {
    row-gap: 0.3125rem;
    max-width: 8.875rem;
    height: 8.875rem;
    padding: 1.25rem 0;
    top: 1.0625rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.mv__title span {
  font-size: 1.1979166667vw;
}
@media screen and (max-width: 767px) {
  .mv__title span {
    font-size: 0.875rem;
  }
}

.mv__title h2 {
  font-size: 1.71875vw;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .mv__title h2 {
    font-size: 1.125rem;
  }
}

.mv__heading {
  position: absolute;
  top: 57%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  font-size: 1.5104166667vw;
  text-align: center;
  letter-spacing: 0.3em;
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 64, 114, 0.97);
  font-weight: 500;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__heading {
    top: 55%;
    font-size: 1.4375rem;
  }
}

.mv__heading.is-active {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.mv__title.is-active {
  animation-name: fadeIn;
  animation-duration: 3s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-business {
  padding-top: 21.875rem;
  background-image: url(../images/common/top-business-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}
@media screen and (max-width: 1299px) {
  .top-business {
    padding-top: 15.625rem;
  }
}
@media screen and (max-width: 767px) {
  .top-business {
    padding-top: 9rem;
    background-image: url(../images/common/top-business-bg-sp.png);
  }
}

.top-business__body {
  background-color: #DEEFFF;
  padding: 4.75rem 3.9375rem 4.75rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-business__body {
    padding: 3rem 1.25rem 1.4375rem;
  }
}

.top-business__heading {
  position: absolute;
  top: -2.8125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-business__heading {
    top: -1.0625rem;
  }
}

.top-business__contents:nth-child(n+3) {
  margin-top: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .top-business__contents:nth-child(n+3) {
    margin-top: 1.75rem;
  }
}

.top-business__lead {
  font-size: 1.875rem;
  color: #1A6398;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top-business__lead {
    font-size: 1.125rem;
  }
}

.top-business__text {
  font-size: 1.375rem;
  margin-top: 0.625rem;
  line-height: 1.7727272727;
}
@media screen and (max-width: 767px) {
  .top-business__text {
    margin-top: 0.125rem;
    font-size: 0.9375rem;
    line-height: 1.6666666667;
    letter-spacing: -0.07em;
  }
}

.top-business__wrap {
  margin-top: 1.4375rem;
  display: grid;
  row-gap: 3.375rem;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3.375rem;
       column-gap: 3.375rem;
}
@media screen and (max-width: 767px) {
  .top-business__wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.75rem;
    flex-direction: column;
    row-gap: 1.125rem;
  }
}

.top-business__img {
  opacity: 0;
}

.top-business__img img {
  display: block;
  aspect-ratio: 480/310;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-business__img img {
    aspect-ratio: 598/310;
  }
}

.top-contact {
  text-align: center;
  background-color: #DEEFFF;
  padding-bottom: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding-bottom: 1.25rem;
  }
}

.top-contact__heading {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .top-contact__heading {
    font-size: 0.9375rem;
  }
}

.top-contact__text {
  font-size: 1.875rem;
  margin-top: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .top-contact__text {
    font-size: 0.9375rem;
    margin-top: 0.4375rem;
  }
}

.top-contact__text a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .top-contact__text a {
    pointer-events: auto;
  }
}

.top-document--layout {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .top-document--layout {
    margin-top: 2.1875rem;
  }
}

.top-document {
  background-color: #DEEFFF;
  padding-top: 6.5rem;
  padding-bottom: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .top-document {
    padding-top: 3.0625rem;
    padding-bottom: 2.5rem;
  }
}

.top-document__heading {
  background-color: #1A6398;
  color: #fff;
  font-size: 2.0625rem;
  font-weight: 500;
  text-align: center;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-document__heading {
    font-size: 1.0625rem;
    padding: 0.25rem 0.625rem;
  }
}

.top-document__heading span {
  position: relative;
  display: inline-block;
  letter-spacing: 0.3em;
  padding-right: 2.625rem;
}
@media screen and (max-width: 767px) {
  .top-document__heading span {
    padding-right: 1.5625rem;
  }
}

.top-document__heading span::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/common/pdf.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 5.0625rem;
  height: 5.5625rem;
  right: -3.625rem;
  top: -1.125rem;
}
@media screen and (max-width: 767px) {
  .top-document__heading span::after {
    width: 2.5rem;
    height: 2.8125rem;
    right: -1.0625rem;
    top: -0.6875rem;
  }
}

.top-document__content {
  background-color: #fff;
  padding: 2.3125rem 3.9375rem 2.9375rem;
}
@media screen and (max-width: 767px) {
  .top-document__content {
    padding: 1.125rem 0.875rem 1.5625rem;
  }
}

.top-document__wrap {
  display: flex;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-document__wrap {
    padding: 0;
    flex-direction: column;
  }
}

.top-document__wrap:not(:first-child) {
  margin-top: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-document__wrap:not(:first-child) {
    margin-top: 2.125rem;
  }
}

.top-document__wrap:not(:first-child)::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.1875rem;
  background-size: 8px 3px;
  background-image: linear-gradient(to right, #1A6398, #1A6398 3px, transparent 3px, transparent 8px);
  background-repeat: repeat-x;
  top: -2.5625rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-document__wrap:not(:first-child)::before {
    top: -1.09375rem;
    height: 0.09375rem;
    background-size: 8px 1.5px;
    background-image: linear-gradient(to right, #1A6398, #1A6398 1.5px, transparent 3px, transparent 8px);
    background-repeat: repeat-x;
  }
}

.top-document__lead {
  max-width: 9.375rem;
  width: 100%;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .top-document__lead {
    font-size: 0.8125rem;
  }
}

.top-document__list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top-document__list {
    -moz-column-gap: 0.5625rem;
         column-gap: 0.5625rem;
    row-gap: 0.1875rem;
  }
}

.top-document__item a {
  font-size: 1.375rem;
  text-decoration: underline;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .top-document__item a {
    font-size: 0.8125rem;
  }
}

.top-document__list--gap {
  -moz-column-gap: 4.375rem;
       column-gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-document__list--gap {
    -moz-column-gap: 1.4375rem;
         column-gap: 1.4375rem;
  }
}

.top-document__banner {
  text-align: center;
  background-color: #DEEFFF;
  padding-bottom: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .top-document__banner {
    padding-bottom: 2.5rem;
  }
}

.top-document__banner-link {
  display: block;
  max-width: 34.0625rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top-document__banner-link {
    max-width: 21.25rem;
  }
}

.top-document__banner-link img {
  aspect-ratio: 545/194.12;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-history--layout {
  margin-top: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .top-history--layout {
    margin-top: 2.9375rem;
  }
}

.top-history {
  padding: 7.875rem 0 6.4375rem;
  background-color: #DEEFFF;
}
@media screen and (max-width: 767px) {
  .top-history {
    padding: 3.0625rem 0 2.625rem;
  }
}

.top-history__body {
  position: relative;
}

.top-history__heading {
  position: absolute;
  top: -2.625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-history__heading {
    top: -1.25rem;
  }
}

.top-history__item {
  display: flex;
}

.top-history__term {
  max-width: 14.25rem;
  width: 100%;
  background-color: #B2D9F5;
  font-size: 3.4375rem;
  font-family: "Cormorant", serif;
  color: #1A6398;
  font-weight: 400;
  font-style: italic;
  text-align: right;
  padding-right: 2.25rem;
  padding-top: 0.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-history__term {
    max-width: 4.375rem;
    font-size: 1.75rem;
    padding-right: 0.9375rem;
    padding-top: 0.625rem;
  }
}

.top-history__term::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0.1875rem;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #4B91C4;
}
@media screen and (max-width: 767px) {
  .top-history__term::after {
    width: 0.09375rem;
  }
}

.top-history__wrap {
  flex: 1;
  background-color: #F5FBFF;
  position: relative;
}

.top-history__wrap::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #4B91C4;
  left: -0.625rem;
  top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .top-history__wrap::before {
    width: 0.5625rem;
    height: 0.5625rem;
    border: 0.125rem solid #4B91C4;
    top: 2rem;
    left: -0.3125rem;
  }
}

.top-history__item:first-child .top-history__wrap::before {
  top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-history__item:first-child .top-history__wrap::before {
    top: 2.5rem;
  }
}

.top-history__text {
  font-size: 1.375rem;
  padding: 2.1875rem 2.5rem 0 3.1875rem;
}
@media screen and (max-width: 767px) {
  .top-history__text {
    font-size: 0.9375rem;
    padding: 1.5625rem 0.625rem 0 0.75rem;
  }
}

.top-history__item:first-child .top-history__term {
  padding-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .top-history__item:first-child .top-history__term {
    padding-top: 1.1875rem;
  }
}

.top-history__item:first-child .top-history__text:first-child {
  padding-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .top-history__item:first-child .top-history__text:first-child {
    padding-top: 2.125rem;
  }
}

.top-history__item:last-child .top-history__text:last-child {
  padding-bottom: 3.5625rem;
}
@media screen and (max-width: 767px) {
  .top-history__item:last-child .top-history__text:last-child {
    padding-bottom: 0.9375rem;
  }
}

.top-message--layout {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .top-message--layout {
    margin-top: 1.25rem;
  }
}

.top-message__body {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .top-message__body {
    margin-top: 0.9375rem;
  }
}

.top-message__text {
  font-size: 1.25rem;
  line-height: 1.95;
  text-indent: 1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .top-message__text {
    font-size: 0.9375rem;
    line-height: 1.85;
  }
}

.top-message__text:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-message__text:not(:first-child) {
    margin-top: 1.6875rem;
  }
}

.top-message__info {
  margin-top: 1.0625rem;
  text-align: right;
  font-size: 1.4375rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-message__info {
    font-size: 0.9375rem;
    margin-top: 1.5625rem;
  }
}

.top-message__name span {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-message__name span {
    font-size: 1.25rem;
  }
}

.top-message__name {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .top-message__name {
    margin-top: 0.375rem;
  }
}

.top-news--layout {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .top-news--layout {
    margin-top: 3.125rem;
  }
}

.top-news {
  padding: 3.125rem 0 5.1875rem;
  background-color: #DEEFFF;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 3.75rem 0 4.375rem;
  }
}

.top-news__contents {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-news__contents {
    margin-top: 2.1875rem;
  }
}

.top-news__list {
  padding: 0 3.9375rem;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    padding: 0;
  }
}

.top-news__item {
  border-top: 0.125rem solid #4C91C3;
}
.top-news__item:last-child {
  border-bottom: 0.125rem solid #4C91C3;
}
.top-news__item a {
  display: flex;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  align-items: flex-start;
  padding: 1.25rem 2.25rem 1.25rem 0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .top-news__item a {
    flex-direction: column;
    row-gap: 0.5rem;
    padding: 0.9375rem 1.0625rem 1.875rem 0;
  }
}
.top-news__item time {
  color: #1A6398;
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0.001em;
}
@media screen and (max-width: 767px) {
  .top-news__item time {
    font-size: 0.9375rem;
  }
}
.top-news__item P {
  font-size: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0;
  -webkit-text-decoration: underline 0.09375rem;
          text-decoration: underline 0.09375rem;
  color: #3D3D40;
}
@media screen and (max-width: 767px) {
  .top-news__item P {
    font-size: 0.9375rem;
  }
}

.top-news__more {
  margin-top: 4.0625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-news__more {
    margin-top: 3.125rem;
  }
}
.top-news__more a {
  display: inline-block;
  color: #fff;
  background-color: #1A6398;
  border-radius: 2.6875rem;
  font-size: 1.5625rem;
  font-weight: 500;
  padding: 1.0625rem 3.3125rem;
}
@media screen and (max-width: 767px) {
  .top-news__more a {
    font-size: 0.9375rem;
    padding: 0.4375rem 1.4375rem;
  }
}

.top-organization--layout {
  margin-top: 7.125rem;
}
@media screen and (max-width: 767px) {
  .top-organization--layout {
    margin-top: 3.4375rem;
  }
}

.top-organization__body {
  background-color: #DEEFFF;
  padding-top: 5.25rem;
  padding-bottom: 4.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-organization__body {
    padding-top: 2.4375rem;
    padding-bottom: 1.5rem;
  }
}

.top-organization__heading {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-organization__heading {
    top: -1.0625rem;
  }
}

.top-organization__img img {
  display: block;
  max-width: 56.4375rem;
  width: 100%;
  margin-left: 4.9375rem;
  aspect-ratio: 903/802;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-organization__img img {
    max-width: 19.625rem;
    aspect-ratio: 627/739.84;
    margin: 0 auto;
  }
}

.top-organization__pdf {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .top-organization__pdf {
    margin-top: 1.8125rem;
  }
}

.top-organization__pdf-link {
  display: block;
  max-width: 14.0625rem;
  width: 100%;
  margin: 0 auto;
  padding: 0.71875rem 0.625rem 0.71875rem 1.8125rem;
  border-top: 3px solid #707070;
  border-bottom: 3px solid #707070;
  font-size: 1.375rem;
  font-weight: 500;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-organization__pdf-link {
    max-width: 7rem;
    font-size: 0.9375rem;
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    padding: 0.15625rem 0.625rem 0.15625rem 0.625rem;
  }
}

.top-organization__pdf-link::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../images/common/pdf.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  width: 3.8875rem;
  height: 4.27125rem;
  right: 1.625rem;
  top: -1.125rem;
}
@media screen and (max-width: 767px) {
  .top-organization__pdf-link::after {
    width: 2.3125rem;
    height: 2.125rem;
    right: 0.1875rem;
    top: -0.6875rem;
  }
}
/*# sourceMappingURL=style.css.map */
