@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

/* -----------------------------------------------
common
----------------------------------------------- */
:root {
  --color-dark: #003874;
  --color-light: rgba(151,200,231, 1);
  --color-light-20: rgba(151,200,231, .2);
  --color-light-40: rgba(151,200,231, .4);
  --color-light-60: rgba(151,200,231, .6);
  --color-gray: #F7F7F7;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
body {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.font__montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
i {
  font-style: normal;
}
.inner__wrap {
  margin-inline: auto;
}
.common__heading__en {
  display: block;
  font-weight: normal;
}
.common__heading__ja {
  font-weight: normal;
}
.common__heading__small {
  text-align: center;
}
.common__heading__small__ja {
  font-weight: normal;
}
.common__heading__small__en {
  display: block;
  font-weight: normal;
}
.link__wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  background: #fff;
  position: relative;
  margin-inline: auto;
}
.link__wrap:not(.blank) a::after {
  content: '';
  aspect-ratio: 6/8;
  background: #000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
  width: 6px;
}
.link__wrap.blank a::after {
  content: '';
  aspect-ratio: 9/8;
  background: url(../images/icon_blank.svg) center / contain no-repeat;
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  width: 9px;
}
.bg__blue {
  position: absolute;
  z-index: -1;
  display: flex;
  flex-direction: column;
}
.bg__blue span {
  background: var(--color-light-20);
  width: 100%;
  height: calc(100% / 3);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.bg__blue.js__inview__active span.top {
  animation: bgBlueAnime .9s cubic-bezier(0.71, 0.09, 0.22, 1) 0s forwards;
}
.bg__blue.js__inview__active span.center {
  animation: bgBlueAnime .9s cubic-bezier(0.71, 0.09, 0.22, 1) 100ms forwards;
}
.bg__blue.js__inview__active span.bottom {
  animation: bgBlueAnime .9s cubic-bezier(0.71, 0.09, 0.22, 1) 200ms forwards;
}

@media (max-width: 767px) {
  .pc__only {
    display: none;
  }
  body {
    font-size: 14px;
    padding-top: 70px;
  }
  .inner__wrap {
    width: 89.33%;
  }
  .common__heading__en {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .common__heading__ja {
    font-size: 14px;
  }
  .desc__text {
    font-size: 16px;
    line-height: 2.5;
  }
  .common__heading__small__ja {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .common__heading__small__en {
    font-size: 14px;
  }
  .common__heading__small:has(.common__heading__small__desc) .common__heading__small__en {
    margin-bottom: 34px;
  }
  .common__heading__small__desc {
    font-size: 16px;
    line-height: 2;
  }
  .link__wrap a {
    width: 260px;
    height: 60px;
    font-size: 14px;
    letter-spacing: .05em;
  }
}

@media (min-width: 768px) {
  .sp__only {
    display: none;
  }
  body {
    font-size: 16px;
    padding-top: 80px;
  }
  .inner__wrap {
    width: calc(100% - 40px);
    max-width: 1120px;
  }
  .content__fx {
    display: flex;
    gap: 50px;
  }
  .content__fx.reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .content__grid {
    display: grid;
  }
  .common__heading__en {
    font-size: 40px;
    margin-bottom: 6px;
  }
  .common__heading__ja {
    font-size: 16px;
  }
  .desc__text {
    line-height: 2.5;
  }
  .common__heading__small__ja {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .common__heading__small__en {
    font-size: 16px;
  }
  .common__heading__small:has(.common__heading__small__desc) .common__heading__small__en {
    margin-bottom: 26px;
  }
  .common__heading__small__desc {
    line-height: 2;
  }
  .link__wrap a {
    width: 260px;
    height: 60px;
    font-size: 14px;
    letter-spacing: .05em;
  }
}

@media (any-hover: hover) {
  a[href],
  button {
    transition: all .3s;
  }
  a[href]:hover,
  button:hover {
    opacity: 0.8;
  }
}

@keyframes bgBlueAnime {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* -----------------------------------------------
header
----------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
}
header .inner__wrap {
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  header {
    height: 70px;
  }
  .header__logo {
    width: 166px;
  }
  .header__cv.pc__only {
    display: none;
  }
  .header__cv {
    /* position: fixed;
    bottom: 0;
    left: 0; */
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    font-size: 12px;
    background: #fff;
    border-bottom: 1px solid #CCCCCC;
  }
  .header__cv::before {
    content: '';
    width: 1px;
    height: 60px;
    background: #CCCCCC;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }
  .header__cv a {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 768px) {
  header {
    height: 80px;
  }
  header .inner__wrap {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    gap: 0 20px;
    padding-left: min(3.125vw, 40px);
    padding-right: min(15.625vw, 200px);
  }
  .header__logo {
    width: 166px;
  }
  .header__cv {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 min(3.67vw, 47px);
    font-size: 14px;
    margin-right: min(4.69vw, 60px);
  }
  .header__cv.sp__only {
    display: none;
  }
}

/* ハンバーガー */
/* html:has(body.menu__open),
body.menu__open {
  height: 100%;
  overflow: hidden;
} */
.menu__btn {
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  background: none;
  border: none;
  background: var(--color-dark);
  display: flex;
  align-items: center;
}
.menu__btn span.menu__btn__text {
  color: #fff;
}
body.menu__open .menu__btn span.menu__btn__text {
  display: none;
}
.menu__btn span.menu__btn__line {
  position: relative;
}
.menu__btn span.menu__btn__line i {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #fff;
  transition: transform .5s ease-in-out, top .5s ease;
}
body .menu__btn span.menu__btn__line i:nth-child(1) {
  top: 0;
}
body .menu__btn span.menu__btn__line i:nth-child(2) {
  top: calc(100% - 1px);
}
.header__nav__wrap {
  transform: translateX(100%);
  transition: all 0.5s;
  height: 100dvh;
  color: #fff;
  background-color: var(--color-dark);
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden auto;
  z-index: 2;
}
body.menu__open .header__nav__wrap {
  transform: translateX(0);
}
.header__nav__en {
  display: block;
}
.header__nav__ja {
  display: block;
}
.header__nav__sns__list ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__nav__sns__list img {
  width: auto;
  max-width: none;
}
.header__nav__close__area {
  display: none;
}
body.menu__open .header__nav__close__area {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(1, 55, 113, .4);
  z-index: 1;
}


@media (max-width: 767px) {
  .menu__btn {
    width: 70px;
    justify-content: center;
    z-index: 3;
  }
  .menu__btn span.menu__btn__line {
    width: 30px;
    height: 9px;
  }
  body.menu__open .menu__btn span.menu__btn__line i:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  body.menu__open .menu__btn span.menu__btn__line i:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header__nav__wrap {
    width: 349px;
    padding: 46px 40px 30px;
  }
  .header__nav__wrap .menu__btn {
    display: none;
  }
  .header__nav__list {
    margin-bottom: 38px;
  }
  .header__nav__list li + li {
    margin-top: 20px;
  }
  .header__nav__en {
    font-size: 12px;
  }
  .header__nav__ja {
    font-size: 16px;
  }
  .header__nav__sns__list ul {
    gap: 0 21px;
  }
  .header__nav__sns__list img {
    height: 24px;
  }

  /* pcのみで使用するハンバーガーメニュー内のナビクローズボタン */
  .menu__btn.menu__btn__close {
    display: none;
  }
}

@media (min-width: 768px) {
  .menu__btn {
    padding: 0 min(1.875vw, 24px) 0 min(2.42vw, 31px);
    width: min(15.62vw, 200px);
    justify-content: space-between;
  }
  .menu__btn span.menu__btn__line {
    width: 15px;
    height: 5px;
    margin-left: auto;
  }
  .header__nav__wrap {
    width: 349px;
    padding: 80px 40px 30px;
  }
  .header__nav__list {
    margin-bottom: 56px;
  }
  .header__nav__list li + li {
    margin-top: 23px;
  }
  .header__nav__en {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .header__nav__ja {
    font-size: 16px;
  }
  .header__nav__sns__list ul {
    gap: 0 21px;
  }
  .header__nav__sns__list img {
    height: 24px;
  }

  /* pcのみで使用するハンバーガーメニュー内のナビクローズボタン */
  .menu__btn.menu__btn__close {
    width: 80px;
    height: 80px;
  }
  body.menu__open .menu__btn.menu__btn__close span.menu__btn__line i:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  body.menu__open .menu__btn.menu__btn__close span.menu__btn__line i:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}

/* -----------------------------------------------
.mv__wrap
----------------------------------------------- */
.mv__wrap {
  position: relative;
}
.mv__img {
  position: relative;
}
.mv__img::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(1, 55, 113, .4);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 100% 0 0);
  animation: mvImgReveal .6s cubic-bezier(0.71, 0.09, 0.22, 1) 0.2s forwards;
  z-index: 1;
}
.mv__img img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  animation: mvImgReveal .6s cubic-bezier(0.71, 0.09, 0.22, 1) 0.2s forwards;
}
.mv__text {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  color: #fff;
  z-index: 1;
}
.mv__text__en {
  display: block;
  font-weight: normal;
}
.mv__text__en i {
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.71, 0.09, 0.22, 1);
}
.mv__text__en i:nth-child(1) {
  animation-name: mvTextUp;
  animation-duration: 0.8s;
}
.mv__text__en i:nth-child(2) {
  animation-name: mvTextUp;
  animation-duration: 0.8s;
}
.mv__text__ja {
  display: block;
}
.mv__text__ja i {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.71, 0.09, 0.22, 1);
}
.mv__text__ja i:nth-child(1) {
  animation-name: mvTextUp;
  animation-duration: 0.8s;
  animation-delay: 0.16s;
}
.mv__text__ja i:nth-child(2) {
  animation-name: mvTextUp;
  animation-duration: 0.8s;
  animation-delay: 0.24s;
}
.mv__text strong {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.71, 0.09, 0.22, 1);
  animation-name: mvTextUp;
  animation-duration: 0.9s;
  animation-delay: 0.36s;
}

@media (max-width: 767px) {
  .mv__text {
    top: 10.13vw;
    width: 89.33%;
  }
  .mv__text__en {
    font-size: 3.73vw;
    line-height: 1.71;
    margin-bottom: 1.41vw;
  }
  .mv__text__en i {
    display: block;
  }
  .mv__text__en i:nth-child(1) {
    animation-delay: 0s;
  }
  .mv__text__en i:nth-child(2) {
    animation-delay: 0.08s;
  }
  .mv__text__ja {
    font-size: 7.47vw;
    line-height: 1.71;
    margin-bottom: .53vw;
  }
  .mv__text strong {
    font-size: 5.87vw;
  }
}

@media (min-width: 768px) {
  .mv__text {
    top: 19.22vw;
    width: 80vw;
  }
  .mv__text__en {
    font-size: 1.25vw;
    margin-bottom: 1.41vw;
    display: flex;
    flex-wrap: wrap;
    gap: 0 .5em;
  }
  .mv__text__en i {
    display: inline-block;
    animation-delay: 0.08s;
  }
  .mv__text__ja {
    font-size: 3.75vw;
    line-height: 1.33;
    margin-bottom: 4.22vw;
  }
  .mv__text strong {
    font-size: 3.2vw;
  }
}

@keyframes mvImgReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes mvTextUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* -----------------------------------------------
.slogan__wrap
----------------------------------------------- */
.slogan__wrap dt {
  background: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .slogan__wrap {
    padding: 56px 0 78px;
  }
  .slogan__wrap .common__heading {
    margin-bottom: 40px;
  }
  .slogan__wrap dt {
    width: 120px;
    height: 30px;
    margin-bottom: 13px;
  }
  .slogan__wrap dd.ja {
    font-size: 28px;
    line-height: 1.71;
    margin-bottom: 14px;
  }
  .slogan__wrap dd.ja span {
    background: linear-gradient(transparent 70%, var(--color-light-60) 0%);
  }
  .slogan__wrap dd.en {
    line-height: 1.71;
  }
}

@media (min-width: 768px) {
  .slogan__wrap {
    padding: 82px 0 118px;
  }
  .slogan__wrap .common__heading {
    flex: 1;
  }
  .slogan__wrap dl {
    width: 66.79%;
    padding-top: 10px;
  }
  .slogan__wrap dt {
    width: 181px;
    height: 32px;
    margin-bottom: 50px;
  }
  .slogan__wrap dd.ja {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .slogan__wrap dd.ja span {
    background: linear-gradient(transparent 70%, var(--color-light-60) 0%);
  }
}

/* -----------------------------------------------
.aboutkiwanis__wrap
----------------------------------------------- */
.aboutkiwanis__wrap {
  position: relative;
}
.aboutkiwanis__wrap .inner__wrap {
  position: relative;
  z-index: 1;
}
.aboutkiwanis__wrap .swiper-wrapper {
  transition-timing-function: linear;
}

@media (max-width: 767px) {
  .aboutkiwanis__wrap {
    padding: 56px 0 60px;
  }
  .aboutkiwanis__wrap::before {
    content: '';
    width: 100vw;
    height: 100%;
    background: rgba(228, 228, 228, .35);
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    z-index: -1;
  }
  .aboutkiwanis__wrap .bg__blue {
    width: 78.67vw;
    height: calc(100% + 21px);
    top: 102px;
    right: -5.33vw;
  }
  .aboutkiwanis__wrap .content__fx {
    margin-bottom: 52px;
  }
  .aboutkiwanis__wrap .common__heading {
    margin-bottom: 52px;
  }
}

@media (min-width: 768px) {
  .aboutkiwanis__wrap {
    padding: 92px 0 129px;
  }
  .aboutkiwanis__wrap::before {
    content: '';
    width: min(98.27vw, 1140px);
    height: 100%;
    background: rgba(228, 228, 228, .35);
    position: absolute;
    top: 0;
    left: calc(50% - min(6.03vw, 70px));
    translate: -50% 0;
    z-index: -1;
  }
  .aboutkiwanis__wrap .bg__blue {
    width: 86.07%;
    height: calc(100% + 274px);
    top: -34px;
    right: 0;
  }
  .aboutkiwanis__wrap .content__fx {
    margin-bottom: 74px;
  }
  .aboutkiwanis__wrap .common__heading {
    flex: 1;
  }
  .aboutkiwanis__wrap .desc__text__wrap {
    width: 66.79%;
    padding-right: 12.5%;
  }
}

/* -----------------------------------------------
.philosophy__wrap
----------------------------------------------- */
.philosophy__wrap .common__heading {
  text-align: center;
}
.philosophy__wrap .content__grid .common__heading {
  color: #fff;
}
.philosophy__wrap .content__grid .common__heading__en {
  letter-spacing: .04em;
}
.philosophy__wrap .content__grid .common__heading__ja {
  letter-spacing: .05em;
}
.philosophy__wrap .grid__item__mission {
  background: var(--color-dark);
}
.philosophy__wrap .grid__item__vision {
  background: var(--color-light);
}
.philosophy__wrap .grid__item.col2 p {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  margin-inline: auto;
}
.philosophy__wrap .grid__item__mission p {
  color: var(--color-dark);
}
.philosophy__wrap .grid__item__vision p {
  color: var(--color-light);
}
.philosophy__wrap .grid__item__values {
  background: #B39759;
}
.philosophy__wrap .grid__item__values li {
  background-color: #fff;
  color: #B39759;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  padding: 10px 10px;
}

@media (max-width: 767px) {
  .philosophy__wrap {
    padding: 76px 0 0;
  }
  .philosophy__wrap .inner__wrap > .common__heading {
    margin-bottom: 40px;
  }
  .philosophy__wrap .grid__item.col2 {
    padding: 28px 5.33% 40px;
  }
  .philosophy__wrap .grid__item.col2 .common__heading {
    margin-bottom: 30px;
  }
  .philosophy__wrap .grid__item.col2 p {
    width: 88.06%;
    min-height: 162px;
    font-size: 18px;
    line-height: 2.11;
    letter-spacing: .05em;
    padding: 20px 10px;
  }
  .philosophy__wrap .grid__item__values {
    padding: 28px 5.33% 40px;
  }
  .philosophy__wrap .grid__item__values .common__heading {
    margin-bottom: 30px;
  }
  .philosophy__wrap .grid__item__values ul {
    width: 88.06%;
    margin-inline: auto;
  }
  .philosophy__wrap .grid__item__values li {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .05em;
    min-height: 110px;
  }
  .philosophy__wrap .grid__item__values li + li {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .philosophy__wrap {
    padding: 140px 0 0;
  }
  .philosophy__wrap .inner__wrap > .common__heading {
    margin-bottom: 78px;
  }
  .philosophy__wrap .content__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "grid__item__mission grid__item__vision"
      "grid__item__values grid__item__values";
    max-width: 1280px;
    margin-inline: auto;
  }
  .philosophy__wrap .content__grid .common__heading__en {
    margin-bottom: 12px;
  }
  .philosophy__wrap .content__grid .common__heading__ja {
    font-size: 20px;
  }
  .philosophy__wrap .grid__item__mission {
    grid-area: grid__item__mission;
  }
  .philosophy__wrap .grid__item__vision {
    grid-area: grid__item__vision;
  }
  .philosophy__wrap .grid__item.col2 {
    padding: 106px 20px 82px;
  }
  .philosophy__wrap .grid__item.col2 .common__heading {
    margin-bottom: 110px;
  }
  .philosophy__wrap .grid__item.col2 p {
    max-width: 480px;
    min-height: 240px;
    font-size: 24px;
    line-height: 2;
    letter-spacing: .05em;
    padding: 20px 20px;
  }
  .philosophy__wrap .grid__item__values {
    grid-area: grid__item__values;
    padding: 106px 20px 82px;
  }
  .philosophy__wrap .grid__item__values .common__heading {
    margin-bottom: 110px;
  }
  .philosophy__wrap .grid__item__values ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px 17px;
    max-width: 1120px;
    margin-inline: auto;
  }
  .philosophy__wrap .grid__item__values li {
    font-size: 18px;
    line-height: 1.56;
    letter-spacing: .05em;
    min-height: 160px;
  }
}

/* -----------------------------------------------
.activities__wrap
----------------------------------------------- */
.activities__wrap .common__heading {
  text-align: center;
}
.activities__wrap .inner__wrap > * {
  position: relative;
  z-index: 1;
}
.activities__wrap .content__fx__text dt {
  display: flex;
  align-items: center;
  color: var(--color-dark);
}
.activities__wrap .content__fx__text dt span {
  font-weight: normal;
}
.activities__wrap .content__fx__text dt h3 {
  font-weight: bold;
}

@media (max-width: 767px) {
  .activities__wrap {
    padding: 77px 0 60px;
    margin-bottom: 80px;
  }
  .activities__wrap .common__heading {
    margin-bottom: 31px;
  }
  .activities__wrap .desc__text {
    font-size: 16px;
    line-height: 2.5;
    margin-bottom: 32px;
  }
  .activities__wrap .content__fx {
    margin-bottom: 13.33vw;
  }
  .activities__wrap .content__fx .bg__blue {
    width: 78.67vw;
    height: calc(100% + 92px);
    top: 21.33vw;
    left: -5.33vw;
  }
  .activities__wrap .content__fx__img {
    margin-bottom: 34px;
  }
  .activities__wrap .content__fx__text dt {
    gap: 0 22px;
  }
  .activities__wrap .content__fx__text dd + dt {
    margin-top: 26px;
  }
  .activities__wrap .content__fx__text dt span {
    font-size: 48px;
    letter-spacing: .1em;
  }
  .activities__wrap .content__fx__text dt h3 {
    font-size: 20px;
    letter-spacing: .04em;
  }
  .activities__wrap .content__fx__text dd {
    font-size: 16px;
    line-height: 2.5;
  }
}

@media (min-width: 768px) {
  .activities__wrap {
    padding: 140px 0 144px;
  }
  .activities__wrap .common__heading {
    margin-bottom: 70px;
  }
  .activities__wrap .desc__text {
    font-size: 18px;
    line-height: 2.22;
    margin-bottom: 86px;
    text-align: center;
  }
  .activities__wrap .content__fx {
    gap: 0 7.68%;
    margin-bottom: 78px;
  }
  .activities__wrap .content__fx .bg__blue {
    width: 61.52%;
    height: calc(100% + 56px);
    top: 43px;
    left: 14.91%;
  }
  .activities__wrap .content__fx__img {
    width: 33.84%;
  }
  .activities__wrap .content__fx__text {
    flex: 1;
  }
  .activities__wrap .content__fx__text dt {
    gap: 0 33px;
    margin-bottom: 2px;
  }
  .activities__wrap .content__fx__text dd + dt {
    margin-top: 42px;
  }
  .activities__wrap .content__fx__text dt span {
    font-size: 56px;
    letter-spacing: .1em;
  }
  .activities__wrap .content__fx__text dt h3 {
    font-size: 24px;
    letter-spacing: .04em;
  }
  .activities__wrap .content__fx__text dd {
    line-height: 2;
  }
}

/* -----------------------------------------------
.projects__wrap
----------------------------------------------- */
.projects__wrap {
  position: relative;
  z-index: 1;
}
.projects__wrap::before {
  content: '';
  background: var(--color-gray);
  position: absolute;
  top: 0;
  z-index: -1;
}
.projects__wrap .slider__wrap a time {
  display: block;
}

@media (max-width: 767px) {
  .projects__wrap {
    padding: 78px 0 62px;
    margin-bottom: 80px;
  }
  .projects__wrap::before {
    width: 78.67vw;
    height: 100%;
    right: 0;
  }
  .projects__wrap .heading__grid {
    margin-bottom: 59px;
  }
  .projects__wrap .common__heading {
    margin-bottom: 32px;
    text-align: center;
  }
  .projects__wrap .desc__text__wrap {
    margin-bottom: 52px;
  }
  .projects__wrap .slider__wrap {
    margin-left: 5.33vw;
  }
  .projects__wrap .slider__wrap a picture {
    margin-bottom: 12px;
  }
  .projects__wrap .slider__wrap a time {
    margin-bottom: 8px;
  }
  .projects__wrap .slider__wrap a p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .projects__wrap {
    padding: 92px 0 70px;
  }
  .projects__wrap::before {
    width: 87.5vw;
    height: calc(100% + 40px);
    left: 0;
  }
  .projects__wrap .heading__grid {
    display: grid;
    grid-template-columns: 260px 1fr; 
    grid-template-rows: 1fr auto; 
    gap: 50px 6.25%; 
    grid-template-areas: 
      "common__heading desc__text__wrap"
      "link__wrap desc__text__wrap";
    margin-bottom: 59px;
  }
  .projects__wrap .common__heading {
    grid-area: common__heading;
  }
  .projects__wrap .desc__text__wrap {
    grid-area: desc__text__wrap;
  }
  .projects__wrap .desc__text {
    max-width: 630px;
  }
  .projects__wrap .link__wrap {
    grid-area: link__wrap;
  }
  .projects__wrap .link__wrap a {
    margin-left: 0;
    margin-right: auto;
  }
  .projects__wrap .slider__wrap {
    margin-left: 20px;
  }
  .projects__wrap .slider__wrap a picture {
    margin-bottom: 6px;
  }
  .projects__wrap .slider__wrap a time {
    margin-bottom: 12px;
  }
  .projects__wrap .slider__wrap a p {
    font-size: 18px;
  }
}

@media (min-width: 1160px) {
  .projects__wrap .slider__wrap {
    margin-left: calc((100vw - 1120px - 15px) / 2);
  }
}

/* -----------------------------------------------
.joinus__wrap
----------------------------------------------- */
.joinus__wrap {
  background: var(--color-dark);
}
.joinus__wrap .heading__fx {
  color: #fff;
}
.joinus__wrap .joinus__desc {
  color: #fff;
  position: relative;
  z-index: 2;
}
.joinus__wrap .joinus__desc .content__fx__img {
  position: relative;
  z-index: 1;
}
.joinus__wrap .joinus__heading h3 {
  font-weight: normal;
}
.joinus__wrap .joinus__merit {
  position: relative;
  z-index: 1;
}
.joinus__wrap .joinus__merit::before {
  content: '';
  background: #fff;
  position: absolute;
  z-index: -1;
}
.joinus__wrap .joinus__merit .content__fx__text h4 {
  color: var(--color-dark);
  font-weight: normal;
}
.joinus__wrap .joinus__merit .content__fx__text ul li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.joinus__wrap .joinus__flow .content__fx__text {
  color: #fff;
}
.joinus__wrap .joinus__flow .content__fx__text h4 {
  font-weight: normal;
}
.joinus__wrap .joinus__flow .content__fx__text ol {
  position: relative;
  z-index: 1;
}
.joinus__wrap .joinus__flow .content__fx__text ol::before {
  content: '';
  width: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  z-index: -1;
}
.joinus__wrap .joinus__flow .content__fx__text li {
  display: flex;
  align-items: center;
}
.joinus__wrap .joinus__flow .content__fx__text li span {
  background: var(--color-dark);
}

@media (max-width: 767px) {
  .joinus__wrap {
    padding: 75px 0 80px;
  }
  .joinus__wrap .heading__fx {
    margin-bottom: 26px;
  }
  .joinus__wrap .common__heading {
    text-align: center;
    margin-bottom: 38px;
  }
  .joinus__wrap .joinus__heading {
    text-align: center;
  }
  .joinus__wrap .joinus__heading h3 {
    font-size: 23px;
    line-height: 1.83;
    margin-bottom: 22px;
  }
  .joinus__wrap .joinus__heading p {
    font-size: 18px;
    line-height: 2.11;
  }
  .joinus__wrap .joinus__desc {
    margin-bottom: 40px;
  }
  .joinus__wrap .joinus__desc .content__fx__text .desc__text {
    padding-bottom: 70px;
  }
  .joinus__wrap .joinus__desc .content__fx__img .bg__blue {
    width: 88.06%;
    height: calc(100% + 120px);
    top: -40px;
    right: -5.33vw;
  }
  .joinus__wrap .joinus__merit {
    padding: 80px 0 60px;
  }
  .joinus__wrap .joinus__merit::before {
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
  .joinus__wrap .joinus__merit .content__fx__text {
    margin-bottom: 32px;
  }
  .joinus__wrap .joinus__merit .content__fx__text h4 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .joinus__wrap .joinus__merit .content__fx__text ul {
    font-size: 20px;
    line-height: 2.4;
  }
  .joinus__wrap .joinus__merit .content__fx__img {
    width: 88.06%;
    margin-inline: auto;
  }
  .joinus__wrap .joinus__flow {
    padding: 82px 0 0;
    position: relative;
  }
  .joinus__wrap .joinus__flow .content__fx__text {
    margin-bottom: 72px;
  }
  .joinus__wrap .joinus__flow .content__fx__text h4 {
    font-size: 28px;
    margin-bottom: 48px;
  }
  .joinus__wrap .joinus__flow .content__fx__text ol::before {
    height: calc(100% + 25px);
    left: 12px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li {
    display: flex;
    align-items: center;
    gap: 0 25px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li + li {
    margin-top: 23px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li span {
    font-size: 20px;
    letter-spacing: .1em;
    padding: 4px 0;
  }
  .joinus__wrap .joinus__flow .content__fx__text li p {
    font-size: 18px;
  }
  .joinus__wrap .joinus__flow .content__fx__img picture {
    width: 250px;
    position: absolute;
    top: 20px;
    right: 0;
  }
}

@media (min-width: 768px) {
  .joinus__wrap {
    padding: 180px 0 119px;
  }
  .joinus__wrap .heading__fx {
    display: flex;
    gap: 0 50px;
    margin-bottom: 79px;
  }
  .joinus__wrap .common__heading {
    flex: 1;
  }
  .joinus__wrap .joinus__heading {
    width: 66.79%;
  }
  .joinus__wrap .joinus__heading h3 {
    font-size: 32px;
    line-height: 1.75;
    margin-bottom: 26px;
  }
  .joinus__wrap .joinus__heading p {
    font-size: 18px;
  }
  .joinus__wrap .joinus__desc {
    align-items: flex-start;
    gap: 0 7.14%;
  }
  .joinus__wrap .joinus__desc .content__fx__text {
    flex: 1;
  }
  .joinus__wrap .joinus__desc .content__fx__text .desc__text {
    padding-bottom: 100px;
  }
  .joinus__wrap .joinus__desc .content__fx__img {
    width: 33.93%;
  }
  .joinus__wrap .joinus__desc .content__fx__img .bg__blue {
    width: 113.42%;
    aspect-ratio: 431/540;
    top: -8.95%;
    left: 7.63%;
  }
  .joinus__wrap .joinus__merit {
    align-items: center;
    gap: 0 8.75%;
    padding-bottom: 45px;
  }
  .joinus__wrap .joinus__merit::before {
    width: 100%;
    height: calc(100% + 45px);
    bottom: 0;
    right: min(6.25vw, 80px);
  }
  .joinus__wrap .joinus__merit .content__fx__text {
    flex: 1;
    padding-top: 30px;
    padding-right: 12.5%;
  }
  .joinus__wrap .joinus__merit .content__fx__text h4 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  .joinus__wrap .joinus__merit .content__fx__text ul {
    font-size: 20px;
    line-height: 2.4;
  }
  .joinus__wrap .joinus__merit .content__fx__img {
    width: 41.25%;
  }
  .joinus__wrap .joinus__flow {
    padding-top: 82px;
    max-width: 668px;
    margin-inline: auto;
    align-items: flex-end;
  }
  .joinus__wrap .joinus__flow .content__fx__text {
    flex: 1;
  }
  .joinus__wrap .joinus__flow .content__fx__text h4 {
    font-size: 32px;
    margin-bottom: 48px;
  }
  .joinus__wrap .joinus__flow .content__fx__text ol::before {
    height: calc(100% + 25px);
    left: 12px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li {
    display: flex;
    align-items: center;
    gap: 0 25px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li + li {
    margin-top: 23px;
  }
  .joinus__wrap .joinus__flow .content__fx__text li span {
    font-size: 20px;
    letter-spacing: .1em;
    padding: 4px 0;
  }
  .joinus__wrap .joinus__flow .content__fx__text li p {
    font-size: 18px;
  }
  .joinus__wrap .joinus__flow .content__fx__img {
    width: 290px;
  }
  .joinus__wrap .joinus__flow .content__fx__img picture {
    margin-bottom: 88px;
  }
}

/* -----------------------------------------------
.volunteer__wrap
----------------------------------------------- */
.volunteer__wrap .desc {
  position: relative;
  z-index: 2;
}
.volunteer__wrap .desc .content__fx__text h3 {
  font-weight: normal;
}
.volunteer__wrap .bg__gray {
  position: relative;
  z-index: 1;
}
.volunteer__wrap .bg__gray::before {
  content: '';
  width: 100vw;
  background: var(--color-gray);
  position: absolute;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.volunteer__wrap .opportunities .content__fx__text dl > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.volunteer__wrap .opportunities .content__fx__text dl > div:nth-child(odd)::before {
  content: '';
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.volunteer__wrap .opportunities .content__fx__text dt {
  color: var(--color-dark);
}
.volunteer__wrap .opportunities .content__fx__img {
  position: relative;
  z-index: 1;
}
.volunteer__wrap .charm {
  background: #fff;
}
.volunteer__wrap .charm .charm__heading {
  text-align: center;
}
.volunteer__wrap .charm .charm__heading h3 {
  color: #fff;
  background: #000;
  font-weight: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}
.volunteer__wrap .charm .charm__heading strong {
  font-weight: normal;
  display: block;
}
.volunteer__wrap .charm .charm__heading picture {
  margin-inline: auto;
}
.volunteer__wrap .charm .charm__list li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.volunteer__cv__wrap p {
  text-align: center;
  color: var(--color-dark);
}

@media (max-width: 767px) {
  .volunteer__wrap {
    padding: 78px 0 0;
  }
  .volunteer__wrap .common__heading {
    margin-bottom: 78px;
    text-align: center;
  }
  .volunteer__wrap .content__fx.desc {
    padding-bottom: 32px;
  }
  .volunteer__wrap .desc .bg__blue {
    width: 78.67vw;
    height: calc(100% + 80px);
    top: -40px;
    left: -5.33vw;
  }
  .volunteer__wrap .desc .content__fx__img {
    margin-bottom: 36px;
  }
  .volunteer__wrap .desc .content__fx__text h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 27px;
  }
  .volunteer__wrap .bg__gray {
    padding: 82px 0 60px;
  }
  .volunteer__wrap .bg__gray::before {
    height: 100%;
    top: 0;
  }
  .volunteer__wrap .common__heading__small {
    margin-bottom: 34px;
  }
  .volunteer__wrap .opportunities {
    margin-bottom: 80px;
  }
  .volunteer__wrap .opportunities .content__fx__img .bg__blue {
    width: 78.66vw;
    height: 100%;
    top: 40px;
    left: 50%;
    translate: -50% 0;
  }
  .volunteer__wrap .opportunities .content__fx__img__01 {
    margin-left: auto;
    margin-bottom: 25px;
    width: 87.46%;
  }
  .volunteer__wrap .opportunities .content__fx__img__02 {
    width: 100%;
  }
  .volunteer__wrap .opportunities .content__fx__text {
    margin-bottom: 40px;
  }
  .volunteer__wrap .opportunities .content__fx__text dl {
    margin-bottom: 16px;
  }
  .volunteer__wrap .opportunities .content__fx__text dl > div {
    padding: 30px 0 28px 20px;
  }
  .volunteer__wrap .opportunities .content__fx__text dl > div:nth-child(odd)::before {
    width: 94.67vw;
  }
  .volunteer__wrap .opportunities .content__fx__text dt {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .volunteer__wrap .opportunities .content__fx__text dd {
    font-size: 16px;
    line-height: 1.75;
  }
  .content__fx__att__text {
    font-size: 14px;
  }
  .volunteer__wrap .charm {
    margin-bottom: 56px;
    padding-bottom: 38px;
    border-top: 2px solid #000000;
  }
  .volunteer__wrap .charm .charm__heading {
    width: 260px;
    margin: 0 auto 30px;
  }
  .volunteer__wrap .charm .charm__heading h3 {
    font-size: 20px;
    min-height: 56px;
    margin-bottom: 18px;
  }
  .volunteer__wrap .charm .charm__heading strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .volunteer__wrap .charm .charm__heading picture {
    width: 92px;
  }
  .volunteer__wrap .charm .charm__list {
    width: 82.08%;
    margin-inline: auto;
  }
  .volunteer__wrap .charm .charm__list li {
    font-size: 16px;
    line-height: 1.625;
    letter-spacing: .06em;
  }
  .volunteer__wrap .charm .charm__list li + li {
    margin-top: 18px;
  }
  .volunteer__cv__wrap p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .volunteer__wrap {
    padding: 139px 0 0;
  }
  .volunteer__wrap .common__heading {
    margin-bottom: 78px;
  }
  .volunteer__wrap .content__fx.desc {
    gap: 0 5%;
  }
  .volunteer__wrap .desc .bg__blue {
    width: 56.52%;
    height: calc(100% + 61px);
    top: -31px;
    left: 4.375%;
  }
  .volunteer__wrap .desc .content__fx__img {
    width: 40%;
  }
  .volunteer__wrap .desc .content__fx__text {
    flex: 1;
    padding-top: 28px;
  }
  .volunteer__wrap .desc .content__fx__text h3 {
    font-size: 24px;
    margin-bottom: 26px;
  }
  .volunteer__wrap .bg__gray {
    padding: 110px 0 125px;
  }
  .volunteer__wrap .bg__gray::before {
    height: calc(100% + 72px);
    top: -72px;
  }
  .volunteer__wrap .common__heading__small {
    margin-bottom: 74px;
  }
  .volunteer__wrap .opportunities {
    align-items: flex-start;
    gap: 0 5.625%;
    margin-bottom: 120px;
  }
  .volunteer__wrap .opportunities .content__fx__img {
    width: 50.89%;
  }
  .volunteer__wrap .opportunities .content__fx__img .bg__blue {
    width: 68.6%;
    height: calc(100% + 8px);
    top: 38px;
    left: 11.05%;
  }
  .volunteer__wrap .opportunities .content__fx__img__01 {
    margin-bottom: 52px;
  }
  .volunteer__wrap .opportunities .content__fx__img__02 {
    width: calc(100% + 20px);
    position: relative;
    left: -20px;
  }
  .volunteer__wrap .opportunities .content__fx__text {
    flex: 1;
  }
  .volunteer__wrap .opportunities .content__fx__text dl {
    margin-bottom: 28px;
  }
  .volunteer__wrap .opportunities .content__fx__text dl > div {
    padding: 10px 0 10px 49px;
    min-height: 147px;
  }
  .volunteer__wrap .opportunities .content__fx__text dl > div:nth-child(odd)::before {
    width: 567px;
  }
  .volunteer__wrap .opportunities .content__fx__text dt {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .volunteer__wrap .opportunities .content__fx__text dd {
    line-height: 1.75;
  }
  .content__fx__att__text {
    font-size: 14px;
  }
  .volunteer__wrap .charm {
    max-width: 816px;
    margin: 0 auto 48px;
    border-top: 2px solid #000000;
    gap: 0 4.02%;
  }
  .volunteer__wrap .charm .charm__heading {
    width: 280px;
  }
  .volunteer__wrap .charm .charm__heading h3 {
    font-size: 24px;
    min-height: 56px;
    margin-bottom: 16px;
  }
  .volunteer__wrap .charm .charm__heading strong {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .volunteer__wrap .charm .charm__heading picture {
    width: 92px;
  }
  .volunteer__wrap .charm .charm__list {
    flex: 1;
    padding: 37px 20px 44px 0;
  }
  .volunteer__wrap .charm .charm__list li {
    font-size: 18px;
    letter-spacing: .06em;
  }
  .volunteer__wrap .charm .charm__list li + li {
    margin-top: 19px;
  }
  .volunteer__cv__wrap p {
    font-size: 24px;
    margin-bottom: 80px;
  }
}

@media (min-width: 1160px) {
  .volunteer__wrap .opportunities .content__fx__img__02 {
    width: 114.3%;
    left: -80px;
  }
}

/* -----------------------------------------------
.aboutus__wrap
----------------------------------------------- */
.aboutus__wrap .common__heading {
  text-align: center;
}
.aboutus__wrap .greeting .content__fx__img {
  position: relative;
  z-index: 1;
}
.aboutus__wrap .profile {
  background: var(--color-gray);
  position: relative;
}
.aboutus__wrap .profile dl > div:nth-child(1) {
  border-top: 1px solid #CCCCCC;
}
.aboutus__wrap .profile dl > div {
  border-bottom: 1px solid #CCCCCC;
}

@media (max-width: 767px) {
  .aboutus__wrap {
    padding: 78px 0 100px;
  }
  .aboutus__wrap .common__heading {
    margin-bottom: 60px;
  }
  .aboutus__wrap .greeting {
    margin-bottom: 52px;
  }
  .aboutus__wrap .greeting .common__heading__small {
    margin-bottom: 38px;
  }
  .aboutus__wrap .greeting .content__fx__img {
    width: 88.06%;
    margin-bottom: 76px;
  }
  .aboutus__wrap .greeting .content__fx__img .bg__blue {
    width: 78.67vw;
    height: calc(100% + 85px);
    top: -20px;
    right: 10.67vw;
  }
  .aboutus__wrap .greeting .content__fx__text .desc__text {
    margin-bottom: 23px;
  }
  .aboutus__wrap .greeting .content__fx__text .name {
    font-size: 20px;
    line-height: 1.78;
  }
  .aboutus__wrap .greeting .content__fx__text .name span {
    font-size: 14px;
  }
  .aboutus__wrap .profile {
    padding: 60px 5.97% 60px;
  }
  .aboutus__wrap .profile .bg__blue {
    width: 100%;
    height: 100%;
    top: 20px;
    right: -5.33vw;
  }
  .aboutus__wrap .profile .common__heading__small {
    margin-bottom: 52px;
  }
  .aboutus__wrap .profile dl > div {
    padding: 20px 0 16px;
  }
  .aboutus__wrap .profile dt {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 6px;
  }
  .aboutus__wrap .profile dd {
    font-size: 16px;
    line-height: 1.75;
  }
}

@media (min-width: 768px) {
  .aboutus__wrap {
    padding: 138px 0 182px;
  }
  .aboutus__wrap .common__heading {
    margin-bottom: 78px;
  }
  .aboutus__wrap .greeting {
    margin-bottom: 120px;
  }
  .aboutus__wrap .greeting .common__heading__small {
    margin-bottom: 78px;
  }
  .aboutus__wrap .greeting .content__fx {
    align-items: flex-start;
    gap: 0 5%;
  }
  .aboutus__wrap .greeting .content__fx__img {
    width: 45%;
  }
  .aboutus__wrap .greeting .content__fx__img .bg__blue {
    width: 93.85%;
    height: calc(100% + 113px);
    top: -17px;
    left: -30px;
  }
  .aboutus__wrap .greeting .content__fx__text {
    flex: 1;
  }
  .aboutus__wrap .greeting .content__fx__text .desc__text {
    margin-bottom: 43px;
  }
  .aboutus__wrap .greeting .content__fx__text .name {
    font-size: 20px;
    line-height: 1.6;
  }
  .aboutus__wrap .greeting .content__fx__text .name span {
    font-size: 16px;
  }
  .aboutus__wrap .profile {
    max-width: 816px;
    margin-inline: auto;
    padding: 104px 10px 126px;
  }
  .aboutus__wrap .profile .bg__blue {
    width: 75.98%;
    height: 85.25%;
    top: 214px;
    left: 33.95%;
  }
  .aboutus__wrap .profile .common__heading__small {
    margin-bottom: 76px;
  }
  .aboutus__wrap .profile dl {
    max-width: 600px;
    margin-inline: auto;
  }
  .aboutus__wrap .profile dl > div {
    display: flex;
    padding: 35px 10px 35px 40px;
  }
  .aboutus__wrap .profile dt {
    width: 126px;
    padding-right: 1em;
    font-size: 18px;
    line-height: 1.5;
  }
  .aboutus__wrap .profile dd {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* -----------------------------------------------
.contact__wrap
----------------------------------------------- */
.contact__wrap {
  background: var(--color-light-40);
}
.contact__wrap .common__heading {
  text-align: center;
}
.contact__wrap .desc__text {
  text-align: center;
}
.contact__wrap .bg__gray {
  position: relative;
  z-index: 2;
}
.contact__wrap .bg__gray::before {
  content: '';
  width: 100vw;
  background: var(--color-gray);
  position: absolute;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
.contact__wrap .contact__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  font-weight: bold;
}
.contact__wrap .contact__list li::before {
  content: '';
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.contact__wrap .contact__list li::after {
  content: '';
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
}
.contact__wrap .contact__cv__wrap .cv__text {
  color: var(--color-dark);
  text-align: center;
  font-weight: normal;
}
.contact__cv__content {
  background: var(--color-dark);
  color: #fff;
}
.contact__cv__content .contact__cv__link {
  font-weight: 500;
  display: inline-block;
}
.contact__cv__content .contact__cv__tel {
  position: relative;
}
.contact__cv__content .contact__cv__tel::after {
  content: '';
  background: #fff;
  position: absolute;
}

@media (max-width: 767px) {
  .contact__wrap {
    padding: 76px 0 0;
  }
  .contact__wrap .common__heading {
    margin-bottom: 32px;
  }
  .contact__wrap .desc__text {
    margin-bottom: 32px;
    text-align: left;
  }
  .contact__wrap .bg__gray {
    padding: 40px 0 60px;
  }
  .contact__wrap .bg__gray::before {
    top: 0;
    height: 100%;
  }
  .contact__wrap .contact__list {
    width: 73.43%;
    margin: 0 auto 60px;
  }
  .contact__wrap .contact__list li {
    font-size: 18px;
    line-height: 1.78;
    min-height: 100px;
    padding: 0 10px;
  }
  .contact__wrap .contact__list li + li {
    margin-top: 30px;
  }
  .contact__wrap .contact__list li::before {
    width: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px calc(100% - 2px), 100% calc(100% - 2px), 100% 100%, 0 100%);
  }
  .contact__wrap .contact__list li::after {
    width: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 calc(100% - 2px),  calc(100% - 2px)  calc(100% - 2px),  calc(100% - 2px) 2px, 0% 2px);
  }
  .contact__wrap .contact__cv__wrap .cv__text {
    font-size: 20px;
    margin-bottom: 46px;
  }
  .contact__cv__content {
    padding: 18px 5.97% 18px;
  }
  .contact__cv__content .contact__cv__tel {
    margin-bottom: 56px;
  }
  .contact__cv__content .contact__cv__tel::after {
    width: 20px;
    height: 1px;
    top: calc(100% + 26px);
    left: 0;
  }
  .contact__cv__content .contact__cv__tel .contact__cv__link {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact__cv__content .contact__cv__mail .contact__cv__link {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .contact__cv__content p {
    font-size: 14px;
    line-height: 1.71;
  }
}

@media (min-width: 768px) {
  .contact__wrap {
    padding: 134px 0 0;
  }
  .contact__wrap .common__heading {
    margin-bottom: 58px;
  }
  .contact__wrap .desc__text {
    line-height: 2;
    margin-bottom: 76px;
  }
  .contact__wrap .bg__gray {
    padding-bottom: 134px;
  }
  .contact__wrap .bg__gray::before {
    top: 44px;
    height: calc(100% - 44px);
  }
  .contact__wrap .contact__list {
    max-width: 816px;
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px 2.77%;
    margin-bottom: 66px;
  }
  .contact__wrap .contact__list li {
    width: 30.15%;
    font-size: 18px;
    line-height: 1.78;
    min-height: 160px;
    padding: 10px 10px;
  }
  .contact__wrap .contact__list li::before {
    width: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px calc(100% - 2px), 100% calc(100% - 2px), 100% 100%, 0 100%);
  }
  .contact__wrap .contact__list li::after {
    width: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0 calc(100% - 2px),  calc(100% - 2px)  calc(100% - 2px),  calc(100% - 2px) 2px, 0% 2px);
  }
  .contact__wrap .contact__cv__wrap .cv__text {
    font-size: 24px;
    margin-bottom: 36px;
  }
  .contact__cv__content {
    max-width: 816px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 44px 20px 44px;
  }
  .contact__cv__content .contact__cv__inner {
    max-width: 754px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0 7.84%;
  }
  .contact__cv__content .contact__cv__tel {
    width: 34.48%;
  }
  .contact__cv__content .contact__cv__tel::after {
    width: 1px;
    height: 38px;
    top: 50%;
    right: -30px;
    translate: 0 -50%;
  }
  .contact__cv__content .contact__cv__mail {
    width: 50.4%;
  }
  .contact__cv__content .contact__cv__link {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .contact__cv__content p {
    font-size: 14px;
    line-height: 1.71;
  }
}

/* -----------------------------------------------
.member__wrap
----------------------------------------------- */
.member__wrap .common__heading {
  text-align: center;
}
.member__list {
  display: grid;
}

@media (max-width: 767px) {
  .member__wrap {
    padding: 78px 0 80px;
  }
  .member__wrap .common__heading {
    margin-bottom: 38px;
  }
  .member__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 11px;
  }
}

@media (min-width: 768px) {
  .member__wrap {
    padding: 138px 0 117px;
  }
  .member__wrap .common__heading {
    margin-bottom: 80px;
  }
  .member__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px 15px;
  }
}

/* -----------------------------------------------
footer
----------------------------------------------- */
footer {
  background: #000000;
  border-top: 1px solid #707070;
  color: #fff;
}
.footer__info__catchcopy {
  font-weight: bold;
}
.footer__info__privacy__link {
  display: inline-block;
}
.footer__logo a {
  display: block;
}
.footer__sns__list img {
  width: auto;
  max-width: none;
}
.footer__logo__japan a {
  display: block;
}
.footer__logo__japan a span {
  display: block;
}
.copyright {
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    padding: 36px 0 16px;
  }
  .footer__info {
    margin-bottom: 43px;
  }
  .footer__info__catchcopy {
    font-size: 18px;
    line-height: 1.89;
    letter-spacing: .04em;
    margin-bottom: 20px;
  }
  .footer__info__address {
    font-size: 12px;
    line-height: 2.33;
    margin-bottom: 18px;
  }
  .footer__info__privacy__link {
    font-size: 12px;
  }
  .footer__logo {
    margin-bottom: 28px;
  }
  .footer__logo a {
    width: 184px;
    margin-inline: auto;
  }
  .footer__sns__list {
    margin-bottom: 44px;
  }
  .footer__sns__list ul {
    display: flex;
    justify-content: center;
    gap: 0 21px;
  }
  .footer__sns__list img {
    height: 24px;
  }
  .footer__logo__japan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 162px;
    margin: 0 auto 11px;
  }
  .footer__logo__japan a picture {
    margin-bottom: 14px;
  }
  .footer__logo__japan a span {
    font-size: 12px;
    letter-spacing: .05em;
  }
  .copyright small {
    font-size: 10px;
    letter-spacing: .02em;
  }
}

@media (min-width: 768px) {
  footer {
    padding: 78px 0 32px;
  }
  footer .inner__wrap {
    display: grid;
    grid-template-columns: 146px 1fr 209px;
    grid-template-rows: 1fr auto auto;
    gap: 0 10px;
    grid-template-areas:
      "footer__info footer__info footer__logo__japan"
      ". footer__logo ."
      "footer__sns__list copyright .";
  }
  .footer__info {
    grid-area: footer__info;
  }
  .footer__info__catchcopy {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .footer__info__address {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 26px;
  }
  .footer__info__privacy__link {
    font-size: 14px;
  }
  .footer__logo {
    grid-area: footer__logo;
    padding-top: 6px;
  }
  .footer__logo a {
    width: 272px;
    margin-inline: auto;
  }
  .footer__sns__list {
    grid-area: footer__sns__list;
    padding-top: 29px;
  }
  .footer__sns__list ul {
    display: flex;
    gap: 0 21px;
  }
  .footer__sns__list img {
    height: 24px;
  }
  .footer__logo__japan {
    grid-area: footer__logo__japan;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer__logo__japan a picture {
    margin-bottom: 18px;
  }
  .footer__logo__japan a span {
    font-size: 14px;
    letter-spacing: .05em;
  }
  .copyright {
    grid-area: copyright;
    padding-top: 29px;
  }
  .copyright small {
    font-size: 12px;
    letter-spacing: .02em;
  }
}

/* -----------------------------------------------
プライバシーポリシー
----------------------------------------------- */
.subpage__title__wrap {
  background: var(--color-light-20);
  padding: 20px 0;
}
.subpage__title__wrap .inner__wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  color: var(--color-dark);
}
.breadcrumb li + li::before {
  content: '〉';
  margin-left: .5em;
}
.privacy__content h2 {
  background: rgba(228, 228, 228, 0.35);
  font-weight: normal;
}
.privacy__content h3 {
  font-weight: normal;
  border-bottom: 1px solid #CCCCCC;
}

@media (max-width: 767px) {
  .subpage__wrap {
    padding-bottom: 100px;
  }
  .subpage__title__wrap {
    height: 160px;
    margin-bottom: 16px;
  }
  .breadcrumb {
    margin-bottom: 50px;
  }
  .privacy__content + .privacy__content {
    margin-top: 74px;
  }
  .privacy__content h2 {
    font-size: 18px;
    padding: 8px 10px 8px;
    margin-bottom: 10px;
  }
  .privacy__content__enactment {
    font-size: 12px;
    margin-bottom: 40px;
  }
  .privacy__content * + h3 {
    margin-top: 30px;
  }
  .privacy__content h3 {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .privacy__content__text {
    font-size: 14px;
    line-height: 2;
  }
}

@media (min-width: 768px) {
  .subpage__wrap {
    padding-bottom: 194px;
  }
  .subpage__title__wrap {
    height: 250px;
    margin-bottom: 16px;
  }
  .breadcrumb {
    margin-bottom: 80px;
  }
  .privacy__content + .privacy__content {
    margin-top: 74px;
  }
  .privacy__content h2 {
    font-size: 28px;
    padding: 8px 10px 8px;
    margin-bottom: 10px;
  }
  .privacy__content__enactment {
    font-size: 14px;
    margin-bottom: 52px;
  }
  .privacy__content * + h3 {
    margin-top: 52px;
  }
  .privacy__content h3 {
    font-size: 18px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .privacy__content__text {
    font-size: 16px;
    line-height: 2.5;
  }
}