@charset "UTF-8";
/*=======================
基本設定
=======================*/
/*=======================
共通パーツ
=======================*/
html.is-loading body {
  opacity: 0;
  visibility: hidden;
}
html.is-loaded body {
  opacity: 1;
  transition: opacity 0.3s ease;
  visibility: visible;
}

body {
  background: #f9f9f9;
  color: #464646;
  font-family: "Marcellus", sans-serif;
  font-weight: normal;
  letter-spacing: normal;
}
body.is-fixed {
  overflow: clip;
}

canvas {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.inner {
  margin-inline: auto;
  max-width: 62.5rem;
  width: 95%;
}
@media (width < 768px) {
  .inner {
    max-width: 31.25rem;
    width: calc(0.8933333333 * 100%);
  }
}

.sec-title {
  font-size: 2.75rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (width < 768px) {
  .sec-title {
    font-size: 2.375rem;
  }
}

.page-title {
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  padding-bottom: 1.8125rem;
  position: relative;
}
@media (width < 768px) {
  .page-title {
    font-size: 2.0625rem;
    line-height: 1.2121212121;
    padding-bottom: 1.6875rem;
  }
}
.page-title::after {
  background: #464646;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 4.3125rem;
}

.btn {
  align-items: center;
  border: 1px solid #464646;
  border-radius: 9999px;
  color: #464646;
  display: flex;
  font-size: 0.75rem;
  height: 2.5rem;
  justify-content: center;
  letter-spacing: 0.08em;
  position: relative;
  transition: all 0.3s ease;
  width: 10.875rem;
  z-index: 5;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .btn:hover {
    opacity: 0.5;
  }
}

br.is-pc {
  display: block;
}
@media (width < 768px) {
  br.is-pc {
    display: none;
  }
}
br.is-sp {
  display: none;
}
@media (width < 768px) {
  br.is-sp {
    display: inline;
  }
}

span.is-pc {
  display: inline;
}
@media (width < 768px) {
  span.is-pc {
    display: none;
  }
}
span.is-sp {
  display: none;
}
@media (width < 768px) {
  span.is-sp {
    display: inline;
  }
}

img {
  display: block;
  height: auto;
  width: 100%;
}

.nav-items {
  display: flex;
  gap: 1.25rem;
}

.nav-item-link {
  color: #464646;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 7px;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav-item-link:hover {
    opacity: 0.5;
  }
}

/*=======================
下層ページ共通設定
=======================*/
.page-wrapper {
  margin-top: 0;
  overflow: hidden;
}
@media (width < 768px) {
  .page-wrapper {
    margin-top: 0;
  }
}

.pageTop {
  position: relative;
  z-index: 1;
}

.pageLow {
  background-image: url(../img/bg_low_pc.png);
  background-position: center 23.125rem;
  background-repeat: repeat-y;
  background-size: 124.875rem auto;
  position: relative;
}
@media (width < 768px) {
  .pageLow {
    background-image: url(../img/bg_low_sp.png);
    background-position: center 25rem;
    background-size: 75.6875rem auto;
  }
}
.pageLow .bg-top {
  background: url(../img/bg_top.png) no-repeat center center/cover;
  height: 28.8125rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  width: 39.6875rem;
}
.pageLow .bg-top.is-active {
  opacity: 0;
}
@media (width < 768px) {
  .pageLow .bg-top {
    height: 17.0625rem;
    width: 23.4375rem;
  }
}

.sec-low {
  padding-bottom: 10.125rem;
  padding-top: 8.75rem;
  position: relative;
  z-index: 5;
}
@media (width < 768px) {
  .sec-low {
    padding-bottom: 5.8125rem;
    padding-top: 10.8125rem;
  }
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/*=======================
ヘッダー
=======================*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header {
  padding: 1.8125rem 3.125rem;
  position: relative;
  z-index: 3;
}
@media (width < 768px) {
  .header {
    padding: 1.375rem 1.375rem;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
}
.header-logo {
  height: 8.1875rem;
  width: 5.125rem;
}
@media (width < 768px) {
  .header-logo {
    height: 5.25rem;
    width: 3.25rem;
  }
}

.header-logo-link {
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header-logo-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header-logo-link:hover {
    opacity: 0.5;
  }
}

.header-nav {
  margin-top: 0.75rem;
}
@media (width < 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav-items {
  flex-direction: column;
}

.header-nav-item {
  text-align: right;
}

.drawer-icon {
  display: none;
}
@media (width < 768px) {
  .drawer-icon {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 1.5625rem;
    justify-content: center;
    margin-top: 0.375rem;
    width: 2.6875rem;
  }
}

@media (width < 768px) {
  .drawer-bars {
    height: 100%;
    position: relative;
    width: 100%;
  }
}

@media (width < 768px) {
  .drawer-bar {
    background: #121212;
    height: 0.0625rem;
    position: absolute;
    transition: all 0.3s ease;
    width: 2.6875rem;
  }
  .drawer-bar.bar01 {
    top: 0.5625rem;
  }
  .drawer-bar.bar02 {
    bottom: 0.5625rem;
  }
  .drawer-bar.is-active.bar01 {
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
  }
  .drawer-bar.is-active.bar02 {
    bottom: initial;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
  }
}

.drawer {
  display: none;
}
@media (width < 768px) {
  .drawer {
    display: block;
    height: 100%;
    height: calc(100dvh - 8rem);
    opacity: 0;
    overflow-y: scroll;
    padding-bottom: 1.25rem;
    position: fixed;
    right: 0;
    top: 0;
    top: 8rem;
    transition: all 0.3s ease;
    visibility: hidden;
    width: 100%;
    z-index: 20;
  }
  .drawer::after {
    background: url(../img/bg_bottom.png) no-repeat center center/cover;
    bottom: 0;
    content: "";
    height: 13.1875rem;
    left: 0;
    position: absolute;
    position: fixed;
    width: 18.25rem;
    z-index: 2;
  }
  .drawer.is-active {
    opacity: 1;
    visibility: visible;
  }
  .drawer canvas {
    background: #f9f9f9;
  }
}

@media (width < 768px) {
  .drawer-container {
    padding-bottom: 1.25rem;
    position: relative;
  }
}

@media (width < 768px) {
  .drawer-nav {
    position: relative;
    z-index: 5;
  }
}

@media (width < 768px) {
  .drawer-item {
    align-items: center;
    border-bottom: 1px solid #d6d6d6;
    display: flex;
    min-height: 3.9375rem;
    padding: 0.625rem 0;
  }
}

@media (width < 768px) {
  .drawer-item-link {
    align-items: center;
    color: #464646;
    display: flex;
    font-size: 1rem;
    gap: 1.25rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    position: relative;
    width: 100%;
  }
  .drawer-item-link::after {
    background: url(../img/arrow_right.svg) no-repeat center center/contain;
    content: "";
    display: block;
    height: 0.5rem;
    margin-left: auto;
    margin-right: 1.25rem;
    width: 0.25rem;
  }
}

@media (width < 768px) {
  .drawer-banner {
    display: block;
    margin-top: 2.375rem;
    position: relative;
    z-index: 5;
  }
}

/*=======================
トップ / MV
=======================*/
.mv {
  background: url(../img/mv_pc.png) no-repeat center center/cover;
  height: 100dvh;
  overflow: hidden;
  padding-bottom: 3.75rem;
  width: 100%;
}
@media (width < 768px) {
  .mv {
    background-image: url(../img/mv_sp.png);
    padding-bottom: 1.8125rem;
  }
}
.mv.is-active {
  opacity: 0;
}

.mv-inner {
  height: 100%;
  max-width: 1340px;
  width: 93.0555555556%;
}

.mv-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  width: 100%;
}

.mv-title {
  font-size: 3rem;
  letter-spacing: 0.08em;
  line-height: 1.2083333333;
  margin-top: auto;
}
@media (width < 768px) {
  .mv-title {
    font-size: 2.0625rem;
    line-height: 1.2121212121;
    margin-left: 1px;
  }
}
.mv-title .word {
  display: inline-block;
  filter: blur(var(--blur, 10px));
  opacity: 0;
  will-change: opacity, filter;
}
.mv-title .word.is-in {
  filter: blur(0);
  opacity: 1;
}

.mv-text {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 1.125rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.mv-text.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (width < 768px) {
  .mv-text {
    margin-left: 2px;
    margin-top: 0.625rem;
  }
}

.mv-scroll {
  bottom: 0;
  bottom: -0.625rem;
  position: absolute;
  right: 0;
  transform: translateZ(0);
}
@media (width < 768px) {
  .mv-scroll {
    bottom: 0.375rem;
    display: flex;
    flex-direction: column;
  }
}

.mv-scroll-txt {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.625rem;
  writing-mode: vertical-lr;
}

.mv-scroll-bar {
  animation: pathmove 2.5s ease-in-out infinite;
  background: #464646;
  display: block;
  height: 7.25rem;
  margin-inline: auto;
  width: 1px;
}

@keyframes pathmove {
  0% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    opacity: 1;
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*=======================
トップ / About
=======================*/
.about {
  padding: 11.1875rem 0 0;
  position: relative;
}
@media (width < 768px) {
  .about {
    padding: 11.4375rem 0 0;
  }
}
.about::before {
  background: url(../img/about.png) no-repeat center center/cover;
  content: "";
  height: 36.3125rem;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 38.5625rem;
}
@media (width < 768px) {
  .about::before {
    height: 100%;
    max-height: 22.0625rem;
    max-width: 23.4375rem;
    top: 3rem;
    width: 100%;
  }
}

.about-inner {
  border-bottom: 1px solid rgba(70, 70, 70, 0.17);
  padding-bottom: 5.8125rem;
}
@media (width < 768px) {
  .about-inner {
    padding-bottom: 4.0625rem;
  }
}

.about-title {
  position: relative;
}
.about-title::after {
  background: #464646;
  content: "";
  height: 4.3125rem;
  left: 50%;
  position: absolute;
  top: -6.4375rem;
  translate: -50% 0;
  width: 1px;
}
@media (width < 768px) {
  .about-title::after {
    top: -6.5625rem;
  }
}

.about-content {
  display: grid;
  gap: 1.75em;
  grid-template-columns: 1fr;
  margin: 2.6875rem auto 0;
  max-width: 48.375rem;
  position: relative;
  text-align: center;
}
@media (width < 768px) {
  .about-content {
    margin-top: 2.4375rem;
  }
}

.about-text {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 2.1538461538;
}
.about-items {
  display: grid;
  gap: 2.1875rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 6.5625rem;
}
@media (width < 768px) {
  .about-items {
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 2.375rem;
  }
}

@media (width < 768px) {
  .about-item {
    margin-top: 0 !important;
  }
}
.about-item:nth-of-type(1) .about-item-link {
  background: url(../img/about_link_01.png) no-repeat center center/cover;
}
.about-item:nth-of-type(2) {
  margin-top: 2.5rem;
}
.about-item:nth-of-type(2) .about-item-link {
  background: url(../img/about_link_02.png) no-repeat center center/cover;
}
.about-item:nth-of-type(3) {
  margin-top: 5rem;
}
.about-item:nth-of-type(3) .about-item-link {
  background: url(../img/about_link_03.png) no-repeat center center/cover;
}

.about-item-link {
  color: #464646;
  display: grid;
  height: 8.1875rem;
  place-content: center;
  transition: all 0.3s ease;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .about-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .about-item-link:hover {
    opacity: 0.5;
  }
}
.about-item-link span {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.about-item-link span::before, .about-item-link span::after {
  background: #464646;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 0.5rem;
}
.about-item-link span::before {
  left: -0.8125rem;
}
.about-item-link span::after {
  right: -0.8125rem;
}

.about-item-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.5833333333;
  padding: 0.75rem 2.1875rem;
  text-align: center;
}
@media (width < 768px) {
  .about-item-text {
    padding: 0.75rem 2.5rem;
  }
}

.about-item-link-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.5833333333;
}

.about-banner-wrapper {
  margin-top: 4.125rem;
}
@media (width < 768px) {
  .about-banner-wrapper {
    margin-top: 1.4375rem;
  }
}

.about-banner {
  aspect-ratio: 1000/126;
  display: block;
  transition: all 0.3s ease;
}
@media (width < 768px) {
  .about-banner {
    aspect-ratio: 250/63;
  }
}
@media (hover: hover) and (pointer: fine) {
  .about-banner:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .about-banner:hover {
    opacity: 0.5;
  }
}
.about-banner img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*=======================
トップ / Link
=======================*/
.link {
  padding-bottom: 5.625rem;
}
@media (width < 768px) {
  .link {
    padding-bottom: 4.375rem;
  }
}

.link-inner {
  padding-top: 5.3125rem;
}
@media (width < 768px) {
  .link-inner {
    padding-top: 3.8125rem;
  }
}

.link-items {
  display: grid;
  gap: 2rem 3.125rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  margin-top: 2.8125rem;
}
@media (width < 768px) {
  .link-items {
    gap: 2.1875rem;
    grid-template-columns: 1fr;
    margin-top: 1.3125rem;
  }
}

.link-item {
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.link-item a {
  color: #464646;
  display: grid;
  gap: 0;
  grid-row: span 3;
  grid-template-rows: subgrid;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .link-item a:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .link-item a:hover {
    opacity: 0.5;
  }
}

.link-item-img {
  aspect-ratio: 4/1;
}
.link-item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.link-item-title {
  border-bottom: 1px solid rgba(70, 70, 70, 0.17);
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.4375;
  margin-top: 0.5625rem;
  padding-bottom: 0.3125rem;
}
@media (width < 768px) {
  .link-item-title {
    font-size: 1.125rem;
    line-height: 1.2777777778;
    margin-top: 0.875rem;
    padding-bottom: 0.5625rem;
  }
}
.link-item-title span {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.8461538462;
  margin-top: 0.4375rem;
}
@media (width < 768px) {
  .link-item-title span {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 0.375rem;
  }
}

.link-item-more {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  margin-left: auto;
  margin-top: 0.5625rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width < 768px) {
  .link-item-more {
    font-size: 0.8125rem;
    margin-top: 0.625rem;
  }
}
.link-item-more::before {
  background: #464646;
  content: "";
  height: 1px;
  left: -0.75rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 0.375rem;
}

/*=======================
フッター
=======================*/
.footer {
  overflow: hidden;
  padding: 4.1875rem 0 6.625rem;
  position: relative;
  z-index: 5;
}
@media (width < 768px) {
  .footer {
    padding: 3.125rem 0 2.8125rem;
  }
}

.footer-head {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
@media (width < 768px) {
  .footer-head {
    display: block;
  }
}

.footer-logo {
  height: 7.25rem;
  width: 4.5rem;
}
@media (width < 768px) {
  .footer-logo {
    height: 6.5rem;
    margin-inline: auto;
    width: 4.0625rem;
  }
}

.footer-nav {
  margin-top: 2.625rem;
}
@media (width < 768px) {
  .footer-nav {
    margin-top: 2.1875rem;
  }
}

.footer-nav-items {
  gap: 2.0625rem;
}
@media (width < 768px) {
  .footer-nav-items {
    flex-direction: column;
    gap: 1.9375rem;
  }
}

.footer-nav-item-link {
  text-decoration: none;
}
@media (width < 768px) {
  .footer-nav-item-link {
    font-size: 1rem;
  }
}

.footer-body {
  display: grid;
  grid-template-columns: 54% 46%;
  margin-top: 4.1875rem;
  position: relative;
  z-index: 5;
}
@media (width < 768px) {
  .footer-body {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

.footer-item {
  display: grid;
  grid-template-columns: 9.9375rem 1fr;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .footer-item {
    grid-template-columns: 6.25rem 1fr;
  }
}
@media (width < 768px) {
  .footer-item {
    border-right: none !important;
    border-top: 1px solid rgba(70, 70, 70, 0.17);
    gap: 1.25rem;
    grid-template-columns: 1fr;
    padding-bottom: 2.1875rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 1.875rem;
  }
}
.footer-item:first-of-type {
  border-right: 1px solid rgba(70, 70, 70, 0.17);
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .footer-item:first-of-type {
    padding-right: 1.25rem;
  }
}
.footer-item:last-of-type {
  padding-left: 2.9375rem;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .footer-item:last-of-type {
    padding-left: 1.25rem;
  }
}
.footer-item dt {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-top: 0.1875rem;
}
@media (width < 768px) {
  .footer-item dt {
    font-size: 1.125rem;
  }
}
.footer-item dd {
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.4375;
}
.footer-item dd span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 2;
  margin-top: 0.375rem;
}

.footer-btn {
  margin-top: 1.25rem;
}

.footer-mail {
  color: #464646;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer-mail:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer-mail:hover {
    opacity: 0.5;
  }
}

.footer-bg {
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
}
.footer-bg svg {
  height: 0;
  left: 0;
  position: fixed;
  top: 0;
  width: 0;
}
.footer-bg .gradients-container {
  filter: url(#goo) blur(40px);
  height: 100%;
  width: 100%;
}
.footer-bg .g1 {
  animation: moveVertical 30s ease infinite;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  height: var(--circle-size);
  left: calc(50% - var(--circle-size) / 2);
  mix-blend-mode: var(--blending);
  opacity: 1;
  position: absolute;
  top: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  width: var(--circle-size);
}
.footer-bg .g2 {
  animation: moveInCircle 20s reverse infinite;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  height: var(--circle-size);
  left: calc(50% - var(--circle-size) / 2);
  mix-blend-mode: var(--blending);
  opacity: 1;
  position: absolute;
  top: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  width: var(--circle-size);
}
.footer-bg .g3 {
  animation: moveInCircle 40s linear infinite;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  height: var(--circle-size);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  mix-blend-mode: var(--blending);
  opacity: 1;
  position: absolute;
  top: calc(50% - var(--circle-size) / 2 + 200px);
  transform-origin: calc(50% + 400px);
  width: var(--circle-size);
}
.footer-bg .g4 {
  animation: moveHorizontal 40s ease infinite;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  height: var(--circle-size);
  left: calc(50% - var(--circle-size) / 2);
  mix-blend-mode: var(--blending);
  opacity: 0.7;
  position: absolute;
  top: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  width: var(--circle-size);
}
.footer-bg .g5 {
  animation: moveInCircle 20s ease infinite;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  height: calc(var(--circle-size) * 2);
  left: calc(50% - var(--circle-size));
  mix-blend-mode: var(--blending);
  opacity: 1;
  position: absolute;
  top: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  width: calc(var(--circle-size) * 2);
}
.footer-bg .interactive {
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  height: 100%;
  left: -50%;
  mix-blend-mode: var(--blending);
  opacity: 0.7;
  position: absolute;
  top: -50%;
  width: 100%;
}

:root {
  --color-bg1: rgb(220, 220, 220);
  --color-bg2: rgb(220, 220, 220);
  --color1: 35, 183, 201;
  --color2: 238, 204, 210;
  --color3: 239, 225, 215;
  --color4: 35, 183, 201;
  --color5: 238, 204, 210;
  --circle-size: 140%;
  --blending: hard-light;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
/*=======================
下層 / Archives and Reports
=======================*/
.archives-items {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: 1fr;
  margin-top: 4.5rem;
}
@media (width < 768px) {
  .archives-items {
    gap: 2.125rem;
    margin-top: 3.125rem;
  }
}

.archives-item {
  align-items: center;
  display: grid;
  gap: 2.1875rem;
  grid-template-columns: 15rem 1fr;
}
@media (width < 768px) {
  .archives-item {
    gap: 1.4375rem;
    grid-template-columns: 1fr;
  }
}

.archives-img {
  aspect-ratio: 20/13;
}
.archives-img img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}

.archives-item-date {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding-right: 0.625rem;
  position: relative;
}
@media (width < 768px) {
  .archives-item-date {
    font-size: 0.8125rem;
    line-height: 1.3076923077;
    padding-right: 0.75rem;
  }
}
.archives-item-date::after {
  background: #464646;
  content: "";
  height: 0.5625rem;
  position: absolute;
  right: 0;
  top: 55%;
  translate: 0 -50%;
  width: 1px;
}

.archives-item-cat {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  padding-left: 0.3125rem;
}
@media (width < 768px) {
  .archives-item-cat {
    font-size: 0.8125rem;
    line-height: 1.3076923077;
    padding-left: 0.375rem;
  }
}

.archives-item-title {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin-top: 0.5rem;
}
@media (width < 768px) {
  .archives-item-title {
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    line-height: 1.2777777778;
  }
}

.archives-item-btn {
  font-family: "Inter", sans-serif;
  height: 2rem;
  margin-top: 1.1875rem;
  width: 8.875rem;
}
@media (width < 768px) {
  .archives-item-btn {
    font-size: 0.6875rem;
    margin-top: 0.9375rem;
  }
}
.archives-item-btn span {
  padding-left: 0.8125rem;
  position: relative;
}
@media (width < 768px) {
  .archives-item-btn span {
    font-size: 0.6875rem;
  }
}
.archives-item-btn span::before {
  background: url(../img/icon_pdf.svg) no-repeat center center/contain;
  content: "";
  height: 0.625rem;
  left: 0;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 0.5625rem;
}

/*=======================
下層 / Events and Calls
=======================*/
.events-content-wrapper {
  display: grid;
  gap: 4.25rem;
  grid-template-columns: 1fr;
  margin-top: 4.1875rem;
}
@media (width < 768px) {
  .events-content-wrapper {
    gap: 2.4375rem;
    margin-top: 2.8125rem;
  }
}

.events-content-title {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  position: relative;
  width: 100%;
}
@media (width < 768px) {
  .events-content-title {
    align-items: flex-start;
    flex-direction: column;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.events-content-title::after {
  background: #c1c1c1;
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 1.9375rem;
}
@media (width < 768px) {
  .events-content-title::after {
    flex: none;
    margin-left: 0;
    margin-top: 0.75rem;
    width: 100%;
  }
}

.events-content-items {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4.5rem;
  margin-top: 1.8125rem;
}
@media (width < 768px) {
  .events-content-items {
    gap: 1.625rem 2.375rem;
    margin-top: 1.875rem;
  }
}

.events-content-item {
  width: calc((100% - 9rem) / 3);
}
@media (width < 768px) {
  .events-content-item {
    width: calc((100% - 2.375rem) / 2);
  }
}

.events-content-item-link {
  aspect-ratio: 285/403;
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .events-content-item-link:hover {
    opacity: 0.5;
  }
}
@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .events-content-item-link:hover {
    opacity: 0.5;
  }
}
.events-content-item-link img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}