@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;
  }
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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: 1200px) {
  html {
    font-size: clamp(13px, 1.3333333333vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  color: #222;
  background: linear-gradient(78deg, #f8ebda 7%, #f2e1cc 37.5%, #fff7ed 63.26%, #f8ebda 99.52%);
  overflow-x: hidden;
}

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

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

.header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    display: none;
  }
}

.header__inner {
  background: #fff;
  border-radius: 20px;
  max-width: 1200px;
  width: calc(100% - 20px);
  margin-inline: auto;
}

.header-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-inline: clamp(15px, 2vw, 24px);
  border-right: 1px solid #48a137;
}
.header-nav__item a:hover {
  opacity: 0.8;
}

.header-nav__item:nth-child(5) a {
  border-left: 1px solid #48a137;
}

.header-nav__item:first-child a {
  padding-left: 0;
}

.header-nav__item:last-child a {
  padding-right: 0;
  border-right: none;
}

.header-nav__icon {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav__logo {
  padding-inline: clamp(15px, 2vw, 24px);
  flex-shrink: 0;
}

.header-nav__text {
  font-size: clamp(0.8125rem, 1.5vw, 1.25rem);
  white-space: nowrap;
}

/* =========================
  header-fv wrapper
========================= */
.header-fv__clip {
  position: relative;
  overflow-y: visible;
}

/* =========================
  header-fv base
========================= */
.header-fv {
  position: relative;
  width: 100%;
  height: 479px;
  background: #37762b;
  border-radius: 0 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .header-fv {
    height: 300px;
    border-radius: 0 0 20px 20px;
  }
}

/* donation variant */
.header-fv--donation {
  height: 512px;
}
@media screen and (max-width: 767px) {
  .header-fv--donation {
    height: 340px;
  }
}

.header-fv--membership {
  height: 655px;
}
@media screen and (max-width: 767px) {
  .header-fv--membership {
    height: 600px;
  }
}

.header-fv--membership-confirm,
.header-fv--membership-thanks,
.header-fv--contact-confirm {
  height: 416px;
}
@media screen and (max-width: 767px) {
  .header-fv--membership-confirm,
  .header-fv--membership-thanks,
  .header-fv--contact-confirm {
    height: 250px;
  }
}

.header-fv--contact {
  height: 479px;
}
@media screen and (max-width: 767px) {
  .header-fv--contact {
    height: 400px;
  }
}

/* =========================
  content
========================= */
.header-fv__content {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-fv__content--donation,
.header-fv__content--membership,
.header-fv__content--contact,
.header-fv__content--contact-confirm {
  bottom: 10%;
}

/* confirm / thanks 系だけ少し上げる */
.header-fv__content--membership-confirm,
.header-fv__content--membership-thanks {
  bottom: 15%;
}

/* =========================
  logo
========================= */
.header-fv__logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .header-fv__logo--donation {
    width: 70px;
    height: 60px;
  }
}

.header-fv__logo--about {
  max-width: 96px;
}
@media screen and (max-width: 767px) {
  .header-fv__logo--about {
    max-width: 50px;
  }
}

.header-fv__logo--membership {
  width: 68px;
}
@media screen and (max-width: 767px) {
  .header-fv__logo--membership {
    width: 50px;
  }
}

.header-fv__logo--contact {
  width: 63px;
}
@media screen and (max-width: 767px) {
  .header-fv__logo--contact {
    width: 50px;
  }
}

/* =========================
  title
========================= */
.header-fv__title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .header-fv__title {
    font-size: 1.5625rem;
    margin-top: 10px;
  }
}

.header-fv__title--donation {
  font-size: 40px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .header-fv__title--donation {
    font-size: 1.5625rem;
    margin-top: 10px;
  }
}

/* =========================
  deco
========================= */
.header-fv__deco--donation {
  position: absolute;
  right: 0;
  bottom: -56px;
  width: clamp(200px, 20vw, 258px);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header-fv__deco--donation {
    width: 150px;
  }
}
.header-fv__deco--donation img {
  display: block;
  width: 100%;
  height: auto;
}

.header-fv__deco--membership {
  position: absolute;
  left: 0;
  bottom: -125px;
  width: clamp(220px, 20vw, 287px);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header-fv__deco--membership {
    bottom: -60px;
    width: 150px;
  }
}
.header-fv__deco--membership img {
  display: block;
  width: 100%;
  height: auto;
}

.header-fv__deco--contact {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: clamp(220px, 20vw, 298px);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header-fv__deco--contact {
    bottom: -60px;
    width: 150px;
  }
}
.header-fv__deco--contact img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
  lead
========================= */
.header-fv__lead {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-top: 19px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .header-fv__lead {
    margin-top: 10px;
    width: 97%;
    text-align: center;
    font-size: 0.8125rem;
  }
}

.header-fv__lead-link {
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.header-fv__lead--membership {
  margin-top: 20px;
}

.header-fv__lead--contact {
  margin-top: 20px;
}

.drawer-header {
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-header {
    display: block;
    position: fixed;
    z-index: 102;
    background: #fff;
    width: 100%;
    height: 70px;
    padding-inline: 15px;
  }
}

.drawer-header__logo {
  padding-block: 4px;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 30px;
  right: 20px;
  width: 37px;
  height: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #573c1e;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 6px;
  background: #573c1e;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  rotate: -45deg;
  translate: 0 -4px;
  background: #573c1e;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 20px 40px;
  padding-inline: 28px;
}

.drawer__list {
  margin-top: 72px;
}

.drawer__item {
  border-bottom: 1px solid #DADADA;
}
.drawer__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8px;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3; /* 133.333% */
}
.drawer__item .drawer__arrow {
  display: inline-flex;
  align-items: center;
}
.drawer__item .drawer__arrow img {
  width: 17px;
  height: 17px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---------- 数字（丸） ---------- */
.pagination__item:not(.pagination__item--prev):not(.pagination__item--next) a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #48a137;
  color: #48a137;
  background: #fff;
  text-decoration: none;
  font-size: 1rem;
}

/* アクティブ */
.pagination__item.is-active:not(.pagination__item--prev):not(.pagination__item--next) a {
  background: #48a137;
  color: #fff;
}

/* hover（数字だけ） */
.pagination__item:not(.pagination__item--prev):not(.pagination__item--next) a:hover {
  background: rgba(79, 163, 59, 0.15);
}

/* ---------- ＜ ＞（丸なし） ---------- */
.pagination__item--prev a,
.pagination__item--next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 0;
  text-decoration: none;
}

.pagination__item--prev a::before,
.pagination__item--next a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #48a137;
  border-right: 2px solid #48a137;
}

.pagination__item--prev a::before {
  transform: rotate(-135deg);
}

.pagination__item--next a::before {
  transform: rotate(45deg);
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #48a137;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}

.footer__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__text {
    text-align: center;
  }
}

.footer__logo {
  margin-top: 15px;
}
.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-top: 20px;
  }
}

.footer__copy {
  margin-top: 26px;
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    margin-top: 38px;
    font-size: 0.75rem;
    line-height: 2.3;
  }
}

.fv-wrap {
  position: relative;
  overflow-x: hidden;
}

.fv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 70px;
  }
}

.fv__image img {
  width: 100%;
  height: auto;
  min-height: 500px;
  display: block;
}

.fv__text {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 4.276px 4.276px 4.276px #2e392a;
}
@media screen and (max-width: 1300px) {
  .fv__text {
    bottom: 20%;
  }
}
@media screen and (max-width: 767px) {
  .fv__text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: #fff;
    text-shadow: 2.993px 2.993px 10.57px #2e392a;
  }
}

.fv__title {
  font-size: clamp(36px, 36px + 21.7 * (100vw - 375px) / 1065, 57.7px);
  font-weight: 400;
}

.fv__subtitle {
  font-weight: 400;
  font-size: clamp(16px, 16px + 9.6 * (100vw - 375px) / 1065, 25.6px);
}

.fv__lead {
  margin-top: 20px;
  font-size: clamp(16px, 16px + 7.5 * (100vw - 375px) / 1065, 23.5px);
  font-weight: 400;
  line-height: 34.207px; /* 145.455% */
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .fv__lead {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .fv__lead {
    margin-top: 18px;
    line-height: 1.5;
    white-space: normal;
  }
}

.fv__deco01 {
  position: absolute;
  bottom: -56px;
  left: 0;
  width: clamp(200px, 20vw, 248px);
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__deco01 {
    width: 160px;
  }
}

.fv__deco02 {
  position: absolute;
  bottom: -102px;
  right: 0px;
  width: clamp(280px, 24vw, 468px);
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv__deco02 {
    display: none;
  }
}

.fv__deco02-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .fv__deco02-sp {
    position: absolute;
    bottom: -102px;
    right: 0px;
    width: clamp(150px, 24vw, 246px);
    height: auto;
    z-index: 10;
    display: block;
  }
}

.news {
  padding-top: 100px;
}

#news {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 767px) {
  #news {
    scroll-margin-top: 0;
  }
}

.news__title {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.news__inner {
  max-width: 1040px;
  width: 90%;
  margin-inline: auto;
}

.news-tabs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-bottom: 3px solid #37762b;
}

.news-tabs__item {
  padding-block: 16px;
  text-align: center;
  border-radius: 10px;
  background: #a0aea3;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.news-tabs__item.is-active {
  background: #48a137;
}
@media screen and (max-width: 767px) {
  .news-tabs__item {
    font-size: 15px;
  }
}

/* =========================
  News List
========================= */
.news-list {
  margin-top: 30px;
}

/* =========================
  News Item
========================= */
.news-item {
  display: grid;
  grid-template-columns: 130px 170px 1fr auto;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid #dae1dc;
}
@media screen and (max-width: 767px) {
  .news-item {
    grid-template-columns: 120px 150px 1fr auto;
    grid-template-areas: "date  tag   .      arrow" "title title title arrow";
    gap: 8px 16px;
  }
}

/* =========================
  News Item Parts
========================= */
.news-item__date {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-item__date {
    font-size: 14px;
    grid-area: date;
  }
}

.news-item__tag {
  display: inline-block;
  width: 150px;
  padding-block: 6px;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background: #48a137;
  border-radius: 5px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .news-item__tag {
    grid-area: tag;
    font-size: 14px;
    padding-block: 4px;
    margin-left: 0;
  }
}

.news-item__title {
  font-size: 16px;
  line-height: 1.5;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .news-item__title {
    grid-area: title;
    margin-left: 0;
  }
}

.news-item__arrow {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .news-item__arrow {
    grid-area: arrow;
  }
}

/* ---------- リンクあり ---------- */
.news-item.is-link .news-item__title {
  display: inline-block;
  color: #48a137;
  border-radius: 4px;
}

.news-item.is-link .news-item__title:hover {
  text-decoration: underline;
}

.news-item__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #48a137;
}
@media screen and (max-width: 767px) {
  .news-item__arrow {
    display: none;
  }
}

/* ---------- テキストのみ ---------- */
.news-item.is-text .news-item__title {
  color: #222;
  background: none;
  cursor: default;
}

.news-item.is-text .news-item__arrow {
  display: none;
}

.about {
  padding-top: 162px;
  padding-bottom: 35px;
  position: relative;
  overflow-y: visible;
}

.about__deco-leaf {
  position: absolute;
  top: 78px;
  left: calc(50% - 1049px);
  width: 721px;
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .about__deco-leaf {
    width: 377px;
    left: calc(50% - 423px);
  }
}

.about__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

.about__content {
  position: relative;
  border-radius: 93px;
  background: #37762b;
  padding: 60px 20px;
}
@media screen and (max-width: 767px) {
  .about__content {
    border-radius: 40px;
    padding: 40px 0 116px;
  }
}

.about__title {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2; /* 120% */
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.about__text {
  margin-top: 37px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2; /* 200% */
}
@media screen and (max-width: 767px) {
  .about__text {
    margin-top: 20px;
    text-align: left;
    width: 89%;
    margin-inline: auto;
  }
}

.about__buttons {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
}
@media screen and (max-width: 767px) {
  .about__buttons {
    margin-top: 20px;
  }
}

.about__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 338px;
  width: 100%;
  padding: 15px 28px;
  border-radius: 20px;
  background: #f3f1ef;
  font-size: 1rem;
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .about__btn {
    padding: 12px 0;
    width: 89%;
  }
}
.about__btn:hover {
  color: #48a137;
}
.about__btn:hover .about__btn-arrow {
  background: #48a137;
}
.about__btn:hover .about__btn-arrow::after {
  border-top-color: #48a137;
}

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

.about__btn-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 1px;
  background: #222;
  transition: width 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .about__btn-arrow {
    right: 11px;
  }
}

.about__btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 5px;
  border-top: 1px solid #222;
  transform: translateY(-50%) rotate(45deg);
}

.about__deco-bard {
  position: absolute;
  bottom: 12px;
  right: 10px;
  width: 118px;
  height: 118px;
}
@media screen and (max-width: 767px) {
  .about__deco-bard {
    bottom: 0px;
    right: 0px;
  }
}

.action-links {
  padding-top: 60px;
}

.action-links__inner {
  max-width: 944px;
  width: 90%;
  margin-inline: auto;
}

.action-links__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .action-links__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 0px;
  }
}

.action-links__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.action-links__link:hover {
  transform: translateY(-6px);
}

.action-links__icon img {
  width: 141px;
  height: 141px;
}
@media screen and (max-width: 767px) {
  .action-links__icon img {
    width: 100px;
    height: 100px;
  }
}

.action-links__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .action-links__text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.related-links {
  padding-top: 118px;
  padding-bottom: 81px;
}
@media screen and (max-width: 767px) {
  .related-links {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.related-links__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

.related-links__title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2; /* 120% */
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .related-links__title {
    font-size: 1.5rem;
    line-height: 2;
  }
}

.related-links__lead {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
  line-height: 2; /* 200% */
}
@media screen and (max-width: 767px) {
  .related-links__lead {
    margin-top: 10px;
  }
}

.related-links__list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 113px;
}
@media screen and (max-width: 767px) {
  .related-links__list {
    margin-top: 10px;
    flex-direction: column;
    gap: 15px;
  }
}

.related-links__link {
  font-size: 16px;
  line-height: 2; /* 200% */
  transition: opacity 0.3s ease;
}
.related-links__link:hover {
  opacity: 0.8;
}

.about-info {
  padding-top: 70px;
  position: relative;
}

.about__deco-leaf01 {
  position: absolute;
  top: -13px;
  left: 0;
  width: clamp(105px, 15vw, 234px);
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about__deco-leaf01 {
    top: -66px;
  }
}

.about__deco-leaf02 {
  position: absolute;
  bottom: -118px;
  right: 0;
  width: clamp(105px, 15vw, 234px);
  height: auto;
  z-index: 1;
}

.about-info__inner {
  max-width: 838px;
  width: 70%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about-info__inner {
    width: 90%;
  }
}

.about-info__section {
  position: relative;
  z-index: 2;
}

.about-info__section + .about-info__section {
  margin-top: 59px;
}

.about-info__title {
  font-size: 24px;
  color: #48a137;
  padding-bottom: 20px;
  border-bottom: 1px solid #48a137;
}

.about-info__text {
  padding-top: 20px;
  font-size: 16px;
  line-height: 2;
}

.about-info__content {
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid #37762b;
  background: #fcfcfc;
  padding: 26px 23px 16px;
}

.about-info__item {
  position: relative;
  padding-left: 3em;
  font-size: 16px;
  line-height: 2;
}

.about-info__list {
  counter-reset: num;
}

.about-info__item {
  counter-increment: num;
}
.about-info__item::before {
  content: "（" counter(num) "）";
  position: absolute;
  left: 0;
  top: 0;
}

.about-info__end {
  text-align: right;
}

.message {
  padding-top: 95px;
}

#message {
  scroll-margin-top: 100px;
}

.message__inner {
  max-width: 1117px;
  width: 90%;
  margin-inline: auto;
}

.message__title {
  font-size: 24px;
  line-height: 1.3;
  padding-bottom: 20px;
  border-bottom: 1px solid #48a137;
  color: #48a137;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__title {
    font-size: 20px;
  }
}

.message__content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .message__content {
    flex-direction: column;
  }
}

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

.message__body {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  .message__body {
    gap: 40px;
  }
}

.message__text {
  color: #573c1e;
  font-size: 16px;
  line-height: 2; /* 200% */
}

.message__signature {
  margin-top: 39px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: 16px;
  line-height: 2;
  color: #573c1e;
}

.victim {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
}
@media screen and (max-width: 767px) {
  .victim {
    padding-top: 40px;
    padding-bottom: 180px;
  }
}

.victim__inner {
  max-width: 1050px;
  width: 90%;
  margin-inline: auto;
  position: relative;
}

.victim__deco-line-top {
  position: absolute;
  top: 0px;
  left: -160px;
  width: 160px;
  z-index: 1;
}
.victim__deco-line-top img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .victim__deco-line-top {
    width: 70px;
    top: 15px;
    left: 0;
  }
}

.victim__deco-line-bottom {
  position: absolute;
  bottom: -70px;
  left: -125px;
  width: 125px;
  z-index: 1;
}
.victim__deco-line-bottom img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .victim__deco-line-bottom {
    left: 0;
    width: 100px;
    bottom: -150px;
  }
}

.victim__deco-leaf01 {
  position: absolute;
  top: 0px;
  right: -107px;
  width: 107px;
  height: auto;
  z-index: 1;
}
.victim__deco-leaf01 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .victim__deco-leaf01 {
    width: 70px;
    top: 20px;
    right: 0;
  }
}

.victim__deco-leaf02 {
  position: absolute;
  bottom: -30px;
  right: -70px;
  width: 70px;
  height: auto;
  z-index: 1;
}
.victim__deco-leaf02 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .victim__deco-leaf02 {
    width: 60px;
    right: 0;
    bottom: -140px;
  }
}

.victim__content {
  display: flex;
  align-items: center;
  gap: 73px;
}
@media screen and (max-width: 767px) {
  .victim__content {
    flex-direction: column;
    gap: 30px;
  }
}

.victim__image {
  max-width: 287px;
}
.victim__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .victim__image {
    max-width: 250px;
  }
}

.victim__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2; /* 200% */
}
.victim__text a {
  color: #00599d;
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.victim__text + .victim__text {
  margin-top: 50px;
}

.victim__note {
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  margin-top: 50px;
}

.donation {
  padding-top: 62px;
  padding-bottom: 49px;
  position: relative;
}

.donation__deco-tree {
  position: absolute;
  top: 240px;
  left: 0;
  width: clamp(170px, 16vw, 284px);
  z-index: 10;
}
.donation__deco-tree img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .donation__deco-tree {
    width: 150px;
    top: auto;
    bottom: 0;
    left: 0;
  }
}

.donation__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

.donation__accounts {
  display: flex;
  justify-content: center;
  gap: 68px;
}
@media screen and (max-width: 767px) {
  .donation__accounts {
    flex-direction: column;
    gap: 40px;
  }
}

.donation__account {
  border-radius: 20px;
  background: #fff;
  padding: 23px 32px 21px;
}

.onation__account-name {
  font-size: 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .onation__account-name {
    font-size: 1rem;
  }
}

.donation__account-list {
  margin-top: 14px;
}

.donation__account-item {
  font-size: 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .donation__account-item {
    font-size: 1rem;
  }
}

.donation__note {
  margin-top: 24px;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .donation__note {
    font-size: 1rem;
  }
}

.donation__message {
  padding-block: 58px 55px;
  padding-inline: 20px;
  width: 100%;
  border-radius: 40px;
  background: #fff;
  margin-top: 70px;
}

.donation__message-text {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .donation__message-text {
    font-size: 1rem;
    text-align: left;
  }
}

/* ==========================
  membership form
========================== */
.membership-form {
  background: #f6ead7;
  padding-block: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .membership-form {
    padding-block: 40px;
  }
}

.membership-form__deco-bottom {
  position: absolute;
  bottom: 350px;
  right: 0;
  width: clamp(150px, 20vw, 276px);
  z-index: 10;
}
.membership-form__deco-bottom img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .membership-form__deco-bottom {
    display: none;
  }
}

.membership-form__deco-bottom--confirm {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: clamp(150px, 20vw, 276px);
  z-index: 10;
}
.membership-form__deco-bottom--confirm img {
  width: 100%;
  height: auto;
  display: block;
}

.membership-form__inner {
  max-width: 825px;
  width: 90%;
  margin: 0 auto;
}

.membership-form__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .membership-form__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* ==========================
  各入力行
========================== */
.membership-form__field {
  display: grid;
  grid-template-columns: 220px 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
  margin-bottom: 40px;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .membership-form__field {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

/* 必須＋ラベル行（head） */
.membership-form__head {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 必須バッジ */
.membership-form__required {
  display: inline-block;
  background: #39a753;
  color: #fff;
  font-size: 14px;
  padding: 4px 17px;
  line-height: 1.8;
  white-space: nowrap;
}

/* ラベル */
.membership-form__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8; /* 28.8px */
}

/* ==========================
  入力欄
========================== */
.membership-form__field input,
.membership-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #a6a6a6;
  background: #fff;
}
.membership-form__field input:focus,
.membership-form__field textarea:focus {
  outline: none;
  border-color: #39a753;
}

/* メッセージだけ上揃え */
.membership-form__field--message {
  align-items: flex-start;
}

.membership-form__field textarea {
  max-height: 200px;
  resize: vertical;
}

/* ==========================
  規約テキスト
========================== */
.membership-form__policy {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid #afafaf;
  background: #fff;
  max-height: 311px;
  overflow-y: auto;
}

/* タイトル */
.membership-form__policy-title {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

/* 本文 */
.membership-form__policy-body {
  margin-top: 40px;
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4; /* 22.4px */
}
.membership-form__policy-body p + p {
  margin-top: 16px;
}

/* ==========================
  規約同意チェック
========================== */
/* ==========================
  ボタン
========================== */
/* ==========================
  確認画面のみ：入力欄を背景と同化
========================== */
.membership-form--confirm input,
.membership-form--confirm textarea {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
}

.membership-form--confirm .membership-form__field {
  margin-bottom: 70px;
}

.membership-form--confirm input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.thanks {
  background: #f6ead7;
  padding: 120px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding: 80px 16px;
  }
}

.thanks__deco-bottom {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: clamp(150px, 20vw, 276px);
  z-index: 10;
}
.thanks__deco-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.thanks__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.thanks__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .thanks__title {
    font-size: 22px;
  }
}

/* テキスト */
.thanks__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

/* ボタン */
.thanks__button {
  display: flex;
  justify-content: center;
}

.thanks__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 16px 24px;
  border: 1px solid #39a753;
  background: #fff;
  color: #3e3a39;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8; /* 28.8px */
  transition: background-color 0.3s ease, color 0.3s ease;
}
.thanks__link:hover {
  background-color: #3fa34d;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .thanks__link {
    max-width: 320px;
    width: 100%;
    font-size: 15px;
  }
}

/* ==========================
  contact form
========================== */
.contact-form {
  background: #f6ead7;
  padding-block: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-block: 40px;
  }
}

.contact-form__deco {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: clamp(150px, 20vw, 288px);
  z-index: 10;
}
.contact-form__deco img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form__inner {
  max-width: 825px;
  width: 90%;
  margin: 0 auto;
}

.contact-form__title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

/* ==========================
  各入力行
========================== */
.contact-form__field {
  display: grid;
  grid-template-columns: 220px 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: center;
  margin-bottom: 40px;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact-form__field {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

/* 必須＋ラベル行（head） */
.contact-form__head {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 必須バッジ */
.contact-form__required {
  display: inline-block;
  background: #39a753;
  color: #fff;
  font-size: 14px;
  padding: 4px 8px;
  line-height: 1.8;
  white-space: nowrap;
}

/* ラベル */
.contact-form__label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8; /* 28.8px */
}

/* ==========================
  入力欄
========================== */
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #a6a6a6;
  background: #fff;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #39A753;
}

/* メッセージだけ上揃え */
.contact-form__field--message {
  align-items: flex-start;
}

.contact-form__field textarea {
  max-height: 200px;
  resize: vertical;
}

/* ==========================
  規約テキスト
========================== */
.contact-form__policy {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid #afafaf;
  background: #fff;
  max-height: 311px;
  overflow-y: auto;
}

/* タイトル */
.contact-form__policy-title {
  color: #222;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

/* 本文 */
.contact-form__policy-body {
  margin-top: 40px;
  color: #222;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4; /* 22.4px */
}
.contact-form__policy-body p + p {
  margin-top: 16px;
}

/* ==========================
  規約同意チェック
========================== */
/* ==========================
  規約同意チェック（contact）
========================== */
.wpcf7 .contact-agree {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* CF7 list item */
.wpcf7 .contact-agree .wpcf7-list-item {
  position: relative;
  margin: 0;
  padding-left: 40px; /* □分の余白 */
}

/* 本物の checkbox（透明） */
.wpcf7 .contact-agree input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* ラベル（テキスト） */
.wpcf7 .contact-agree .wpcf7-list-item-label {
  line-height: 1.8;
  font-size: 16px;
  cursor: pointer;
}

/* 見た目の □ */
.wpcf7 .contact-agree .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  border: 1px solid #000;
  box-sizing: border-box;
}

/* ✓ チェック */
.wpcf7 .contact-agree input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

.wpcf7 .contact-agree__link {
  color: #11609f;
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================
  ボタン
========================== */
.wpcf7-form-control.wpcf7-submit,
.wpcf7-form-control.wpcf7-multistep {
  display: block;
  margin: 40px auto 0;
  background: #39A753;
  color: #fff;
  border: 1px solid #39A753;
  box-sizing: border-box;
  padding: 14px 60px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  width: 320px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.wpcf7-form-control.wpcf7-submit:hover,
.wpcf7-form-control.wpcf7-multistep:hover {
  background: #fff;
  color: #39A753;
  border-color: #39A753;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control.wpcf7-submit,
  .wpcf7-form-control.wpcf7-multistep {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================
  確認画面のみ：入力欄を背景と同化
========================== */
.contact-form--confirm input,
.contact-form--confirm textarea {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
}

.contact-form--confirm .contact-form__field {
  margin-bottom: 70px;
}

.contact-form--confirm input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

/* デフォルトではエラー非表示 */
.wpcf7-not-valid-tip {
  display: none;
}

/* 送信後のみ表示 */
.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
  display: block;
}

.post {
  padding-block: 200px 120px;
}
@media screen and (max-width: 767px) {
  .post {
    padding-block: 80px 40px;
  }
}

.post__inner {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

/* meta（投稿日・タグ） */
.post__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .post__meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.post__date {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .post__date {
    font-size: 14px;
  }
}

.post__tag {
  display: inline-block;
  padding: 7px 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  background: #39a753;
}
@media screen and (max-width: 767px) {
  .post__tag {
    font-size: 14px;
  }
}

/* title */
.post__title {
  font-size: 32px;
  color: #573c1e;
  margin-bottom: 43px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .post__title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}

/* content */
.post__content {
  font-size: 16px;
  line-height: 2;
  /* ---------------------
    Text
  --------------------- */
  /* ---------------------
    Image（Gutenberg）
  --------------------- */
  /* 共通 */
  /* WordPress標準の回り込みを無効化 */
  /* 左寄せ（配置のみ） */
  /* 右寄せ（配置のみ） */
  /* 中央 */
  /* ---------------------
    Group block
  --------------------- */
  /* グループは幅制限しない（事故防止） */
  /* ---------------------
    List
  --------------------- */
  /* ---------------------
    Link
  --------------------- */
}
.post__content p {
  margin-bottom: 24px;
  font-weight: 400;
}
.post__content h2 {
  font-size: 22px;
  margin: 48px 0 16px;
}
.post__content h3 {
  font-size: 20px;
  margin: 40px 0 14px;
}
.post__content .wp-block-image {
  max-width: 420px;
  margin: 0 auto 32px;
}
.post__content .wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}
.post__content .alignleft,
.post__content .alignright {
  float: none;
  clear: both;
}
.post__content .wp-block-image.alignleft {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.post__content .wp-block-image.alignright {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.post__content .wp-block-image.aligncenter {
  margin: 0 auto 32px;
  text-align: center;
}
.post__content .wp-block-group {
  max-width: none;
  margin: 0 0 40px;
}
.post__content ul {
  list-style: disc;
}
.post__content ol {
  list-style: decimal;
}
.post__content ul,
.post__content ol {
  margin: 0 0 24px 1.5em;
}
.post__content li {
  margin-bottom: 8px;
}
.post__content a {
  color: #1a73e8;
  letter-spacing: 1.28px;
  text-decoration: underline;
  text-underline-position: from-font;
}
.post__content a:hover {
  opacity: 0.8;
}

.is-tight-media .post__content p:has(+ .wp-block-image) {
  max-width: 420px;
  margin-inline: auto;
  margin-bottom: 8px;
}

/* back link */
.post__back {
  margin-top: 100px;
}

.post__back-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  margin-inline: auto;
  padding: 14px 48px;
  background: #39a753;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.post__back-link:hover {
  background: #fff;
  color: #39a753;
  box-shadow: 0 0 0 1px #39a753;
}
.post__back-link:hover .post__back-link-arrow {
  background: #39a753;
}
.post__back-link:hover .post__back-link-arrow::after {
  border-top-color: #39a753;
}

/* テキスト */
.post__back-link-text {
  text-align: center;
}

/* 矢印（横線） */
.post__back-link-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 1px;
  background: #fff;
  transition: background-color 0.3s ease;
}

/* 矢印の先端 */
.post__back-link-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 5px;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-top-color 0.3s ease;
}

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

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