@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}

h1 span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  h1 span.num {
    font-size: 40px;
  }
}

img {
  max-width: 100%;
}

section:not(:first-child), section:not(:last-child) {
  margin: 120px auto 90px;
}
@media screen and (min-width: 768px) {
  section:not(:first-child), section:not(:last-child) {
    margin: 180px auto 120px;
  }
}

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

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

.nav__btn {
  background: #3D3935;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  /* アニメーション実行時に追加するクラス */
}
.nav__btn.slide-in-container {
  /* 親要素に overflow: hidden; を設定することで、 
     テキストが画面外から移動してくる様子を自然に見せることができます */
  overflow: hidden;
}
.nav__btn.slide-in-text {
  /* アニメーションの初期状態: 右に100%移動させて画面外に配置 */
  opacity: 0;
  /* アニメーションの時間を設定 */
  transition: transform 0.5s ease-out, opacity 1.5s ease-out;
}
.nav__btn.slide-in-text.is-visible {
  opacity: 1;
}
#info .nav__btn {
  background: #3D3935;
}
.nav__link {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .nav__link {
    padding: 24px 20px;
  }
}
#info .nav__link {
  padding: 12px 20px;
}

.heading {
  margin: 0 auto 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading {
    margin: 0 auto 50px;
  }
}
.heading__title {
  font-weight: 700;
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  .heading__title {
    font-size: 40px;
  }
}

.fv {
  height: 100vh;
  position: relative;
  /* アニメーション実行時に追加するクラス */
}
.fv__textarea {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .fv__textarea {
    width: auto;
  }
}
.fv__copy {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .fv__copy {
    font-size: 30px;
  }
}
.fv__title {
  font-weight: 700;
  font-size: 28px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 50px;
  }
}
.fv__title span.indent {
  display: inline-block;
  padding-right: 0.25em;
}
.fv__title span.num {
  display: inline-block;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  .fv__title span.num {
    font-size: 55px;
  }
}
.fv__text {
  text-align: center;
}
.fv .slide-in-container {
  /* 親要素に overflow: hidden; を設定することで、 
     テキストが画面外から移動してくる様子を自然に見せることができます */
  overflow: hidden;
}
.fv .slide-in-text {
  /* アニメーションの初期状態: 右に100%移動させて画面外に配置 */
  transform: translateX(100%);
  opacity: 0;
  /* アニメーションの時間を設定 */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}
.fv .slide-in-text.is-visible {
  opacity: 1;
  transform: translateX(0); /* 最終状態: 元の位置に戻す */
}

.vision {
  margin: 0 0 90px !important;
}
.vision__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .vision__wrap {
    display: block;
  }
}
.vision__box {
  text-align: center;
  border-radius: 50%;
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .vision__box {
    width: 30%;
    flex-direction: column;
  }
}
.vision__box p {
  font-size: 16px;
  width: 45%;
}
@media screen and (min-width: 768px) {
  .vision__box p {
    font-size: 18px;
    width: auto;
  }
}
.vision__box figure {
  overflow: hidden;
  width: 50%;
}
@media screen and (min-width: 768px) {
  .vision__box figure {
    width: auto;
  }
}
.vision__box figure img {
  -o-object-fit: cover;
     object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.vision__box.--02 {
  flex-direction: row-reverse;
  right: 0;
}
@media screen and (min-width: 768px) {
  .vision__box.--02 {
    position: absolute;
    top: 180px;
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .vision__box.--03 {
    position: relative;
    top: 50px;
    margin-bottom: 80px;
  }
}
.vision__box.--04 {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .vision__box.--04 {
    position: absolute;
    left: 0;
    top: 180px;
    flex-direction: column;
  }
}

.director__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .director__flex {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .director__figure {
    width: 40%;
  }
}
.director__textarea {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .director__textarea {
    padding: 0 60px 0 0;
    width: 60%;
  }
}
.director__textarea .sml {
  font-weight: bold;
  font-size: 22px;
}
.director__textarea .lrg {
  font-weight: bold;
  font-size: 30px;
}
.director__message {
  margin: 30px 0 0;
}
.news {
  margin: 40px auto 50px !important;
}
@media screen and (min-width: 768px) {
  .news {
    margin: 90px auto 120px !important;
  }
}
.news figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3 !important;
}
@media screen and (min-width: 768px) {
  .news figure img {
    aspect-ratio: 4/3 !important;
  }
}

.works {
  margin: 40px auto 50px !important;
}
@media screen and (min-width: 768px) {
  .works {
    margin: 90px auto 120px !important;
  }
}
.works__flex {
  display: flex;
  flex-direction: row;
  width: 90%;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .works__flex {
    gap: 30px;
  }
}
.works__link {
  width: 50%;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .works__link {
    width: 50%;
  }
}
.works__link img {
  aspect-ratio: 360/511;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover) {
  .works__link:hover {
    opacity: 0.8;
    transition: 0.4s;
  }
}

.media {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .media {
    width: 100%;
    max-width: 960px;
  }
}
.media__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .media__flex {
    flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .media__item {
    width: 33.3333333333%;
  }
}
.media .link {
  text-decoration: none;
  color: #3D3935;
}
@media (hover) {
  .media .link:hover {
    opacity: 0.7;
    transition: 0.4s;
  }
}
.media .title {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .media .title {
    font-size: 18px;
  }
}
.media figure img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .media figure img {
    aspect-ratio: 4/3;
  }
}

.donation {
  margin: 0 auto !important;
  padding: 30px 0 50px;
  background-color: #ececec;
}
@media screen and (min-width: 768px) {
  .donation {
    padding: 60px 0 80px;
  }
}
.donation__message {
  text-align: center;
  font-size: 18px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .donation__message {
    font-size: 24px;
  }
}
.donation__btn {
  border-radius: 40px;
  background: #3D3935;
  max-width: 260px;
  margin: 0 auto;
}
.donation__link {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .donation__link {
    padding: 20px 30px 20px 20px;
    font-size: 20px;
  }
}

.bottom {
  margin: 120px 0 40px !important;
}
@media screen and (min-width: 768px) {
  .bottom {
    margin: 160px 0 40px !important;
  }
}
.bottom .info {
  margin: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .bottom .info {
    margin: 50px 0 0;
  }
}

.schedule .date {
  text-align: center;
}
.schedule .progress {
  text-align: center;
}
.schedule a {
  text-decoration: none;
  color: #3D3935;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .schedule a {
    font-size: 20px;
  }
}
.schedule__wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .schedule__wrap {
    width: 100%;
    max-width: 960px;
  }
}
.schedule__doc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  text-decoration: underline;
}
.schedule__doc p {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .schedule__doc p {
    font-size: 18px;
  }
}
.schedule__doc svg {
  width: 18px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .schedule__doc svg {
    width: 20px;
    height: auto;
  }
}
@media (hover) {
  .schedule__doc:hover {
    opacity: 0.7;
    transition: 0.4s;
  }
}
.schedule__flex {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .schedule__flex {
    margin: 0 0 40px;
    flex-direction: row;
    gap: 30px;
  }
}
.schedule__item {
  border: 1px solid #3D3935;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .schedule__item {
    width: 33.3333333333%;
  }
}
.schedule__text {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .schedule__text {
    font-size: 20px;
  }
}
.schedule__text .under-line {
  margin: 0 0 30px;
  position: reltaive;
}
.schedule__text .under-line:before {
  display: inline-block;
  content: "";
  height: 2px;
  width: 100%;
  background: #3D3935;
}

#info .infoAbout {
  margin: 80px auto 0;
  width: 90%;
}
@media screen and (min-width: 768px) {
  #info .infoAbout {
    margin: 80px auto 0;
    max-width: 960px;
  }
}
#info .infoAbout ul {
  padding-left: 1em;
}
#info .infoAbout__wrap {
  margin: 34px auto 0;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__wrap {
    margin: 44px auto 0;
  }
}
#info .infoAbout__title {
  font-weight: 500;
  margin: 0 0 10px;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__title {
    font-size: 18px;
  }
}
#info .infoAbout__type {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__type {
    margin: calc(34px - 0.4em) 0 0;
  }
}
#info .infoAbout__type span.border {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  transition: 0.4s;
}
#info .infoAbout__type span.border:before {
  display: inline-block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #3d3935;
  position: absolute;
  bottom: 0;
}
#info .infoAbout__type span.border.border-bank {
  width: -moz-max-content;
  width: max-content;
}
#info .infoAbout__type span.border.border-online {
  width: auto;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  gap: 0;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__type span.border.border-online {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    margin: 10px 0 0;
    gap: 10px;
  }
}
#info .infoAbout__type span.border.border-online span.small {
  font-size: 14px;
  grid-area: 2/1/3/2;
  margin: -0.25em 0 10px -0.5em;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__type span.border.border-online span.small {
    font-size: 18px;
    margin: 0;
  }
}
#info .infoAbout__type span.border.border-online .svg-inline--fa {
  grid-area: 1/2/3/3;
}
@media (hover) {
  #info .infoAbout__type span.border:hover {
    opacity: 0.7;
    transition: 0.4s;
  }
}
#info .infoAbout__type a {
  text-decoration: none;
  color: #3D3935;
}
#info .infoAbout__mail {
  color: #3d3935;
}
#info .infoAbout__contact {
  display: flex;
  gap: 10px;
}
#info .infoAbout li {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 0 10px;
}
#info .infoAbout__box {
  border: 1px solid #3D3935;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  #info .infoAbout__box {
    padding: 20px 30px;
  }
}
#info .infoAbout__note {
  font-size: 14px;
  line-height: 1.4;
  margin: 20px 0 0;
  padding-left: 1em;
}
#info .infoAbout__note:before {
  display: inline-block;
  content: "※";
  text-indent: -1em;
}
#info .infoAbout__note.--lrg {
  font-size: 16px;
}
#info .bank {
  margin: 80px auto 0;
  width: 90%;
}
@media screen and (min-width: 768px) {
  #info .bank {
    margin: 100px auto 0;
    max-width: 960px;
  }
}
#info .bank__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #info .bank__flex {
    flex-direction: row;
    gap: 40px;
  }
}
#info .bank__item {
  border: 1px solid #3D3935;
  padding: 30px 10px;
}
@media screen and (min-width: 768px) {
  #info .bank__item {
    width: 50%;
    padding: 40px 30px;
  }
}

#news .infoAbout {
  margin: 80px auto 0;
  width: 90%;
}
@media screen and (min-width: 768px) {
  #news .infoAbout {
    margin: 80px auto 0;
    max-width: 960px;
  }
}
#news .news_date {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  #news .news_date {
    font-size: 16px;
  }
}
#news .news_ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}
#news .news_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  #news .news_flex {
    gap: 30px 2%;
  }
}
#news .news_flex figure {
  width: 80%;
}
@media screen and (min-width: 768px) {
  #news .news_flex figure {
    width: 48%;
  }
}
#news .news_flex figure.--sp-w {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #news .news_flex figure.--sp-w {
    width: 48%;
  }
}
#news .news_txt {
  margin: 30px 0 30px;
}
#news .news_txt a {
  text-decoration: none;
  color: #3D3935;
}
#news .news_btn {
  margin: 40px auto 0;
}
#news .news_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#news .news_btn a {
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #3D3935;
  border-bottom: 1px solid #3D3935;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  #news .news_btn a {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */