@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --white: #FFFFFF;
  --navy: #1649A8;
  --blue: #1649A8;
  --black: #333333;
  --orange: #F67A25;
  --yellow: #FFF425;
  --red: #D93E13;
  --green: #16940A;
}

html {
  scroll-behavior: smooth;
  font-size: max(0.8333333333vw, 12px);
}
@media (max-width: 680px) {
  html {
    font-size: max(2.3529411765vw, 10px);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
}

ul,
li {
  text-decoration: none;
}

a {
  color: var(--black);
  text-decoration: none;
}

img,
video {
  width: 100%;
  height: auto;
  border: none;
}

span {
  display: inline-block;
}

a,
img {
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 3.75em);
}

body {
  overflow-x: hidden;
  background: #F8F2E7;
}
body.active {
  overflow: hidden;
}

.pcNone {
  display: none;
}

@media (max-width: 750px) {
  .pcNone {
    display: block;
  }
}
.spNone {
  display: block;
}

@media (max-width: 750px) {
  .spNone {
    display: none;
  }
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 98.75em;
  width: calc(100% - 1.875em);
  height: 6.25em;
  margin-inline: auto;
  border: 3px solid #707070;
  border-top: none;
  border-radius: 0 0 1.25em 1.25em;
  background: #F8F2E7;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  padding-inline: 1.875em 3.75em;
  height: 100%;
}
.header__logo {
  width: 6.25em;
}
.header__nav {
  margin-left: auto;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.5em;
}
.header__nav-item--calendar {
  width: 2.5em;
}
.header__nav-item--map {
  width: 2em;
}
.header__sp-menu-button {
  position: relative;
  width: 3.75em;
  height: 2.125em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.5em;
}
.header__sp-menu-button span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #707070;
  transition: 0.5s;
}
.header__sp-menu-button span:nth-of-type(1) {
  top: 0;
  transform: rotate(0);
}
.header__sp-menu-button span:nth-of-type(2) {
  top: auto;
}
.header__sp-menu-button span:nth-of-type(3) {
  top: calc(2.125em - 2px);
  transform: rotate(0);
}
.header__sp-menu-button.active span {
  width: 2.375em;
}
.header__sp-menu-button.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__sp-menu-button.active span:nth-of-type(2) {
  opacity: 0;
}
.header__sp-menu-button.active span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 680px) {
  .header__inner {
    padding-inline: 0.3125em 0.9375em;
  }
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 42.5em;
  height: 100vh;
  z-index: 99;
  padding: 3.75em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5em;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
}
.sp-menu.active {
  opacity: 1;
  visibility: visible;
}
.sp-menu__list {
  font-size: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.sp-menu__logo {
  width: 9.375em;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 98;
  visibility: hidden;
}
.overlay.active {
  visibility: visible;
}

.main {
  position: relative;
  max-width: 42.5em;
  width: 100%;
  margin-inline: auto;
  background: #fff;
  padding-block: 6.25em 11.25em;
  z-index: 1;
  transition: 0.6s;
}
.main::before {
  content: "";
  width: 42.5em;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: -1;
}
.main.active {
  visibility: visible;
  opacity: 0;
}

.mv {
  padding-block: 1.875em;
}
.mv__content {
  position: relative;
  max-width: 31.25em;
  width: calc(100% - 1.875em);
  margin-inline: auto;
}
.mv__logo {
  width: 9.375em;
  margin-inline: auto;
}
.mv__media {
  position: relative;
  margin-top: 1.875em;
  max-width: 100%;
  width: 31.25rem;
  height: 45.25rem;
}
.mv__media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 62.5em;
}
.mv__media #youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 125%;
}
.mv__text {
  padding: 1.5em 0.5625em;
  position: absolute;
  background: #fff;
  width: 4.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv__text--01 {
  top: -8.75em;
  right: 0.625em;
}
.mv__text--02 {
  bottom: -0.75em;
  left: 0.5em;
}

.section__title {
  margin-top: 9.375em;
}

.section__text {
  margin-top: 3.75em;
}
.section__text p {
  font-size: 1.875em;
  line-height: 1.3333333333em;
  color: #707070;
}
.section__text p + p {
  margin-top: 1em;
}

.section__inner {
  width: 100%;
  padding-inline: 2.5em;
}

.introduction__title {
  width: 100%;
  padding-inline: 1.75em;
}

.staff {
  width: 100%;
  margin-top: 2.5em;
}
.staff__col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  width: 100%;
}
.staff__item {
  width: calc(50% - 0.75em);
  position: relative;
  overflow: hidden;
  border-radius: 62.5em;
}
.staff__item-img {
  position: relative;
  width: 100%;
}
.staff__item-img::before {
  position: relative;
  content: "";
  display: block;
  height: 0;
  width: 100%;
  padding-top: 267.34693878%;
  background: rgba(52, 52, 52, 0.25);
  z-index: 3;
  pointer-events: none;
}
.staff__item-img img,
.staff__item-img iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.staff__item-text {
  position: absolute;
  font-weight: normal;
  font-size: 4.5em;
  line-height: 1.3611111111em;
  color: #fff;
  bottom: 1.3333333333em;
  left: 0;
  writing-mode: vertical-lr;
  z-index: 3;
}

.projects__title {
  width: 21.5625em;
  margin-inline: auto;
}
.projects__list {
  display: flex;
  flex-direction: column;
  gap: 1.125em;
  margin-top: 3.5em;
}
.projects__item {
  position: relative;
  width: 100%;
  border-radius: 5.5em;
  overflow: hidden;
}
.projects__item::before {
  content: "";
  width: 100%;
  padding-top: 56.25%;
  display: block;
}
.projects__item iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  background: #707070;
}

.local {
  margin-top: 7.5em;
  width: 100%;
}
.local__title {
  font-weight: normal;
  font-size: 2.25em;
  line-height: 1.3333333333em;
  color: #000;
}
.local__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 3em;
}
.local__map {
  position: relative;
}
.local__map::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}
.local__map iframe, .local__map-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  background: #707070;
  border-radius: 6.125em 6.125em 0 0;
}
.local__map-item {
  width: 100%;
  height: 100%;
}
.local__map-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.local__list {
  margin-top: 3em;
}
.local__list dl {
  display: grid;
  grid-template-columns: 7.5em 1fr;
  gap: 1em 3em;
  align-items: center;
}
.local__list dl dt,
.local__list dl dd {
  font-size: 1.625em;
  color: #000;
  font-weight: normal;
}
.local__list dl dt {
  padding-block: 0.3846153846em;
  width: 100%;
  border-radius: 6.25em;
  border: 1px solid #000;
  text-align: center;
}

.matrix {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  overflow: hidden;
}
.matrix .swiper {
  height: 100%;
}
.matrix__item--01 {
  position: absolute;
  height: 420.9375em !important;
  top: 0;
  right: 3.4375em;
}
.matrix__item--01 .swiper-slide {
  height: 100%;
}
.matrix__item--01 .swiper-slide img {
  height: 100%;
  width: 5.5em;
}
.matrix__item--02 {
  position: absolute;
  height: 344.5em !important;
  top: 0;
  right: 11.25em;
}
.matrix__item--02 .swiper-slide {
  height: 100%;
}
.matrix__item--02 .swiper-slide img {
  height: 100%;
  width: 5.3125em;
}
.matrix__item--03 {
  position: absolute;
  height: 405.0625em !important;
  top: 0;
  right: 20em;
}
.matrix__item--03 .swiper-slide {
  height: 100%;
}
.matrix__item--03 .swiper-slide img {
  height: 100%;
  width: 5.5em;
}
.matrix__item--04 {
  position: absolute;
  height: 376.1875em !important;
  top: 0;
  right: 29.375em;
}
.matrix__item--04 .swiper-slide {
  height: 100%;
}
.matrix__item--04 .swiper-slide img {
  height: 100%;
  width: 5.5625em;
}
.matrix__item--05 {
  position: absolute;
  height: 412.5625em !important;
  top: 0;
  left: 26.875em;
}
.matrix__item--05 .swiper-slide {
  height: 100%;
}
.matrix__item--05 .swiper-slide img {
  height: 100%;
  width: 5.625em;
}
.matrix__item--06 {
  position: absolute;
  height: 376.1875em !important;
  top: 0;
  left: 18.875em;
}
.matrix__item--06 .swiper-slide {
  height: 100%;
}
.matrix__item--06 .swiper-slide img {
  height: 100%;
  width: 5.5625em;
}
.matrix__item--07 {
  position: absolute;
  height: 376.1875em !important;
  top: 0;
  left: 11.1875em;
}
.matrix__item--07 .swiper-slide {
  height: 100%;
}
.matrix__item--07 .swiper-slide img {
  height: 100%;
  width: 5.5625em;
}
.matrix__item--08 {
  position: absolute;
  height: 290.0625em !important;
  top: 0;
  left: 1.75em;
}
.matrix__item--08 .swiper-slide {
  height: 100%;
}
.matrix__item--08 .swiper-slide img {
  height: 100%;
  width: 6.125em;
}
@media screen and (max-width: 820px) {
  .matrix {
    font-size: 1.4024390244vw;
  }
}

.swiper-wrapper {
  transition-timing-function: linear;
}
/*# sourceMappingURL=style.css.map */