@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Acme&display=swap);
@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
menu,
nav,
section,
audio,
video,
canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
aside,
figure,
figcaption,
footer,
header,
menu,
nav,
section,
main {
  display: block;
}

body {
  color: #333;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

blockquote::before,
blockquote::after {
  content: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

@-webkit-keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}

@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::-moz-selection {
  background: rgba(254, 217, 0, 0.4);
}
*::selection {
  background: rgba(254, 217, 0, 0.4);
}

a,
input[type=submit] {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

body,
input,
textarea {
  color: #222;
  line-height: 1.8;
}

a:link,
a:visited {
  color: #222;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
  text-decoration: none;
  outline-width: 0;
}

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

svg,
img {
  width: auto;
  height: auto;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}

ul {
  list-style: disc;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em;
}

dt {
  font-weight: bold;
}
dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}
dd:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  quotes: "" "";
  font-style: italic;
  padding: 0 2em;
}
blockquote::before, blockquote::after {
  content: "";
}
blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 0.8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th,
td {
  padding: 0.5em 0.8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: transparent;
}

th {
  font-weight: normal;
}

@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
/* エフェクトで使う keyframes */
@-webkit-keyframes blink {
  50% {
    opacity: 0.3;
  }
  0%, 100% {
    opacity: 0.9;
  }
}
@keyframes blink {
  50% {
    opacity: 0.3;
  }
  0%, 100% {
    opacity: 0.9;
  }
}
/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードアウト */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* スプリング(拡大してバウンド) */
@-webkit-keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* 上に移動しながらフェードイン */
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(3em);
            transform: translateY(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 下に移動しながらフェードイン */
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-3em);
            transform: translateY(-3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-3em);
            transform: translateY(-3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 左に移動しながらフェードイン */
@-webkit-keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(3em);
            transform: translateX(3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* 右に移動しながらフェードイン */
@-webkit-keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-3em);
            transform: translateX(-3em);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* X方向スケールアップ */
@-webkit-keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/* Y方向スケールアップ */
@-webkit-keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/* Y方向スケールダウン */
@-webkit-keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
/* Y方向に拡大しながらフェードイン */
@-webkit-keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
/* 拡大しながらフェードイン */
@-webkit-keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* 拡大しながらフェードアウト */
@-webkit-keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
html {
  width: 100%;
  font-weight: 700;
  font-size: 2.666667vw;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  background: #000;
  scroll-behavior: smooth;
  scroll-padding: 0;
}

body {
  font-size: 1.4rem;
  color: #fff;
}
body img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 767px) {
  html {
    font-size: 10px;
  }
  .is-pc {
    display: initial !important;
  }
  .is-sp {
    display: none !important;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
.footer {
  position: relative;
  z-index: 3;
  padding: 2.5rem 0;
  border-top: 0.2rem solid #fff;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 1rem;
  padding: 0 1.5rem;
}
.footer__logo {
  width: 18rem;
}
.footer__copyright {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

@media screen and (min-width: 767px) {
  .footer {
    padding: 3rem 0;
  }
  .footer__inner {
    gap: 0;
  }
  .footer__logo {
    width: 22rem;
  }
  .footer__copyright {
    font-size: 1.2rem;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body .button {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 100%;
  height: 4.2rem;
  margin: 0 auto;
  padding: 0 1em;
  font-size: 1.7rem;
  font-weight: 900;
  text-decoration: none !important;
  color: #fff;
  background: #c00;
  border-radius: 0.6rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
  overflow: hidden;
}
body .button:hover, body .button:focus, body .button.is-active {
  text-decoration: none;
}
body .button:hover {
  opacity: 0.8;
}
body .button:active {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
body .button--small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 3rem;
  font-size: 1.4rem;
  background: none;
  border: 2px solid #c00;
  color: #c00;
}
body .button-blue {
  color: #fff;
  background: #079f1e;
}
body .button-white {
  color: #000;
  background: #fff;
}
body .button-red {
  background: #c00;
}
body .button-orange {
  background: #ed6503;
}
body .button-gray {
  background: #f0f2f4;
  border: 1px solid #dae2e1;
}
body .button-outline {
  color: #96a896 !important;
  border-color: #d9d9d9;
  font-weight: 500;
}
body .button-outline:hover {
  color: #fff !important;
  background: #96a896;
}
body .button.is-dark {
  color: #fff;
}
body .button.is-link {
  background-color: transparent;
  border-color: transparent;
  color: #000;
  text-decoration: underline;
}
body .button.is-link:hover, body .button.is-link:focus {
  background-color: #b2b6b9;
  color: #000;
}
body .button.has-icon {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body .button.has-icon i {
  width: 2.5rem;
  font-size: 2.5rem;
  font-style: normal;
  translate: 0 -6%;
}
body .button.has-icon::before {
  display: block;
  content: "";
  width: 2.5rem;
}
body .button[disabled], body .button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
body .button.is-fullWidth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 767px) {
  body .btn {
    height: 6rem;
    padding: 0 1rem;
    font-size: 2rem;
    border-radius: 1rem;
  }
  body .btn.has-icon i {
    width: 3rem;
    font-size: 3rem;
  }
  body .btn.has-icon::before {
    width: 3rem;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
.page-header {
  width: 100%;
  position: relative;
}
.page-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem;
}
.page-header__logo {
  display: block;
}
.page-header__logo a {
  display: block;
}
@media (hover: hover) {
  .page-header__logo a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .page-header__logo a:hover {
    opacity: 0.5;
  }
}
.page-header__logo img {
  width: auto;
  height: 4.8rem;
}
.page-header__meta {
  display: none;
}
.page-header__meta img {
  width: auto;
}

@media screen and (min-width: 767px) {
  .page-header__inner {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 120rem;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 2rem 7rem 2rem 2rem;
  }
  .page-header__logo img {
    width: auto;
    height: 7rem;
  }
  .page-header__meta {
    display: block;
  }
  .page-header__meta img {
    width: auto;
    height: 6.6rem;
  }
}
@media screen and (min-width: 1023px) {
  .page-header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 130rem;
    padding: 2rem;
  }
  .page-header__logo img {
    height: 8rem;
  }
  .page-header__meta img {
    height: 7.6rem;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
.view-nav {
  overflow: hidden;
}

.nav-trigger {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 0.3rem solid #e21f19;
  background: #fff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  rotate: -30deg;
}
.nav-trigger::before, .nav-trigger::after,
.nav-trigger span {
  display: block;
  height: 0.3rem;
  width: 2.2rem;
  background-color: #e21f19;
  content: "";
}
.nav-trigger::before {
  translate: 0 -120%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.nav-trigger::after {
  translate: 0 120%;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.nav-trigger i {
  position: absolute;
  visibility: hidden;
  -webkit-transition: all 0.225s linear;
  transition: all 0.225s linear;
}
.view-nav .nav-trigger {
  rotate: 180deg;
}
.view-nav .nav-trigger span {
  opacity: 0;
}
.view-nav .nav-trigger::before {
  rotate: 135deg;
  translate: 0 100%;
}
.view-nav .nav-trigger::after {
  rotate: -315deg;
  translate: 0 -100%;
}

.navigation {
  position: relative;
  z-index: 90;
}
.navigation__list-item {
  list-style-type: none;
}
.navigation__list-item a {
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
}
@media (hover: hover) {
  .navigation__list-item a {
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .navigation__list-item a:hover {
    opacity: 0.5;
  }
}
.navigation__copy {
  display: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 1rem;
}

@media screen and (max-width: 1022px) {
  .navigation {
    color: #fff;
    z-index: 90;
    overflow-y: auto;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    background: rgba(40, 40, 40, 0.9);
    -webkit-backdrop-filter: blur(0.6rem);
            backdrop-filter: blur(0.6rem);
    opacity: 0;
    translate: -105% 0;
    pointer-events: none;
    width: 29.5rem;
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
  }
  .view-nav .navigation {
    opacity: 1;
    translate: 0 0;
    pointer-events: auto;
  }
  .navigation__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 2rem;
    width: 100%;
    padding: 2rem 1.6rem 3rem;
  }
  .navigation__title {
    width: 100%;
    text-align: center;
  }
  .navigation__meta {
    width: calc(100% - 4rem);
    margin-top: -0.5rem;
  }
  .navigation__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    margin: 0;
    padding: 1.5rem 1rem;
    gap: 1rem 1.5rem;
    line-height: 1.1;
    font-family: "pressio-stencil-cond", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    border-top: 0.4rem solid #fff;
    border-bottom: 0.4rem solid #fff;
  }
  .navigation__list-item {
    list-style-type: none;
  }
  .navigation__list-item a {
    font-size: 3rem;
    color: #fff;
  }
  .navigation__copy {
    display: block;
  }
}
@media screen and (min-width: 767px) and (max-width: 1022px) {
  .nav-trigger {
    right: 2rem;
    top: 2rem;
  }
  .navigation {
    right: auto;
    width: 32rem;
  }
  .navigation__inner {
    padding: 2rem;
  }
  .navigation__title {
    width: 100%;
  }
  .navigation__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .navigation__list-item {
    list-style-type: none;
  }
  .navigation__list-item a {
    font-size: 3.5rem;
  }
  .navigation__copy {
    display: block;
  }
}
@media screen and (min-width: 1023px) {
  .nav-trigger {
    display: none;
  }
  .navigation {
    position: sticky;
    top: 0;
    background: #000;
    padding: 0 1rem;
    border-top: 0.6rem double #fff;
    border-bottom: 0.6rem double #fff;
  }
  .navigation__title {
    display: none;
  }
  .navigation__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: min(1.5rem, 1vw) 0.5rem;
    gap: 1rem min(30px, 2.2vw);
    line-height: 1.1;
    font-family: "pressio-stencil-cond", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    margin: 0;
  }
  .navigation__list-item {
    list-style-type: none;
  }
  .navigation__list-item a {
    font-size: min(4rem, 2.8vw);
    font-weight: 400;
    color: #fff;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
svg {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  vertical-align: bottom;
}
svg rect,
svg path {
  shape-rendering: geometricPrecision;
}

.content {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.content.lineup, .content.timeTable, .content.ticket {
  padding-top: 5rem;
}
.content.info {
  padding-bottom: 10rem;
}
.content.guideline, .content.bbq {
  padding-bottom: 8rem;
}
.content-title {
  width: 100%;
  margin: 0 auto 2rem;
  text-align: center;
}
.content-title span {
  display: inline-block;
  padding: 0 1.5rem;
  font-family: "pressio-stencil-cond", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: #000;
  background: #fed900;
}

.areamap__img {
  display: block;
  max-width: 110rem;
  margin: 0 auto;
}

.guideline__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 2.6rem 1.5rem;
  color: #222;
}
.guideline__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: justify;
}
.guideline__content a:not(.button) {
  color: #003c79;
  text-decoration: underline;
}
.guideline__content-title {
  font-size: 1.2em;
  line-height: 1.4;
  margin-bottom: -0.4em;
}
.guideline__content-title span {
  display: inline-block;
  padding: 0.2em 0.4em;
  background: #003c79;
  color: #fff;
  font-weight: 700;
}
.guideline__paragraph {
  font-size: 1.3rem;
}
.guideline__list {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
}
.guideline__list-item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
  text-align: left;
  color: #666;
}
.guideline__list em {
  display: inline-block;
  margin: 0 0.3em;
  padding: 0 0.5em;
  background: #c00;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  text-indent: 0;
}
.guideline__list u {
  text-decoration: none;
  color: #c00;
}
.guideline__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.4em;
  border: 2px solid #000;
  padding: 1rem 2rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 800;
}

@media screen and (min-width: 767px) {
  .content {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
  .content.lineup {
    padding-top: 8rem;
  }
  .content.guideline {
    padding-bottom: 10rem;
  }
  .content-title {
    margin: 0 auto 4rem;
  }
  .content-title span {
    padding: 0 2.5rem;
    font-size: 6rem;
  }
  .guideline__inner {
    gap: 4rem;
    width: 60rem;
    padding: 0;
    background: none;
  }
  .guideline__inner hr {
    display: none;
  }
  .guideline__content {
    padding: 2rem 2rem 3rem;
    font-size: 1.4rem;
    background: #fff;
    border-radius: 1rem;
  }
  .guideline__content-title {
    font-size: 1.4em;
  }
  .guideline__content-title span {
    padding: 0.3em 0.6em;
  }
  .guideline__paragraph {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1023px) {
  .content {
    scroll-margin-top: 6rem;
  }
}
@keyframes cloud {
  0%, 50%, 100% {
    translate: 0 0;
  }
  25% {
    translate: 0 -2%;
  }
  75% {
    translate: 0 2%;
  }
}
.fv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0 7rem;
  width: 100%;
}
.fv__title {
  position: relative;
  z-index: 4;
  display: block;
  width: 21.3rem;
}
.fv__title img {
  width: 100%;
}
.fv__meta {
  position: relative;
  z-index: 4;
  display: block;
  width: 35.6rem;
}
.fv__meta img {
  width: 100%;
}
.fv__chara {
  position: absolute;
  z-index: 4;
}
.fv__chara-left {
  left: 50%;
  margin-left: -15.5rem;
  bottom: 24.5rem;
  width: 7.8rem;
  rotate: -5deg;
  -webkit-animation: linear 3s infinite cloud;
          animation: linear 3s infinite cloud;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.fv__chara-right {
  right: 50%;
  margin-right: -16.5rem;
  bottom: 25rem;
  width: 9rem;
  rotate: 18deg;
  -webkit-animation: linear 3s infinite cloud;
          animation: linear 3s infinite cloud;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.lineup__stages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  width: 100%;
}
.lineup__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.2rem 1.5rem;
  width: 100%;
  padding: 0 1.8rem;
}
.lineup__list-item {
  width: calc(50% - 0.75rem);
}
.lineup__list-item > a,
.lineup__list-item > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  justify-items: flex-start;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 900;
}
.lineup__list-item > a img:nth-child(1),
.lineup__list-item > span img:nth-child(1) {
  margin-bottom: 0.8rem;
  border: 0.3rem solid #fff;
}
.lineup__list-item > a small,
.lineup__list-item > span small {
  white-space: nowrap;
}
.lineup__list-item.b-saba {
  width: 22.5rem;
}
.lineup__list-item.b-saba img:nth-child(1) {
  margin-bottom: 0;
}
.lineup__list-item.b-saba .b-logo {
  width: 50%;
  margin-top: -3rem;
  overflow: visible;
}
.lineup__list-item.b-saba .b-logo .border path {
  stroke: white;
  stroke-width: 0.3rem;
  stroke-linejoin: round;
}
.lineup__list-item.b-aburi .b-logo {
  width: 80%;
}
.lineup__list-item.b-enth .b-logo {
  width: 75%;
  margin-top: 0.7rem;
}
.lineup__list-item.b-hero .b-logo {
  width: 65%;
  margin-top: 0.4rem;
}
.lineup__list-item.b-kalma .b-logo {
  width: 55%;
}
.lineup__list-item.b-kyuso .b-logo {
  width: 70%;
}
.lineup__list-chara {
  position: absolute;
  display: block;
  bottom: 1rem;
  width: 8rem;
}
.lineup__list-chara--l {
  right: 50%;
  rotate: -20deg;
  margin-right: 25%;
  -webkit-animation: linear 3s infinite cloud;
          animation: linear 3s infinite cloud;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.lineup__list-chara--r {
  top: 8rem;
  left: 50%;
  rotate: 20deg;
  margin-left: 25%;
  -webkit-animation: linear 3s infinite cloud;
          animation: linear 3s infinite cloud;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.ticket__details {
  margin-bottom: 2.6rem;
}
.ticket__detail {
  width: 100%;
  padding: 0 2rem;
  color: #fff;
}
.ticket__detail__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 0.2rem solid #fff;
}
.ticket__detail__price dt {
  margin: 0;
  font-size: 1.3rem;
}
.ticket__detail__price dt span {
  display: inline-block;
  padding: 0 0.4em;
  background: #fff;
  color: #000;
}
.ticket__detail__price dd {
  margin: 0;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "pressio-stencil-cond", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.ticket__detail__price dd small {
  font-size: 0.8em;
}
.ticket__detail__attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 0.3rem;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.2rem;
}
.ticket__detail__attention span {
  display: inline-block;
}
.ticket__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  width: 100%;
  padding: 0 1.8rem;
}
.ticket__links-item {
  width: 100%;
}
.ticket__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  padding-top: 3rem;
}
.ticket__link-title {
  width: 100%;
  font-weight: 900;
  padding-bottom: 0.5em;
  font-size: 2.5rem;
  line-height: 1.4;
  text-align: center;
}
.ticket__link-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 1.2rem 0;
  border-top: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
}
.ticket__link-date dt {
  margin: 0;
  text-align: center;
  font-size: 1rem;
}
.ticket__link-date dt span {
  display: inline-block;
  padding: 0 0.6em 0.1em;
  background: #c00;
  color: #fff;
  font-weight: 900;
}
.ticket__link-date dd {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  letter-spacing: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ticket__link-button {
  text-align: center;
  padding: 0 3rem;
  margin-top: 1.5rem;
}
.ticket__link-button a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #e21f19;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.3);
}
.ticket__link-button img {
  position: absolute;
  top: 50%;
  right: 1rem;
  translate: 0 -50%;
  width: 1.5rem;
}
@media (hover: hover) {
  .ticket__link-button {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .ticket__link-button:hover {
    opacity: 0.6;
  }
}

.access__map {
  width: 100%;
}
.access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  margin: 0;
  vertical-align: middle;
}
.access__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem 1.8rem;
  margin: 0 0 1.5rem;
  width: 100%;
  padding: 2rem;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
}
.access__detail dt {
  width: 5rem;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
}
.access__detail dt span {
  display: inline-block;
  border-radius: 0.4rem;
  padding: 0 0.6em;
  background: #e21f19;
  color: #fff;
}
.access__detail dd {
  width: calc(100% - 7rem);
  margin: 0;
  line-height: 1.2;
}
.access__detail dd svg {
  vertical-align: text-bottom;
}
.access__detail dd small {
  color: #666;
}
.access__detail dd a {
  text-decoration: underline;
}
.access__detail dd a svg {
  text-decoration: none;
}
.access__attention {
  padding: 0 1.8rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.info {
  width: 100%;
}
.info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse nowrap;
          flex-flow: row-reverse nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.2rem;
  margin-bottom: 4rem;
  background: #fff;
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
}
.info__chara {
  width: 8rem;
}
.info__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  gap: 0 0.5rem;
}
.info__detail:last-child dd {
  border-bottom: none;
}
.info__detail dt {
  font-size: 1.2rem;
}
.info__detail dt span {
  display: inline-block;
  padding: 0 0.4em;
  background: #e21f19;
  border-radius: 0.4rem;
  letter-spacing: 0;
}
.info__detail dd {
  width: 19rem;
  margin: 0;
  padding: 0.8rem;
  color: #000;
  line-height: 1.4;
  font-size: 1.3rem;
  letter-spacing: 0;
  border-bottom: 1px solid #aaa;
}
.info__detail dd span {
  display: inline-block;
}
.info__inquiry {
  width: 100%;
  padding: 0 1.8rem;
}
.info__inquiry-title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
}
.info__inquiry-attention {
  width: 100%;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.2rem;
  line-height: 1.4;
}
.info__inquiry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.6rem;
  background: #fed900;
}
.info__inquiry-item__title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0;
}
.info__inquiry-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 0.6rem;
  line-height: 1.6;
  background: #fff;
  border-radius: 0.4rem;
}
.info__inquiry-item__link span {
  padding: 0 1.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  color: #fff;
  background: #e21f19;
  line-height: 1.6;
}
.info__inquiry-item__link em {
  font-size: 1.8rem;
  font-weight: 700;
}

.video {
  width: 100%;
  margin: 0 auto;
}
.video-container {
  position: relative;
  display: block;
  width: 100%;
}
.video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  vertical-align: bottom;
}
.is-4by3 .video-container {
  border-top: 4px solid #2e9bad;
  border-bottom: 4px solid #2e9bad;
}
.is-4by3 .video-container iframe {
  aspect-ratio: 4/3;
}
.video + .video {
  margin-top: 2rem;
}

@media screen and (min-width: 767px) {
  .fv {
    gap: 0;
    padding: 4vh 0 6vh;
  }
  .fv__title {
    width: 35vh;
  }
  .fv__meta {
    width: min(80vw, 60vh);
  }
  .fv__chara-left {
    margin-left: -29vh;
    bottom: 34vh;
    width: 14vh;
  }
  .fv__chara-right {
    margin-right: -31vh;
    bottom: 34.5vh;
    width: 16.5vh;
  }
  .lineup__stages {
    width: 70rem;
    gap: 8rem;
    margin: 0 auto;
  }
  .lineup__list {
    gap: 4rem 1.5rem;
    padding: 0 4rem;
  }
  .lineup__list-item {
    width: calc(50% - 0.75rem);
  }
  .lineup__list-item > a,
  .lineup__list-item > span {
    font-size: 2rem;
  }
  .lineup__list-item > a img:nth-child(1),
  .lineup__list-item > span img:nth-child(1) {
    margin-bottom: 1.5rem;
    border-width: 0.4rem;
  }
  .lineup__list-item.b-saba {
    width: 60%;
  }
  .lineup__list-item.b-saba img:nth-child(1) {
    margin-bottom: 0;
  }
  .lineup__list-item.b-saba .b-logo {
    margin-top: -14%;
  }
  .lineup__list-item.b-saba .b-logo .border path {
    stroke-width: 0.3rem;
  }
  .lineup__list-item.b-enth .b-logo {
    margin-top: 4%;
  }
  .lineup__list-item.b-hero .b-logo {
    margin-top: 2%;
  }
  .lineup__list-chara {
    width: 20%;
  }
  .lineup__list-chara--l {
    margin-right: 30%;
  }
  .lineup__list-chara--r {
    top: 13rem;
    margin-left: 30%;
  }
  .ticket__details {
    width: 50rem;
    margin: 0 auto 4rem;
  }
  .ticket__detail__price {
    padding: 1rem 1.5rem;
    border-top-width: 0.3rem;
    border-bottom-width: 0.3rem;
  }
  .ticket__detail__price dt {
    font-size: 1.6rem;
    font-weight: 800;
  }
  .ticket__detail__price dd {
    font-size: 5rem;
  }
  .ticket__detail__attention {
    font-size: 1.4rem;
  }
  .ticket__links {
    width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }
  .ticket__link {
    border-radius: 1rem;
  }
  .ticket__link-title {
    padding: 0 0.4rem 0.5em;
    font-size: 2.8rem;
  }
  .ticket__link-date {
    padding: 1.4rem 0;
  }
  .ticket__link-date dt {
    font-size: 1.2rem;
  }
  .ticket__link-date dd {
    font-size: 2.2rem;
  }
  .ticket__link-button {
    margin-top: 2.5rem;
  }
  .ticket__link-button a {
    padding: 0.5rem 2rem;
    font-size: 2rem;
  }
  .ticket__link-button img {
    width: 2rem;
  }
  .access__content {
    margin: 0 auto;
  }
  .access__map iframe {
    aspect-ratio: 2/1;
  }
  .access__detail {
    gap: 1rem 2rem;
    margin: 0 auto 2rem;
    width: 70%;
    border-radius: 0 0 1rem 1rem;
    padding: 2rem 4rem;
  }
  .access__detail dt {
    width: 7rem;
    font-size: 1.6rem;
  }
  .access__detail dd {
    width: calc(100% - 9rem);
    font-size: 1.8rem;
  }
  .access__attention {
    width: 70%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  .info {
    padding-bottom: 10rem;
  }
  .info__content {
    gap: 2rem;
    max-width: 56rem;
    padding: 2rem;
    margin: 0 auto 4rem;
    border-radius: 1rem;
  }
  .info__chara {
    width: 10rem;
  }
  .info__detail {
    gap: 0 1rem;
  }
  .info__detail dt {
    font-size: 1.6rem;
  }
  .info__detail dt span {
    border-radius: 0.6rem;
  }
  .info__detail dd {
    width: 24rem;
    padding: 1rem 0.8rem;
    font-size: 1.6rem;
  }
  .info__inquiry-title {
    margin-bottom: 1.2rem;
    font-size: 3rem;
  }
  .info__inquiry-attention {
    width: 40rem;
    font-size: 1.4rem;
    margin: 0 auto;
  }
  .info__inquiry-item {
    width: 40rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    margin: 0 auto 1.5rem;
  }
  .info__inquiry-item__title {
    font-size: 2rem;
  }
  .info__inquiry-item__link {
    padding-top: 0.6rem;
    border-radius: 0.4rem;
  }
  .info__inquiry-item__link span {
    padding: 0 1.5em;
    font-size: 1.4rem;
  }
  .info__inquiry-item__link em {
    font-size: 2.4rem;
  }
  .video {
    max-width: 70rem;
  }
  .video iframe {
    border: 0.5rem solid #fff;
  }
}
@media screen and (min-width: 1023px) {
  .fv {
    gap: 2vh;
    padding: 6vh 0;
  }
  .fv__title {
    width: 90vh;
  }
  .fv__meta {
    margin-top: -4vh;
    width: 100vh;
  }
  .fv__chara-left {
    margin-left: -54vh;
    bottom: 28vh;
    width: 16vh;
  }
  .fv__chara-right {
    margin-right: -56vh;
    bottom: 29vh;
    width: 18.5vh;
  }
  .lineup__stages {
    width: 100%;
    max-width: 100rem;
  }
  .lineup__list {
    gap: 4rem 3rem;
  }
  .lineup__list-item {
    width: calc(33.33% - 2rem);
  }
  .lineup__list-item.b-saba {
    width: 100%;
  }
  .lineup__list-item.b-saba a {
    width: 40%;
    margin: 0 auto;
  }
  .lineup__list-item.b-saba img:nth-child(1) {
    margin-bottom: 0;
  }
  .lineup__list-item.b-saba .b-logo {
    margin-top: -14%;
  }
  .lineup__list-item.b-saba .b-logo .border path {
    stroke-width: 0.3rem;
  }
  .lineup__list-item.b-aburi .b-logo {
    width: 70%;
  }
  .lineup__list-item.b-enth .b-logo {
    width: 65%;
    margin-top: 4%;
  }
  .lineup__list-item.b-hero .b-logo {
    width: 50%;
    margin-top: 0.4rem;
  }
  .lineup__list-item.b-kalma .b-logo {
    width: 45%;
  }
  .lineup__list-item.b-kyuso .b-logo {
    width: 60%;
    margin-top: 3%;
  }
  .lineup__list-chara {
    width: 15%;
  }
  .lineup__list-chara--l {
    right: auto;
    margin-right: 0;
    left: 0;
    margin-left: 1rem;
    rotate: -25deg;
  }
  .lineup__list-chara--r {
    bottom: auto;
    top: 6%;
    left: auto;
    right: 0;
    margin-left: 0;
    margin-right: 8rem;
    rotate: -10deg;
  }
  .access__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
    max-width: 108rem;
    padding: 0 2.6rem;
    margin: 0 auto;
  }
  .access__body {
    width: 40rem;
    margin: 0;
  }
  .access__map {
    width: calc(100% - 43rem);
    margin: 0;
  }
  .access__map iframe {
    aspect-ratio: 3/2;
    border-radius: 1rem;
  }
  .access__detail {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1rem 0;
    margin: 0 0 2rem;
    width: 100%;
    border-radius: 1rem;
    padding: 2rem;
  }
  .access__detail dt {
    width: 6.5rem;
    font-size: 1.4rem;
  }
  .access__detail dd {
    width: calc(100% - 6.5rem);
    font-size: 1.7rem;
  }
  .access__attention {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
  }
  .video {
    max-width: 80rem;
    margin-top: 10rem;
  }
}
