@charset "UTF-8";
/* ========== カラー ========== */
/* ========== フォント ========== */
/* ========== テキスト設定（ショートハンド） ========== */
/* ========== ポジション設定（ショートハンド） ========== */
/* ================================================================================

ドキュメント設定

================================================================================ */
html {
  font-size: 16px;
}

body {
  position: relative;
}

/* ================================================================================

共通パーツ・設定

================================================================================ */
/* ----- タッチ端末 - ホバーステート無効化 ----- */
@media (hover: hover) {
  * a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
    pointer-events: none;
  }
}
/* ----- 別窓アイコン ----- */
a[target=_blank].blank {
  position: relative;
}
a[target=_blank].blank::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-color: #555555;
  padding-left: 1em;
  -webkit-mask-image: url(../img/icon/icon-external-link.svg);
          mask-image: url(../img/icon/icon-external-link.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

/* ========== ラッパー（コンテンツサイズ） ========== */
.wrapper {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

/* ========== インナー余白（左右） ========== */
.inner {
  padding-inline: 1.5rem;
}

/* ================================================================================

header

================================================================================ */
.header {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  padding-inline: 1.5rem;
  z-index: 10;
}
.header__inner {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}
.header__logo__link {
  text-decoration: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.header__nav {
  position: fixed;
  top: 4rem;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translateX(-100%);
  width: 100vw;
  height: calc(100dvh - 4rem);
  background-color: #FFFFFF;
  padding-block: 4rem;
  padding-inline: 1.5rem;
  overflow: auto;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.header__nav.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}
.header__nav__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  list-style: none;
  margin-inline: auto;
}
.header__nav__list__item a {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  padding-inline: 1.5rem;
}
.header__nav__list__item a:hover {
  text-decoration: underline;
}
.header__menu-btn {
  position: relative;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 0;
  background-color: #FFFFFF;
  margin-right: -1.5rem;
}
.header__menu-btn:hover {
  background-color: #FAFAFA;
}
.header__menu-btn::after {
  content: "\e5d2";
  font-family: "Material Icons";
  font-size: 1.75rem;
  color: #000000;
}
.header__menu-btn.active::after {
  content: "\e5cd";
}

@media screen and (min-width: 1024px) {
  .header__nav {
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    transform: translateX(0%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
    padding-block: 0;
    padding-inline: 0;
    visibility: visible;
    opacity: 1;
  }
  .header__nav__list {
    flex-direction: row;
  }
  .header__menu-btn {
    display: none;
  }
}
/* ================================================================================

main

================================================================================ */
.main {
  width: 100%;
  background-color: #FFFFFF;
  padding-top: 4rem;
}

/* =============== #topic =============== */
.topic {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #FAFAFA;
  padding-block: 0.625rem;
  padding-inline: 1.5rem;
  margin-inline: calc(50% - 50vw);
}
.topic__link {
  width: 100%;
  max-width: 1080px;
  display: block;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.topic__link:hover {
  text-decoration: underline;
}

/* =============== #fv =============== */
.fv {
  width: 100%;
  max-width: 1080px;
  margin-block: 1.5rem 5rem;
  margin-inline: auto;
}
.fv__img {
  width: 100%;
  margin-inline: auto;
}
.fv__main-copy {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 2.5rem;
}
.fv__sub-copy {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 1.5rem;
}

/* =============== #school =============== */
.school {
  position: relative;
  padding-block: 5rem;
  scroll-margin-top: 1rem;
}
.school::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #FAFAFA;
  z-index: -1;
}
.school__head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.school__list {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem 3rem;
  list-style: none;
  margin-top: 1.5rem;
}
.school__list__item__link {
  text-decoration: none;
}
.school__list__item__link img {
  transition: all 0.3s;
}
.school__list__item__link h2 {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
.school__list__item__link:hover img {
  opacity: 0.7;
}
.school__list__item__link:hover h2 {
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .school__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =============== #greeting =============== */
.greeting {
  margin-top: 5rem;
  scroll-margin-top: 5rem;
}
.greeting__head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.greeting__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 3rem;
  margin-top: 1.5rem;
}
.greeting__content__img {
  width: 100%;
  height: 100%;
}
.greeting__content__section .head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.greeting__content__section .text {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  letter-spacing: 0;
  margin-top: 1.5rem;
}
.greeting__content__section .principal--name {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 2.5rem;
}
.greeting__content__section .principal--detail {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  letter-spacing: 0;
  margin-top: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .greeting__content {
    flex-direction: row;
  }
  .greeting__content__img {
    width: 328px;
  }
}
/* =============== .article__container =============== */
.article__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5rem 3rem;
  margin-top: 5rem;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .article__container {
    flex-direction: row;
  }
}
/* =============== #corporation =============== */
.corporation {
  flex: 1 1 auto;
  margin-inline: auto;
  scroll-margin-top: 5rem;
}
.corporation__head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.corporation__info {
  margin-top: 1.5rem;
}
.corporation__info__head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
}
.corporation__info__text {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 0.5rem;
}
.corporation__info__text a {
  text-decoration: none;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  margin-left: 0.5rem;
}
.corporation__info__text a:hover {
  text-decoration: underline;
}
.corporation__img {
  width: 100%;
  margin-top: 2.5rem;
}

/* =============== #history =============== */
.history {
  flex: 1 1 auto;
  margin-inline: auto;
  scroll-margin-top: 5rem;
}
.history__head {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}
.history__list {
  list-style: none;
  margin-top: 1.5rem;
}
.history__list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem 1.5rem;
  border-bottom: 1px solid #EEEEEE;
  padding-block: 1rem;
  padding-inline: 1.5rem;
}
.history__list__item .year {
  width: 80px;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #555555;
  line-height: 2;
  letter-spacing: 0;
}
.history__list__item .event {
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
}

/* =============== #contact =============== */
.contact {
  margin-top: 5rem;
}
.contact__head__link {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  letter-spacing: 0;
  border-radius: 8px;
  background-color: #FAFAFA;
  padding-inline: 3rem;
}
.contact__head__link:hover {
  text-decoration: underline;
}
.contact__head__link::after {
  content: "\e315";
  position: absolute;
  top: 50%;
  right: 3rem;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  font-family: "Material Icons";
  font-size: 2rem;
  color: #333333;
}

/* ================================================================================

footer

================================================================================ */
.footer {
  width: 100%;
  padding-block: 5rem 2.5rem;
}
.footer__inner {
  width: 100vw;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0 1.5rem;
  margin-inline: calc(50% - 50vw);
}
.footer__logo {
  width: 100%;
}
.footer__logo__link {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  border-bottom: 1px solid #EEEEEE;
}
.footer__nav {
  width: 100%;
}
.footer__nav__list__item a {
  width: 100%;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: left;
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0;
  border-bottom: 1px solid #EEEEEE;
  padding-inline: 1.5rem;
}
.footer__nav__list__item a:hover {
  text-decoration: underline;
}
.footer__copyright {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 2.5rem;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding-block: 2.5rem;
  }
  .footer__inner {
    width: 100%;
    flex-direction: row;
    margin-inline: auto;
  }
  .footer__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer__logo__link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    text-decoration: none;
    text-align: left;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 0;
    border-bottom: none;
  }
  .footer__nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .footer__nav__list {
    display: flex;
    align-items: center;
  }
  .footer__nav__list__item a {
    width: 100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: left;
    font-family: "Noto Serif JP", serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    letter-spacing: 0;
    border-bottom: none;
    padding-inline: 1.5rem;
  }
  .footer__nav__list__item a:hover {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=style.css.map */