:root {
  --green: #70f1d2;
  --gray: #c0c0c0;
  --clamp128: clamp(100px, 10vw, 128px);
  --clamp96: clamp(82px, 8vw, 96px);
  --clamp72: clamp(68px, 6vw, 72px);
  --clamp64: clamp(56px, 5.3vw, 64px);
  --clamp48: clamp(40px, 4vw, 48px);
  --clamp36: clamp(28px, 3vw, 36px);
  --clamp32: clamp(28px, 2.6vw, 32px);
  --clamp28: clamp(24px, 2.3vw, 28px);
  --clamp24: clamp(20px, 2vw, 24px);
  --clamp18: clamp(16px, 1.5vw, 18px);
  --clamp16: clamp(15px, 1.4vw, 16px);
}

:target {
  scroll-margin-top: 200px;
}

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

img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

body {
  font-size: 18px;
  line-height: 160%;
  font-family: "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  background-image: url(../images/bg.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #000;
  color: var(--gray);
  scroll-behavior: smooth;
}

@media (max-width: 750px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}

.sp {
  display: none;
}

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

.pc {
  display: block;
}

@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

.wbr {
  display: inline-block;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.small {
  font-size: 80%;
}
.large {
  font-size: 120%;
}
.bolds {
  font-weight: 700;
}
.container {
  width: 100%;
  padding-top: 100px;
}

@media (max-width: 750px) {
  .container {
    padding-top: 140px;
  }
}

.noMgnT {
  margin-top: 0 !important;
}

.noMgnT_pc {
  /* 751- */
}
@media all and (min-width: 751px) {
  .noMgnT_pc {
    margin-top: 0 !important;
  }
}

.noMgnB {
  margin-bottom: 0 !important;
}

.noPdgT {
  padding-top: 0 !important;
}

.noPdgB {
  padding-bottom: 0 !important;
}

.inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 24px;
}

@media (max-width: 750px) {
  .inner {
    padding: 16px 24px;
  }
}

main a,
main a:visited {
  color: var(--green);
  text-decoration: none;
}

.header {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 888;
  background: #70f1d2;
}

.header::-webkit-scrollbar {
  display: none;
}

.menu {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  flex-wrap: nowrap;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  flex-grow: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 18px;
  max-width: 1320px;
  margin: auto;
  background: #70f1d2;
  width: 100vw;
}

@media (max-width: 750px) {
  .menu {
    padding: 70px 0 0;
    height: 140px;
    margin: 0;
    width: 100vw;
  }
}

.menu li {
  flex: 0 0 130px;
  padding: 0 16px;
}

.menu li a {
  display: flex;
  height: 70px;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  transition: filter 0.3s ease-in-out;
  box-sizing: content-box;
}

@media (max-width: 750px) {
  .menu li a {
    height: 50px;
  }
}

.shake:not(.disabled):hover {
  animation: shake 0.8s ease;
}

.menu span.tate_line {
  display: block;
  height: 70px;
  border-right: #000 1px solid;
}

@media (max-width: 750px) {
  .menu span.tate_line {
    height: 50px;
  }
}

.menuitem.active a:hover {
  animation: none;
}

.menuitem.logo_top a:hover {
  animation: none;
  opacity: 0.6;
}

@keyframes shake {
  0% {
    transform: rotate(0);
  }

  16% {
    transform: rotate(12deg);
  }

  32% {
    transform: rotate(-10deg);
  }

  48% {
    transform: rotate(8deg);
  }

  64% {
    transform: rotate(-6deg);
  }

  80% {
    transform: rotate(4deg);
  }

  96% {
    transform: rotate(-2deg);
  }

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

.sns a,
#enbtn a {
  border: none;
}

.menuitem.active {
  background: #000;
  color: white;
  display: flex;
  height: 100%;
  align-items: center;
}

.menuitem.active a {
  color: white;
}

.menuitem.active img {
  filter: invert(100%);
}

.menu li a.disabled {
  color: rgba(0, 0, 0, 0.4);
  cursor: initial;
  pointer-events: none;
}

.menu li a.disabled img {
  opacity: 0.4;
}

.menuitem a img {
  object-fit: contain;
  height: 40px;
  width: auto;
  margin-bottom: 6px;
}

@media (max-width: 750px) {
  .menuitem a img {
    margin-bottom: 4px;
    height: 32px;
  }
}

.menuitem.logo_top img {
  margin-bottom: 0;
}

.menu li.sns {
  display: flex;
  flex: 1 1 90px;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-left: 30px;
}

@media (max-width: 750px) {
  .menu li.sns {
    position: absolute;
    top: 10px;
    right: 20px;
  }
}

.menu li.sns a {
  flex: 0 0 32px;
}

.menu li.sns a img {
  object-fit: contain;
  height: 22px;
  width: auto;
}

.menu li.logo_top {
  flex: 1;
}

@media (max-width: 750px) {
  .menu li.logo_top {
    display: flex;
    width: 100%;
    position: absolute;
    height: 70px;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    border-bottom: 1px solid #000;
  }
}

.menu li.logo_top a {
  padding: 15px 0;
  border: none;
}

@media (max-width: 750px) {
  .menu li.logo_top a {
    padding: 0;
    border: none;
  }
}

.menu li.logo_top a img {
  object-fit: contain;
  height: 70px;
  width: auto;
  min-width: 200px;
}

@media (max-width: 750px) {
  .menu li.logo_top a img {
    height: 50px;
  }
}

.nav-left,
.nav-right {
  position: absolute;
  left: auto;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  appearance: none;
  background: transparent;
  border: 0;
}

@media (max-width: 750px) {
  .nav-left,
  .nav-right {
    top: 72px;
  }
}

.nav-left img,
.nav-right img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

.nav-buttons {
  list-style: none;
  display: flex;
  gap: 32px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  justify-content: flex-end;
}

@media (max-width: 460px) {
  .nav-buttons {
    gap: 24px;
    bottom: 10px;
  }
}

.nav-buttons .icon-close {
  height: 30px;
  width: 30px;
  position: absolute;
  right: -15px;
  top: -10px;
}

.nav-ticket {
  position: relative;
  appearance: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 120%;
  font-weight: 600;
  transition: 0.3s;
  background: #70f1d2;
  height: 100px;
  margin: auto;
  padding: 15px;
}

@media (max-width: 750px) {
  .nav-ticket {
    font-size: 15px;
    line-height: 110%;
    height: 92px;
  }
}

@media (max-width: 460px) {
  .nav-ticket {
    height: 80px;
    font-size: 12px;
    padding: 8px;
  }
}

@media (max-width: 375px) {
  .nav-ticket {
    font-size: 12px;
    height: 70px;
    padding: 6px;
  }
}

.nav-ticket:hover {
  transform: translateY(-5px);
}

.nav-ticket a {
  text-decoration: none;
  color: #000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  height: 100%;
}

.nav-ticket .icon-ticket {
  height: auto;
  width: 62px;
  margin-right: 8px;
}

@media (max-width: 460px) {
  .nav-ticket .icon-ticket {
    width: 40px;
  }
}

.nav-ticket.hide {
  display: none;
}

.nav-video {
  width: fit-content;
  display: flex;
  align-items: center;
  appearance: none;
  border: 0;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  background: #000;
  position: relative;
  height: 100px;
  padding: 15px;
}

@media (max-width: 750px) {
  .nav-video {
    font-size: 15px;
    height: 92px;
  }
}

@media (max-width: 460px) {
  .nav-video {
    font-size: 13px;
    height: 80px;
    padding: 8px;
  }
}

@media (max-width: 375px) {
  .nav-video {
    padding: 6px;
    font-size: 12px;
    height: 70px;
  }
}

.nav-video:hover {
  transform: translateY(-5px);
}

.nav-video a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white !important;
  white-space: nowrap;
}

.nav-video .icon-video {
  height: auto;
  width: 96px;
  margin-right: 8px;
  aspect-ratio: 48 / 35;
}

@media (max-width: 460px) {
  .nav-video .icon-video {
    width: 64px;
  }
}

.nav-video.hide {
  display: none;
}

.bg {
  background: rgba(0, 0, 0, 0.5);
}

.page_title {
  font-size: 27px;
  line-height: 160%;
  color: var(--green);
  text-align: center;
  font-style: normal;
  font-weight: 700;
  margin: 64px auto;
}

@media (max-width: 750px) {
  .page_title {
    font-size: 25px;
  }
}

@media (max-width: 460px) {
  .page_title {
    font-size: 21px;
    margin: 32px auto;
  }
}

.page_desc {
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.sec_title {
  border-bottom: 1px solid var(--green);
  padding: 12px 0;
  display: block;
  margin-bottom: 32px;
  line-height: 140%;
  color: #fff;
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 750px) {
  .sec_title {
    border-bottom: 1px solid var(--green);
    padding: 12px 0;
    display: block;
    margin-bottom: 32px;
    line-height: 140%;
    color: #fff;
    font-size: 25px;
    line-height: 40px;
  }
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
}

.tab-button {
  padding: 30px 10px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  background: #c0c0c0;
  flex-basis: 50%;
  appearance: none;
  border: 0;
}

.tab-button.active {
  background: var(--green);
  color: #000;
}

.tab-button:disabled {
  cursor: initial;
  opacity: 0.7;
}

.tab-content {
  display: none;
  padding: 32px;
}

@media (max-width: 750px) {
  .tab-content {
    padding: 16px;
  }
}

.tab-content.active {
  display: block;
}

.yohaku {
  padding: 32px;
}

@media (max-width: 750px) {
  .yohaku {
    padding: 16px;
  }
}

a.scroll_to_top {
  border: 1px solid var(--green);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 999px;
  width: 125px;
  height: 125px;
  display: grid;
  place-content: center;
  margin: 64px auto;
  color: white;
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
  font-style: normal;
  font-weight: 700;
  transition: 0.8s;
}

a.scroll_to_top img {
  width: 16px;
  margin: 0 auto 12px auto;
}

a.scroll_to_top:hover {
  background-color: var(--green);
  color: #000;
}

a.scroll_to_top:hover img {
  filter: invert(1);
}

.gotosite {
  padding: 14px 48px;
  border: 1px solid var(--green);
  display: flex;
  place-content: center;
  margin: 24px auto;
  border-radius: 999px;
  width: fit-content;
  transition: 0.8s;
}

.gotosite span {
  border-top: var(--green) 1px solid;
  border-right: var(--green) 1px solid;
  width: 12px;
  height: 12px;
  display: inline-block;
  transform: rotate(45deg);
  margin-top: 8px;
  margin-left: 8px;
  transition: 0.8s;
}

a.gotosite:hover {
  background-color: var(--green);
  color: #000;
  border: 1px solid var(--green);
}

a.gotosite:hover span {
  border-top: #000 1px solid;
  border-right: #000 1px solid;
}

.gotobutton {
  font-size: 18px;
  padding: 6px 37px;
  border: 1px solid var(--green);
  display: inline-block;
  place-content: center;
  margin: 0px 0px 0px 12px;
  border-radius: 999px;
  width: fit-content;
  transition: 0.8s;
}
@media (max-width: 750px) {
  .gotobutton {
    font-size: 16px;
    padding: 3px 15px;
  }
}

.gotobutton span {
  border-top: var(--green) 1px solid;
  border-right: var(--green) 1px solid;
  width: 12px;
  height: 12px;
  display: inline-block;
  transform: rotate(45deg);
  margin-top: 8px;
  margin-left: 8px;
  transition: 0.8s;
}

a.gotobutton:hover {
  background-color: var(--green);
  color: #000;
  border: 1px solid var(--green);
}

a.gotobutton:hover span {
  border-top: #000 1px solid;
  border-right: #000 1px solid;
}

.more {
  padding: 14px 48px;
  border: 1px solid var(--green);
  display: flex;
  place-content: center;
  margin: 24px auto;
  border-radius: 999px;
  width: fit-content;
  transition: 0.8s;
}

.more:hover,
.more.open {
  background-color: var(--green);
  color: #000;
}

.more span {
  border-top: #fff 1px solid;
  border-right: #fff 1px solid;
  width: 12px;
  height: 12px;
  display: inline-block;
  transform: rotate(135deg);
  margin-top: 3px;
  margin-left: 8px;
}

.more:hover span {
  border-color: #000;
}

.more.open span {
  transform: rotate(-45deg);
  margin-top: 10px;
  border-color: #000;
}

.footer {
  padding: 64px;
}

.copyright {
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 70px;
}

.logoarea {
  background-color: #fff;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  position: absolute;
  left: 0;
  padding: 16px;
  gap: 10px;
  flex-wrap: nowrap;
}

@media (max-width: 750px) {
  .logoarea {
    height: auto;
    justify-content: flex-end;
    flex-direction: column;
  }
}

.logoarea img {
  max-height: 30px;
  width: auto;
}

.leftflex {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0 10px;
  min-width: 0;
}

.leftflex div {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 750px) {
  .leftflex {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .leftflex div {
    flex: 0 1 auto;
    min-width: 0;
  }

  .leftflex div img {
    height: 18px;
  }
}

.rightbox {
  text-align: right;
  flex: 0 0 auto;
}

@media (max-width: 750px) {
  .rightbox {
    width: 100%;
  }

  .rightbox img {
    height: 18px;
  }
}

.noMgnT {
  margin-top: 0 !important;
}

.noMgnT_pc {
  /* 751- */
}
@media all and (min-width: 751px) {
  .noMgnT_pc {
    margin-top: 0 !important;
  }
}

.noMgnB {
  margin-bottom: 0 !important;
}

.noPdgT {
  padding-top: 0 !important;
}

.noPdgB {
  padding-bottom: 0 !important;
}

.buttons {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
  margin: 32px 0;
}
@media (max-width: 750px) {
  .buttons {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
}

.buttons a {
  border-radius: 999px;
  border: 1px solid var(--green);
  flex: 1 1 50%;
  padding: 15px 24px;
  color: var(--green);
  text-align: center;
  appearance: none;
  background-color: transparent;
  font-weight: 700;
  font-size: 18px;
  transition: 0.8s;
  display: grid;
  place-content: center;
}

@media (max-width: 750px) {
  .buttons a {
    flex: 1 0 100%;
    font-size: 16px;
  }
}

.buttons a:hover {
  color: #000;
  background: #70f1d2;
}

.buttons a.disabled {
  pointer-events: none;      /* クリック無効 */
  opacity: 0.4;              /* 見た目を薄く */
  border-color: #ccc;        /* 枠線をグレーに */
  color: #aaa;               /* 文字色も薄く */
  background-color: #f2f2f2; /* 背景色グレーに */
}

.notice {
  font-size: 14px;
  margin: 20px auto;
  width: 100%;
}

@media (max-width: 750px) {
  .notice {
    font-size: 12px;
  }
}

.notice > * {
  display: flex;
  justify-content: flex-start;
}

.notice > *::before {
  flex: 0 0 16px;
  content: "※";
}

.red {
  color: red;
}
