@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  font 
------------------------------------------------------------------------------*/
@font-face {
  font-display: swap;
  font-weight: bold;
  font-style: normal;
  font-family: "TT Norms";
  src: url("../font/TT_Norms_Pro_Bold.woff2") format("woff2"), url("../font/TT_Norms_Pro_Bold.woff") format("woff"), url("../font/TT_Norms_Pro_Bold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: normal;
  font-style: normal;
  font-family: "TT Norms";
  src: url("../font/TT_Norms_Pro_Regular.woff") format("woff"), url("../font/TT_Norms_Pro_Regular.woff2") format("woff2"), url("../font/TT_Norms_Pro_Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Regular.woff") format("woff"), url("../font/NotoSansJP-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Medium.woff") format("woff"), url("../font/NotoSansJP-Medium.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  font-family: "Noto Sans JP";
  src: url("../font/NotoSansJP-Bold.woff") format("woff"), url("../font/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Sans";
  src: url("../font/NotoSans-Regular.woff") format("woff"), url("../font/NotoSans-Regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 500;
  font-style: normal;
  font-family: "Noto Sans";
  src: url("../font/NotoSans-Medium.woff") format("woff"), url("../font/NotoSans-Medium.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  font-family: "Noto Sans";
  src: url("../font/NotoSans-Bold.woff") format("woff"), url("../font/NotoSans-Bold.ttf") format("truetype");
}
/*------------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
  scroll-behavior: smooth;
  /* 固定ヘッダー直下にアンカー表示（URLハッシュ直開き用。クリックは common.js 側でヘッダー高を差し引き） */
  scroll-padding-top: 100px;
}

body {
  background: #fff;
  margin: 0;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  overflow-x: hidden;
  scroll-behavior: auto !important; /* アニメーション戻し無効化（戻る時のズレ防止） */
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール有効化 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  height: auto;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.inner-block {
  position: relative;
  max-width: 1024px;
  padding: 0 24px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.inner-block.-px970 {
  max-width: 970px;
}

#wrapper {
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}
.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

.u-br-sp {
  display: none;
}
.u-block-pc {
  display: block;
}
.u-block-sp {
  display: none;
}
/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
@-webkit-keyframes float1 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes float1 {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
l-header
----------------------------------- */
:root {
  --secondary-color: #1D1D1D;
  --background-color: #fff;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  padding: 0 64px 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  /* PC Menu Styles */
  /* Mobile Menu Styles */
  /* Overlay */
}
.l-header__logo {
  background-color: #fff;
  position: relative;
  z-index: 1001;
  border-radius: 0 0 10px 10px;
  padding: 18px 23px 18px 23px;
  -webkit-box-shadow: 0px 1px 14px 0px rgba(213, 232, 213, 0.8);
          box-shadow: 0px 1px 14px 0px rgba(213, 232, 213, 0.8);
}
.l-header__logo img {
  max-width: 80px;
  height: auto;
  width: 100%;
}
.l-header .pc-menu {
  display: none;
}
.l-header .pc-menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header .pc-menu li {
  margin-left: 64px;
}
.l-header .pc-menu li:first-of-type {
  margin-left: 0;
}
.l-header .pc-menu a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 12px;
}
.l-header .pc-menu a:hover {
  opacity: 0.6;
}
.l-header .mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1010;
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background-color: #55A282;
}
.l-header .hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.l-header .hamburger span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.l-header .hamburger span:nth-child(1) {
  top: 0px;
}
.l-header .hamburger span:nth-child(2), .l-header .hamburger span:nth-child(3) {
  top: 10px;
}
.l-header .hamburger span:nth-child(4) {
  top: 20px;
}
.l-header .hamburger.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.l-header .hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header .hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header .hamburger.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.l-header .mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #fff;
  -webkit-box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 1000;
}
.l-header .mobile-menu__logo {
  opacity: 0;
}
.l-header .mobile-menu.open {
  right: 0;
}
.l-header .mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  padding-top: 80px;
}
.l-header .mobile-menu li {
  padding: 0;
}
.l-header .mobile-menu a {
  display: block;
  padding: 20px 32px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-size: 12px;
}
.l-header .mobile-menu a:hover {
  background-color: #f5f5f5;
  color: #55A282;
}
.l-header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.l-header .menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.l-header__logo {
  display: block;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mobile-menu.open ~ .l-header__logo {
  display: none;
}
.l-header .mobile-menu__logo {
  opacity: 1;
  position: absolute;
  top: 16px;
  left: 32px;
}
.l-header .mobile-menu__logo a {
  border: none;
  padding: 0 0 0;
}
.l-header .mobile-menu__logo img {
  width: 74px;
  height: auto;
}

/* --------------------------------
l-footer
----------------------------------- */
.l-footer {
  background: url("../img/common/img-footer-bg.webp");
  color: #fff;
  background-size: cover;
  position: relative;
  padding: 80px 0 40px;
}
.l-footer__inner {
  position: relative;
  z-index: 2;
}
.l-footer a {
  color: #fff;
}
.l-footer a:hover {
  opacity: 0.6;
}
.l-footer canvas {
  position: absolute;
  display: block;
  width: 100vw;
  height: auto;
  z-index: 1;
  top: 0;
  left: 0;
}
.l-footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-inline: auto;
}
.l-footer__top__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(40px, 33.59vw - 217.5px, 126px);
}
.l-footer__logo {
  max-width: 260px;
  height: auto;
}
.l-footer__logo img {
  max-width: initial;
}
.l-footer__logo a:hover {
  opacity: initial;
}
.l-footer__link__text {
  margin-bottom: 24px;
}
.l-footer__link__text a {
  font-size: 12px;
  font-weight: 500;
  display: block;
}
.l-footer__link__button a {
  background-color: #fff;
  border-radius: 3px;
  padding: 12px 16px;
  color: #55A282;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.l-footer__link__button a:hover {
  opacity: 0.8;
}
.l-footer__link__button a::after {
  content: url("../img/common/img-footer-arrow.svg");
  display: block;
  width: 22px;
  height: 22px;
}
.l-footer__bottom {
  display: grid;
  row-gap: 36px;
  max-width: 1320px;
  padding: 50px 0 0;
  margin-inline: auto;
}
.l-footer__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px 32px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  max-width: 332px;
}
.l-footer__menu li {
  max-width: 138px;
  width: 100%;
}
.l-footer .polycy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer .polycy__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.l-footer .polycy__menu > .polycy__menu__item {
  font-size: 10px;
  font-weight: 400;
}
.l-footer .polycy__menu > .polycy__menu__item p {
  opacity: 0.8;
}
.l-footer .polycy__menu > .polycy__menu__item small {
  font-size: 10px;
}

#particleCanvas {
  display: block; /* ← 余白除去 */
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* ユーザー操作をブロックしない */
}

.l-layer-section {
  position: relative;
  overflow-x: clip;
  top: 0;
  z-index: 30;
}
.l-layer-section.-second {
  z-index: 200;
  height: auto;
  will-change: transform;
}

/* --------------------------------
c-pagetop
----------------------------------- */
.c-pagetop {
  right: 30px;
}
.c-pagetop a {
  display: block;
}

/* --------------------------------
c-title
----------------------------------- */
@-webkit-keyframes search_light {
  0% {
    translate: -100%;
  }
  80%, 100% {
    translate: 150%;
  }
}
@keyframes search_light {
  0% {
    translate: -100%;
  }
  80%, 100% {
    translate: 150%;
  }
}
@-webkit-keyframes search_light_long {
  0% {
    translate: -100%;
  }
  80%, 100% {
    translate: 400%;
  }
}
@keyframes search_light_long {
  0% {
    translate: -100%;
  }
  80%, 100% {
    translate: 400%;
  }
}
.c-title {
  font-size: 100%;
  font-weight: bold;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 14;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  margin: auto;
}
.c-title__inner {
  font-size: 6.875rem;
  position: relative;
}
.c-title__mask {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  mask: var(--mask);
  -webkit-mask: var(--mask);
  mask-size: 100%;
  -webkit-mask-size: 100%;
  font-size: 100%;
}
.c-title__mask img {
  display: block;
}
.c-title__mask::before {
  content: "";
  position: absolute;
  left: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--clr-sub-02);
  -webkit-filter: blur(1.45625rem);
          filter: blur(1.45625rem);
  -webkit-animation: search_light 10s linear infinite;
          animation: search_light 10s linear infinite;
  width: 2.2em;
  top: 0;
  background-color: #bdde1c;
}
.c-title__mask.-event {
  --mask: url(../img/svg/img-title-event.svg);
}
.c-title__mask.-long::before {
  content: "";
  position: absolute;
  left: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--clr-sub-02);
  -webkit-filter: blur(1.45625rem);
          filter: blur(1.45625rem);
  -webkit-animation: search_light_long 10s linear infinite;
          animation: search_light_long 10s linear infinite;
  width: 1.2em;
  top: 0;
  background-color: #bdde1c;
}
.c-title img {
  max-width: 100%;
  font-size: 100%;
  height: auto;
  vertical-align: middle;
}
.c-title a {
  display: block;
}
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
.p-openning {
  position: relative;
}
.p-openning__name {
  font-size: 30px;
  color: #2F813F;
  font-weight: 600;
  text-align: center;
  font-family: "TT Norms", sans-serif;
}
.p-openning__date {
  margin-top: 32px;
  text-align: center;
}
.p-openning__place {
  margin-top: 24px;
  text-align: center;
}

/* First Animation Styles - Using original SCSS-like syntax */
/* 全画面表示 & 中央寄せ */
.openning-title-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff; /* 背景色はお好みで */
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  margin-left: 0;
}

.openning-title-wrapper.fade-out {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.opening-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 30px;
  margin: 0 auto;
  color: #2F813F;
  font-weight: 600;
  letter-spacing: 1px;
}

.opening-title span {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  translate: 30px 0;
}

.opening-title.show span {
  opacity: 1;
  translate: 0 0;
}

.opening-title.show span:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.opening-title.show span:nth-of-type(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}

.opening-title.show span:nth-of-type(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  padding-left: 8px;
}

.opening-title.show span:nth-of-type(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.opening-title.show span:nth-of-type(5) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.opening-title.show span:nth-of-type(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.opening-title.show span:nth-of-type(7) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
  padding-left: 8px;
}

.opening-title.show span:nth-of-type(8) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.opening-title.show span:nth-of-type(9) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.opening-title.show span:nth-of-type(10) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.opening-title.show span:nth-of-type(11) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

.opening-title.hide span {
  opacity: 0;
  translate: -30px 0;
}

.opening-title.-under.hide span:nth-of-type(n) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.opening-title.-top {
  width: 260px;
  margin-top: -40px;
  font-family: "TT Norms", sans-serif;
}

.opening-title.-middle {
  width: 526px;
  font-size: 104px;
  color: #1D1D1D;
  margin-top: -30px;
  letter-spacing: 0;
}

.opening-title.-middle.show span:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.opening-title.-middle.show span:nth-of-type(2) {
  -webkit-transition-delay: 0.03s;
          transition-delay: 0.03s;
}

.opening-title.-middle.show span:nth-of-type(3) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
  padding-left: 0;
}

.opening-title.-middle.show span:nth-of-type(4) {
  -webkit-transition-delay: 0.09s;
          transition-delay: 0.09s;
}

.opening-title.-middle.show span:nth-of-type(5) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.opening-title.-middle.show span:nth-of-type(6) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  padding-left: 16px;
}

.opening-title.-middle.show span:nth-of-type(7) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

.opening-title.-under {
  font-size: 48px;
  color: #1D1D1D;
  margin-top: -40px;
  margin-left: 24px;
  font-family: "TT Norms", sans-serif;
  letter-spacing: 11px;
}

.opening-title.-under.show span:nth-of-type(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.opening-title.-under.show span:nth-of-type(2) {
  -webkit-transition-delay: 0.03s;
          transition-delay: 0.03s;
}

.opening-title.-under.show span:nth-of-type(3) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
  padding-left: 0;
}

.opening-title.-under.show span:nth-of-type(4) {
  -webkit-transition-delay: 0.09s;
          transition-delay: 0.09s;
}

.opening-title.-under.show span:nth-of-type(5) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.opening-title.-under.show span:nth-of-type(6) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.opening-title.-under.show span:nth-of-type(7) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
  padding-left: 0;
}

.opening-title.-under.show span:nth-of-type(8) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}

.opening-title.-under.show span:nth-of-type(9) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.opening-title.-under.show span:nth-of-type(10) {
  -webkit-transition-delay: 0.27s;
          transition-delay: 0.27s;
}

.opening-title.-under.show span:nth-of-type(11) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.opening-title.-under.show span:nth-of-type(12) {
  -webkit-transition-delay: 0.33s;
          transition-delay: 0.33s;
}

.opening-title.-under.show span:nth-of-type(13) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.opening-title.-under.show span:nth-of-type(14) {
  -webkit-transition-delay: 0.39s;
          transition-delay: 0.39s;
}

.opening-title.-under.show span:nth-of-type(15) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.opening-title.-under.show span:nth-of-type(16) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}

.opening-title.-under.show span:nth-of-type(17) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

.opening-title.-under.show span:nth-of-type(18) {
  -webkit-transition-delay: 0.51s;
          transition-delay: 0.51s;
}

.opening-title.-under.show span:nth-of-type(19) {
  -webkit-transition-delay: 0.54s;
          transition-delay: 0.54s;
}

.opening-title.-under.show span:nth-of-type(20) {
  -webkit-transition-delay: 0.57s;
          transition-delay: 0.57s;
}

.opening-title.-under.show span:nth-of-type(21) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

/* Second Animation Styles */
.p-mv-textInner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  top: -40px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 100;
  position: absolute;
  height: 100vh;
  overflow: hidden;
}

.p-mv-textInner.visible {
  opacity: 1;
  visibility: visible;
}

.p-mv-bg-white {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.p-mv-textArea {
  position: relative;
  z-index: 4;
}

.p-mv-text p {
  margin: 0;
  position: relative;
}

.p-mv-catch .animationTextInner {
  letter-spacing: -0.05em;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(32%, #000), color-stop(38%, #000), color-stop(40%, #677582), color-stop(42%, #b2c3cc), color-stop(44%, #dfeaee), color-stop(46%, #fbfaf8), color-stop(48%, #fce2d4), color-stop(50%, #e5b299), color-stop(54%, #a96f57), color-stop(56%, #8b6656), color-stop(60%, #000), to(#000));
  background-image: linear-gradient(90deg, #000 0%, #000 32%, #000 38%, #677582 40%, #b2c3cc 42%, #dfeaee 44%, #fbfaf8 46%, #fce2d4 48%, #e5b299 50%, #a96f57 54%, #8b6656 56%, #000 60%, #000 100%);
  background-size: 260%;
  background-position: 100% 0%;
  background-repeat: no-repeat;
  display: inline-block;
}

.p-mv-catch01 {
  font-size: 104px;
  bottom: -3.57vw;
  left: calc(-4.64vw + 22px);
  padding-right: 22px;
}

.p-mv-catch02 {
  font-size: 104px;
  left: 3.28vw;
  white-space: nowrap;
  line-height: 94px;
  font-weight: 600;
}

.p-mv-catch02 .p-mv-catch-mark_and {
  font-size: 94px;
  display: inline-block;
  margin-left: 22px;
  font-weight: 600;
}

.p-mv-catch03 {
  font-size: 48px;
  top: -6.2vw;
  left: -4.5vw;
  margin-top: 8px;
  line-height: 60px;
  font-weight: 600;
  font-family: "TT Norms", sans-serif;
}

.p-mv-catch03 span {
  letter-spacing: 8px;
  font-weight: 600;
}
/* bodyにこのクラスがついてる間はスクロールできない */
.no-scroll {
  overflow: hidden;
  height: 100vh; /* モバイルSafari対策 */
}

@-webkit-keyframes float2 {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(1.5deg);
    transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
}
@keyframes float2 {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(1.5deg);
    transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 10px);
    transform: translate(-50%, 10px);
  }
}
.p-mainvisual {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.p-mainvisual .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.p-mainvisual .video-bg.-tablet {
  display: none;
}

.p-mainvisual .video-bg.-sp {
  display: none;
}

.p-mainvisual .video-bg.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.p-mainvisual__inner img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mainvisual__drone {
  position: absolute;
  bottom: 0;
  left: 120px;
  top: auto;
  right: auto;
  -webkit-animation: float2 3s ease-in-out infinite;
  animation: float2 3s ease-in-out infinite;
  will-change: transform;
  z-index: 3;
}

.p-mainvisual__drone img {
  width: 416px;
  height: auto;
}

.p-mainvisual__scroll {
  position: absolute;
  bottom: 42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 400;
}

.p-mainvisual__scroll a {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-mainvisual__scroll a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: initial;
}
/* タブレット用のメディアクエリを更新 */
/* スマートフォン用のメディアクエリを更新 */
/* スマホ端末は100dvhを優先して使う */
@-webkit-keyframes float3 {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(1.5deg);
            transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}
@keyframes float3 {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(1.5deg);
            transform: translateY(-8px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
}
#concept {
  overflow-x: clip;
  -webkit-transition: background-color 0.4s ease, color 0.4s ease;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.p-concept__bottom__gradient {
  position: absolute;
  z-index: 2;
  top: -74px;
  left: 0;
  width: 100vw;
  height: 180px;
  background: url(../img/concept/img-concept-gradient-top-bg.webp) no-repeat center top;
  background-size: cover;
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, black), to(black));
  mask-image: linear-gradient(to bottom, transparent, black 40%, black);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, black), to(black));
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%, black);
  pointer-events: none;
}

.p-concept {
  position: relative;
}
.p-concept__bgGradient {
  position: absolute;
  background: url("../img/concept/img-concept-bg-gradient.webp");
  background-size: cover;
  z-index: 0;
  mix-blend-mode: overlay;
  width: 100%;
  height: 100%;
}
.p-concept__textArea {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-concept .p-concept__title .c-title__mask {
  --mask: url(../img/svg/img-title-concept.svg);
}
.p-concept .p-concept__title-sp {
  display: none;
}
.p-concept__lead {
  font-size: 24px;
  line-height: 36px;
  font-weight: 200;
  color: #1D1D1D;
  letter-spacing: 2px;
}
.p-concept__text {
  font-size: 16px;
  line-height: 36px;
  font-weight: 100;
  color: #8B8B8B;
}
.p-concept__img {
  position: relative;
  -webkit-box-shadow: 20px 64px 64px -20px #ACACAC;
          box-shadow: 20px 64px 64px -20px #ACACAC;
  display: inline-block;
}
.p-concept__img:nth-of-type(1) {
  position: absolute;
  top: 179px;
  left: 27.222%;
  z-index: 5;
}
.p-concept__img:nth-of-type(1) img {
  width: 10.1vw;
  height: auto;
  min-width: 69px;
}
.p-concept__img:nth-of-type(2) {
  position: absolute;
  top: 246px;
  right: 11.806%;
  z-index: 5;
}
.p-concept__img:nth-of-type(2) img {
  width: 13.8vw;
  height: auto;
  min-width: 94px;
}
.p-concept__img:nth-of-type(3) {
  position: absolute;
  top: 430px;
  left: 5.694%;
  z-index: 3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.p-concept__img:nth-of-type(3) img {
  width: 19.9vw;
  height: auto;
  min-width: 94px;
}
.p-concept__img:nth-of-type(5) {
  position: absolute;
  bottom: 214px;
  right: 2.778%;
  z-index: 6;
}
.p-concept__img:nth-of-type(5) img {
  width: 13.9vw;
  height: auto;
  min-width: 94px;
}
.p-concept__img:nth-of-type(6) {
  position: absolute;
  bottom: 152px;
  left: 14.444%;
  z-index: 7;
}
.p-concept__img:nth-of-type(6) img {
  width: 13.2vw;
  height: auto;
  min-width: 90px;
}
.p-concept__img:nth-of-type(7) {
  position: absolute;
  bottom: 120px;
  right: 23.889%;
  z-index: 8;
}
.p-concept__img:nth-of-type(7) img {
  width: 7.9vw;
  height: auto;
  min-width: 91px;
}
.p-concept__img__drone {
  position: absolute;
  top: 440px;
  right: 5.39%;
  z-index: 9;
}
.p-concept__img__drone2{
  position: absolute;
  bottom: 156px;
  left: 39.39%;
  z-index: 0;
}
.p-concept__img__drone img {
  -webkit-animation: float3 2s ease-in-out infinite;
          animation: float3 2s ease-in-out infinite;
  will-change: transform;
  width: 15.3vw;
  height: auto;
  min-width: 105px;
}
.p-concept__img__drone2 img{
  mix-blend-mode: multiply;
  -webkit-animation: float3 2s ease-in-out infinite;
          animation: float3 2s ease-in-out infinite;
  will-change: transform;
  width: 14.3vw;
  height: auto;
  min-width: 205px;
}
.p-concept__bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  height: 100%;
}
.p-concept__bg img {
  width: 100vw;
  height: auto;
  margin: 0 auto;
}
.p-concept__bg .img-top {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-concept__bg .img-bottom {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-concept section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.p-concept span {
  position: absolute;
  top: 20px;
  font-size: 12px;
}
.p-concept #changingContent {
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-concept__bgChange {
  padding: 368px 0 342px;
}
.p-concept .anim-box.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.p-concept .anim-box.fadeup.is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s; /* 少しディレイさせることで「ふわっ」と出る */
}
.p-concept .anim-box.fadeup {
  will-change: opacity, transform;
}
@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.blur-in {
  opacity: 0;
  -webkit-filter: blur(1em) brightness(1.3);
          filter: blur(1em) brightness(1.3);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blur-in.visible {
  opacity: 1;
  -webkit-filter: blur(0) brightness(1);
          filter: blur(0) brightness(1);
}

.p-conceptMovie {
  position: relative;
  padding: 124px 0 768px;
  overflow: hidden;
}
.p-conceptMovie__inner {
  padding: 0 24px;
}
.p-conceptMovie .p-conceptMovie__title .c-title__mask {
  --mask: url(../img/svg/img-title-conceptMovie.svg);
}
.p-conceptMovie .p-conceptMovie__title-sp {
  display: none;
}
.p-conceptMovie .p-digestMovie__title .c-title__mask {
  --mask: url(../img/svg/img-title-digestMovie.svg);
}
.p-conceptMovie .p-digestMovie__title-sp {
  display: none;
}
.p-conceptMovie__video {
  max-width: 1024px;
  margin: 64px auto 0;
  position: relative;
  z-index: 2;
}
.p-conceptMovie__letter {
  bottom: auto !important;
  z-index: 0;
  top: -60px;
  position: relative !important;
  margin-bottom: 100px;
}
.p-conceptMovie__letter .p-news__letters {
  width: auto;
}

.p-news__letters.-archieve {
  margin-top: 80px;
}
.p-news__letters.-archieve .p-news__letter__track {
  margin-bottom: 8px;
  gap: 8px;
}
.p-news__letters.-archieve .p-news__letter__track.-second {
  margin-bottom: 120px;
  -webkit-animation: marquee-animation-reverse 36s linear infinite;
          animation: marquee-animation-reverse 36s linear infinite;
}
.p-news__letters.-archieve .p-news__letter__track__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.p-conceptMovie__archieve {
  top: auto !important;
  z-index: 1;
}

.p-event {
  /* Background */
  /* Container */
  /* Title */
  /* Content wrapper */
  /* Tabs */
  /* Tab content */
}
.p-event .background {
  background-color: #9BCD6C;
  padding: 80px 24px 120px;
  position: relative;
  overflow: hidden;
}
.p-event .background::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 720px;
  background: url("../img/event/img-event-bg-circle.svg");
  z-index: 1;
}
.p-event .background::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.p-event .container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-event .p-event__title {
  text-align: center;
  margin-bottom: 64px;
  display: block;
}
.p-event .p-event__title .c-title__mask {
  --mask: url(../img/svg/img-title-event.svg);
}
.p-event .p-event__title-sp {
  display: none;
}
.p-event .content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  gap: 24px;
  max-width: 1024px;
  width: 100%;
}
.p-event .content-tabArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-event .tabs {
  width: 262px;
  background-color: rgba(98, 151, 49, 0.94);
  border-radius: 2px;
  padding: 6px 0 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-event .tab {
  padding: 12px 4px 12px 26px;
  font-size: 11px;
  color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  letter-spacing: 0.02em;
  border-top: 1px solid #85C04F;
  border-left: 1px solid #85C04F;
  border-right: 1px solid #85C04F;
  width: 50%;
  height: 60px;
  line-height: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-event .tab[data-tab=tab7] {
  font-size: 10px;
  line-height: 13px;
  letter-spacing: 0;
}
.p-event .tab:nth-of-type(4) {
  border-bottom: 1px solid #85C04F;
}
.p-event .tab:nth-of-type(odd) {
  border-right: none;
}
.p-event .tab[data-tab=tab9] {
  border-bottom: 1px solid #85C04F;
}
.p-event .tab[data-tab=tab10] {
  border-right: 1px solid #85C04F;
  border-bottom: 1px solid #85C04F;
}
.p-event .tab:nth-of-type(3n) {
  border-right: none;
  border-bottom: 1px solid #85C04F;
}
.p-event .tabNone {
  padding: 12px 4px 12px 26px;
  font-size: 11px;
  color: white;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  letter-spacing: 0.02em;
  border: 1px solid #85C04F;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 60px;
  line-height: 16px;
  pointer-events: none;
}
.p-event .tabNone.-one {
  border-left: 1px solid #85C04F;
}
.p-event .tabNone.u-block-sp {
  display: none;
}
.p-event .tab.active {
  background: radial-gradient(85.66% 85.66% at 50% 0%, #629631 0%, #4D811C 100%);
  position: relative;
}
.p-event .tab.active::before {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: url("../img/event/img-event-dot.svg") no-repeat;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-event .tab-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: white;
  position: relative; /* ← これがないと .tab-pane の absolute が意図通りに効かない */
  overflow: hidden; /* 高さが崩れるのを防ぐ + チラつき軽減 */
}
.p-event .tab-pane {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
  transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}
.p-event .tab-pane.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  pointer-events: auto;
}
.p-event .content-inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 24px 12px;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 84px;
}
.p-event .content-inner p {
  font-size: 12px;
  letter-spacing: 0.08em;
}
.p-event .content-inner .indent {
  padding-left: 1.4em;
  text-indent: -0.4em;
}
.p-event .content-inner p.-margin {
  margin-top: 12px;
}
.p-event .content-inner .indent.-two {
  display: block;
  padding-left: 2.4em;
  text-indent: -0.4em;
}
.p-event .content-image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.p-event .content-image h3 {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 17px;
  line-height: 32px;
  font-weight: bold;
  background-color: #629731;
  color: #fff;
  padding: 8px 24px;
  letter-spacing: -0.03em;
}
.p-event .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-event .event-movie {
  width: 100%;
  height: auto;
  aspect-ratio: 738/364;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive */
/* Navigation Controls */
.tabNavigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin: 6px 0 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tabNav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #629731;
  color: white;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.tabNav-button:hover {
  opacity: 0.8;
}

.tabCounter {
  font-size: 18px;
  font-weight: 500;
  color: #629731;
}

@keyframes float3 {
  0% {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-12px);
            transform: translateX(-50%) translateY(-12px);
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
}
.p-highlights {
  overflow: hidden;
  padding: 160px 0 80px;
  /* Slide Container */
  /* Thumbnails */
  /* Navigation Controls */
}
.p-highlights__inner {
  max-width: 1072px;
  margin: 0 auto;
  padding: 0 24px;
}
.p-highlights__inner + .p-highlights__inner {
  margin-top: 64px;
}
.p-highlights__title__wrap {
  margin-bottom: 64px;
}
.p-highlights__title__wrap .p-highlights__title {
  display: block;
}
.p-highlights__title__wrap .p-highlights__title .c-title__mask {
  --mask: url(../img/svg/img-title-course.svg);
}
.p-highlights__title__wrap .p-highlights__title-sp {
  display: none;
}
.p-highlights .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  max-width: 1024px;
  margin: 0 auto;
}
.p-highlights .slide-container {
  position: relative;
  width: 100%;
  height: 364px;
  overflow: hidden;
  margin: 0 auto;
}
.p-highlights .slide-list {
  height: 100%;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
}
.p-highlights .slide-list::after {
  content: "";
  z-index: 4;
  width: 140px;
  height: 70px;
  position: absolute;
  top: 30px;
  left: 50%;
  display: block;
  background: url(../img/course/img-course-drone.webp);
  background-size: contain;
  -webkit-animation: float3 3s ease-in-out infinite;
          animation: float3 3s ease-in-out infinite;
}
.p-highlights .slide-list02::after{
  background: url(../img/course/img-course-drone02.webp);
  width: 210px;
  height: 90px;
  background-size: cover;
}
.p-highlights .slide-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 0;
}
.p-highlights .slide-list li.slide-up .img-box,
.p-highlights .slide-list li.slide-up .txt-box {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.p-highlights .slide-list li.slide-up .txt-box {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-highlights .slide-list li.next-slide {
  z-index: 1;
}
.p-highlights .slide-list li.slide-up {
  z-index: 2;
}
.p-highlights .img-box, .p-highlights .txt-box {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  min-height: 364px;
}
.p-highlights .img-box {
  overflow: hidden;
}
.p-highlights .img-box img {
  width: 100%;
  height: 100%;
  max-height: 364px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-highlights .txt-box {
  background: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 0 90px;
  position: relative;
}
.p-highlights .content {
  position: relative;
  z-index: 2;
}
.p-highlights .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 18px;
}
.p-highlights h3{
  font-size: 20px;
  margin-bottom: 18px;
}
.p-highlights .subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 42px;
}
.p-highlights .description {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
}
.p-highlights .decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  z-index: 1;
  max-width: 50%;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
.p-highlights .decoration::after {
  content: url("../img/course/img-course-bg.svg");
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 1;
}
.p-highlights .decoration.fade-in {
  opacity: 1;
}
.p-highlights .thumbnails {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin: 2rem 0 1rem;
}
.p-highlights .thumbnail {
  width: 160px;
  height: 100px;
  cursor: pointer;
  overflow: hidden;
  border: 5px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  border-radius: 3px;
}
.p-highlights .thumbnail.active {
  border-color: #59C99E;
}
.p-highlights .thumbnail.active img {
  border-radius: 0;
}
.p-highlights .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
  -webkit-box-shadow: 20px 64px 64px -20px #D6D6D6;
          box-shadow: 20px 64px 64px -20px #D6D6D6;
}
.p-highlights .navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 40px 0 0;
}
.p-highlights .nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #55A282;
  color: white;
  border: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.p-highlights .nav-button:hover {
  opacity: 0.8;
}
.p-highlights .counter {
  font-size: 18px;
  font-weight: 400;
  color: #2F813F;
}

.p-rules {
  overflow: hidden;
  /* Previous and Next content section styles */
}

.p-rules__inner {
  padding: 0 0 0;
  width: 100%;
  position: relative; /* デフォルトの位置 */
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(10%, white), color-stop(10%, #4CAF84), color-stop(90%, #4CAF84), color-stop(90%, white), to(white));
  background: linear-gradient(to bottom, white 0%, white 10%, #4CAF84 10%, #4CAF84 90%, white 90%, white 100%);
}

/* .p-rules__inner が固定表示されるためのクラス */
.p-rules__inner {
  /* No transition */
}

.p-rules .section {
  width: 100%;
  min-height: 604px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.p-rules .slide-section {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.p-rules .slide-section.active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

.p-rules .slide-section.active .image-content img {
  opacity: 0;
}

.p-rules .slide-section.active .image-content img.start-animation {
  opacity: 1;
  -webkit-animation: moving3d 20s linear 0s infinite !important;
  animation: moving3d 20s linear 0s infinite !important;
}

.p-rules .svg-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-rules .animated-svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

@-webkit-keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.p-rules .slider-inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 1;
  top: 0px;
  max-width: 962px;
  padding: 0 24px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.p-rules .text-content h2,
.p-rules .subtitle,
.p-rules .description,
.p-rules .image-content img {
  opacity: 0;
}

.p-rules .slide-section.active .text-content h2 {
  -webkit-animation: fadeIn 0.8s ease-out 0.2s forwards;
  animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.p-rules .slide-section.active .subtitle {
  -webkit-animation: fadeIn 0.8s ease-out 0.4s forwards;
  animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.p-rules .slide-section.active .description {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
  animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.p-rules .slide-section.active .image-content img {
  -webkit-animation: fadeIn 0.8s ease-out 0.8s forwards;
  animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.p-rules .slide-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(24px, 0.1085271318 * (100vw - 924px) + 24px, 80px);
}

.p-rules .text-content {
  color: #fff;
}

.p-rules .text-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 45px;
}

.p-rules .description {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  max-width: 444px;
  color: #fff;
}

.p-rules .image-content {
  max-width: 360px;
  margin-top: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-rules .image-content img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

@-webkit-keyframes moving3d {
  0% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
  25% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, 0deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, 0deg);
  }
  49.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  50% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  50.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  75% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 0deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 0deg);
  }
  99.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
  100% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
}
@keyframes moving3d {
  0% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
  25% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, 0deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, 0deg);
  }
  49.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  50% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  50.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 25deg);
  }
  75% {
    -webkit-transform: translateZ(-150px) rotate3d(0, 1, 0.5, 0deg);
    transform: translateZ(-150px) rotate3d(0, 1, 0.5, 0deg);
  }
  99.5% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
  100% {
    -webkit-transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
    transform: translateZ(-150px) rotate3d(0, -1, 0.5, -25deg);
  }
}
.p-rules .slider-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 4%;
  top: 42%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(59, 126, 99, 0.5);
  border-radius: 80px;
  width: 40px;
  border: 1px solid #fff;
  -webkit-box-shadow: 0px 12px 16px -4px #1D4333;
  box-shadow: 0px 12px 16px -4px #1D4333;
  z-index: 4;
}

.p-rules .nav-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 6px 0;
  position: relative;
  z-index: 2;
}

.p-rules .nav-item:hover,
.p-rules .nav-item.active {
  background-color: #70CF9B;
}

.p-rules .nav-connector {
  z-index: 1;
  color: #FFFFFF;
  margin: -6px 0px;
}

.p-rules .nav-number {
  font-size: 12px;
  font-weight: normal;
  color: white;
  font-family: "TT Norms";
}

.p-rules .prev-content,
.p-rules .next-content {
  width: 100%;
  height: 100vh;
  background-color: #3a8a64;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0;
}

.p-rules .prev-content {
  background-color: #2a7a54;
  /* Slightly darker for previous content */
}

.p-rules .prev-content-inner,
.p-rules .next-content-inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.p-rules .prev-content h2,
.p-rules .next-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.p-rules .prev-content p,
.p-rules .next-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.p-access {
  background: linear-gradient(67.87deg, #9BCD6C 31.99%, #B1D1BC 55.07%, #8FBFAE 94.11%);
}
.p-access__inner {
  padding: 32px 24px 120px;
}
.p-access__title__wrap {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 72px;
  color: #fff;
}
.p-access .p-access__title {
  display: block;
}
.p-access .p-access__title .c-title__mask {
  --mask: url(../img/svg/img-title-access.svg);
}
.p-access .p-access__title-sp {
  display: none;
}
.p-access__topLines {
  position: relative;
  top: -55px;
  will-change: transform;
}
.p-access__topLines .line {
  margin-bottom: 5px;
  width: 100%;
  background: linear-gradient(65.93deg, #9BCD6C 26.02%, #B1D1BC 53.51%, #8FBFAE 100%);
}
.p-access__topLines .line:nth-child(1) {
  height: 3px;
}
.p-access__topLines .line:nth-child(2) {
  height: 3px;
}
.p-access__topLines .line:nth-child(3) {
  height: 6px;
}
.p-access__topLines .line:nth-child(4) {
  height: 9px;
}
.p-access__topLines .line:nth-child(5) {
  height: 9px;
}
.p-access__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-access__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 400;
  gap: 42px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-access__info__inner {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-access__location {
  margin-bottom: 32px;
}
.p-access__location h3 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
  margin-bottom: 8px;
}
.p-access__location p {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 26px;
}
.p-access__train {
  margin-bottom: 40px;
  font-size: 12px;
  line-height: 22px;
}
.p-access__train:last-of-type {
  margin-bottom: 40px;
}
.p-access__train h3 {
  font-size: 12px;
  line-height: 22px;
}
.p-access__app {
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
.p-access__app h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
  color: #fff;
  line-height: 22px;
}
.p-access__app h3 + p {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 14px;
}
.p-access__app__intro {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
}
.p-access__app__requirements {
  font-size: 12px;
  line-height: 16px;
  margin-top: 16px;
  font-weight: 400;
}
.p-access__map {
  max-width: 530px;
  width: 100%;
}
.p-access__map img {
  width: 100%;
  height: auto;
  display: block;
}
.p-access__button a {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  padding: 12px 36px 12px 8px;
  color: #55A282;
  font-size: 12px;
  line-height: 22px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.p-access__button a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: url(../img/common/img-footer-arrow.svg);
  display: block;
  width: 22px;
  height: 22px;
}
.p-access__install {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 530px;
  width: 100%;
}
.p-access__download {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.p-access__qr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-access__qr .qr-code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-access__qr .qr-code img {
  width: 100%;
  max-width: 94px;
  height: auto;
}
.p-access__capter {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.p-access__smartphone img {
  max-width: 260px;
  width: 100%;
}
.p-access .u-block-button {
  display: none;
}

iframe.disable-scroll-catch {
  pointer-events: none;
}

.p-faq {
  padding: 160px 0;
  background-color: #F5F5F5;
}

.p-faq__title__wrap {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  padding-bottom: 80px;
}

.p-faq__title {
  display: block;
}
.p-faq__title .c-title__mask {
  --mask: url(../img/svg/img-title-faq.svg);
}

.p-faq__title-sp {
  display: none;
}
.p-faq__accordion li .accordion {
  background-color: #fff;
  color: #1D1D1D;
  border-top: 1px solid #CDCDCD;
  border-bottom: 1px solid #CDCDCD;
  font-size: 12px;
  line-height: 22px;
  padding: 21px 24px 21px 100px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-faq__accordion li .accordion::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 48px;
  content: url("../img/faq/img-q.svg");
}

.p-faq__accordion li .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 24px;
}

.p-faq__accordion li .accordion-icon {
  background-color: #55A282;
  width: 38px;
  height: 38px;
  display: block;
  border-radius: 50%;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

/* アイコンの＋と× */
.p-faq__accordion li .accordion-icon::before,
.p-faq__accordion li .accordion-icon::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-faq__accordion li .accordion-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* is-closeというクラスがついたら形状変化 */
.p-faq__accordion li .accordion.is-close .accordion-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.p-faq__accordion li .accordion.is-close {
  margin-bottom: 0;
}

.p-faq__accordion li .content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  margin-bottom: 24px;
  opacity: 0;
  border-bottom: 1px solid #CDCDCD;
  background-color: #E9E9E9;
  position: relative;
  width: 100%;
}

.p-faq__accordion li .content::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 48px;
  content: url("../img/faq/img-a.svg");
}

.p-faq__accordion li .content h5 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 24px;
}

.p-faq__accordion li .content ul.sub_list {
  margin-bottom: 32px;
}

.p-faq__accordion li .content ul.sub_list li {
  list-style: disc;
  margin-bottom: 8px;
  margin-left: 12px;
}

.p-faq__accordion li .content ul.sub_list li:last-child {
  margin-bottom: 0;
}

.p-faq__accordion li .content p {
  font-size: 12px;
}

.p-faq__accordion li p.margin {
  margin-bottom: 32px;
}

.p-faq__accordion li .content.is-open {
  padding: 21px 24px 21px 100px;
  opacity: 1;
  display: inline-table;
}

/* 高さの計算を実際の内容に基づいて行うためのクラス */
.p-faq__accordion li .content.calculating {
  max-height: none;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  padding: 21px 24px 21px 48px;
}

.p-news {
  padding: 252px 0 160px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
.p-news__top {
  position: absolute;
  top: 0;
}
.p-news__letters {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}
.p-news__letters.p-news__letters {
  margin-bottom: 16px;
}
.p-news__letter__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  white-space: nowrap;
  -webkit-animation: marquee-animation 36s linear infinite;
          animation: marquee-animation 36s linear infinite;
}
.p-news__letter__track.-second {
  -webkit-animation: marquee-animation-reverse 24s linear infinite;
          animation: marquee-animation-reverse 24s linear infinite;
}
.p-news__title {
  text-align: center;
  font-size: 32px;
  margin-top: 24px;
  white-space: nowrap;
}
.p-news__title::before {
  width: 2.2em;
}
.p-news .p-news__title {
  display: block;
}
.p-news .p-news__title .c-title__mask {
  --mask: url(../img/svg/img-title-news.svg);
}
.p-news .p-news__title-sp {
  display: none;
}
.p-news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.p-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
}
.p-news__list li {
  border-bottom: 1px solid #CDCDCD;
  padding-bottom: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 78px;
  font-size: 14px;
}
.p-news__list li time {
  white-space: nowrap;
}
.p-news__list li:first-of-type {
  padding-top: 32px;
  border-top: 1px solid #CDCDCD;
}

@-webkit-keyframes marquee-animation {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); /* 複製した分の幅に合わせて50%でOK */
  }
}

@keyframes marquee-animation {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); /* 複製した分の幅に合わせて50%でOK */
  }
}
@-webkit-keyframes marquee-animation-reverse {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes marquee-animation-reverse {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-schedule {
  padding: 0 0 54px;
  position: relative;
  /* アニメーション用のクラス */
  overflow-x: clip;
}
.p-schedule .p-schedule__title {
  display: block;
}
.p-schedule .p-schedule__title .c-title__mask {
  --mask: url(../img/svg/img-title-schedule.svg);
}
.p-schedule .p-use__title .c-title__mask {
  --mask: url(../img/svg/img-title-use.svg);
}
.p-schedule .p-schedule__title-sp {
  display: none;
}
.p-schedule .caution {
  font-size: 12px;
  margin: 20px 24px 0 20px;
}

.p-schedule .animation-background {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140%;
  opacity: 0.8;
  -webkit-transition: background-position 0s;
  transition: background-position 0s;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}
.p-schedule .animation-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-schedule .animate-lines {
  opacity: 1;
  -webkit-animation: fadeInFromLeft 3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation: fadeInFromLeft 3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@-webkit-keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
    clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.p-schedule .parallax-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  max-width: 1072px;
  margin: 0 auto;
  padding: 40px 24px 140px;
  overflow: visible;
}

/* 新しいクラスを追加 */
.p-schedule .parallax-container.is-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1072px;
  z-index: 150;
}

.p-schedule .left-content {
  width: 100%;
}

.p-schedule .circle {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  height: 200px;
  border-radius: 100vmax;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 6;
  max-width: 1324px;
  margin: 0 auto;
}

.p-schedule .logo {
  position: absolute;
  width: 180px;
  height: 85px;
  background: url("../img/schedule/img-drone.webp");
  background-size: cover;
  border-radius: 100vmax;
  background-position: center;
  margin-right: 8px;
  -webkit-animation: float1 3s ease-in-out infinite;
          animation: float1 3s ease-in-out infinite;
  will-change: transform;
  margin-top: 6px;
}

.p-schedule .text {
  position: absolute;
  width: 200px;
  height: 200px;
  font-weight: normal;
  color: #D2D2D2;
  font-size: 12px;
  /* Animation removed in favor of scroll-based rotation */
}

.p-schedule .text span {
  position: absolute;
  left: 50%;
  -webkit-transform-origin: 0 100px;
  transform-origin: 0 100px;
}

.p-schedule__container {
  width: 100%;
  padding-right: 0;
  margin-bottom: 2rem;
  border: 1px solid #DEDEDE;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
}

.p-schedule__header {
  background-color: #48997A;
  color: white;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  line-height: 28px;
}

.p-schedule__header h2 {
  font-family: "TT Norms";
  font-weight: normal;
  font-size: 18px;
}

.p-schedule .event h3{
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 400;
}

.p-schedule .event p{
  font-size: 12px;
}

.p-schedule .event-details {
  margin-left: 100px;
  background-color: #F6F6F6;
  min-height: 274px;
  display: grid;
  place-items: center;
  font-size: 13px;
  margin-top: 32px;
}

.p-schedule .event-details.-large {
  margin-left: 0;
  margin-top: 24px;
}

.p-schedule .event-full {
  font-size: 15px;
  font-weight: 400;
}

.p-schedule .event-full.-large {
  font-size: 24px;
  font-weight: 600;
}

.p-schedule .event {
  max-width: 400px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-right: 24px;
}
.p-schedule .event.-twice {
  max-width: 220px;
  margin-right: 70px;
}
.p-schedule .event.-twice p:nth-of-type(1) {
  padding: 32px 0 32px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}
.p-schedule .event.-twice p:nth-of-type(2) {
  padding: 32px 0 32px;
}

.p-schedule__hall{
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.p-schedule__hall__item{
  width: 400px;
  color: #48997A;
  border: 1px solid #48997A;
  text-align: center;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
}

.p-schedule__card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 64px 48px 64px;
}

.p-schedule__card .title {
  text-align: center;
  margin-bottom: 64px;
}

.p-schedule__day__section:last-child {
  margin-top: 80px;
}

.p-schedule .date {
  font-weight: normal;
  font-family: "TT Norms";
  font-weight: normal;
  line-height: 24px;
}

.p-schedule__item {
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  padding: 32px 20px;
}
.p-schedule__item.-last {
  margin-bottom: 64px;
  border-bottom: none;
}
.p-schedule__item.-last2 {
  border-bottom: none;
}
.p-schedule__item__img img {
  width: 100%;
}

.p-schedule__item.-large {
  margin-left: 0;
  padding: 48px 32px 24px;
  border-bottom: none;
}

.p-schedule__item.-twice {
  padding: 0;
}
.p-schedule__item.-twice time {
  padding-right: 32px;
}

.p-schedule__item.-noBorder {
  border-bottom: none;
}

.schedule-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  font-weight: normal;
}

.schedule-row.-large {
  padding: 56px 24px 24px;
}

.schedule-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.p-schedule .time {
  width: 130px;
  color: #1D1D1D;
  font-size: 15px;
  font-family: "TT Norms";
}
.p-schedule .time.-twice {
  width: 120px;
}
.p-schedule .time.-twice p {
  min-height: 113px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-schedule .time.-twice p:nth-of-type(1) {
  padding: 32px 0 32px 20px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}
.p-schedule .time.-twice p:nth-of-type(2) {
  padding: 32px 0 32px 20px;
}

.p-schedule .description {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #1D1D1D;
  font-size: 12px;
  line-height: 22px;
}

.p-schedule .description h3{
  font-size: 15px;
  margin-bottom: 18px;
  font-weight: 400;
}

.p-schedule .description p{
  font-size: 12px;
}

.p-schedule .center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.is-parallax {
  position: fixed !important;
  bottom: 32px;
  left: 0;
  right: 0;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-use{
  margin: 100px 0;
}
.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.p-use__slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  max-width: 100vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 0 8px;
  margin: 0;
  scroll-padding-inline: 0;
}
.p-use__slider__viewport:focus {
  outline: 2px solid #00978c;
  outline-offset: 2px;
}
.p-use__slider__viewport:focus:not(:focus-visible) {
  outline: none;
}
.p-use__slider__viewport::-webkit-scrollbar {
  display: none;
}
.p-use__slider__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px 6px;
  margin-top: 24px;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1072px;
  margin-left: auto;
  margin-right: auto;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 6px;
}
.p-use__slider__dot {
  -webkit-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.p-use__slider__dot .p-use__slider__dotVisual {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #00978c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.p-use__slider__dot.is-active .p-use__slider__dotVisual,
.p-use__slider__dot[aria-current="true"] .p-use__slider__dotVisual {
  background: #00978c;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.p-use__slider__dot:hover .p-use__slider__dotVisual,
.p-use__slider__dot:focus-visible .p-use__slider__dotVisual {
  background: rgba(0, 151, 140, 0.35);
}
.p-use__slider__dot.is-active:hover .p-use__slider__dotVisual,
.p-use__slider__dot.is-active:focus-visible .p-use__slider__dotVisual {
  background: #008274;
}
.p-schedule .p-use__title .c-title__mask{
  margin-bottom: 64px;
}
.p-use .p-use__image img{
  width: 100%;
}
.p-use .p-use__slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100vw;
  max-width: 100vw;
  margin: 48px 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.p-use .p-use__slider .p-use__list {
  /* 〜768px: 100vw-32px 前後の幅で、375px 幅でもタグ/見出しの中央揃いが取りやすいよう確保。769px〜は別メディアで 668px */
  --p-use-card-w: min(400px, max(300px, calc(100vw - 32px)));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 32px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  padding: 24px 0 0;
  /* 中央1枚＋左右はみ出し: 各カードの中心がビューポート中央に来る用の余白 */
  padding-left: max(8px, calc(50vw - var(--p-use-card-w) / 2));
  padding-right: max(8px, calc(50vw - var(--p-use-card-w) / 2));
}
.p-use .p-use__slider .p-use__list li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 var(--p-use-card-w);
  -ms-flex: 0 0 var(--p-use-card-w);
  flex: 0 0 var(--p-use-card-w);
  width: var(--p-use-card-w);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: min(400px, 100%);
  min-width: 0;
  border: 1px solid #00978C;
  padding: 32px 24px 18px;
  background-color: rgba(255, 255, 255, 0.8);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
@media only screen and (min-width: 769px) {
  .p-use .p-use__slider .p-use__list {
    --p-use-card-w: 668px;
    /* 668/2=334。1枚目センター時、左に7枚目・右に2枚目が隣接して見える */
    padding-left: max(8px, calc(50vw - 334px));
    padding-right: max(8px, calc(50vw - 334px));
  }
  .p-use .p-use__slider .p-use__list li {
    max-width: 600px;
    min-height: 170px;
  }
}
.p-use .p-use__slider .p-use__list li h3{
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: url(../img/use/titile_bg.svg) no-repeat center center;
  background-size: cover;
  width: min(270px, 100%);
  max-width: 100%;
  height: 24px;
  line-height: 24px;
  margin: -44px auto 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.p-use .p-use__slider .p-use__list li h4{
  font-size: 20px;
  font-weight: bold;
  margin: 18px 0;
}
@media only screen and (max-width: 769px) {
  .p-use .p-use__slider .p-use__list li h4{
    font-size: 18px;
  }
}
.p-use__list__description{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  height: 170px;
}
.p-use__list__description.-column{
  flex-direction: column;
  gap: 48px;
}
.p-use__list__description p{
  font-weight: 400;
  font-size: 12px;
}
.p-use__title-sp{
  display: none;
}
@media only screen and (min-width: 641px) {
  a:hover {
    opacity: 0.8;
  }
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (max-width: 768px) {
  .u-br-sp {
    display: block;
  }
  .u-block-pc {
    display: none;
  }
  .u-block-sp {
    display: block;
  }
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .inner-block {
    padding: 0 24px;
    width: auto;
  }
  #wrapper {
    min-width: 360px;
    position: relative;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
  .c-pagetop {
    right: 10px;
  }
  .c-title {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-title__mask.-event {
    --mask: url(../img/svg/img-title-event-sp.svg);
  }
  .p-conceptMovie {
    padding: 64px 0 344px;
    bottom: 0;
  }
  .p-conceptMovie__video {
    margin: 40px auto 0;
  }
  .p-conceptMovie__video iframe {
    aspect-ratio: 16/9;
    height: 100% !important;
    width: 100%;
  }
  .p-concept__img__drone2{
    bottom: -18px;
    left: 39.39%;
  }
  .p-concept__img__drone2 img{
    min-width: 140px;
  }
  .p-access__inner {
    padding: 44px 24px 120px;
  }
  .p-access__title__wrap {
    font-size: 24px;
    padding-bottom: 56px;
  }
  .p-access__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-access__train:last-of-type {
    margin-bottom: 0;
  }
  .p-access__app {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-access__download {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-access__qr {
    gap: 24px;
    width: 152px;
  }
  .p-access__smartphone img {
    max-width: 320px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  iframe {
    height: 240px;
  }
  .p-faq {
    padding: 72px 0 108px;
  }
  .p-faq__title__wrap {
    padding-bottom: 56px;
  }
  .p-faq__accordion li .accordion {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 36px 16px 36px 50px;
  }
  .p-faq__accordion li .accordion::before {
    left: 16px;
    top: 42px;
    -webkit-transform: initial;
            transform: initial;
  }
  .p-faq__accordion li .title {
    padding-right: 16px;
  }
  .p-faq__accordion li .accordion-icon {
    width: 30px;
    height: 30px;
  }
  .p-faq__accordion li .content::before {
    left: 16px;
    top: 40px;
    -webkit-transform: initial;
            transform: initial;
  }
  .p-faq__accordion li .content.is-open {
    padding: 36px 16px 36px 50px;
  }
  .p-use__title{
    display: none;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding: 0 64px 0 20px;
  }
  .l-header__logo {
    padding: 13px 18px 13px 18px;
  }
  .l-header__logo img {
    max-width: 74px;
  }
  .p-concept .p-concept__title {
    display: none;
  }
  .p-concept .p-concept__title-sp {
    display: block;
  }
  .p-concept .p-concept__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-concept-sp.svg);
  }
  .p-conceptMovie .p-conceptMovie__title {
    display: none;
  }
  .p-conceptMovie .p-conceptMovie__title-sp {
    display: block;
  }
  .p-conceptMovie .p-conceptMovie__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-conceptMovie-sp.svg);
  }
  .p-conceptMovie .p-digestMovie__title {
    display: none;
  }
  .p-conceptMovie .p-digestMovie__title-sp {
    display: block;
  }
  .p-conceptMovie .p-digestMovie__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-digestMovie-sp.svg);
  }
  .p-news__letters.-archieve {
    margin-top: 40px;
  }
  .p-news__letters.-archieve img {
    width: 160px !important;
    height: auto !important;
  }
  .p-news__letters.-archieve .p-news__letter__track.-second {
    margin-bottom: 64px;
  }
  .p-event .background::before {
    top: 0;
    -webkit-transform: initial;
            transform: initial;
    right: 0;
    left: initial;
  }
  .p-event .p-event__title {
    display: none;
  }
  .p-event .p-event__title-sp {
    display: block;
    text-align: left;
    margin: 0 auto 40px;
    max-width: 480px;
    width: 100%;
  }
  .p-event .p-event__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-event-sp.svg);
  }
  .p-event .content-wrapper {
    gap: 0;
  }
  .p-event .tabs {
    width: initial;
    max-width: 480px;
  }
  .p-event .tab {
    padding: 12px 4px 12px 16px;
    font-size: 10px;
  }
  .p-event .tab:nth-of-type(2) {
    border-right: none;
  }
  .p-event .tab:nth-of-type(4) {
    border-right: none;
    border-bottom: 1px solid #85C04F;
  }
  .p-event .tab:nth-of-type(8) {
    border-right: none;
  }
  .p-event .tab:nth-of-type(10) {
    border-bottom: 1px solid #85C04F;
    border-right: none;
  }
  .p-event .tab {
    width: 33.3333333333%;
  }
  .p-event .tabNone {
    width: 33.3333333333%;
    border-left: 1px solid #85C04F;
    border-right: none;
    border-bottom: none;
  }
  .p-event .tab:nth-of-type(3n){
    border-bottom: 1px solid #85C04F;
  }
  .p-event .tabNone.u-block-sp {
    display: block;
  }
  .p-event .tab.active::before {
    left: 4px;
    width: 10px;
    height: 10px;
    background: url("../img/event/img-event-dot-sp.svg") no-repeat;
  }
  .p-event .content-inner {
    max-width: initial;
    padding: 0 !important;
    height: 100%;
  }
  .p-event .content-inner h3 {
    background-color: #629731;
    color: #fff;
    padding: 4px 16px !important;
    height: 100%;
    min-height: inherit;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 124px;
        -ms-flex: 0 0 124px;
            flex: 0 0 124px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    height: auto;
  }
  .p-event .content-inner p {
    font-size: 12px;
    line-height: 16px;
    padding: 8px 12px;
    height: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .p-event .content-image h3 {
    font-size: 13px;
    line-height: 21px;
    padding: 8px;
  }
  .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 480px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
  .tabs {
    width: 100%;
  }
  .tab-pane.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-image {
    width: 100%;
  }
  .tabNavigation {
    margin: 24px 0 0;
  }
  .p-event__tabSp {
    width: 100%;
    max-width: 480px;
  }
  .p-highlights {
    padding: 100px 0 0;
  }
  .p-highlights__inner {
    padding: 0;
  }
  .p-highlights__title__wrap {
    margin-bottom: 48px;
  }
  .p-highlights__title__wrap .p-highlights__title {
    display: none;
  }
  .p-highlights__title__wrap .p-highlights__title-sp {
    display: block;
  }
  .p-highlights__title__wrap .p-highlights__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-course-sp.svg);
  }
  .p-highlights .slide-container {
    min-height: 524px;
  }
  .p-highlights .slide-list::after {
    top: 50%;
  }
  .p-highlights .slide-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .p-highlights .slide-list li.slide-up .txt-box {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .p-highlights .img-box, .p-highlights .txt-box {
    width: 100%;
    min-height: auto;
    margin-top: 0;
  }
  .p-highlights .img-box {
    z-index: 2;
    position: relative;
  }
  .p-highlights .img-box img {
    max-height: 290px;
  }
  .p-highlights .txt-box {
    padding: 64px 24px 40px !important;
    max-width: 530px;
    margin: 0 auto;
    z-index: 1;
  }
  .p-highlights .title {
    font-size: 24px;
  }
  .p-highlights .subtitle {
    font-size: 14px;
    margin-bottom: 16px;
    height: 96px;
  }
  .p-highlights .description {
    font-size: 10px;
    line-height: 20px;
  }
  .p-highlights .decoration::after {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    bottom: 0px;
  }
  .p-highlights .thumbnailsArea {
    overflow-x: auto;
  }
  .p-highlights .thumbnails {
    background-color: transparent;
    margin: 0 auto;
    gap: 8px;
  }
  .p-highlights .thumbnail {
    background-color: transparent;
    width: 140px;
    height: 80px;
  }
  .p-rules .text-content h2 {
    font-size: 24px;
    line-height: 36px;
  }
  .p-access .p-access__title {
    display: none;
  }
  .p-access .p-access__title-sp {
    display: block;
  }
  .p-access .p-access__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-access-sp.svg);
  }
  .p-access__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  .p-access__map {
    max-width: 530px !important;
  }
  .p-access__install {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 530px !important;
    gap: 24px;
  }
  .p-faq__title {
    display: none;
  }
  .p-faq__title-sp {
    display: block;
  }
  .p-faq__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-faq-sp.svg);
  }
  .p-news {
    padding: 170px 0 120px;
  }
  .p-news__letters.p-news__letters {
    margin-bottom: 0;
  }
  .p-news__letter__track img {
    width: 1302px;
    height: auto;
  }
  .p-news__letter__track.-second img {
    width: 1442px;
    height: auto;
  }
  .p-news__title {
    margin-top: 64px;
  }
  .p-news .p-news__title {
    display: none;
  }
  .p-news .p-news__title-sp {
    display: block;
  }
  .p-news .p-news__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-news-sp.svg);
  }
  .p-news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 64px;
  }
  .p-news__list li {
    font-size: 11px;
    gap: 32px;
  }
  .p-news__list li time {
    font-weight: bold;
  }
  .p-schedule {
    margin-top: 80px;
    padding: 0 0 80px;
  }
  .p-schedule .p-schedule__title {
    display: none;
  }
  .p-schedule .p-schedule__title-sp {
    display: block;
  }
  .p-schedule .p-schedule__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-schedule-sp.svg);
  }
  .p-use__title-sp{
    display: block;
    margin-bottom: 48px;
  }
  .p-schedule .center{
    margin-bottom: 32px;
  }
  .p-use__title-sp .c-title__mask {
    --mask: url(../img/svg/img-title-use-sp.svg);
  }
  .p-schedule .animation-background {
    top: 120px !important;
  }
  .p-schedule .event {
    margin-right: 0;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    display: flex;
    gap: 24px;
  }
  .schedule-row p{
    margin-top: 8px;
  }
  .p-schedule .event.-twice {
    margin-right: 0;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .p-schedule .event.-twice p:nth-of-type(1) {
    border-bottom: 0;
    padding: 28px 0 10px;
  }
  .p-schedule .event.-twice p:nth-of-type(2) {
    padding: 0px 0 32px;
  }
  .p-schedule__item__img {
    padding: 24px 20px 0;
  }
  .p-schedule__item.-twice {
    padding: 0 20px 32px;
  }
  .p-schedule__item.-twice .schedule-row {
    gap: 0 16px;
  }
  .p-schedule .time.-twice {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .p-schedule .time.-twice p {
    min-height: 96px;
  }
  .p-schedule .time.-twice p:nth-of-type(1) {
    border-bottom: 0;
    padding: 32px 0 16px;
  }
  .p-schedule .time.-twice p:nth-of-type(2) {
    padding: 16px 0 32px;
  }
  .p-schedule .parallax-container {
    max-width: 530px;
  }
  .p-schedule .event-details {
    margin-left: 0;
    margin-top: 16px;
  }
  .p-schedule .event-details.-large {
    margin-top: 16px;
  }
  .p-schedule .event-full.-large {
    text-align: center;
    font-size: 18px;
  }
  .p-schedule__card {
    padding: 120px 12px 92px;
  }
  .p-schedule__card .title {
    margin-bottom: 40px;
  }
  .p-schedule .date {
    font-size: 16px;
  }
  .p-schedule__item.-large {
    padding: 32px 0 0;
  }
  .schedule-row {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px 16px;
  }
  .p-schedule .time {
    width: auto;
  }
  .p-schedule .description {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .p-use__list__description{
    flex-direction: column;
    height: auto;
  }
}
@media (min-width: 924px) {
  .l-header .pc-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background-color: transparent;
  }
  .l-header .pc-menu.is-scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
    padding: 38px 64px 26px 40px;
    top: 0;
    position: fixed;
    right: 0;
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    z-index: 1000;
    -webkit-box-shadow: 0px 1px 14px 0px rgba(213, 232, 213, 0.8);
            box-shadow: 0px 1px 14px 0px rgba(213, 232, 213, 0.8);
  }
  .l-header .pc-menu.is-scrolled a:hover {
    color: #55A282;
  }
  .l-header .mobile-menu-button {
    display: none;
  }
  .l-header .mobile-menu {
    display: none;
  }
}
@media (max-width: 1280px) {
  .l-header .pc-menu li {
    margin-left: 32px;
  }
}
@media (max-width: 1024px) {
  .l-header .pc-menu li {
    margin-left: 16px;
  }
  .p-schedule .animation-background {
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 80px 0 40px;
  }
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
  }
  .l-footer__top__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
  }
  .l-footer__logo {
    max-width: 126px;
  }
  .l-footer__logo {
    margin-inline: auto;
  }
  .l-footer__link__text {
    text-align: center;
    margin-bottom: 16px;
  }
  .l-footer__link__button a {
    font-size: 12px;
  }
  .l-footer__bottom {
    padding: 80px 0 0;
  }
  .l-footer__menu {
    gap: 24px;
    font-size: 14px;
    max-width: 332px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-footer__menu li {
    max-width: 154px;
  }
  .l-footer .polycy__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .openning-title-wrapper {
    padding-left: 0;
  }
  .opening-title.-top {
    font-size: 18px;
    letter-spacing: -2px;
    width: 160px;
    margin-top: 0;
  }
  .opening-title.-middle {
    font-size: 48px;
    width: 270px;
    margin-top: -16px;
  }
  .opening-title.-middle span:nth-of-type(6) {
    padding-left: 0 !important;
  }
  .opening-title.-under {
    font-size: 28px;
    margin-top: -16px;
    width: 270px;
    letter-spacing: 3px;
    margin-left: 6px;
  }
  .p-mv-catch .animationTextInner {
    letter-spacing: 2px !important;
  }
  .p-mv-catch .animationTextInner.-second {
    letter-spacing: 7px !important;
    margin-left: 0;
  }
  .p-openning__name {
    font-size: 20px;
  }
  .p-mv-catch02 {
    font-size: 58px;
    line-height: 56px;
  }
  .p-openning__date {
    margin-top: 16px;
  }
  .p-openning__date img {
    max-width: 274px;
    width: 100%;
    height: auto;
  }
  .p-openning__place {
    text-align: center;
    margin-top: 16px;
  }
  .p-openning__place img {
    max-width: 274px;
    width: 100%;
    height: auto;
  }
  .p-mv-catch02 .p-mv-catch-mark_and {
    font-size: 24px;
  }
  .p-mv-catch03 {
    font-size: 28px;
    line-height: 32px;
  }
  .p-mv-catch03 span {
    margin-left: -6px;
  }
  .p-mainvisual {
    height: calc(var(--vh, 1vh) * 100);
    height: 100svh;
  }
  .p-mainvisual__drone img {
    width: 234px;
    height: auto;
  }
  .p-concept__textArea {
    gap: 40px;
  }
  .p-concept__lead {
    font-size: 16px;
    line-height: 20px;
  }
  .p-concept__text {
    font-size: 11px;
    line-height: 22px;
  }
  .p-concept__img {
    -webkit-box-shadow: 6px 20px 20px -6px #ACACAC;
            box-shadow: 6px 20px 20px -6px #ACACAC;
  }
  .p-concept__img:nth-of-type(1) {
    top: 159px;
    left: 17.222%;
  }
  .p-concept__img:nth-of-type(1) img {
    min-width: 104px;
  }
  .p-concept__img:nth-of-type(2) {
    top: 196px;
  }
  .p-concept__img:nth-of-type(2) img {
    min-width: 94px;
  }
  .p-concept__img:nth-of-type(3) {
    top: 50% !important;
    left: -2%;
  }
  .p-concept__img:nth-of-type(3) img {
    min-width: 143px;
  }
  .p-concept__img:nth-of-type(5) {
    right: 1%;
  }
  .p-concept__img:nth-of-type(5) {
    top: 61%;
    bottom: auto;
  }
  .p-concept__img:nth-of-type(5) img {
    min-width: 63px;
    max-width: 75px;
    width: initial;
  }
  .p-concept__img:nth-of-type(6) {
    left: 5%;
    bottom: 84px;
  }
  .p-concept__img:nth-of-type(6) img {
    min-width: 66px;
  }
  .p-concept__img:nth-of-type(7) {
    bottom: 56px;
  }
  .p-concept__img:nth-of-type(7) img {
    min-width: 70px;
  }
  .p-concept__img__drone {
    top: 42% !important;
    right: -48px !important;
  }
  .p-concept__img__drone img {
    max-width: 96px;
    min-width: initial;
    width: initial;
  }
  .p-concept__bg .img-top {
    top: 170px;
  }
  .p-concept__bg .img-bottom {
    bottom: 80px;
  }
  .p-concept__bgChange {
    padding: 280px 0 174px;
    max-width: 418px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .l-footer__menu {
    gap: 16px;
  }
  .p-mainvisual__drone {
    left: 0;
  }
  .p-concept__img__drone {
    top: 32%;
    right: 2.39%;
  }
}
@media screen and (max-aspect-ratio: 0.85/1) and (min-aspect-ratio: 0.65/1) {
  .p-mainvisual .video-bg {
    display: none;
  }
  .p-mainvisual .video-bg.-tablet {
    display: block;
  }
}
@media screen and (max-aspect-ratio: 0.65/1) {
  .p-mainvisual .video-bg.-sp {
    display: block;
    height: 100svh;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@media (min-width: 1440px) {
  .p-concept__bottom__gradient {
    top: -80px;
    height: 200px;
  }
}
@media (min-width: 1640px) {
  .p-concept__bottom__gradient {
    top: -110px;
    height: 240px;
  }
}
@media (max-width: 480px) {
  .p-event .background::before {
    right: -35%;
  }
}
@media (max-width: 390px) {
  .p-event .background::before {
    right: -43%;
  }
}
@media (max-width: 924px) {
  .p-event .tab-content {
    width: 100%;
    max-width: 480px;
  }
  .p-event .content-inner {
    padding: 16px 24px;
  }
  .p-rules__inner {
    background: #55A282;
    padding: 88px 0 40px;
  }
  .p-rules .section {
    height: auto;
  }
  .p-rules .svg-background {
    bottom: 0;
    -webkit-transform: translateY(40%) !important;
    transform: translateY(40%) !important;
    top: auto !important;
  }
  .p-rules .slider-inner {
    top: auto;
  }
  .p-rules .text-content h1 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 0;
  }
  .p-rules .description {
    font-size: 11px;
    line-height: 21px;
    margin-bottom: 0;
    white-space: normal;
  }
  .p-rules .image-content {
    max-width: initial;
  }
  .p-rules .slider-nav {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 100;
  }
  .p-rules .slider-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 24px 0;
  }
  .p-rules .slide-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 440px;
    margin: 0 auto;
  }
  .p-rules .text-content,
  .p-rules .image-content {
    width: 100%;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .p-rules .image-content {
    margin-top: 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .p-rules .slider-nav {
    bottom: 0;
  }
  .p-rules .nav-item {
    margin: 0 15px;
  }
  .p-access__map {
    max-width: 480px;
  }
  .p-access__install {
    max-width: 480px;
  }
  .p-schedule .time {
    width: 100%;
  }
  .schedule-row {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-schedule .parallax-container {
    padding: 20px 24px 40px !important;
  }
}

@media (max-width: 768px) {
  .p-schedule .time {
    width: auto;
  }
  .p-schedule__hall__item{
    width: 100%;
  }
  .p-schedule .event h3{
    margin-bottom: 0;
  }
}
@media (max-width: 530px) {
  .p-highlights .slide-container {
    min-height: 600px;
  }
  .p-highlights .slide-list::after {
    top: 30%;
  }
  .p-highlights .img-box img {
    height: 210px;
    max-height: initial;
  }
  .p-highlights .subtitle {
    height: 96px;
  }
  .p-schedule .circle {
    max-width: 80%;
  }
}
@media (max-width: 1240px) {
  .p-rules .svg-background {
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-schedule .circle {
    z-index: 0;
    margin: 0 auto;
  }
  .p-schedule .parallax-container {
    padding: 0 24px 140px 24px;
  }
}
@media (max-width: 1140px) {
  .p-rules .svg-background {
    top: 64%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .p-schedule .parallax-container {
    padding: 20px 24px 140px 24px;
  }
}
@media (max-width: 924px) and (max-width: 924px) {
  .p-rules .slider-nav {
    bottom: 40px;
    width: 274px;
    height: 70px;
  }
  .p-rules .slider-nav span {
    font-size: 21px;
  }
  .p-rules .nav-item {
    width: 54px;
    height: 54px;
    white-space: nowrap;
  }
}
@media (max-width: 924px) and (max-width: 480px) {
  .p-rules .slider-nav {
    bottom: 80px;
  }
}
@media (max-width: 924px) and (max-width: 480px) and (max-width: 480px) {
  .p-rules__inner {
    padding: 88px 0 80px;
  }
}
@media (max-width: 840px) {
  .p-access__map {
    max-width: 440px;
  }
  .p-access__button a {
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 12px 36px 12px 24px;
    line-height: 18px;
    font-size: 14px;
  }
  .p-access__install {
    max-width: 440px;
  }
  .p-access .u-block-button {
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 12px 36px 12px 16px;
  }
}
@media (max-width: 420px) {
  .p-schedule .animation-background {
    top: 180px !important;
  }
}
@media (max-width: 410px) {
  .p-schedule .time.-twice p {
    min-height: initial;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .schedule-row {
    gap: 0 16px;
  }
}