@charset "UTF-8";

html.hidden {
  overflow: hidden;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  min-width: 320px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img {
  width: 100%;
  vertical-align: bottom;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header a {
  position: absolute;
  top: 32px;
  left: 32px;
  display: block;
  width: 80px;
}

main {
  display: flex;
}

.en {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

.fixed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  background-image: url(../images/page_back.webp);
  background-size: 50% 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.fixed-inner {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}

.content {
  width: 100%;
  background: linear-gradient(to right, #bfd3e7 0%, #ccdceb 25%, #d2e1e9 50%, #d4e0e9 75%, #c7d8e9 100%);
}

.fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 0;
  color: #435474;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  background-image: url(../images/fv_back.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.fv h1 {
  max-width: 640px;
  margin: 0 auto 40px;
}

.fv em {
  font-size: 3.6rem;
}

.fv span {
  font-size: 2.2rem;
  line-height: 1.4em;
}

.wave {
  display: inline-block;
  animation: wave 4s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

@keyframes wave {
  0% {
    transform: skewY(0deg);
  }

  40% {
    transform: skewY(4.5deg);
  }

  80% {
    transform: skewY(0deg);
  }

  100% {
    transform: skewY(0deg);
  }
}

.scroll {
  position: absolute;
  right: 50px;
  bottom: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.scroll-text {
  width: 0;
  writing-mode: vertical-lr;
  transform: translateX(8px);
}

.scroll-border {
  position: relative;
  top: 0;
  width: 3px;
  height: 80px;
  overflow: hidden;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: #435474;
  margin: auto;
}

.scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  background: #435474;
  animation: scrollbar 2s ease-in-out infinite;
}

@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}

.item-wrap {
  padding: 80px 20px;
}

.item-wrap h2 {
  height: 80px;
  padding: 20px 40px;
  background: #f5f9fd;
  border-radius: 999px;
}

.item-list + h2 {
  margin-top: 60px;
}

.item-wrap h2 img {
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.tab-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 52px;
}

.tab-menu g {
  display: block;
  width: 2px;
  height: 75px;
  background: #8b8b8b;
  transform: skewX(-30deg);
}

.tab {
  mix-blend-mode: luminosity;
  opacity: 0.4;
  cursor: pointer;
  transition: 0.4s;
}

.tab:hover {
  mix-blend-mode: unset;
  opacity: 1;
}

.tab.active {
  mix-blend-mode: unset;
  opacity: 1;
}

.item-list {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin-inline: auto;
  display: none;
}

.item-list.active {
  display: grid;
}

.item-box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 16px;
  background: #ffffffe6;
}

.item-box:last-child {
  border-bottom: unset;
}

.item-logo {
  border: 1px solid #000;
}

.item-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.item-inner h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #435474;
}

.item-inner > span {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 2rem;
  color: #8e8e8e;
}

.item-inner > p {
  font-size: 1.4rem;
  font-weight: 400;
  word-break: keep-all;
}

.item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-info dt {
  padding: 2px 8px;
  font-size: 1.4rem;
  color: #fff;
  background: #435474;
}

.note {
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 1em;
  color: #435474;
}

.indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 20px 20px;
  background: #435474;
}

footer a {
  display: block;
  width: 80px;
}

footer .copy {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}

#page-top a {
  position: relative;
  display: block;
  background: #435474;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  border-radius: 50%;
}

#page-top a::before {
  content: "";
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

.anm-img {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  filter: blur(2px);
  transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anm-img.action {
  transform: none;
  opacity: 1;
  filter: none;
}

.anm-txt {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.anm-txt.action {
  transform: none;
  opacity: 1;
  filter: none;
}

.eachtext__wrap g {
  display: inline-block;
}

#loader {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: calc(var(--lvh) * 100);
  background: #98bdf0;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.percentage-inner {
  position: absolute;
  left: -1%;
  top: 60vh;
  width: 100%;
  line-height: 9em;
}

.percentage {
  font-size: 50vw;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  line-height: 0.8em;
  background: linear-gradient(to bottom, #7499cc 0%, #7499cc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item-slide {
  margin: 0 -24px;
  padding: 48px 0 12px;
  overflow: hidden;
}

.item-slide .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* .item-slide .swiper-slide {
  border: 1px solid #cfcfcf;
} */
