@charset "UTF-8";
*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) /
      (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vw)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
  font-size: var(--clamp);
}

:root {
  --font-Anton: "Anton", sans-serif;
  --font-NotoSansJP:
    "Local Noto Sans JP", "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --color-bg-black: #272727;
  --color-red: #d71718;
  --inline-size: min(1280px, 100% - 2rem);
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
body {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", serif;
  font-weight: 500;
  text-autospace: nomal;
  line-break: strict;
  color: #fff;
  background-color: var(--color-bg-black);
  line-height: 1.8;
  --clamp-viewport-min: 700;
  --clamp-viewport-max: 1280;
  --clamp-min: 16;
  --clamp-max: 22;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

a {
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
a:focus-visible {
  opacity: 0.8;
}

.section-title {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.section-title .en-title {
  --clamp-min: 40;
  --clamp-max: 58;
  font-family: var(--font-Anton);
  color: var(--color-red);
}
.section-title .jp-title {
  font-family: var(--font-NotoSansJP);
  font-weight: bold;
  letter-spacing: 0.2em;
}

.inpage-link {
  text-decoration: underline;
}

.header {
  padding: 2rem 1rem 1rem;
}
.header .main-title {
  --clamp-min: 33;
  --clamp-max: 58;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
.header img {
  margin-inline: auto;
}

main:not(.thanks-main) {
  margin-block: 2rem 5rem;
}
@media (min-width: 768px) {
  main:not(.thanks-main) {
    margin-block: 5rem;
  }
}

main {
  container: main-layout/inline-size;
  width: var(--inline-size);
  margin-inline: auto;
}

section:not(.mission, .thanks) {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  section:not(.mission, .thanks) {
    margin-top: 8rem;
  }
}

.notes {
  --clamp-min: 15;
  --clamp-max: 17;
  font-weight: 400;
}
.notes li {
  list-style: "※" inside;
  text-indent: hanging 1em;
}
.notes li::marker {
  color: revert;
}

.mission {
  position: relative;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .mission {
    padding-block: 3rem;
  }
}
.mission::before, .mission::after {
  content: "";
  position: absolute;
  width: 98.3%;
  height: 1em;
  background-image: repeating-linear-gradient(-45deg, transparent 0 10px, var(--color-red) 10px 25px);
}
@media (min-width: 768px) {
  .mission::before, .mission::after {
    height: 1.3em;
    background-image: repeating-linear-gradient(-45deg, transparent 0 15px, var(--color-red) 15px 35px);
  }
}
.mission::before {
  top: 0;
  left: 0;
}
.mission::after {
  bottom: 0;
  left: 0;
}
.mission .section-title .jp-title {
  --clamp-min: 22;
  --clamp-max: 34;
  color: var(--color-red);
}
.mission .section-title .notice {
  --clamp-min: 40;
  --clamp-max: 60;
  font-weight: bold;
  margin-top: 1rem;
}
.mission .section-title .notice span {
  display: inline-block;
  background-color: var(--color-red);
  padding: 0.1em 0.3em;
  margin-right: 0.15em;
}
.mission-lead {
  --clamp-min: 22;
  --clamp-max: 30;
  text-align: center;
}
.mission-contents {
  font-family: var(--font-NotoSansJP);
  text-align: center;
  border: solid 1px;
  padding: 1rem;
  width: min(1024px, 100%);
  margin-inline: auto;
  margin-top: 1rem;
}
.mission-contents * + *:not(.time, #currentTime) {
  margin-top: 1rem;
}
.mission-contents .contact-code {
  --clamp-min: 24;
  --clamp-max: 34;
  color: var(--color-red);
  font-weight: bold;
  letter-spacing: 0.2em;
}
.mission-contents a {
  display: block;
  width: min(600px, 100%);
  margin-inline: auto;
}
.mission-contents .form {
  display: block;
  text-align: center;
  color: #fff;
  background-color: var(--color-red);
  border-radius: 5px;
  padding: 0.5em;
  margin-top: 1rem;
  box-shadow: 2px 2px 3px hsla(0, 0%, 0%, 0.376);
}
.mission-contents .note {
  --clamp-min: 14;
  --clamp-max: 16;
  text-align: left;
  width: fit-content;
  margin-inline: auto;
}

.timer-wrap .code {
  --clamp-min: 36;
  --clamp-max: 60;
  font-family: var(--font-Anton);
  color: var(--color-red);
  letter-spacing: 0.5em;
  background-color: #fff;
}
.timer-wrap .code .text {
  font-size: 0.4em;
  font-family: var(--font-NotoSansJP);
  color: initial;
  letter-spacing: initial;
}
.timer-wrap .time {
  --clamp-min: 24;
  --clamp-max: 46;
  text-box-trim: trim-both;
  font-family: var(--font-Anton);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.current-wrap .heading {
  font-size: 0.86em;
}

#currentTime {
  --clamp-min: 20;
  --clamp-max: 26;
  display: inline-block;
  font-family: var(--font-Anton);
  letter-spacing: 0.05em;
}

.apply[data-state=open] {
  background-color: var(--color-red);
  border-radius: 5px;
  color: #fff;
}

.apply[data-state=closed],
.apply[data-state=ended] {
  background: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: revert;
}

.apply .label-open,
.apply .label-closed,
.apply .label-ended {
  display: none;
}

.apply[data-state=open] .label-open,
.apply[data-state=closed] .label-closed,
.apply[data-state=ended] .label-ended {
  display: block;
}

#countdown [data-for] {
  display: none;
  margin: 0;
}

#countdown[data-state=open] [data-for=open],
#countdown[data-state=ended] [data-for=ended] {
  display: block;
}

#countdown[data-state=closed] [data-for=closed] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.about div + div {
  margin-top: 2rem;
}
.about-text {
  --clamp-min: 20;
  --clamp-max: 28;
  text-align: center;
  line-height: 3;
  margin-block: 4rem;
}
@media (min-width: 768px) {
  .about-text {
    line-height: 4;
    margin-block: 5rem;
  }
}
.about-text strong {
  color: var(--color-red);
}
.about-schedule {
  font-family: var(--font-NotoSansJP);
  text-align: center;
  line-height: 2;
  background-image: url(../img/bg_2.png);
  width: min(1024px, 100%);
  margin-inline: auto;
  padding: 1rem;
}
.about .title {
  border-bottom: solid 1px;
  width: fit-content;
  margin-inline: auto;
}

.howto .item {
  margin-top: 2rem;
}
.howto .step {
  --clamp-min: 18;
  --clamp-max: 28;
  font-family: var(--font-Anton);
  color: var(--color-red);
  letter-spacing: 0.05em;
  border-bottom: solid 1px;
}
.howto .process {
  --clamp-max: 26;
  margin-top: 0.5rem;
}

.present {
  font-family: var(--font-NotoSansJP);
}
.present-contents {
  color: #000;
  background-image: url(../img/bg.png);
  background-color: #fff;
  padding: 1rem;
}
@media (min-width: 768px) {
  .present-contents {
    padding: 2rem;
  }
}
.present .list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .present .list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.present .date {
  --clamp-min: 22;
  color: var(--color-red);
  font-family: var(--font-Anton);
  letter-spacing: 0.05em;
}
.present .image {
  border: solid 1px;
  width: min(225px, 100%);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .present .image {
    width: auto;
  }
}
.present figcaption {
  --clamp-max: 18;
  text-align: center;
  margin-top: 0.5rem;
}
.present .caution {
  background-color: hsla(0, 0%, 71%, 0.4);
  padding: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .present .notes {
    column-count: 2;
  }
}

.official-site {
  font-family: var(--font-NotoSansJP);
  color: #fff;
  background-color: #000;
  border-radius: 5px;
  width: min(460px, 100%);
  margin-inline: auto;
  margin-top: 5rem;
  box-shadow: 2px 2px 3px hsla(0, 0%, 0%, 0.376);
}
.official-site .link {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  padding: 0.5em;
}

.code-link {
  --banner-offset: clamp(4rem, -2vw + 5rem, 3rem);
  display: grid;
  place-items: center;
  font-family: var(--font-Anton);
  color: #fff;
  position: fixed;
  right: 2em;
  bottom: 2em;
  width: 4em;
  aspect-ratio: 1;
  z-index: 100;
  filter: invert(100%);
  mix-blend-mode: difference;
  transition-duration: 0.3s;
}
@container main-layout (min-width: 1540px) {
  .code-link {
    right: var(--banner-offset);
    bottom: 3em;
  }
}
@container main-layout (max-width: 1540px) {
  .code-link {
    right: var(--banner-offset);
    bottom: 3em;
  }
}
@container main-layout (max-width: 960px) {
  .code-link {
    right: 2em;
    bottom: 2em;
  }
}
@media screen and (min-width: 768px) {
  .code-link {
    width: 6em;
  }
}
.code-link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 90%;
  aspect-ratio: 280/123;
  background-image: url(../img/inpage-link_text.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  padding: 0.5em;
}
.code-link .circletext {
  overflow: visible;
  scale: 1.2;
  transition: scale 0.3s;
}
.code-link .circletext .circle {
  fill: transparent;
}
.code-link .circletext .text {
  letter-spacing: 0.02em;
}
@media (any-hover: hover) {
  .code-link .circletext:hover {
    scale: 1.3;
  }
}
.code-link .circletext:focus-visible {
  scale: 1.3;
}

@supports (animation-timeline: scroll(root)) {
  .circletext {
    animation: line linear both;
    animation-timeline: scroll(root);
  }
}
@keyframes line {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}
.thanks {
  text-align: center;
}
.thanks * + * {
  margin-top: 1rem;
}
.thanks .heading {
  --clamp-min: 26;
  --clamp-max: 46;
  font-family: var(--font-Anton);
  letter-spacing: 0.1em;
  text-indent: -0.5em;
}
.thanks .title {
  --clamp-min: 26;
  --clamp-max: 56;
  letter-spacing: 0.1em;
}
.thanks .text {
  --clamp-min: 20;
  --clamp-max: 28;
}
.thanks img {
  margin-inline: auto;
}
.thanks .top {
  display: block;
  text-align: center;
  color: #fff;
  background-color: var(--color-red);
  border-radius: 5px;
  padding: 0.5em;
  width: min(600px, 100%);
  margin-inline: auto;
  margin-top: 3rem;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3764705882);
}

.footer {
  --clamp-min: 15;
  --clamp-max: 18;
  container: footer-layout/inline-size;
  text-align: center;
  padding: 1rem;
}

@container footer-layout (min-width: 900px) {
  .pc-footer {
    padding: 0.5em;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .pc-footer {
    text-align: left;
    width: fit-content;
    margin-inline: auto;
  }
  .pc-footer li:not(:first-child)::before {
    content: "";
    display: inline-block;
    inline-size: 1ex;
    aspect-ratio: 1;
    border-block-start: 1px solid;
    border-inline-end: 1px solid;
    rotate: 45deg;
    margin: auto 0.3em 0.1em 0.1em;
  }
  .pc-footer a {
    border-bottom: solid 1px;
  }
}
@media screen and (max-width: 767px) {
  .pc-footer {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp-footer {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-footer {
    display: flex;
    justify-content: center;
  }
  .sp-footer li {
    padding: 0.8em;
  }
  .sp-footer a {
    display: grid;
    place-items: center;
    gap: 0.5em;
    font-size: 0.9rem;
  }
  .sp-footer img {
    width: 45px;
  }
}

.snsbtn {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-block: 1rem;
}
.snsbtn a {
  display: block;
  width: 3.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 6px #fff;
}

.copyright {
  --clamp-min: 14;
  --clamp-max: 15;
}/*# sourceMappingURL=style.css.map */