@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger, .fadeDownTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translate(50px, -50px);
  }
  to {
    opacity: 1;
    top: 2rem;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: YakuHanJP, "Zen Kaku Gothic Antique", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #000;
  min-width: 1080px;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #000;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #000;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 92%;
  }
}

.min-wrapper {
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .min-wrapper {
    width: 90%;
  }
}

.noscroll {
  overflow: hidden;
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.shadow {
  filter: drop-shadow(0 7px 0 rgb(0, 0, 0));
  border: 2px solid #000;
  border-radius: 40px;
}

.no-event {
  pointer-events: none;
}

.a-item {
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  .a-item {
    display: flex;
    flex-wrap: wrap;
  }
  .a-item a {
    width: 100%;
  }
}
.a-item .thumb {
  position: relative;
  width: 100%;
}
.a-item .img {
  display: block;
  position: relative;
  background-color: #000;
  padding-top: 69.1358%;
  margin-bottom: 13px;
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  .a-item .img {
    margin-bottom: 1rem;
  }
}
.a-item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  user-select: none;
  z-index: 1;
  vertical-align: middle;
}
.a-item .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.a-item .a-name {
  font-size: 1.6rem;
  width: fit-content;
  padding: 0 2px;
  line-height: 1.2;
  font-weight: 600;
}
.a-item .a-name.other {
  display: flex;
  flex-direction: column;
}
.a-item .a-name.other span {
  font-size: 1.2rem;
  color: #707070;
}
.a-item .a-name.other .pp {
  color: #7600FF;
}
.a-item .a-name.other i {
  font-size: 1.2rem;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .a-item .a-name.other i {
    font-size: 0.9rem;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .a-item .a-name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 420px) {
  .a-item .a-name {
    font-size: 1.4rem;
  }
}
.a-item:hover {
  opacity: 0.7;
}
.a-item:hover .a-name {
  color: #7600FF;
}

.a-item.mc .thumb .img::before {
  width: 48px;
  height: 48px;
  content: "";
  background: url(../images/lineup/mc_icon.png) 0/contain no-repeat;
  position: absolute;
  top: -2rem;
  z-index: 10;
  right: 0;
}
@media screen and (max-width: 420px) {
  .a-item.mc .thumb .img::before {
    top: -1rem;
    width: 32px;
    height: 32px;
  }
}

.a-item.sub-mc .thumb .img::before {
  width: 48px;
  height: 48px;
  content: "";
  background: url(../images/lineup/sub_mc.png) 0/contain no-repeat;
  position: absolute;
  top: -2rem;
  z-index: 10;
  right: 0;
}
@media screen and (max-width: 420px) {
  .a-item.sub-mc .thumb .img::before {
    top: -1rem;
    width: 32px;
    height: 32px;
  }
}

.a-item.oa span {
  color: #7600FF;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.more_btn {
  background: #7600FF;
  border: 1px solid #000;
  padding: 1rem;
  border-radius: 60px;
  width: 234px;
  padding-left: 3rem;
  filter: drop-shadow(0 5px 0 rgb(0, 0, 0));
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 420px) {
  .more_btn {
    padding: 7px 0 1rem;
    padding-left: 3rem;
    width: 180px;
    font-size: 1.4rem;
  }
}
.more_btn:hover {
  filter: drop-shadow(0 0 0 rgb(0, 0, 0));
  transform: translateY(2px);
}
@media screen and (max-width: 420px) {
  .more_btn {
    font-size: 1.6rem;
  }
}
.more_btn span {
  color: #000;
  text-align: center;
  font-size: 2rem;
  /*アニメーションの指定*/
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .more_btn span {
    padding: 1rem;
  }
}
.more_btn span svg {
  vertical-align: baseline;
  margin-left: 2rem;
  width: 1.4rem;
  height: 1.4rem;
  fill: #fff;
}
@media screen and (max-width: 420px) {
  .more_btn span svg {
    margin-left: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}
.more_btn.red {
  background: #FF4800;
}
.more_btn.red span {
  color: #fff;
}
.more_btn.yellow {
  background: #FFFFCB;
  color: #000;
}
.more_btn.yellow span svg {
  fill: #000;
}
.more_btn.yg {
  background: #B8FF0B;
  color: #000;
}
.more_btn.yg span svg {
  fill: #000;
}

.noevent {
  pointer-events: none;
}

.bg_other .img {
  background: #7e7e7e;
}

.bg {
  width: 100%;
  height: 100%;
}
.bg::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/miraifest_bg.jpg) repeat-y;
  background-size: 100%;
  content: "";
}

.kv {
  padding: 9vw 0 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (min-width: 1600px) {
  .kv {
    padding: 5vw 0 0;
  }
}
@media screen and (max-width: 420px) {
  .kv {
    padding: 8rem 0 0;
    width: 95%;
  }
}
.kv .catch_copy {
  width: 90%;
  max-width: 830px;
  margin: 3vw auto 0;
}
@media screen and (max-width: 420px) {
  .kv .catch_copy {
    margin-top: 5vw;
  }
}
.kv .kv_logo {
  width: 90%;
  max-width: 830px;
  margin: 2rem auto 0;
}
@media screen and (max-width: 420px) {
  .kv .kv_logo {
    width: 95%;
    margin-top: 1rem;
  }
}
.kv .kv_logo img {
  height: 500px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .kv .kv_logo img {
    height: 350px;
  }
}
@media screen and (max-width: 420px) {
  .kv .kv_logo img {
    height: 290px;
  }
}

/*************************************************
top01-bnr-main メインバナー
*************************************************/
.slider-outer {
  margin-top: 2vw;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
  /*ドットナビゲーションの設定*/
}
@media screen and (max-width: 767px) {
  .slider-outer {
    padding-top: 0;
    margin-top: 0;
  }
}
.slider-outer .slider-wrapper {
  width: 100%;
}
.slider-outer .slick-slider {
  width: 100%;
}
.slider-outer .slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  margin: 0 auto;
}
.slider-outer .slick-slide {
  height: 100%;
  max-width: 920px;
  width: 48vw;
  border-radius: 6px;
  margin-top: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide {
    width: 50vw;
  }
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide {
    width: 63vw;
    height: 380px;
  }
}
.slider-outer .slick-slide::before {
  width: 100px;
  height: 200px;
  background-size: contain;
  position: absolute;
  display: inline-block;
  left: 2px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide {
    height: 300px;
  }
}
.slider-outer .slick-slide img {
  object-fit: contain;
  height: 500px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide img {
    height: 300px;
  }
}
.slider-outer .slick-slide .inner-box:hover {
  opacity: 1;
}
.slider-outer .slider .slick-slide {
  transform: scale(0.9); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
}
.slider-outer .slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
.slider-outer .slider .slick-slide.slick-center:hover {
  transform: scale(1.03);
}
.slider-outer .slick-dots {
  text-align: center;
  margin: 40px 0 10px 0;
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-dots {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .slider-outer .slick-dots {
    margin-top: 1rem;
  }
}
.slider-outer .slick-dots .box {
  display: inline-block;
  margin: 0 5px;
}
.slider-outer .slick-dots button {
  color: transparent;
  outline: none;
  width: 18px; /*ドットボタンのサイズ*/
  height: 18px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff; /*ドットボタンの色*/
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-dots button {
    width: 13px; /*ドットボタンのサイズ*/
    height: 13px; /*ドットボタンのサイズ*/
  }
}
.slider-outer .slick-dots .slick-active button {
  background: #7600FF; /*ドットボタンの現在地表示の色*/
}

/*************************************************
top about
*************************************************/
.top_about {
  margin-top: 6rem;
}
.top_about .top_about_top {
  width: 100%;
}
@media screen and (max-width: 420px) {
  .top_about .top_about_top {
    width: 100.2%;
    margin: 0 auto -3px;
  }
}
.top_about .top_about_top img {
  vertical-align: bottom;
}
.top_about .top_about_contents {
  background: #fff;
  border: 2px solid #000;
  border-top: none;
  width: 99.8%;
  border-radius: 0 0 4rem 4rem;
  margin: -1px auto 0;
  padding-bottom: 5.7rem;
}
@media screen and (max-width: 767px) {
  .top_about .top_about_contents {
    width: 100%;
    margin: -2px auto 0;
  }
}
@media screen and (max-width: 420px) {
  .top_about .top_about_contents {
    border: 1px solid #000;
  }
}
.top_about .top_about_wrapper {
  width: 82%;
  margin: 0 auto;
}
.top_about .about_ttl {
  padding-top: 1.6rem;
}
.top_about .about_ttl .about_en {
  width: 92px;
}
@media screen and (max-width: 420px) {
  .top_about .about_ttl .about_en {
    width: 58px;
  }
}
.top_about .about_ttl .about_en img {
  width: 92px;
  object-fit: contain;
}
@media screen and (max-width: 420px) {
  .top_about .about_ttl .about_en img {
    width: 58px;
  }
}
.top_about .about_ttl .about_jp {
  margin-top: 1.3rem;
  font: 700 4rem/1.3 "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: -2.8px;
}
@media screen and (max-width: 767px) {
  .top_about .about_ttl .about_jp {
    font-size: 3rem;
  }
}
@media screen and (max-width: 420px) {
  .top_about .about_ttl .about_jp {
    font-size: 2.6rem;
  }
}
.top_about .about_areamap {
  margin-top: 2rem;
}
.top_about .about_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.8rem;
  margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
  .top_about .about_container {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
}
.top_about .about_container .about_box {
  background: #0059FF;
  border-radius: 3rem;
  padding: 3.9rem 1.2rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.top_about .about_container .about_box::before {
  content: "";
  width: 7.6rem;
  height: 7.6rem;
  background: url(../images/free_area.svg) no-repeat;
  position: absolute;
  background-size: contain;
  top: -1.5rem;
  right: -2.8rem;
}
@media screen and (max-width: 420px) {
  .top_about .about_container .about_box::before {
    width: 7rem;
    height: 7rem;
  }
}
.top_about .about_container .about_box .about_box_ttl .en {
  width: 176px;
}
@media screen and (max-width: 420px) {
  .top_about .about_container .about_box .about_box_ttl .en {
    width: 160px;
  }
}
.top_about .about_container .about_box .about_box_ttl .en img {
  width: 176px;
  object-fit: contain;
}
@media screen and (max-width: 420px) {
  .top_about .about_container .about_box .about_box_ttl .en img {
    width: 160px;
  }
}
.top_about .about_container .about_box .about_box_ttl .jp {
  text-align: center;
  color: #fff;
  margin-top: 5px;
}
.top_about .about_container .about_box .about_box_ttl .jp span {
  color: #FF4800;
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
}
.top_about .about_container .about_box .more_btn {
  margin-top: 8px;
  width: 220px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top_about .about_container .paid {
  background: #00C99D;
}
.top_about .about_container .paid .about_box_ttl .jp {
  color: #000;
}
.top_about .about_container .paid .about_box_ttl .jp span {
  color: #7600FF;
}
.top_about .about_container .paid::before {
  content: "";
  width: 6.8rem;
  height: 6.8rem;
  background: url(../images/paid_area.svg) no-repeat;
  position: absolute;
  background-size: contain;
  top: -1.5rem;
  left: auto;
  right: -1.7rem;
}
@media screen and (max-width: 420px) {
  .top_about .about_container .paid::before {
    width: 7rem;
    height: 7rem;
  }
}
.top_about .about_container .paid02 {
  background: #B8FF0B;
}

/*************************************************
top news
*************************************************/
.top_news {
  width: 95%;
  max-width: 1280px;
  margin: 10rem auto 0;
}
.top_news .top_news_top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 6vw;
}
@media screen and (max-width: 420px) {
  .top_news .top_news_top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 2rem;
  }
}
.top_news .top_news_top .top_news_ttl {
  width: 215px;
}
@media screen and (max-width: 420px) {
  .top_news .top_news_top .top_news_ttl {
    width: 177px;
  }
}

.news_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .news_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
}
@media screen and (max-width: 420px) {
  .news_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news_container .news_article {
  background: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  padding: 3.5rem 1.5rem 1.8rem;
  filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
  position: relative;
}
@media screen and (max-width: 420px) {
  .news_container .news_article {
    padding: 2.4rem 1.5rem;
  }
}
.news_container .news_article:hover {
  color: #7600FF;
  filter: none;
  transform: translateY(2px);
}
.news_container .news_article .date {
  color: #898989;
  font: 700 1.4rem/1.3 "Zen Kaku Gothic Antique", sans-serif;
}
.news_container .news_article .news_head {
  font: 700 2.4rem/1.4 "Zen Kaku Gothic Antique", sans-serif;
  padding-bottom: 2rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 420px) {
  .news_container .news_article .news_head {
    font-size: 1.8rem;
    padding-bottom: 1.4rem;
  }
}
.news_container .news_article .news_txt {
  margin-top: 2.5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 420px) {
  .news_container .news_article .news_txt {
    margin-top: 1.5rem;
  }
}
.news_container .news_article .news_txt p {
  font-size: 1.4rem;
}
@media screen and (max-width: 420px) {
  .news_container .news_article .news_txt p {
    font-size: 1.2rem;
  }
}
.news_container .news_article .news_link {
  width: 35px;
  height: 35px;
  margin: 1rem 0 0 auto;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

/*************************************************
top areamap
*************************************************/
.top_areamap {
  width: 1000px;
  margin: 10rem auto 0;
}
.top_areamap .top-ttl_areamap {
  width: 350px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .top_areamap .top-ttl_areamap {
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  .top_areamap {
    width: 90%;
  }
}
.top_areamap .top_areamap_img {
  margin-top: -3rem;
  background: #DDDDDD;
  padding: 8rem 2rem 5.2rem;
  border-radius: 4rem;
  border: 2px solid #000;
}
.top_areamap .top_areamap_img .areamapbtn {
  display: none;
}
@media screen and (max-width: 420px) {
  .top_areamap .top_areamap_img {
    padding: 4rem 1rem;
  }
  .top_areamap .top_areamap_img .areamapbtn {
    display: block;
    width: 90%;
    margin: 4rem auto 0;
  }
}

/*************************************************
top contents
*************************************************/
.top_contents {
  margin-top: 10rem;
}
.top_contents .top_contents_ttl {
  width: 368px;
  margin: 0 3rem 0 auto;
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_ttl {
    width: 274px;
    margin: 0 auto;
  }
}
.top_contents .top_contents_inner {
  background: #FFFFCB;
  border: 2px solid #000;
  border-radius: 4rem;
  padding: 10.8rem 0;
  margin-top: -4rem;
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner {
    padding: 8rem 0 6rem;
    margin-top: -2rem;
  }
}
.top_contents .top_contents_inner .contents_area {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 85%;
  margin: 0 auto;
  column-gap: 2.4vw;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area {
    flex-direction: column;
    row-gap: 3vw;
  }
}
.top_contents .top_contents_inner .contents_area .area_img {
  flex-basis: 42%;
  height: 265px;
  position: relative;
}
.top_contents .top_contents_inner .contents_area .area_img::before {
  content: "";
  width: 15rem;
  height: 15rem;
  background: url(../images/free_area.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -9rem;
  left: -4rem;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area .area_img::before {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_img::before {
    width: 90px;
    height: 90px;
    top: -4rem;
    left: -2.5rem;
  }
}
.top_contents .top_contents_inner .contents_area .area_img img {
  border: 1px solid #000;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area .area_img img {
    height: 230px;
    object-fit: contain;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_img img {
    height: 180px;
    object-fit: cover;
  }
}
.top_contents .top_contents_inner .contents_area .area_txt {
  flex-basis: 57%;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area .area_txt {
    width: 82%;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_txt {
    width: 95%;
  }
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_inner_ttl {
  width: 388px;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area .area_txt .contents_inner_ttl {
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_txt .contents_inner_ttl {
    width: 292px;
    width: 100%;
    margin-top: 1rem;
  }
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_text {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area .area_txt .contents_text {
    text-align: center;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_txt .contents_text {
    font-size: 1.4rem;
  }
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_btn_container {
  margin-top: 2.8rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area .area_txt .contents_btn_container {
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
  }
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_btn_container .more_btn {
  width: 230px;
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_btn_container .more_btn.red {
  color: #000;
  padding-left: 3rem;
}
.top_contents .top_contents_inner .contents_area .area_txt .contents_btn_container .more_btn.red svg {
  fill: #000;
}
.top_contents .top_contents_inner .contents_area.paidarea {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area.paidarea {
    flex-direction: column;
  }
}
.top_contents .top_contents_inner .contents_area.paidarea .area_img::before {
  left: auto;
  top: -7rem;
  right: -6rem;
  width: 138px;
  height: 138px;
  background-image: url(../images/paid_area.svg);
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area.paidarea .area_img::before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area.paidarea .area_img::before {
    width: 80px;
    height: 80px;
    top: -3rem;
    right: -2rem;
  }
}
.top_contents .top_contents_inner .contents_area.paidarea .area_txt .contents_inner_ttl {
  width: 273px;
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area.paidarea .area_txt .contents_inner_ttl {
    width: 280px;
  }
}
.top_contents .top_contents_inner .contents_area.paidarea .contents_btn_container {
  margin-top: 4rem;
}
.top_contents .top_contents_inner .contents_area.paidarea .contents_btn_container .more_btn.red {
  color: #fff;
}
.top_contents .top_contents_inner .contents_area.paidarea .contents_btn_container .more_btn.red svg {
  fill: #fff;
}
.top_contents .top_contents_inner .contents_area.tomachop .area_txt .contents_inner_ttl {
  width: 300px;
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area.tomachop .area_txt .contents_inner_ttl {
    width: 280px;
  }
}
.top_contents .top_contents_inner .contents_area.tomachop .area_img::before {
  left: auto;
  top: -7rem;
  left: -4.5rem;
  width: 138px;
  height: 138px;
  background-image: url(../images/top/paid_area_02.svg);
}
@media screen and (max-width: 767px) {
  .top_contents .top_contents_inner .contents_area.tomachop .area_img::before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 420px) {
  .top_contents .top_contents_inner .contents_area.tomachop .area_img::before {
    width: 80px;
    height: 80px;
    top: -3rem;
    right: -2rem;
  }
}
.top_contents .top_contents_inner .contents_area.tomachop .contents_btn_container {
  margin-top: 4rem;
}
.top_contents .top_contents_inner .contents_area.tomachop .contents_btn_container .more_btn.red {
  color: #fff;
}
.top_contents .top_contents_inner .contents_area.tomachop .contents_btn_container .more_btn.red svg {
  fill: #fff;
}
.top_contents .hr {
  text-align: center;
  width: 82%;
  margin: 4rem auto 6rem;
}
@media screen and (max-width: 420px) {
  .top_contents .hr {
    margin: 2rem auto 4rem;
  }
}

/*************************************************
top ticket
*************************************************/
.ticket.top_ticket {
  margin-top: 10rem;
}
.ticket.top_ticket .ticket_ttl {
  width: 269px;
  margin: 0;
  padding-left: 2rem;
}
@media screen and (max-width: 420px) {
  .ticket.top_ticket .ticket_ttl {
    width: 210px;
  }
}
.ticket.top_ticket .ticket_contents {
  border: 2px solid #000;
  border-radius: 4rem;
  padding: 4.3rem 0 6.6rem;
  margin-top: -3rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_contents {
    padding-top: 6rem;
  }
}
.ticket.top_ticket .ticket_contents .ticket_head {
  width: 29rem;
  margin: 0 auto;
}
.ticket.top_ticket .ticket_contents .ticket_container {
  margin-top: 3rem;
}
.ticket.top_ticket .ticket_contents .more_btn {
  margin: 2rem auto 0;
  width: 234px;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_contents .more_btn {
    margin-top: 4rem;
  }
}
.ticket.top_ticket .ticket_container {
  display: flex;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_container {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .ticket.top_ticket .ticket_container {
    width: 90%;
  }
}
.ticket.top_ticket .ticket_container .ticket_type {
  flex: 1;
  flex-basis: 33.3333333333%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_container .ticket_type {
    flex-basis: 80%;
    margin-top: 0;
  }
  .ticket.top_ticket .ticket_container .ticket_type:not(:first-child) {
    margin-top: 5rem;
  }
}
.ticket.top_ticket .ticket_container .ticket_type:not(:last-child)::after {
  content: "";
  height: 100%;
  width: 1px;
  background: url(../images/ticket_dot.png) repeat-y;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_container .ticket_type:not(:last-child)::after {
    background: url(../images/ticket_dot_y.png) repeat-x;
    top: auto;
    background-size: contain;
    bottom: -2.5rem;
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_container .ticket_type::after {
    content: "";
    width: 100%;
    height: 1px;
    background: url(../images/ticket_dot_y.png) repeat-x;
    background-size: contain;
    top: auto;
    bottom: -1.5rem;
    position: absolute;
    left: 0;
  }
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_type_ttl {
  background: #0059FF;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0 3.8rem;
  margin: 0 auto;
  width: fit-content;
}
@media screen and (max-width: 420px) {
  .ticket.top_ticket .ticket_container .ticket_type .ticket_type_ttl {
    font-size: 2rem;
  }
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  column-gap: 5px;
  width: 87%;
  margin-top: -0.6rem;
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail.first {
  margin-top: 1rem;
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail dt {
  text-align: right;
  flex-basis: 43%;
  font-size: 1.8rem;
}
@media screen and (max-width: 420px) {
  .ticket.top_ticket .ticket_container .ticket_type .ticket_detail dt {
    font-size: 1.4rem;
  }
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail dd {
  flex-basis: 53%;
  text-align: right;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ticket.top_ticket .ticket_container .ticket_type .ticket_detail dd {
    line-height: 1.2;
  }
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail dd span {
  font-size: 2rem;
}
@media screen and (max-width: 420px) {
  .ticket.top_ticket .ticket_container .ticket_type .ticket_detail dd {
    flex-basis: 48%;
    font-size: 3rem;
  }
  .ticket.top_ticket .ticket_container .ticket_type .ticket_detail dd span {
    font-size: 1.6rem;
    margin-left: 5px;
  }
}
.ticket.top_ticket .ticket_container .ticket_type .ticket_detail_ex {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.6rem;
}

.jimoto_ticket {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 1.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 420px) {
  .jimoto_ticket {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.jimoto_ticket .jimoto_tt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  column-gap: 1.5rem;
}
.jimoto_ticket .jimoto_tt .inner_ttl {
  color: #0059FF;
  border: 1px solid #0059FF;
  font: 700 1.8rem/1.2 "Zen Kaku Gothic Antique", sans-serif;
  border-radius: 2rem;
  padding: 5px 3.5rem;
}
.jimoto_ticket .jimoto_link .kanko_link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0059FF;
  text-decoration: underline;
}
.jimoto_ticket .jimoto_link .kanko_link span {
  margin-left: 1rem;
}
.jimoto_ticket .jimoto_link .kanko_link svg {
  vertical-align: baseline;
  fill: #0059FF;
  transition: 0.3s;
}
.jimoto_ticket .jimoto_link .kanko_link:hover {
  color: #FF4800;
  transform: scale(0.97);
}
.jimoto_ticket .jimoto_link .kanko_link:hover svg {
  fill: #FF4800;
}

/*************************************************
top timetable
*************************************************/
.top_timetable {
  margin-top: 10rem;
}
.top_timetable .timetable_bg {
  background: #DDDDDD;
  padding: 5.3rem 2rem;
  border-radius: 4rem;
  border: 2px solid #000;
}
@media screen and (max-width: 420px) {
  .top_timetable .timetable_bg {
    padding: 4rem 2rem;
  }
}
.top_timetable .top_timetable_ttl {
  width: 435px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .top_timetable .top_timetable_ttl {
    width: 80%;
  }
}

.timetable_container {
  width: 75%;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 420px) {
  .timetable_container {
    width: 100%;
  }
}
.timetable_container .timetable_img {
  border: 1px solid #000;
  border-radius: 3rem;
}
.timetable_container .timetable_img img {
  border-radius: 3rem;
}

.more_btn.timetable {
  width: fit-content;
  padding-right: 2rem;
  margin: 4rem auto 2rem;
}

/*************************************************
top access
*************************************************/
.top_access {
  margin-top: 10rem;
}
.top_access .top_access_ttl {
  width: 277px;
  margin: 0 2rem 0 auto;
}
@media screen and (max-width: 420px) {
  .top_access .top_access_ttl {
    width: 213px;
  }
}
.top_access .top_access_contents {
  background-color: #FFFFCB;
  border: 2px solid #000;
  border-radius: 4rem;
  padding: 4.8rem 0 5rem;
  margin-top: -3rem;
}
.top_access .top_access_contents .access_container {
  width: 800px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_contents .access_container {
    width: 90%;
    column-gap: 2vw;
    align-items: flex-start;
  }
}
@media screen and (max-width: 420px) {
  .top_access .top_access_contents .access_container {
    flex-direction: column;
  }
}
.top_access .top_access_contents .access_map {
  width: 340px;
  border-radius: 3rem;
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_contents .access_map {
    width: 40%;
  }
}
@media screen and (max-width: 420px) {
  .top_access .top_access_contents .access_map {
    width: 100%;
  }
}
.top_access .top_access_contents .access_map iframe {
  width: 100%;
  height: 278px;
  border-radius: 3rem;
}
.top_access .top_access_contents .access_txt {
  flex-basis: 54%;
}
.top_access .top_access_contents .access_txt .access_item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  column-gap: 1.5rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_contents .access_txt .access_item {
    flex-direction: column;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 420px) {
  .top_access .top_access_contents .access_txt .access_item {
    column-gap: 1rem;
  }
}
.top_access .top_access_contents .access_txt .access_item:not(:first-child) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_contents .access_txt .access_item:not(:first-child) {
    margin-top: 1.2rem;
  }
}
.top_access .top_access_contents .access_txt .access_item dt {
  background: #000;
  color: #fff;
  flex-basis: 23%;
  border-radius: 2rem;
  font-weight: 700;
  padding: 5px 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_contents .access_txt .access_item dt {
    font-size: 1.4rem;
  }
}
.top_access .top_access_contents .access_txt .access_item dt span {
  margin-right: 3px;
}
.top_access .top_access_contents .access_txt .access_item .access_detail {
  margin-top: 5px;
  font: 500 1.4rem/1.4 "Zen Kaku Gothic Antique", sans-serif;
}
.top_access .top_access_contents .access_txt .access_item .access_detail strong {
  margin-bottom: 7px;
  font: 700 1.6rem/1.4 "Zen Kaku Gothic Antique", sans-serif;
  display: block;
}
.top_access .top_access_contents .more_btn {
  margin: 3rem auto 0;
}

/* モーダルのスタイルを適用するための追加CSS */
.modaal-noscroll .remodal {
  display: block;
}

.remodal {
  padding-left: 60px !important;
}
@media screen and (max-width: 420px) {
  .remodal {
    padding: 5rem 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .remodal .attention-remodal {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal {
    width: 90%;
  }
}
.remodal .attention-remodal h3 {
  font: 600 2.4rem/2 "Zen Kaku Gothic Antique", sans-serif;
}
.remodal .attention-remodal .group {
  margin-top: 4rem;
}
.remodal .attention-remodal h4 {
  font: 600 1.8rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
  background: #f5f5f5;
  text-align: left;
  width: fit-content;
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal h4 {
    font-size: 1.6rem;
  }
}
.remodal .attention-remodal ul {
  margin-top: 2rem;
}
.remodal .attention-remodal ul li {
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
  text-indent: -2rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal ul li {
    font-size: 1.4rem;
  }
}
.remodal .attention-remodal ul li::before {
  content: "⚫︎";
  margin-right: 0.5rem;
}
.remodal .attention-remodal ul li ul {
  margin-top: 1rem;
  margin-left: 1rem;
}
.remodal .attention-remodal ul li ul li {
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.remodal .attention-remodal ul li ul li::before {
  content: "・";
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal ul li ul li {
    font-size: 1.4rem;
  }
}
.remodal .attention-remodal ul li:last-child {
  margin-bottom: 0px;
}
.remodal .attention-remodal .style_none::before {
  content: none;
}
.remodal .attention-remodal p {
  text-align: left;
  margin-top: 2rem;
  font: 500 1.6rem/1.8 "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal p {
    font-size: 1.4rem;
  }
}
.remodal .attention-remodal dl {
  margin-top: 2rem;
}
.remodal .attention-remodal dl dt, .remodal .attention-remodal dl dd {
  text-align: left;
  font: 500 1.6rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 420px) {
  .remodal .attention-remodal dl dt, .remodal .attention-remodal dl dd {
    font-size: 1.4rem;
  }
}
.remodal .attention-remodal dl dt {
  text-decoration: underline;
  font-weight: 600;
}

.attention_page {
  padding-left: 0 !important;
}
@media screen and (max-width: 420px) {
  .attention_page {
    padding: 0 !important;
  }
}
.attention_page .attention-remodal {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 420px) {
  .attention_page .attention-remodal {
    width: 100%;
  }
}
.attention_page .attention-remodal h3 {
  color: #7600FF;
}

/* 独自のクラスを作成して、Remodalのクラスと競合しないようにする */
.custom-remodal {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 90%;
  height: 80vh;
  max-width: none;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 4rem !important;
  background: #333;
}
@media screen and (max-width: 420px) {
  .custom-remodal {
    width: 95%;
    padding: 2rem !important;
    height: auto;
  }
}
.custom-remodal h2 {
  background: #B8FF0B;
  color: #7600FF;
  font: 600 3.2rem/1.3 "Zen Kaku Gothic Antique", sans-serif;
  width: fit-content;
  margin: 2rem auto;
  padding: 0 1rem;
}
@media screen and (max-width: 420px) {
  .custom-remodal h2 {
    font-size: 2rem;
  }
}
.custom-remodal .aspect-ratio {
  aspect-ratio: 16/9;
  margin-top: 3rem;
}
.custom-remodal .aspect-ratio iframe {
  width: 100%;
  height: 100%;
}

/* Remodalのデフォルトスタイルを上書きする場合 */
.custom-remodal .remodal-close {
  background-color: #ccc;
}

.slider-outer .slider-wrapper {
  width: 80%;
  max-width: 600px;
}
.slider-outer .slider-wrapper .box {
  filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
}

/*************************************************
attention cta
*************************************************/
.attention_cta {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  column-gap: 2vw;
  margin-top: 10rem;
}
@media screen and (max-width: 420px) {
  .attention_cta {
    flex-direction: column;
    row-gap: 2.4rem;
  }
}
.attention_cta .ac_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  background: #7600FF;
  padding: 5.6rem 1rem;
  border: 2px solid #000;
  border-radius: 3rem;
  filter: drop-shadow(0 7px 0 rgb(0, 0, 0));
}
.attention_cta .ac_box .ac_box_ttl_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.attention_cta .ac_box .ac_box_ttl {
  background: #000;
  color: #fff;
  font-size: 18px;
  padding: 0 1.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 5px;
  line-height: 1.6;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-align: center;
}
.attention_cta .ac_box .attention_lead {
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 420px) {
  .attention_cta .ac_box .attention_lead {
    font-size: 1.2rem;
  }
}
.attention_cta .ac_box .link_btn {
  background: #fff;
  border: 1px solid #000;
  border-radius: 2rem;
  line-height: 1.2;
  padding: 4px 3rem;
  text-align: center;
  width: 222px;
  padding-left: 5rem;
  margin-top: 1.5rem;
}
.attention_cta .ac_box .link_btn svg {
  height: 16px;
  margin-left: 1.4rem;
  fill: #000;
  transition: 0.3s;
}
.attention_cta .ac_box .link_btn:hover {
  background: #FF4800;
  color: #fff;
}
.attention_cta .ac_box .link_btn:hover svg {
  fill: #fff;
}
.attention_cta .ac_box.contact {
  background-color: #B8FF0B;
  justify-content: flex-end;
}
.attention_cta .ac_box.contact .contact_lead {
  margin-top: 2rem;
}
@media screen and (max-width: 420px) {
  .attention_cta .ac_box.contact .contact_lead {
    font-size: 1.2rem;
  }
}
.attention_cta .ac_box.contact .link_btn {
  margin-top: 2.6rem;
}

/*************************************************
sponser
*************************************************/
.sponser {
  text-align: center;
  margin-top: 12rem;
}
@media screen and (max-width: 420px) {
  .sponser {
    margin-top: 8rem;
  }
}
.sponser li {
  background: #fff;
  border: 1px solid #000;
  font: 600 1.4rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
  padding: 5px 2.8rem;
  margin: 1rem auto 0;
  width: fit-content;
  border-radius: 3rem;
}
@media screen and (max-width: 420px) {
  .sponser li {
    font-size: 1.2rem;
    padding: 2px 2rem 3px;
    margin-top: 1rem;
  }
}
.sponser li a {
  display: inline;
}
.sponser li a:hover {
  color: #0059FF;
}

.footer {
  width: 1100px;
  margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
  .footer {
    width: 95%;
  }
}
.footer .footer_contents {
  background: #c9caca;
  padding: 5.7rem 2rem 7rem;
  border-radius: 3rem;
  border: 1px solid #000;
}
.footer .footer_container_outer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer .footer_container_outer {
    justify-content: center;
  }
}
.footer .footer_l .footer_logo {
  width: 297px;
}
.footer .footer_l .footer_logo a:hover {
  transform: scale(1.1);
}
.footer .footer_l .archives {
  margin-top: 3rem;
}
.footer .footer_l .archives .archives_item {
  border-radius: 2rem;
  border: 1px solid #000;
  width: fit-content;
  padding: 3px 2.6rem;
  font-size: 1.3rem;
}
.footer .footer_l .archives .archives_item:not(:first-child) {
  margin-top: 1.2rem;
}
.footer .footer_l .archives .archives_item:hover {
  background: #f8f8f8;
  color: #7600FF;
}
@media screen and (max-width: 767px) {
  .footer .footer_l .archives .archives_item {
    margin: 0 auto;
  }
}
.footer .sns_container {
  display: flex;
  justify-content: flex-start;
  column-gap: 1.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .footer .sns_container {
    justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .footer .sns_container {
    margin-top: 2rem;
  }
}
.footer .sns_container .sns_item {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 420px) {
  .footer .sns_container .sns_item {
    width: 30px;
    height: 30px;
  }
}
.footer .sns_container .sns_item:hover {
  transform: scale(1.1);
}
.footer .footer_nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 350px;
  column-gap: 3.5rem;
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav {
    display: none;
  }
}
.footer .footer_nav .footer_box.mr40 {
  margin-top: 3.8rem;
}
.footer .footer_nav .footer_box .footer_head {
  color: #7600FF;
  font-weight: 800;
}
.footer .footer_nav .footer_box .footer_link {
  font: 700 1.3rem/1.8 "Zen Kaku Gothic Antique", sans-serif;
}
.footer .footer_nav .footer_box .footer_link.first {
  margin-top: 1rem;
}
.footer .footer_nav .footer_box .footer_link a:hover {
  color: #7600FF;
}
.footer .copyright {
  text-align: center;
  color: #FFFFCB;
  text-shadow: 1px 1px 0px #0059FF;
  font-size: 12px;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  padding: 1.4rem 0;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 3rem;
  z-index: 999;
  /*hoverしたら表示*/
}
@media screen and (max-width: 767px) {
  .header {
    top: 2rem;
  }
}
.header .logo {
  margin-left: 3vw;
  width: 206px;
  min-width: 156px;
}
.header .nav_container, .header .nav, .header .sns_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .nav {
  background: #fff;
  padding: 8px 3rem;
  border-radius: 3rem;
  border: 1px solid #000;
  column-gap: 2.8rem;
  filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
}
.header .nav .nav_link {
  height: 25px;
}
.header .nav .nav_link:hover {
  color: #7600FF;
}
.header .nav .nav_ticket {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 84px;
}
.header .nav .nav_ticket:hover {
  transform: scale(0.9);
}
.header .nav .nav_ticket img {
  vertical-align: middle;
}
.header .sns_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header .sns_container {
    width: 100%;
    padding: 0 5rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 420px) {
  .header .sns_container {
    padding-bottom: 2rem;
  }
}
.header .sns_container .sns {
  width: 44px;
  height: 44px;
  margin-left: 1rem;
  filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .header .sns_container .sns {
    width: 38px;
    height: 38px;
  }
}
.header .sns_container .sns:hover {
  filter: none;
  transform: translateY(2px);
}
.header .has_child {
  position: relative;
}
.header .nav_child {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 33px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 290px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 3rem 3.8rem;
  border-radius: 0 0 4rem 4rem;
  border: 1px solid #000;
  /*アニメーション設定*/
  transition: all 0.3s;
  filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
}
.header .nav_child::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 10px;
  background: #fff;
  top: -9px;
  left: 1.8rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 999;
}
.header .nav_child::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 10px;
  background: #000;
  top: -10px;
  left: 1.7rem;
  z-index: 998;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.header .nav_child li a {
  color: #000;
  padding: 3px 0;
  line-height: 1.8;
}
.header .nav_child li a:hover {
  color: #7600FF;
}
.header .has_child:hover .nav_child,
.header .has_child:active .nav_child {
  visibility: visible;
  opacity: 1;
}

.burger-btn {
  display: none;
}

@media screen and (max-width: 767px) {
  .burger-btn {
    display: block;
    width: 58px;
    height: 58px;
    position: relative;
    z-index: 3;
    border: 1px solid #000;
    background-color: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
    margin: 0 0 0 auto;
    cursor: pointer;
    right: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn .txt {
    color: #fff;
    font-size: 1rem;
    position: absolute;
    bottom: 0.8rem;
    left: 18%;
  }
  .burger-btn .bar {
    width: 28px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn .bar {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn .bar_top {
    top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn .bar_top {
    top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn .bar_mid {
    top: 27px;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn .bar_mid {
    top: 23px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn .bar_bottom {
    top: 34px;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn .bar_bottom {
    top: 29px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn.close .bar_top {
    transform: translate(-50%, 7px) rotate(45deg);
    transition: transform 0.3s;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .burger-btn.close .bar_top {
    transform: translate(-50%, 5px) rotate(45deg);
  }
}
@media screen and (max-width: 767px) {
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%, -7px) rotate(-45deg);
    transition: transform 0.3s;
  }
  .header .nav_container {
    width: 60vw;
    position: fixed;
    top: 8rem;
    right: -100%;
    z-index: 10;
    transition: 0.3s;
    background: #fff;
    padding: 2vw 0 4vw;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 3rem;
    border-radius: 4rem 0 0 4rem;
    filter: drop-shadow(0 4px 0 rgb(0, 0, 0));
    border: 1px solid #000;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .header .nav_container {
    width: 70vw;
    max-height: 1000px;
    top: 6rem;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .header .nav_container .nav {
    filter: none;
    flex-direction: column;
    width: 100%;
    border: none;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 4rem;
    filter: none;
    padding-right: 0;
  }
  .header .nav_container .nav .nav_link {
    height: auto;
    width: 100%;
    padding: 1rem 0 1rem 4vw;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .header .nav_container .nav .nav_link {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .nav_container.active {
    transition: 0.3s;
    right: 0;
  }
  .header .nav_container .has_child {
    position: relative;
    padding: 1rem 0;
  }
  .header .nav_container .has_child .no-event:before {
    content: "▼";
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .header .nav_container .has_child .no-event:before {
    right: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .header .nav_container .has_child.active .no-event:before {
    content: "－";
  }
  .header .nav_container .nav_child {
    position: relative;
    display: none;
    visibility: visible;
    opacity: 1;
    left: 0;
    top: 0;
    border: none;
    filter: none;
    padding: 2rem 0;
    background: #f5f5f5;
    width: 100%;
    margin-top: 1rem;
    border-radius: 0;
  }
  .header .nav_container .nav_child li a {
    color: #000;
    padding: 1rem 0 1rem 2vw;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .header .nav_container .nav_child li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .nav_container .nav_child::before, .header .nav_container .nav_child::after {
    content: none;
  }
  .header .nav_container .nav_ticket {
    width: 50% !important;
    min-width: 130px;
    margin-top: 1rem;
  }
}
.pages_ttl {
  margin-top: 15.5rem;
}
@media screen and (max-width: 767px) {
  .pages_ttl {
    margin-top: 10rem;
  }
}
.pages_ttl .jp {
  font: 800 1.8rem/1.2 "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 420px) {
  .pages_ttl .jp {
    font-size: 1.4rem;
  }
}
.pages_ttl .jp span {
  color: #0059FF;
  font-size: 1.3rem;
  margin-right: 1rem;
  line-height: 1.8;
}

/*======================================
//      ticket
=======================================*/
.page_ticket .pages_ttl {
  width: 339px;
}
@media screen and (max-width: 420px) {
  .page_ticket .pages_ttl {
    width: 180px;
  }
}
.page_ticket .ticket {
  margin-top: 8.7rem;
  width: 930px;
  margin: 8.7rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket {
    width: 100%;
    margin-top: 5.6rem;
  }
}
.page_ticket .ticket .ticket_head {
  width: 292px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_head {
    width: 240px;
  }
}
.page_ticket .ticket .ticket_contents {
  background: #fff;
  padding: 5.2rem 2vw;
  margin: 2.7rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents {
    width: 90%;
    padding: 2rem 2vw;
  }
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents {
    width: 95%;
    padding: 2rem 0;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container {
  display: flex;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_container {
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_container {
    width: 90%;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type {
  flex: 1;
  flex-basis: 33.3333333333%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type {
    flex-basis: 80%;
    margin-top: 3rem;
  }
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type:not(:first-child) {
    margin-top: 5rem;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type:not(:last-child)::after {
  content: "";
  height: 100%;
  width: 1px;
  background: url(../images/ticket_dot.png) repeat-y;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type:not(:last-child)::after {
    background: url(../images/ticket_dot_y.png) repeat-x;
    top: auto;
    background-size: contain;
    bottom: -2.5rem;
    width: 100%;
    height: 1px;
  }
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type::after {
    content: "";
    width: 100%;
    height: 1px;
    background: url(../images/ticket_dot_y.png) repeat-x;
    background-size: contain;
    top: auto;
    bottom: -1.5rem;
    position: absolute;
    left: 0;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_type_ttl {
  background: #0059FF;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0 3.8rem;
  margin: 0 auto;
  width: fit-content;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_type_ttl {
    font-size: 2rem;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  column-gap: 5px;
  width: 87%;
  margin-top: -0.6rem;
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail.first {
  margin-top: 1rem;
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dt {
  text-align: right;
  flex-basis: 43%;
  font-size: 1.8rem;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dt {
    font-size: 1.4rem;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dd {
  flex-basis: 53%;
  text-align: right;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dd {
    line-height: 1.2;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dd span {
  font-size: 2rem;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dd {
    flex-basis: 48%;
    font-size: 3rem;
  }
  .page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail dd span {
    font-size: 1.6rem;
    margin-left: 5px;
  }
}
.page_ticket .ticket .ticket_contents .ticket_container .ticket_type .ticket_detail_ex {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.6rem;
}
.page_ticket .ticket .ticket_contents .ticket_inner_ttl {
  color: #7600FF;
  font-size: 2.1rem;
  font-weight: 700;
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .ticket_inner_ttl {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_inner_ttl {
    font-size: 1.8rem;
  }
}
.page_ticket .ticket .ticket_contents .ticket_inner_ttl span {
  font-size: 1.5rem;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_inner_ttl span {
    font-size: 1.3rem;
  }
}
.page_ticket .ticket .ticket_contents .ticket_date {
  color: #8A8A8A;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .ticket_date {
    font-size: 1.4rem;
  }
}
.page_ticket .ticket .ticket_contents .more_btn {
  width: 473px;
  padding: 2.5rem 2rem;
  margin: 1.3rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_contents .more_btn {
    width: 90%;
    padding: 2rem;
  }
}
.page_ticket .ticket .ticket_contents .more_btn::before {
  border-radius: 50px;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_contents .more_btn {
    padding: 1.6rem 1rem;
  }
  .page_ticket .ticket .ticket_contents .more_btn span {
    font-size: 1.4rem;
  }
  .page_ticket .ticket .ticket_contents .more_btn span svg {
    width: 14px;
    vertical-align: sub;
    margin-left: 1rem;
  }
}
.page_ticket .ticket .after_call {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.4rem;
  column-gap: 8px;
}
.page_ticket .ticket .after_call .after_ttl {
  font-size: 16.008px;
  font-weight: 700;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .after_call .after_ttl {
    font-size: 1.4rem;
  }
}
.page_ticket .ticket .after_call .after_ttl span {
  color: #FF4800;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-left: 4px;
  vertical-align: baseline;
}
.page_ticket .ticket .after_call ul {
  display: flex;
  column-gap: 3px;
}
.page_ticket .ticket .after_call ul .after_01 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0059FF;
  border: 1px solid #0059FF;
  padding: 0 1.6rem;
  border-radius: 20px;
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .after_call ul .after_01 {
    font-size: 1.6rem;
  }
}
.page_ticket .ticket .ticket_attention {
  background: #ccc;
  padding: 2rem;
  border-radius: 3rem;
  width: 80rem;
  margin: 2.3rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_attention {
    width: 95%;
  }
}
@media screen and (max-width: 420px) {
  .page_ticket .ticket .ticket_attention {
    width: 90%;
  }
}
.page_ticket .ticket .ticket_attention .attention_box {
  width: fit-content;
  margin: 0 auto;
}
.page_ticket .ticket .ticket_attention .attention_list {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  text-indent: -2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .page_ticket .ticket .ticket_attention .attention_list {
    font-size: 1rem;
  }
}
.page_ticket .ticket .ticket_attention .attention_list::before {
  content: "※";
}
.page_ticket .playguid_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.2rem;
}
.page_ticket .playguid_container .playguid.more_btn {
  width: 373px;
  padding: 1.5rem 1rem;
  margin: 0;
}
@media screen and (max-width: 420px) {
  .page_ticket .playguid_container .playguid.more_btn {
    width: 300px;
    padding: 1rem 1rem;
  }
}

.huscup_ticket {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 420px) {
  .huscup_ticket {
    flex-direction: column;
    margin-top: 6rem;
    gap: 0;
  }
}
.huscup_ticket .huscup_price {
  font-size: 3.6rem;
}
@media screen and (max-width: 420px) {
  .huscup_ticket .huscup_price {
    font-size: 3rem;
  }
}
.huscup_ticket .huscup_price span {
  font-size: 18px;
}
.huscup_ticket .huscup_price .date {
  margin-right: 8px;
}

.ticket .ticket_contents .parking_prices {
  margin-top: -8rem;
  padding-top: 8rem;
}
.ticket .ticket_contents .parking_prices .parking {
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 420px) {
  .ticket .ticket_contents .parking_prices .parking {
    align-items: center;
  }
}
.ticket .ticket_contents .parking_prices .parking .parking_ttl {
  width: 80px;
  padding-top: 1rem;
}
@media screen and (max-width: 420px) {
  .ticket .ticket_contents .parking_prices .parking .parking_ttl {
    width: 70px;
  }
}
.ticket .ticket_contents .parking_prices .parking .parking_ttl .ticket_head {
  width: 100%;
}
.ticket .ticket_contents .parking_prices .parking .parking_item {
  font-size: 1.8rem;
  line-height: 2;
}
.ticket .ticket_contents .parking_prices .parking .parking_item span {
  font-size: 1.4rem;
}
.ticket .ticket_contents .parking_prices .parking_map {
  width: 80%;
  margin: 40px auto;
}
.ticket .ticket_contents .parking_prices .parking_map iframe {
  width: 100%;
  height: 300px;
}
.ticket .ticket_contents .parking_prices .parking_ticket {
  width: 373px;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 420px) {
  .ticket .ticket_contents .parking_prices .parking_ticket {
    width: 300px;
    padding: 1rem 1rem;
  }
}
.ticket .ticket_contents .parking_prices .parking_ticket span {
  color: #fff;
}

/*======================================
//      about
=======================================*/
.page_access {
  margin-top: 15.5rem;
}
.page_access .pages_about_ttl {
  width: 325px;
  display: inline-block;
}
@media screen and (max-width: 420px) {
  .page_access .pages_about_ttl {
    width: 180px;
  }
}
.page_access .about_info_txt {
  margin-top: 1.4rem;
  font: 800 4rem/1.3 "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_access .about_info_txt {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 420px) {
  .page_access .about_info_txt {
    font-size: 2rem;
  }
}
.page_access .min-wrapper {
  width: 910px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_access .min-wrapper {
    width: 90%;
  }
}
@media screen and (max-width: 420px) {
  .page_access .min-wrapper {
    width: 100%;
  }
}
.page_access .about_access_contents {
  background: #FFFFCB;
  border: 2px solid #000;
  border-radius: 4rem;
  padding: 7.2rem 4rem;
  margin-top: 6.4rem;
}
@media screen and (max-width: 420px) {
  .page_access .about_access_contents {
    padding: 5.6rem 2rem;
  }
}
.page_access .about_access_contents .about_head {
  width: 265px;
  margin-bottom: 3rem;
}
.page_access .about_access_contents .access_map {
  width: 840px;
  margin: 2.4rem auto 0;
  border: 2px solid #000;
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .page_access .about_access_contents .access_map {
    width: 90%;
  }
}
@media screen and (max-width: 420px) {
  .page_access .about_access_contents .access_map {
    width: 100%;
  }
}
.page_access .about_access_contents .access_map iframe {
  border-radius: 4rem;
  width: 100%;
  height: 340px;
}
.page_access .about_access_contents .access_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 3rem;
  column-gap: 3vw;
}
@media screen and (max-width: 767px) {
  .page_access .about_access_contents .access_container {
    flex-direction: column;
    row-gap: 2.4rem;
  }
}
.page_access .about_access_contents .access_container .access_item {
  display: flex;
  flex-direction: column;
}
.page_access .about_access_contents .access_container .access_item.place {
  flex-direction: row;
  column-gap: 1rem;
}
.page_access .about_access_contents .access_container .access_item.place .access_detail strong {
  margin-left: 1rem;
}
.page_access .about_access_contents .access_container .access_item .access_detail {
  margin-top: 1rem;
}
.page_access .access_item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page_access .access_item.place {
  flex-direction: row;
  column-gap: 1rem;
}
@media screen and (max-width: 420px) {
  .page_access .access_item.place {
    flex-direction: column;
  }
}
.page_access .access_item.place .access_detail {
  font-size: 1.4rem;
}
.page_access .access_item.place .access_detail strong {
  font-size: 2.2rem;
  margin-left: 1rem;
}
@media screen and (max-width: 420px) {
  .page_access .access_item.place .access_detail strong {
    display: block;
  }
}
.page_access .access_item.place .access_detail span {
  color: #0059FF;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 420px) {
  .page_access .access_item.place .access_detail span {
    margin-left: 1rem;
  }
}
.page_access .access_item dt {
  color: #fff;
  background: #000;
  padding: 3px 2rem 2px;
  border-radius: 3rem;
  height: 32px;
  vertical-align: middle;
}
.page_access .access_item .after_info {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
}
.page_access .access_item .after_info .after_txt {
  background: #000;
  color: #fff;
}
.page_access .access_item .after_info .after_ttl {
  font-weight: 600;
  color: #7600ff;
  text-decoration: underline;
}
.page_access .access_item .after_info .after_ttl span {
  font-size: 1.2rem;
  margin: 0 5px;
}
.page_access .access_item .after_info .after_txt {
  font-size: 1.8rem;
  padding: 0 1.6rem;
  border: 1px solid #000;
  border-radius: 3rem;
}
.page_access .overview {
  width: 910px;
  margin: 10rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_access .overview {
    width: 90%;
  }
}
.page_access .overview .overview_table {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  color: #000;
  border-radius: 0 0 4rem 4rem;
  border-collapse: separate; /*collapseから変更*/
  border-spacing: 0;
  border: 1px solid #000;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table {
    width: 100%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
  }
  .page_access .overview .overview_table tr {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page_access .overview .overview_table tr:first-child {
    border-top: 0.5px solid #000;
  }
}
.page_access .overview .overview_table tr:last-child th, .page_access .overview .overview_table tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table tr:last-child th {
    border-bottom: 1px solid #000;
  }
  .page_access .overview .overview_table tr:last-child td {
    padding-bottom: 2.5rem;
  }
}
.page_access .overview .overview_table caption {
  background: #000;
  color: #fff;
  padding: 7px;
  border-radius: 4rem 4rem 0 0;
  font: 700 1.6rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
}
.page_access .overview .overview_table th {
  padding: 2.4rem 5rem;
  width: 24%;
  border-bottom: 1px solid #000;
  vertical-align: middle;
}
.page_access .overview .overview_table th span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table th {
    border: none;
    border-bottom: 0.5px solid #000;
    width: 100%;
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
    background: #ccc;
  }
}
.page_access .overview .overview_table td {
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  padding: 2.4rem 2rem 2.4rem 4rem;
  vertical-align: middle;
  font-weight: 500;
}
.page_access .overview .overview_table td p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table td {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #000;
  }
}
.page_access .overview .overview_table td span {
  font-weight: 500;
  padding: 0 0.8rem;
  margin-left: 1.6rem;
  vertical-align: baseline;
}
.page_access .overview .overview_table td dl {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table td dl {
    width: 75%;
    margin: 0 auto;
  }
}
.page_access .overview .overview_table td dl dt {
  font-weight: 400;
  letter-spacing: 0.08em;
}
.page_access .overview .overview_table td dl dd {
  letter-spacing: 0.08em;
}
.page_access .overview .overview_table dd p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table .pl {
    border: none;
    margin-top: 1rem;
    font-weight: 600;
  }
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .pl {
    color: #7600FF;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table .item {
    padding: 0 0 2rem 0;
    border: none;
    border-bottom: 0.5px solid #000;
  }
  .page_access .overview .overview_table .item p {
    padding-top: 0;
    padding-left: 4rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 420px) {
  .page_access .overview .overview_table .item p {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .page_access .overview .overview_table .item02 {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .item02 {
    padding-bottom: 1rem;
  }
}
.page_access .overview .overview_table .price_box {
  padding: 0;
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .price_box {
    padding-bottom: 1rem;
  }
}
.page_access .overview .overview_table .price_box dl {
  width: 100%;
  justify-content: flex-start;
  padding: 2rem 3rem;
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .price_box dl {
    padding: 0.5rem 2rem;
  }
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .price_box dl:not(:last-child) {
    border-bottom: none;
  }
}
.page_access .overview .overview_table .price_box dl dt, .page_access .overview .overview_table .price_box dl dd {
  font-weight: 500;
}
@media screen and (max-width: 420px) {
  .page_access .overview .overview_table .price_box dl dt, .page_access .overview .overview_table .price_box dl dd {
    font-size: 1.4rem;
  }
  .page_access .overview .overview_table .price_box dl dt p, .page_access .overview .overview_table .price_box dl dd p {
    font-size: 1.4rem;
  }
}
.page_access .overview .overview_table .price_box dl dt {
  flex-basis: 25%;
}

/*======================================
//      lineup
=======================================*/
.page_lineup .wide_wrapper {
  width: 1230px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_lineup .wide_wrapper {
    width: 98%;
  }
}
.page_lineup .pages_ttl {
  width: 370px;
}
@media screen and (max-width: 420px) {
  .page_lineup .pages_ttl {
    width: 170px;
  }
}
.page_lineup .stagename {
  margin-top: 7.2rem;
  width: 100%;
  background: #FFFFCB;
  border: 2px solid #000;
  border-radius: 4rem;
  padding: 7px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename {
    margin-top: 4rem;
  }
}
.page_lineup .stagename .stagename_icon {
  margin-right: 1rem;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename .stagename_icon {
    width: 3rem;
    height: 3rem;
  }
}
.page_lineup .stagename .stagename_icon img {
  width: 6rem;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename .stagename_icon img {
    width: 3rem;
  }
}
.page_lineup .stagename .ttl {
  width: 515px;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename .ttl {
    width: 300px;
  }
}
.page_lineup .stagename.curry .ttl {
  width: 565px;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename.curry .ttl {
    width: 85%;
  }
}
.page_lineup .stagename.huscup .ttl {
  width: 467px;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename.huscup .ttl {
    width: 270px;
  }
}
.page_lineup .stagename.tarumae .ttl {
  width: 400px;
}
@media screen and (max-width: 420px) {
  .page_lineup .stagename.tarumae .ttl {
    width: 230px;
  }
}
.page_lineup .lineup_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  column-gap: 2.4vw;
  margin-top: 3rem;
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container {
    flex-direction: column;
    row-gap: 4rem;
  }
}
.page_lineup .lineup_container .lineup_oneday {
  border: 2px solid #000;
  border-radius: 4rem;
  background: #fff;
  flex: 1;
  padding: 6.4rem 3.6rem;
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container .lineup_oneday {
    padding: 6.4rem 2rem;
    width: 100%;
  }
}
.page_lineup .lineup_container .lineup_oneday .oneday_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 1.7rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container .lineup_oneday .oneday_container {
    gap: 3rem 1rem;
  }
}
.page_lineup .lineup_container .date07 {
  width: 152px;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container .date07 {
    width: 100px;
  }
}
.page_lineup .lineup_container .date08 {
  margin: 0 auto;
  width: 172px;
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container .date08 {
    width: 120px;
  }
}
.page_lineup .andmore {
  width: 136px;
  margin: 4rem auto 0;
}
.page_lineup .curry_ttl {
  margin-top: 4rem;
  font: 600 2.8rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
  color: #7600FF;
  padding-bottom: 5px;
  border-bottom: 1px solid #7600FF;
}
.page_lineup .curry_ttl span {
  font-size: 1.6rem;
  vertical-align: middle;
  margin-right: 1rem;
  color: #B8FF0B;
}

/*======================================
//      contents
=======================================*/
.wide_wrapper {
  width: 95%;
  margin: 0 auto;
  max-width: 1230px;
}

.pages_ttl.contents .pages_contents_ttl {
  width: 465px;
  display: block;
}
@media screen and (max-width: 420px) {
  .pages_ttl.contents .pages_contents_ttl {
    width: 280px;
  }
}

.pages_contents {
  display: flex;
  justify-content: space-between;
  column-gap: 1.5vw;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .pages_contents {
    flex-direction: column;
    row-gap: 4rem;
  }
}
.pages_contents .contents_nav {
  background: #fff;
  border: 1px solid #000;
  padding: 3rem 3rem 3rem 4rem;
  border-radius: 3rem;
  height: 100%;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 767px) {
  .pages_contents .contents_nav {
    width: 100%;
    position: static;
  }
}
.pages_contents .contents_nav .contents_nav_ttl {
  color: #0059FF;
  font: 600 1.5rem/1.2 "Zen Kaku Gothic Antique", sans-serif;
  padding: 1rem 0;
}
.pages_contents .contents_nav .nav_hr {
  line-height: 0;
}
.pages_contents .contents_nav .contents_nav_list {
  font: 700 2rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 2rem;
}
.pages_contents .contents_nav .contents_nav_list .contents_nav_item {
  padding: 0.6rem 0 0.6rem;
  display: flex;
  align-items: center;
  color: #787878;
}
.pages_contents .contents_nav .contents_nav_list .contents_nav_item span {
  font-size: 1.2rem;
  margin-right: 1rem;
  line-height: 2;
}
.pages_contents .contents_nav .contents_nav_list .contents_nav_item.current {
  color: #0059FF;
}
.pages_contents .contents_area {
  background: #fff;
  border: 1px solid #000;
  border-radius: 4rem;
  width: 930px;
  padding: 5rem 4rem 7rem;
}
@media screen and (max-width: 767px) {
  .pages_contents .contents_area {
    width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem 7rem;
  }
}
.pages_contents .contents_area .contents_areattl .en {
  width: 507px;
  display: block;
}
@media screen and (max-width: 420px) {
  .pages_contents .contents_area .contents_areattl .en {
    width: 100%;
  }
}
.pages_contents .contents_area .contents_areattl .jp {
  font: 700 1.4rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 420px) {
  .pages_contents .contents_area .contents_areattl .jp {
    font-size: 1.2rem;
  }
}
.pages_contents .contents_area .area_ttl_container {
  position: relative;
}
.pages_contents .contents_area .area_ttl_container .area_badge {
  width: 130px;
  height: 130px;
  position: absolute;
  top: -4rem;
  right: 0;
}
@media screen and (max-width: 420px) {
  .pages_contents .contents_area .area_ttl_container .area_badge {
    width: 80px;
    height: 80px;
    top: -44%;
  }
}
.pages_contents .contents_area .contents_area_lead {
  font: 700 2rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
  margin-top: 4rem;
}
@media screen and (max-width: 420px) {
  .pages_contents .contents_area .contents_area_lead {
    font-size: 1.6rem;
  }
}
.pages_contents .contents_area .contents_area_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 420px) {
  .pages_contents .contents_area .contents_area_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pages_contents .contents_area .area_box {
  border: 1px solid #000;
  padding: 1.5rem 2.3rem 1.7rem;
  border-radius: 3rem;
  filter: drop-shadow(0 8px 0 rgb(62, 82, 255));
  background: #fff;
  transition: 0.3s;
}
.pages_contents .contents_area .area_box.area_02 {
  filter: drop-shadow(0 8px 0 rgb(0, 201, 157));
}
.pages_contents .contents_area .area_box:hover {
  filter: none;
  transform: translateY(2px);
}
.pages_contents .contents_area .area_box:hover .imgbox::after {
  transform: scale(0.9);
}
.pages_contents .contents_area .area_box .area_box_tag {
  color: #0059FF;
  font: 400 1.8rem/1 "dotgothic16", sans-serif;
  display: flex;
  align-items: center;
}
.pages_contents .contents_area .area_box .area_box_tag span {
  font-size: 1.2rem;
  margin-right: 1rem;
}
.pages_contents .contents_area .area_box .imgbox {
  margin-top: 1rem;
  position: relative;
}
.pages_contents .contents_area .area_box .imgbox img {
  border: 1px solid #000;
  border-radius: 2rem;
  object-fit: cover;
  height: 19rem;
}
.pages_contents .contents_area .area_box .imgbox.contain img {
  object-fit: contain;
}
.pages_contents .contents_area .area_box .imgbox::after {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../images/area_link.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -22px;
  transition: 0.3s;
}
.pages_contents .contents_area .area_box .areabox_ttl {
  font: 700 2rem/1.4 "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
  margin-top: 1.7rem;
}
.pages_contents .contents_area .area_box.noevent .imgbox::after {
  content: none;
}
.pages_contents .contents_area .more {
  width: 136px;
  margin: 3.2rem auto 0;
}
.pages_contents .contents_area.pay_area {
  margin-top: 8rem;
}
.pages_contents .contents_area.pay_area .contents_areattl .en {
  width: 344px;
}
@media screen and (max-width: 767px) {
  .pages_contents .contents_area.pay_area .contents_areattl .en {
    width: 220px;
  }
}
.pages_contents .contents_area.pay_area .contents_areattl.tomachop .en {
  width: 380px;
}
@media screen and (max-width: 767px) {
  .pages_contents .contents_area.pay_area .contents_areattl.tomachop .en {
    width: 240px;
  }
}
.pages_contents .contents_area.pay_area .area_badge {
  width: 108px;
  height: 108px;
}
@media screen and (max-width: 767px) {
  .pages_contents .contents_area.pay_area .area_badge {
    width: 70px;
    height: 70px;
    top: -3rem;
  }
}
.pages_contents .contents_area.pay_area .paid_container .area_box {
  padding: 6rem 3rem 2rem;
  background: #FF4800;
  border: none;
  filter: drop-shadow(0 8px 0 rgb(0, 0, 0));
}
.pages_contents .contents_area.pay_area .paid_container .area_box .areabox_ttl {
  color: #fff;
  font-size: 1.4rem;
}
.pages_contents .contents_area.pay_area .paid_container .area_box .more_btn {
  margin: 1.6rem auto 0;
  transition: 0.3s;
}
.pages_contents .contents_area.pay_area .paid_container .area_box.second {
  background: #7600FF;
}
.pages_contents .contents_area.pay_area .paid_container .area_box.yg {
  background: #B8FF0B;
}
.pages_contents .contents_area.pay_area .paid_container .area_box.yg .areabox_ttl {
  color: #000;
}
.pages_contents .contents_area.pay_area .paid_container .area_box.blue {
  background: #0059FF;
}
.pages_contents .contents_area.pay_area .paid_container .area_box:hover {
  filter: none;
}
.pages_contents .contents_area.pay_area .paid_container .area_box:hover .more_btn {
  filter: none;
  transform: none;
}
.pages_contents .photo_area {
  margin-top: 8rem;
}
.pages_contents .photo_area .contents_areattl .en {
  width: 575px;
}
@media screen and (max-width: 767px) {
  .pages_contents .photo_area .contents_areattl .en {
    width: 80%;
  }
}
@media screen and (max-width: 420px) {
  .pages_contents .photo_area .contents_areattl .en {
    width: 100%;
  }
}
.pages_contents .photo_area .gallery_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
  margin-top: 3.5rem;
}
@media screen and (max-width: 420px) {
  .pages_contents .photo_area .gallery_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
}
.pages_contents .photo_area .gallery_container img {
  border: 1px solid #000;
  border-radius: 2rem;
}

/* -------------------------------------- */
/* ---     フォトギャラリーのモーダル     --- */
/* -------------------------------------- */
.swiperModalButton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

/* モーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 420px) {
  .modal {
    padding: 3rem 2rem;
  }
}

/* モーダルがactiveの時 */
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダル背景のオーバーレイ部分 */
.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* モーダルのコンテンツ */
.modal__content {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding: 20px;
}

.modal_inner {
  width: 90%;
  margin: 0 auto;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 420px) {
  .modal_inner {
    width: 100%;
  }
}
.modal_inner .swiper-slide {
  max-width: 800px !important;
}

/* 閉じるボタン */
.modal__close-btn {
  position: absolute;
  right: 0;
  top: -40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
}

.modal__close-btn:hover {
  opacity: 0.8;
}

/* 閉じるボタンのX */
.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 4rem;
  height: 0.1rem;
  background: currentColor;
  border-radius: 0.1rem;
  position: relative;
  transform: rotate(45deg);
}

.lineClose::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

p.swiperText {
  margin: 0;
  text-align: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #0059FF;
}
@media screen and (max-width: 420px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2rem;
  }
}

@media screen and (max-width: 420px) {
  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -1rem;
  }
}
/*======================================
//      news
=======================================*/
.page_news .pages_news_ttl img {
  width: 272px;
}
@media screen and (max-width: 420px) {
  .page_news .pages_news_ttl img {
    width: 150px;
  }
}
.page_news .news_container {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 12px;
}
@media screen and (max-width: 767px) {
  .page_news .news_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .page_news .news_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_news .news_container .news_article {
  padding: 4rem 2rem 3rem;
}
.page_news .news_wrapper {
  width: 900px;
  margin: 8rem auto 0;
  background: #fff;
  padding: 7rem 0;
  border: 1px solid #000;
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .page_news .news_wrapper {
    width: 100%;
    padding: 5.6rem 2rem;
  }
}
.page_news .news_detail_container {
  width: 65rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page_news .news_detail_container {
    width: 100%;
  }
}
.page_news .news_detail_container .news_info {
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}
.page_news .news_detail_container .news_info .date {
  color: #888888;
}
.page_news .news_detail_container .news_info .date span {
  font-size: 1.1rem;
  color: #B8FF0B;
  margin-right: 1rem;
}
.page_news .news_detail_container .news_info .news_ttl {
  font: 700 3.2rem/1.4 "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_info .news_ttl {
    font-size: 2.8rem;
  }
}
.page_news .news_detail_container .news_detail_contents {
  padding: 2rem 0;
}
.page_news .news_detail_container .news_detail_contents span {
  color: #666;
}
.page_news .news_detail_container .news_detail_contents p {
  padding: 2rem 0;
  font: 500 1.8rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
}
.page_news .news_detail_container .news_detail_contents p span {
  font-size: 1.2rem;
  line-height: 1.4;
  display: inline-block;
  color: #000;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents p {
    padding: 1.4rem 0;
    font-size: 1.4rem;
  }
}
.page_news .news_detail_container .news_detail_contents .pd {
  padding: 0rem 0 2rem;
}
.page_news .news_detail_container .news_detail_contents .container {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .container {
    gap: 2rem 0.5rem;
  }
}
.page_news .news_detail_container .news_detail_contents .container .img {
  flex: 1;
  padding: 1rem 0;
}
.page_news .news_detail_container .news_detail_contents .container .img figcaption {
  padding-bottom: 1rem;
}
.page_news .news_detail_container .news_detail_contents .container .img figcaption span {
  font-size: 1.4rem;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .container .img figcaption {
    font-size: 1.2rem;
  }
}
.page_news .news_detail_container .news_detail_contents .container .img img {
  height: 200px;
  object-fit: contain;
  object-position: left;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .container .img img {
    height: 93px;
  }
}
.page_news .news_detail_container .news_detail_contents .container .heightauto img {
  height: auto;
}
.page_news .news_detail_container .news_detail_contents .wrap {
  flex-wrap: wrap;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .wrap {
    gap: 1rem 2rem;
  }
}
.page_news .news_detail_container .news_detail_contents .wrap .img {
  flex-basis: 40%;
}
.page_news .news_detail_container .news_detail_contents .img {
  padding: 2rem 0;
}
.page_news .news_detail_container .news_detail_contents .img.high {
  width: fit-content;
}
.page_news .news_detail_container .news_detail_contents .img.high img {
  height: 320px;
  object-fit: contain;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .img.high img {
    height: 180px;
  }
}
.page_news .news_detail_container .news_detail_contents h2 {
  padding: 0 0 5px 3rem;
  font: 700 2.4rem/1.6 "Zen Kaku Gothic Antique", sans-serif;
  position: relative;
  margin: 2rem 0;
}
.page_news .news_detail_container .news_detail_contents h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: url(../images/ticket_dot_y.png) repeat-x;
  top: auto;
  background-size: contain;
  bottom: 0;
  left: 0;
}
.page_news .news_detail_container .news_detail_contents h2::before {
  content: "●";
  color: #FF4800;
  font-size: 1.7rem;
  position: absolute;
  left: 0;
  top: 6px;
}
.page_news .news_detail_container .news_detail_contents h3 {
  font: 700 2.4rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
  padding-left: 3rem;
  margin: 2rem 0;
  position: relative;
}
.page_news .news_detail_container .news_detail_contents h3::before {
  width: 18px;
  height: 7px;
  border-radius: 1rem;
  background: #B8FF0B;
  position: absolute;
  content: "";
  top: 1.5rem;
  left: 0;
}
.page_news .news_detail_container .news_detail_contents h4 {
  padding-left: 2rem;
  margin: 1.3rem 0;
  position: relative;
  font: 700 2rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
}
.page_news .news_detail_container .news_detail_contents h4::before {
  color: #7600FF;
  position: absolute;
  content: "◆";
  top: 4px;
  left: 0;
  font-size: 1.4rem;
}
.page_news .news_detail_container .news_detail_contents h5 {
  padding-left: 1.8rem;
  margin: 1.6rem 0;
  position: relative;
  font: 700 2rem/1.5 "Zen Kaku Gothic Antique", sans-serif;
}
.page_news .news_detail_container .news_detail_contents h5::before {
  color: #0059FF;
  position: absolute;
  content: "●";
  top: 6px;
  left: 0;
  font-size: 1rem;
}
.page_news .news_detail_container .news_detail_contents ul {
  padding-left: 2rem;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents ul {
    padding-left: 0;
  }
}
.page_news .news_detail_container .news_detail_contents ul li {
  list-style-type: disc;
  list-style-position: inside;
  font: 500 1.8rem/1.8 "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents ul li {
    font-size: 1.4rem;
  }
}
.page_news .news_detail_container .news_detail_contents ul li span {
  font-size: 14px;
  color: #000;
}
.page_news .news_detail_container .news_detail_contents iframe {
  width: 100%;
  height: 300px;
  margin: 10px 0;
}
.page_news .news_detail_container .news_detail_contents a {
  padding: 2rem 0;
  color: #7600FF;
  font-size: 2rem;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents a {
    word-break: break-all;
    padding: 1rem 0;
    font-size: 16px;
  }
}
.page_news .news_detail_container .news_detail_contents a span {
  line-height: 2.4;
  vertical-align: text-top;
  font-size: 1.2rem;
  padding-left: 1rem;
  color: #7600FF;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents a span {
    line-height: 1.8;
  }
}
.page_news .news_detail_container .news_detail_contents a:hover {
  color: #FF4800;
}
.page_news .news_detail_container .news_detail_contents a:hover span {
  color: #FF4800;
}
.page_news .news_detail_container .news_detail_contents .narrow {
  padding: 0;
}
.page_news .news_detail_container .news_detail_contents table {
  width: 100%;
  margin-top: 2rem;
  table-layout: fixed;
}
.page_news .news_detail_container .news_detail_contents table tr:first-child {
  border-top: 1px solid #ccc;
}
.page_news .news_detail_container .news_detail_contents table tr:last-child {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .page_news .news_detail_container .news_detail_contents table {
    border-left: 1px solid #ccc;
  }
}
.page_news .news_detail_container .news_detail_contents table th {
  color: #7600ff;
  background: #C9CACA;
  font-size: 1.6rem;
  padding: 1.4rem 1rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #f7f7f7;
  border-right: 1px solid #f7f7f7;
  width: 22%;
}
@media screen and (max-width: 767px) {
  .page_news .news_detail_container .news_detail_contents table th {
    width: 100%;
    display: block;
  }
}
.page_news .news_detail_container .news_detail_contents table td {
  width: 38%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1.4rem 1rem;
  font-size: 1.6rem;
  text-align: center;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .page_news .news_detail_container .news_detail_contents table td {
    width: 100%;
    display: block;
  }
}
.page_news .news_detail_container .news_detail_contents table td span {
  font-size: 1.2rem;
}
.page_news .news_detail_container .news_detail_contents table td a {
  word-break: break-all;
  font-size: 1.6rem !important;
  padding: 0;
}
.page_news .news_detail_container .news_detail_contents .video {
  width: 80%;
  height: 310px;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .video {
    height: 250px;
  }
}
.page_news .news_detail_container .news_detail_contents .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media screen and (max-width: 420px) {
  .page_news .news_detail_container .news_detail_contents .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
.page_news .news_detail_container .news_detail_contents .grid .img {
  padding: 0;
}
.page_news .news_detail_container .news_detail_contents .grid .img img {
  height: auto;
}
.page_news .news_detail_container .news_detail_contents .snsbox {
  padding-top: 0;
}
.page_news .news_detail_container .more_btn {
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  .page_news .news_detail_container .more_btn {
    margin-top: 2rem;
  }
}

.top_ticket.ticket .otherticket_container {
  display: flex;
  justify-content: center;
  gap: 9rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top_ticket.ticket .otherticket_container {
    margin-top: 7rem;
    flex-direction: column;
    gap: 4rem;
  }
}
.top_ticket.ticket .otherticket_container .huscup_ticket {
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
  justify-content: flex-start;
}
.top_ticket.ticket .otherticket_container .parking_prices {
  padding: 0;
  margin: 0;
}
.top_ticket.ticket .otherticket_container .parking {
  margin: 4rem auto 0;
  margin-top: 0;
  width: fit-content;
  align-items: center;
}
.top_ticket.ticket .otherticket_container .parking .parking_ttl {
  padding-top: 0;
}
.top_ticket.ticket .more_btn {
  margin-top: 3rem !important;
}

/*======================================
//      food 
=======================================*/
.page_lineup .pages_ttl.foodttl {
  width: 530px;
}
@media screen and (max-width: 420px) {
  .page_lineup .pages_ttl.foodttl {
    width: 290px;
  }
}
.page_lineup .lineup_container.booth-container .food-date {
  width: 282px;
  margin: 2rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .page_lineup .lineup_container.booth-container .food-date {
    width: 190px;
    margin: 0 auto 4rem;
  }
}
.page_lineup .lineup_container.booth-container .oneday_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  .page_lineup .lineup_container.booth-container .oneday_container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container.booth-container .oneday_container {
    gap: 2rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .page_lineup .lineup_container.booth-container .oneday_container .a-item {
    flex-direction: column;
  }
}
.page_lineup .lineup_container.booth-container .oneday_container .a-item .img {
  margin-bottom: 8px;
}
.page_lineup .lineup_container.booth-container .oneday_container .a-item .area {
  color: #7600FF;
  border: 1px solid #7600FF;
  width: fit-content;
  padding: 0 5px;
  font-size: 1rem;
}
.page_lineup .lineup_container.booth-container .oneday_container .a-item .free {
  border: 1px solid #0059FF;
  color: #0059FF;
}
.page_lineup .lineup_container.booth-container .oneday_container .a-item .a-name {
  margin-top: 0.8rem;
}
.page_lineup .lineup_container.booth-container .oneday_container .a-item .hinmoku {
  color: #787878;
  font-size: 1.2rem;
  margin-top: 0.8rem;
}