@charset "UTF-8";
@import url(color.css);

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

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  color: rgb(var(--kycolor-primary));
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding-top: 20px;
  padding-bottom: 20px;
  backdrop-filter: blur(20px);
}

.site-header.is-transparent {
  padding-top: 40px;
  background-color: transparent;
  backdrop-filter: none;
}

.site-header nav a {
  transition: all ease-in-out 0.8s;
  text-decoration: none;
  font-size: 1.25rem;
  color: #fff;
  position: relative;
}

.site-header nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

.site-header.is-dark nav a {
  color: #fff;
  text-shadow: 0 0 5px rgba(10, 10, 10, 1);
}

.site-header .site-logo img {
  transition: all ease-in-out 0.8s;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.site-header.is-transparent nav a{
  color: #fff!important;
}

.site-header.is-transparent .site-logo img, .site-header.is-dark .site-logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 0, 0, 0.3))!important;
}

.site-header.is-light nav a {
  color: #333;
}

.site-header.is-light .site-logo img {
  filter: none;
}

.nav-main {
  display: grid;
  grid-template-columns: auto 1fr;
  padding-left: 100px;
  padding-right: 100px;
}

.nav-main ul {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 40px;
  margin: 0;
}

nav li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
}

/* banner */
.top-banner {
  width: 100%;
}

.top-banner .swiper-wrapper,
.top-banner .swiper-slide {
  height: auto;
}

.top-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.6);
}

/* footer */
.footer-info {
  display: grid;
  grid-template-columns: 1fr auto;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 80px;
  padding-bottom: 60px;
  align-items: end;
  background-color: rgba(223, 244, 233, 0.3);
}

.footer-info .info {
  display: grid;
  gap: 8px;
}

.footer-info .info .f-info-item {
  line-height: 1.2;
}

.footer-info .copyright {
  font-size: 1.25rem;
  font-weight: 200;
}

.f-info-item {
  display: grid;
  grid-template-columns: 90px 1fr;
}

.footer-link {
  background-color: #00a73c;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #fff;
  padding: 10px 100px;
}

.footer-link .link-list ul {
  display: flex;
  justify-content: end;
  margin: 0;
  list-style: none;
  gap: 20px;
}

.footer-link .link-list ul li {
  padding-left: 20px;
  border-left: 1px solid #fff;
}

.footer-link .link-list ul a {
  color: #fff;
  text-decoration: none;
  line-height: 1;
  transition: all ease-in-out 0.3s;
}

.footer-link .link-list ul a:hover {
  color: rgb(var(--kycolor-yellow-1));
}

/* content */
.title-01 {
  position: relative;
  font-weight: 700;
  color: rgb(var(--kycolor-green-4));
}
.title-01::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: -15px;
  left: -15px;
  z-index: 0;
}

.title-01 > span {
  position: relative;
  z-index: 1;
}

.title-01.color-01::before {
  background-image: url("../images/title-01.png");
}

.title-01.color-02::before {
  background-image: url("../images/title-02.png");
}

.title-01.color-03::before {
  background-image: url("../images/title-03.png");
}

.title-02 {
  color: rgb(var(--kycolor-green-2));
  letter-spacing: 0.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  position: relative;
}

.title-02::after {
  content: "";
  display: inline-flex;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 37px;
  top:0px;
  z-index: -1;
  background-color: #fef48d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}

.content-text {
  line-height: 2;
}
/* section */
section {
  min-height: 100vh;
}

.blue-1 {
  background: #0078c0;
  background: radial-gradient(
    circle,
    rgba(0, 120, 192, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}

.blue-2 {
  background: #00b6be;
  background: radial-gradient(
    circle,
    rgba(0, 182, 190, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}

.green-1 {
  background: #b2d9b9;
  background: radial-gradient(
    circle,
    rgba(178, 217, 185, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}

.green-2 {
  background: #8dc63f;
  background: radial-gradient(
    circle,
    rgba(141, 198, 63, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}

.yellow-1 {
  background: #fcf488;
  background: radial-gradient(
    circle,
    rgba(252, 244, 136, 0.5) 0%,
    rgba(255, 255, 255, 0) 50%
  );
}

.deco {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.deco > div {
  position: absolute;
  will-change: transform;
  border-radius: 50%;
}

.deco .blue-1 {
  width: 60%;
  height: auto;
  padding-top: 60%;
}

.deco .blue-2 {
  width: 45%;
  height: auto;
  padding-top: 45%;
}

.deco .green-1 {
  width: 450px;
  height: auto;
  padding-top: 450px;
}

.deco .green-2 {
  width: 450px;
  height: auto;
  padding-top: 450px;
}

.deco .yellow-1 {
  width: 60%;
  height: auto;
  padding-top: 60%;
}

.blue-1.h-move {
  animation-duration: 4s;
}
.blue-2.v-move {
  animation-duration: 6s;
}
.green-1.c-move {
  animation-duration: 5s;
}
.green-2.c-move {
  animation-duration: 5s;
}
.yellow-1.v-move {
  animation-duration: 3.5s;
}

#about {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about .content {
  margin-left: 50%;
  position: relative;
  z-index: 2;
}

#about .slogan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

#about .slogan > div {
  position: absolute;
  left: 0;
  white-space: nowrap;
  -webkit-background-clip: text; /* 背景裁剪成文字的前景色 */
  background-clip: text;
  background-image: linear-gradient(
    90deg,
    rgba(0, 120, 192, 0.6),
    rgba(178, 217, 185, 0.7),
    rgba(252, 244, 136, 0.8),
    rgba(255, 255, 255, 0.7),
    rgba(178, 217, 185, 0.7),
    rgba(0, 182, 190, 0.8),
    rgba(0, 120, 192, 0.6)
  );

  background-size: 300% 100%;
  background-position: 0% 50%;
  color: transparent;
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  opacity: 0.15;
  transform: translateZ(0);
  backface-visibility: hidden;
}

#about .slogan > div:nth-child(1) {
  top: 5%;
}

#about .slogan > div:nth-child(2) {
  top: 35%;
}

#about .slogan > div:nth-child(3) {
  top: 70%;
}

#about .deco > div:nth-child(1) {
  animation-delay: -1s;
  left: -40%;
}
#about .deco > div:nth-child(2) {
  animation-delay: -3s;
  left: auto;
  right: 0;
}
#about .deco > div:nth-child(3) {
  animation-delay: -5s;
  left: 200px;
  top: 60%;
}
#about .deco > div:nth-child(4) {
  animation-delay: -2s;
  right: 10%;
  bottom: 0%;
}
#about .deco > div:nth-child(5) {
  animation-delay: -4s;
  left: -10%;
  top: -30%;
}

#about .slogan-block {
  padding-left: 5px;
  border-left: 3px solid rgb(var(--kycolor-green-2));
}

#info {
  position: relative;
  padding: 80px 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(60vh + 160px);
}

#info .deco > div:nth-child(1) {
  top: -5%;
  left: -30%;
}

#info .deco > div:nth-child(2) {
  top: 12%;
  left: 20%;
}

#info .deco > div:nth-child(3) {
  top: 70%;
  left: -10%;
}

#info .deco > div:nth-child(4) {
  top: -45%;
  right: 40%;
}

#info .deco > div:nth-child(5) {
  top: -15%;
  right: 0;
}

#info .deco > div:nth-child(6) {
  bottom: 15%;
  right: 0;
}

#info .slogan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  bottom: -80px;
}

#info .slogan > div {
  position: absolute;
  left: 0;
  bottom: 0;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  opacity: 0.15;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.info-container {
  position: relative;
  z-index: 1;
}

.info-item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.info-item-list .info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-item-list .info-item .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 85%,
    rgba(0, 0, 0, 0.3) 100%
  );
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.info-item-list .info-item .icon img {
  margin-bottom: 10px;
}

.info-item-list .info-item .label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-item-list .info-item .date {
  position: relative;
  display: flex;
  align-items: end;
  line-height: 1;
  gap: 3px;
  margin-bottom: 5px;
}

.info-item-list .info-item .date .year {
  font-size: 0.7rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  display: inline-block;
  transform: rotateZ(180deg);
}

.google-map-btn {
  background-color: #fff;
  box-shadow: 1px 1px 3px 2px rgba(0, 0, 0, 0.2);
  padding: 3px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #000000;
  margin-top: 5px;
  display: flex;
  gap: 5px;
  transition: all ease-in-out 0.3s;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.google-map-btn:hover {
  background-color: #eee;
}

.bg-deco-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-deco-container > div {
  background-color: #9ed1b6;
}
.bg-deco-container > div:nth-child(1) {
  margin-top: -60px;
}
.bg-deco-container > div:nth-child(2) {
  margin-bottom: -60px;
}

#space {
  position: relative;
  padding: 150px 0;
}

.space-title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-bottom: 40px;
}

.space-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 10vw;
  z-index: 2;
}

.space-item + .space-item {
  margin-top: 300px;
}

.space-item .pic {
  position: relative;
  z-index: 1;
}

.space-item .pic .note {
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 1;
  color: #fff;
  writing-mode: vertical-rl;
  display: inline-block;
  transform: rotateZ(180deg);
  font-size: 3rem;
  text-wrap: nowrap;
  line-height: 0;
  text-shadow: 0 0 20px rgba(var(--kycolor-primary), 0.5);
}

.space-item .pic img {
  max-width: 100%;
  width: 100%;
}

.space-item .content {
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.space-item .bg-block {
  position: absolute;
  z-index: 0;
}

.space-item .bg-block.bg-1 {
  width: 30%;
  height: 150%;
  left: 0;
  top: -35%;
  background-image: url("../images/space-01.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.space-item .bg-block.bg-2 {
  width: 30%;
  height: 150%;
  right: 0;
  top: -35%;
  background-image: url("../images/space-02.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

.space-item .bg-block.bg-3 {
  width: 30%;
  height: 150%;
  left: 0;
  top: -35%;
  background-image: url("../images/space-03.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}

.space-item .bg-block.bg-4 {
  width: 30%;
  height: 150%;
  right: 0;
  top: -35%;
  background-image: url("../images/space-04.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

.space-list .space-item:nth-child(even) .pic {
  order: 2;
}

.space-list .space-item:nth-child(even) .content {
  order: 1;
}

#space .deco > div:nth-child(1) {
  animation-delay: -1s;
  top: -30%;
  left: -30%;
}
#space .deco > div:nth-child(2) {
  animation-delay: -3s;
  left: auto;
  right: 0;
}
#space .deco > div:nth-child(3) {
  animation-delay: -5s;
  left: 200px;
  top: 60%;
}
#space .deco > div:nth-child(4) {
  animation-delay: -2s;
  right: 10%;
  bottom: 0%;
}
#space .deco > div:nth-child(5) {
  animation-delay: -4s;
  left: -10%;
  top: -30%;
}

#space .space-list .space-item:nth-child(2) .deco > div:nth-child(2) {
  animation-delay: -3s;
  left: auto;
  right: -20%;
  bottom: -65%;
  width: 1200px;
  height: 1200px;
}

#space .space-list .space-item:nth-child(4) .deco > div:nth-child(1) {
  animation-delay: -3s;
  left: auto;
  right: -30%;
  bottom: -15%;
  width: 1200px;
  height: 1200px;
}

#space .space-list .space-item:nth-child(4) .deco > div:nth-child(2) {
  animation-delay: -3s;
  left: -40%;
  top: -55%;
  width: 1000px;
  height: 1000px;
}

#space .space-list .space-item:nth-child(even) .pic .note {
  left: auto;
  right: 0px;
}

.gallery-section {
  margin-top: 150px;
  padding: 0 10vw;
}

.gallery {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(27, 1fr);
  grid-template-rows: repeat(15, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.gallery .item {
  position: relative;
  overflow: hidden;
}

.gallery a.item:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  background-image: url("../images/zoom.png");
  background-position: center;
  background-repeat: no-repeat;
  transition: all ease-in-out 0.2s;
  opacity: 0;
}

.gallery a.item:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.i-deco-1 {
  grid-area: 5 / 3 / 6 / 8;
  background-color: rgb(var(--kycolor-green-2));
}
.i1 {
  grid-area: 6 / 1 / 11 / 8;
}
.i2 {
  grid-area: 5 / 8 / 9 / 14;
}
.i3 {
  grid-area: 2 / 14 / 9 / 18;
}
.i4 {
  grid-area: 1 / 18 / 6 / 22;
}
.i-deco-2 {
  grid-area: 3 / 22 / 6 / 24;
  background-color: rgb(var(--kycolor-green-2));
}
.i5 {
  grid-area: 6 / 18 / 9 / 24;
}
.i6 {
  grid-area: 4 / 24 / 9 / 28;
}
.i7 {
  grid-area: 11 / 3 / 14 / 8;
}
.i8 {
  grid-area: 9 / 8 / 16 / 13;
}
.i9 {
  grid-area: 9 / 13 / 15 / 20;
}
.i10 {
  grid-area: 9 / 20 / 12 / 24;
}
.i11 {
  grid-area: 12 / 20 / 15 / 24;
}
.i-deco-3 {
  grid-area: 9 / 24 / 12 / 28;
  background-color: rgb(var(--kycolor-green-2));
}

.gallery-container {
  position: relative;
  padding-left: 150px;
}

.gallery-container .g-deco-01 {
  position: absolute;
  left: calc(1% + 100px);
  top: 0%;
  width: 50%;
  height: 30%;
  background-image: url("../images/gallery/deco/deco-01.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

.gallery-container .g-deco-02 {
  position: absolute;
  right: 0%;
  bottom: 10%;
  width: 10%;
  height: 12%;
  background-image: url("../images/gallery/deco/deco-02.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 0;
}

.gallery-container .g-deco-03 {
  position: absolute;
  left: calc(38% + 150px);
  bottom: 0%;
  width: 6%;
  height: 6%;
  background-image: url("../images/gallery/deco/deco-03.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
}

#space .slogan-block {
  position: absolute;
  left: 0;
  bottom: -15%;
  z-index: 2;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(
    90deg,
    rgba(0, 182, 190, 1) 0%,
    rgba(178, 217, 185, 1) 50%,
    rgba(141, 198, 63, 1) 100%
  );
  color: transparent;
  font-size: clamp(2rem, 4.2vw, 5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateZ(0);
  backface-visibility: hidden;
  line-height: 1.2;
}

#space .gallery-container .deco > div:nth-child(1) {
  left: -70%;
  width: 1200px;
  height: 1200px;
}

#space .gallery-container .deco > div:nth-child(2) {
  left: auto;
  right: -40%;
  top: -30%;
  bottom: auto;
  width: 1200px;
  height: 1200px;
}

#events {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

#events .deco.d-1 {
  top: 0;
  left: 0;
}

#events .deco.d-2 {
  top: 50%;
  left: 0;
}

#events .deco.d-1 > div:nth-child(1) {
  animation-delay: -1s;
  top: -30%;
  left: -30%;
}
#events .deco.d-1 > div:nth-child(2) {
  animation-delay: -3s;
  left: auto;
  right: 0;
}

#events .deco.d-2 > div:nth-child(1) {
  animation-delay: -3s;
  top: -15%;
  right: -30%;
  left: auto;
  width: 1200px;
  height: 1200px;
}
#events .deco.d-2 > div:nth-child(2) {
  animation-delay: -5s;
  left:-20%;
  right: auto;
  width: 1000px;
  height: 1000px;
}

#events .deco > div:nth-child(3) {
  animation-delay: -5s;
  left: 200px;
  top: 60%;
}
#events .deco > div:nth-child(4) {
  animation-delay: -2s;
  right: 10%;
  bottom: 0%;
}
#events .deco > div:nth-child(5) {
  animation-delay: -4s;
  left: -10%;
  top: -30%;
}

.events-container {
  position: relative;
  padding: 80px 10vw;
  background-image: url("../images/events-01.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  z-index: 1;
}

.events-top {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 40px;
  color: #000000;
}

.events-top .pic img {
  transition: all ease-in-out 0.3s;
}

.events-top .content .content-text {
  color: #000000;
  transition: all ease-in-out 0.2s;
}

.events-top:hover .pic img {
  transform: scale(1.02);
  filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.3));
}

.events-top .content {
  padding-top: 40px;
}

.events-top .content .title {
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--kycolor-secondary));
  transition: all ease-in-out .3s;
  line-height: 1.5;
  color: rgb(var(--kycolor-green-4));
}

.events-top:hover .content .title{
  color: rgb(var(--kycolor-primary));
}

.events-top:hover .content .content-text {
  color: #666;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 50px;
  gap: 20px;
}

.events-list .events-item {
  color: #000000;
  position: relative;
  display: flex;
  flex-direction: column;
}

.events-list .events-item .pic img {
  object-fit: cover;
  transition: all ease-in-out 0.3s;
  width: 100%;
}

.events-list .events-item .pic {
  overflow: hidden;
}

.events-list .events-item:hover .pic img {
  transform: scale(1.03);
}

.events-list .events-item .content {
  background-color: #fff;
  padding: 20px;
  flex-grow: 1;
}

.events-list .events-item .content .title{
  line-height: 1.5;
  color: rgb(var(--kycolor-green-4));
}

.events-list .events-item::before {
  content: "";
  position: absolute;
  inset: -3px; /* 外擴 = border 厚度 */
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 182, 190, 1),
    rgba(178, 217, 185, 1),
    rgba(252, 244, 136, 1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.events-list .events-item > * {
  position: relative;
  z-index: 1;
}

.events-list .events-item:hover::before {
  opacity: 1;
}

/* GLightBox */
.lg-backdrop,.glightbox-mobile .goverlay{
  background-color: rgba(0, 0, 0, 0.95);
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: rgb(var(--kycolor-primary));
}


@media screen and (min-width: 540px) {
  /* banner */
  .top-banner .banner-s {
    display: none;
  }
}

@media screen and (min-width: 1366px) {
  /* banner */
  .top-banner .swiper-wrapper,
  .top-banner .swiper-slide {
    height: 100vh;
  }
  .top-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    object-position: bottom;
    min-height: 730px;
  }
}

@media screen and (max-width: 1199px) {
  /* header */
  .site-header.is-transparent {
    padding-top: 20px;
  }
  .nav-main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  /* footer */
  .footer-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-link {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-link .link-list ul {
    justify-content: start;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

@media screen and (max-width: 1023px) {
  /* header */
  .site-header .site-logo img {
    width: 150px;
  }
  .nav-main ul {
    gap: 10px;
  }
  .site-header nav a {
    font-size: 0.8rem;
  }
  /* footer */
  .xs-block{display: block;}
  /* section */
  #about {
    padding: 50px 10vw;
    min-height: 90vh;
  }
  #about .content {
    margin-left: 0%;
  }
  #info {
    padding: 50px 1.25rem;
    min-height: 80vh;
  }
  .info-item-list {
    gap: 20px;
  }
  .info-item-list .info-item .icon {
    width: 100px;
    height: 100px;
  }
  .info-item-list .info-item .icon img {
    width: 30px;
    height: 30px;
  }
  .gallery-container {
    padding-left: 0;
  }
  .i-deco-1,
  .i-deco-2,
  .i-deco-3 {
    display: none;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }

  .gallery .item {
    grid-area: auto !important;
    aspect-ratio: 4 / 3;
  }
  #space .slogan-block {
    left: auto;
    right: 0;
    bottom: 0;
    font-size: 2.3rem;
    line-height: 1.5;
  }
  .events-top {
    grid-template-columns: 1fr 1fr;
  }

  .events-top .content {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .title-02::after{
    left: 30px;
  }
  /* footer */
  .footer-link .link-list ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  /* section */
  #info {
    padding: 110px 1.25rem 100px;
  }
  #info .slogan {
    bottom: -60px;
  }
  .bg-deco-container > div:nth-child(1){
    margin-top: 0px;
  }
  .bg-deco-container > div:nth-child(2){
    margin-top: 40px;
  }
  .info-item-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .info-item-list .info-item .icon {
    width: 150px;
    height: 150px;
  }
  #space {
    padding: 50px 0 0;
  }
  .space-title {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }
  .space-item {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 0 1.25rem;
  }
  .space-item + .space-item {
    margin-top: 100px;
  }
  .space-list .space-item:nth-child(n) .pic {
    order: 1;
  }
  .space-list .space-item:nth-child(n) .content {
    order: 2;
    padding-top: 30px;
  }
  #space .space-list .space-item:nth-child(odd) .pic .note {
    left: 0px;
    font-size: 2.2rem;
  }
  #space .space-list .space-item:nth-child(even) .pic .note {
    right: 0px;
    font-size: 2.2rem;
  }
  #space .slogan-block {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .gallery-section {
    padding: 50px 1.25rem;
    margin-top: 50px;
  }
  .events-container{
    padding: 120px 1.25rem 50px;
  }
  .events-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .events-list{
    grid-template-columns: 1fr;
  }
  #events .deco.d-1 > div:nth-child(1){
    left: -100px;
    top: 0;
  }
  #events .deco.d-1 > div:nth-child(3){
    top: 10%;
    left: 100px;
  }
  #events .deco.d-1 > div:nth-child(5){
    top: 30%;
    width: 500px;
    height: 500px;
  }
  .events-top .content .title{
    font-size: 1.2rem;
  }
  .events-list .events-item .content{
    padding: 10px;
  }
  .events-list .events-item .content .title{
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 539px) {
  /* header */
  .nav-main{
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
  .site-header{
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .site-header .site-logo{
    display: flex;
    justify-content: center;
  }
  .site-header .site-logo img {
    width: 250px;
  }
  .site-header.is-transparent{
    padding-top: 40px;
  }
  .nav-main ul {
    gap: 20px;
    justify-content: center;
    padding: 0;
  }
  .site-header nav a {
    font-size: 1rem;
    text-shadow: none;
  }
  .site-header.is-dark nav a{
    text-shadow: none;
  }
  /* banner */
  .top-banner .banner-l {
    display: none;
  }
  .top-banner .banner-s {
    display: block;
  }
  /* footer */
  .footer-info .info .f-info-item {
    line-height: 1.5;
  }
  /* section */
  #events{
    padding-bottom: 0;
  }
}

@keyframes move-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200px);
  }
}

.h-move {
  animation: move-horizontal 3s ease-in-out infinite alternate;
}

@keyframes move-diagonal {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(234px, 205px);
  }
}

.v-move {
  animation: move-diagonal 4s ease-in-out infinite alternate;
}

@keyframes move-circle {
  0% {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}

.c-move {
  animation: move-circle 6s linear infinite;
}
