@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger {
  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);
  }
}
.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: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #192948;
  -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;
  -moz-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: #192948;
  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: 480px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #192948;
  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: 90%;
  }
}

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

.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: 480px) {
  .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] {
  -webkit-text-decoration: underline dotted;
          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 */
  -moz-appearance: none;
       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;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-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;
}

.more_btn {
  background: #FF4800;
  border: 1px solid #3483FF;
  padding: 1.8rem;
  border-radius: 1.5rem;
  width: 400px;
  margin-top: 2rem;
  filter: drop-shadow(0 5px 0 #3483FF);
  text-align: center;
  position: relative;
  gap: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .more_btn {
    width: 95%;
    margin: 2rem auto 0;
    padding: 1.4rem;
  }
}
.more_btn:hover {
  filter: drop-shadow(0 0 0 #3483FF);
  transform: translateY(2px);
}
@media screen and (max-width: 480px) {
  .more_btn {
    font-size: 1.6rem;
  }
}
.more_btn span {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0;
}
.more_btn span img {
  vertical-align: super;
}
.more_btn.red {
  background: #FF4800;
  color: #fff;
}
.more_btn.red::after {
  content: none;
}
.more_btn.green {
  background: #B8FF0B;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  color: #3483FF;
}
.more_btn.green::after {
  content: none;
}
.more_btn.target_link {
  color: #fff;
  margin-top: 2rem;
}
.more_btn.target_link::after {
  content: "";
  width: 54px;
  height: 54px;
  background: url(../images/target_link_icon.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
}
@media screen and (max-width: 480px) {
  .more_btn.target_link::after {
    width: 34px;
    height: 34px;
    right: 1.6rem;
  }
}

.stage_ttl {
  color: #B8FF0B;
  text-shadow: 0px 2px 0px #3483FF;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #3483FF;
  font-family: "Zen Kaku Gothic New";
  font-size: 28px;
  font-weight: 900;
  line-height: 120%; /* 33.6px */
}
@media screen and (max-width: 480px) {
  .stage_ttl {
    font-size: 2.4rem;
  }
}
.stage_ttl.blue {
  color: #fff;
  margin-top: 2rem;
}
.stage_ttl.blue span {
  font-size: 1.2rem;
  margin-left: 1.6rem;
  text-shadow: none;
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: #3483FF;
  color: #3483FF;
}

.free, .paid {
  position: relative;
}
.free::after, .paid::after {
  content: "";
  width: 75px;
  height: 75px;
  background: url(../images/free_fukidashi.png) 0/contain no-repeat;
  position: absolute;
  top: -5%;
  right: 1rem;
}
@media screen and (max-width: 480px) {
  .free::after, .paid::after {
    width: 65px;
    height: 65px;
    top: -3%;
  }
}

.paid::after {
  background: url(../images/paid_hukidashi.png) 0/contain no-repeat;
}

.top-ttl {
  color: #3483FF;
}
.top-ttl p {
  margin-top: 5px;
  font: 600 1.4rem/1 "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 480px) {
  .top-ttl p {
    font-size: 1.2rem;
  }
}

.page_ttl {
  max-width: 920px;
  margin: 0 auto;
  margin-top: 14.7395833333vw;
}
@media screen and (max-width: 767px) {
  .page_ttl {
    width: 95%;
  }
}
@media screen and (max-width: 480px) {
  .page_ttl {
    margin-top: 13rem;
  }
}

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

.a-item {
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .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: #192948;
  padding-top: 69.1358%;
  margin-bottom: 13px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .a-item .img {
    margin-bottom: 1rem;
  }
}
.a-item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  -webkit-user-select: none;
     -moz-user-select: none;
          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: -moz-fit-content;
  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.4rem;
  }
}
.a-item:hover {
  opacity: 0.7;
}
.a-item:hover .a-name {
  color: #7600FF;
}
.a-item.mc {
  position: relative;
}
.a-item.mc::after {
  content: "";
  width: 62px;
  height: 20px;
  background: url(../images/lineup/mc_icon.png) 0/contain no-repeat;
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 2px;
}
.a-item.oa {
  position: relative;
}
.a-item.oa::after {
  content: "";
  width: 126px;
  height: 26px;
  background: url(../images/lineup/oa_icon.svg) 0/contain no-repeat;
  position: absolute;
  z-index: 10;
  top: 5px;
  right: 2px;
}

.footer {
  background: url(../images/ticket_bg.jpg) repeat;
  padding: 6.4rem 0 0;
}
.footer .footer_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .footer .footer_container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.footer .footer_contents {
  flex-basis: 25%;
}
.footer .footer_contents .logo {
  max-width: 234px;
}
@media screen and (max-width: 767px) {
  .footer .footer_contents .logo {
    margin: 0 auto;
  }
}
.footer .footer_contents .sns_container {
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer .footer_contents .sns_container {
    justify-content: center;
  }
}
.footer .footer_contents .sns_container .sns_item {
  width: 43px;
  height: 43px;
}
@media screen and (max-width: 480px) {
  .footer .footer_contents .sns_container .sns_item {
    width: 30px;
    height: 30px;
  }
}
.footer .footer_contents .archive_list {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer .footer_contents .archive_list {
    margin-top: 1.8rem;
  }
}
.footer .footer_contents .archive_list .list_item {
  margin-top: 0.8rem;
  background: #fff;
  border: 1px solid #3483FF;
  border-radius: 30px;
  color: #3483FF;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.8rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer .footer_contents .archive_list .list_item {
    margin: 0.8rem auto 0;
  }
}
.footer .footer_contents .archive_list .list_item:hover {
  background: #3483FF;
  color: #fff;
}
.footer .footer_nav {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  height: 227px;
  gap: 1.6rem 3rem;
}
@media screen and (max-width: 480px) {
  .footer .footer_nav {
    display: none;
  }
}
.footer .footer_nav .footer_box .footer_head {
  color: #3483FF;
  font-weight: 700;
}
.footer .footer_nav .footer_box .nuv_items {
  margin-top: 1rem;
}
.footer .footer_nav .footer_box .nuv_item a {
  font: 500 1.4rem/1.6 "Zen Kaku Gothic New", sans-serif;
}
.footer .footer_nav .footer_box .nuv_item a:hover {
  color: #3483FF;
}
.footer .footer_nav .footer_box:first-child, .footer .footer_nav .footer_box:nth-child(5) {
  flex-basis: 100%;
}
.footer .copyright {
  border-top: 1px solid #3483FF;
  margin-top: 4rem;
  padding: 1.7rem 2rem 1.8rem;
  background: #B8FF0B;
  text-align: center;
  font: 700 1.2rem/1.6 "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 480px) {
  .footer .copyright {
    padding: 1rem;
    font-size: 1rem;
  }
}

/*-----------------------------------------------
/        すぽんさー
/----------------------------------------------*/
.sponser {
  border-radius: 80px 80px 0px 0px;
  border: 1px solid #3483ff;
  background: rgba(253, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  margin-top: 11rem;
  padding: 8rem 2rem;
}
@media screen and (max-width: 767px) {
  .sponser {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .sponser {
    border-radius: 60px 60px 0px 0px;
    padding: 2.8rem 1rem;
    margin-top: 8rem;
  }
}
.sponser .sponser_contents .sponser_item {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-direction: column;
  font-size: 1.4rem;
}
.sponser .sponser_contents .sponser_item .sponser_inner {
  color: #3483FF;
}
@media screen and (max-width: 480px) {
  .sponser .sponser_contents .sponser_item .sponser_inner {
    font-size: 1.4rem;
  }
}
.sponser .sponser_contents .sponser_item p {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sponser .sponser_contents .sponser_item {
    margin-top: 0;
    gap: 4px;
    padding: 0;
  }
  .sponser .sponser_contents .sponser_item:not(:first-child) {
    margin-top: 0.8rem;
  }
  .sponser .sponser_contents .sponser_item p {
    font-size: 1.2rem;
  }
}
.sponser .sponser_item {
  font: 600 1.4rem/1.6 "Zen Kaku Gothic New", sans-serif;
  margin: 2rem auto 0;
  border-radius: 3rem;
}
@media screen and (max-width: 480px) {
  .sponser .sponser_item {
    font-size: 1.2rem;
    padding: 2px 2rem 3px;
  }
}
.sponser .sponser_item a {
  display: inline;
}
.sponser .sponser_item a:hover {
  color: #0059ff;
}

.sns_container {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
.sns_container .sns_item {
  width: 62px;
  height: 62px;
}
@media screen and (max-width: 480px) {
  .sns_container .sns_item {
    width: 40px;
    height: 40px;
  }
}
.sns_container .sns_item:hover {
  transform: scale(1.1);
}

.l-nav {
  display: none;
}
@media screen and (max-width: 480px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: flex;
    justify-content: 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: flex;
    justify-content: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 1.4vw;
  z-index: 999;
  padding-right: 1vw;
  /*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: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav {
  background: #fff;
  padding: 4px 3rem;
  border-radius: 1.5rem;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  border: 1px solid #8AB8FF;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.header .nav .nav_link {
  height: 25px;
  font-weight: 600;
}
.header .nav .nav_link:hover {
  color: #7600FF;
}
.header .nav .nav_ticket {
  background: #FF4800;
  color: #fff;
  border-radius: 1rem;
  padding: 2rem 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 600 1.8rem/1 "Zen Kaku Gothic New", sans-serif;
  gap: 1rem;
}
.header .nav .nav_ticket:hover {
  transform: scale(0.9);
}
.header .nav .nav_ticket svg {
  vertical-align: middle;
}
.header .sns_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .header .sns_container {
    width: 100%;
    padding: 0 5rem 0 2rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .header .sns_container {
    padding-bottom: 2rem;
  }
}
.header .sns_container .sns {
  width: 44px;
  height: 44px;
}
@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: 39px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 290px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  padding: 3rem 3.8rem;
  border-radius: 1rem;
  border: 1px solid #3483FF;
  /*アニメーション設定*/
  transition: all 0.3s;
}
.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: #3483FF;
  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;
    background-color: #fff;
    border-radius: 1rem;
    filter: drop-shadow(0px 1.888px 13.217px #3483FF);
    margin: 0 0 0 auto;
    cursor: pointer;
    right: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .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: #3483FF;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .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: 480px) {
  .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: 480px) {
  .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: 480px) {
  .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: 480px) {
  .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: 11rem;
    right: -100%;
    z-index: 10;
    transition: 0.3s;
    background: #fff;
    padding: 2vw 0 8vw;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 3rem;
    border-radius: 2rem 0 0 2rem;
    border: 1px solid #3483FF;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .header .nav_container {
    width: 70vw;
    max-height: 1000px;
    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;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .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: 480px) {
  .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: #192948;
    padding: 1rem 0 1rem 2vw;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .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;
  }
  .header .nav_container .sns_container {
    margin-top: 2rem;
    padding: 0;
  }
}
.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%;
  background-size: cover;
  background-position: top center;
  content: "";
}

.kv {
  padding: 5vw 0;
  width: 90%;
  max-width: 890px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .kv {
    width: 70%;
    padding: 14vw 0 9vw;
  }
}
@media screen and (max-width: 480px) {
  .kv {
    padding: 8rem 0 6.4rem;
    width: 95%;
  }
}
.kv .logo {
  margin-top: 8%;
}

/*************************************************
top01-bnr-main メインバナー
*************************************************/
.slider-outer {
  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: 90% !important;
}
@media screen and (max-width: 767px) {
  .slider-outer .slider-wrapper {
    width: 100% !important;
  }
}
.slider-outer .slick-slider {
  width: 100%;
}
.slider-outer .slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  margin: 0 auto;
}
.slider-outer .slick-slide {
  max-width: 500px;
  width: 48vw;
  border-radius: 6px;
  margin: 0 3vw;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide {
    width: 63vw;
    margin: 0;
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .slider-outer .slick-slide {
    height: 240px;
  }
}
.slider-outer .slick-slide::before {
  width: 100px;
  background-size: contain;
  position: absolute;
  display: inline-block;
  left: 2px;
  z-index: 0;
}
.slider-outer .slick-slide img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-slide img {
    height: 400px;
  }
}
@media screen and (max-width: 480px) {
  .slider-outer .slick-slide img {
    height: 240px;
  }
}
.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;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-dots {
    margin-top: 2rem;
  }
}
.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 #3483FF;
  background: #fff; /*ドットボタンの色*/
}
@media screen and (max-width: 767px) {
  .slider-outer .slick-dots button {
    width: 16px; /*ドットボタンのサイズ*/
    height: 16px; /*ドットボタンのサイズ*/
  }
}
.slider-outer .slick-dots .slick-active button {
  background: #3483FF; /*ドットボタンの現在地表示の色*/
}

/*==============================================
/        about
/----------------------------------------------*/
.about {
  margin: 16rem auto 0;
}
@media screen and (max-width: 767px) {
  .about {
    margin: 10rem auto 0;
  }
}
.about .about_ttl {
  width: 630px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .about_ttl {
    width: 90%;
  }
}
.about .about_date {
  font: 600 1.4rem/1.2 "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .about .about_date {
    line-height: 1.5;
  }
}
.about .about_date strong {
  font-size: 2.4rem;
}
.about .about_date .year {
  font-size: 1.8rem;
}
.about .about_contents {
  background: #fff;
  border: 1px solid #3483FF;
  border-radius: 2rem;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  margin-top: 7px;
  padding-top: 6rem;
}
.about .cp {
  margin-top: 1rem;
  padding: 0 2rem 1rem;
  font: 700 2.9rem/1.3 "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  color: #3483FF;
}
@media screen and (max-width: 767px) {
  .about .cp {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .about .cp {
    padding: 0 1.4rem 2rem;
    font-size: 2rem;
  }
}
.about .about_map {
  margin: 1rem auto 0;
  padding-bottom: 2rem;
  text-align: center;
}
.about .about_map img {
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about_container {
  border-top: 1px solid #3483FF;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about .about_container {
    border-top: none;
    flex-direction: column;
  }
}
.about .about_container .about_box {
  flex: 1;
  padding: 6.5rem 2rem 3rem;
  border-right: 1px solid #3483FF;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .about .about_container .about_box {
    border-top: 1px solid #3483FF;
    border-right: none;
    padding: 3rem 2rem 3rem;
  }
}
.about .about_container .about_box:last-child {
  border-right: none;
  border-radius: 0 0 2rem 0;
}
.about .about_container .about_box:first-child {
  border-radius: 0 0 0 2rem;
}
.about .about_container .about_box .contents {
  width: 303px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about .about_container .about_box .contents {
    width: 60%;
  }
}
.about .about_container .about_box p {
  margin-top: 1rem;
  font: 700 1.4rem/1.8 "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .about .about_container .about_box p {
    margin-top: 1rem;
    padding-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .about .about_container .about_box p {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
.about .about_container .about_box .yajirushi {
  width: 78px;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .about .about_container .about_box .yajirushi {
    margin-top: 1rem;
  }
}
.about .about_container .about_box:hover {
  background: #ebf3ff;
}

/*==============================================
/        お知らせ news
/----------------------------------------------*/
.news {
  margin-top: 16rem;
  width: 100%;
  border: 1px solid #3483ff;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8.5px);
          backdrop-filter: blur(8.5px);
  padding: 6rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .news {
    margin: 10rem auto 0;
  }
}
@media screen and (max-width: 480px) {
  .news {
    border-right: none;
    border-left: none;
  }
  .news .wide-wrapper {
    width: 90%;
  }
}
.news .top-ttl img {
  width: 195px;
}
@media screen and (max-width: 480px) {
  .news .top-ttl img {
    width: 150px;
  }
}
.news .border {
  border-top: 1px solid #3483FF;
  display: block;
  width: 100%;
  margin: 4.8rem 0 6rem;
}
.news .news_container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .news .news_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .news .news_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news .news_container .news_article {
  border: 1px solid #3483FF;
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 0;
  background: #fff;
}
.news .news_container .news_article .date {
  color: #4f7cc3;
  font: 600 1.4rem/1.2 "Zen Kaku Gothic New", sans-serif;
  padding-left: 2rem;
}
@media screen and (max-width: 480px) {
  .news .news_container .news_article .date {
    font-size: 1.2rem;
  }
}
.news .news_container .news_article .article_ttl {
  font: 600 2rem/1.4 "Zen Kaku Gothic New", sans-serif;
  margin-top: 7px;
  padding: 0 1.6rem 2rem 2rem;
  border-bottom: 1px solid #3483FF;
  flex-grow: 1;
  height: 125px;
}
@media screen and (max-width: 480px) {
  .news .news_container .news_article .article_ttl {
    height: auto;
    font-size: 1.8rem;
  }
}
.news .news_container .news_article .detail {
  flex-grow: 1;
  padding: 2rem 2rem 0;
}
.news .news_container .news_article .detail p {
  font: 600 1.4rem/1.8 "Zen Kaku Gothic New", sans-serif;
}
.news .news_container .news_article .yajirushi {
  margin: 0.8rem 2rem 0 auto;
  width: 48px;
}
.news .news_container .news_article:hover {
  background: #EBF3FF;
}
.news .more_btn {
  margin: 4.8rem auto 0;
}

/*----------------------------------------------
/            contentsコンテンツ紹介
/----------------------------------------------*/
.contents {
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .contents {
    margin: 10rem auto 0;
  }
}
.contents .contents_contents {
  background: #fff;
  border-radius: 2rem;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  padding-top: 6rem;
}
.contents .contents_contents .top-ttl {
  text-align: center;
  width: 336px;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .contents .contents_contents .top-ttl {
    width: 70%;
  }
}
.contents .contents_box {
  border-top: 1px solid #3483FF;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .contents .contents_box {
    flex-direction: column;
    padding-bottom: 4rem;
  }
}
.contents .contents_box .img {
  flex-basis: 60%;
  border-right: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .contents .contents_box .img {
    border-right: none;
    border-bottom: 1px solid #3483FF;
  }
}
.contents .contents_box .img img {
  height: 392px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .contents .contents_box .img img {
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .contents .contents_box .img {
    flex-basis: 50%;
  }
}
.contents .contents_box .content_txt {
  flex-basis: 40%;
}
@media screen and (max-width: 767px) {
  .contents .contents_box .content_txt {
    flex-basis: 50%;
  }
}
.contents .contents_box .content_txt .stage_ttl {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .contents .contents_box .content_txt .stage_ttl {
    padding-top: 1.6rem;
    font-size: 2.8rem;
  }
}
.contents .contents_box .content_txt .stage_ttl span {
  width: 105px;
  display: block;
  margin: 0 auto;
}
.contents .contents_box .content_txt .txt {
  width: 78%;
  margin: 2rem auto;
}
.contents .contents_box .content_txt .more_btn {
  width: 280px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
@media screen and (max-width: 480px) {
  .contents .contents_box .content_txt .more_btn {
    width: 90%;
  }
}
.contents .contents_box.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
  .contents .contents_box.reverse {
    flex-direction: column;
  }
}
.contents .contents_box.reverse .img {
  border-left: 1px solid #3483FF;
  border-radius: none;
}
.contents .contents_box.reverse.paid::after {
  left: 1rem;
  right: auto;
  background: url(../images/paid_hukidashi_left.png) 0/contain no-repeat;
}
.contents .contents_box.free::after {
  top: 5px;
}
@media screen and (max-width: 480px) {
  .contents .contents_box.free::after {
    top: 240px;
  }
}
.contents .contents_box.paid::after {
  top: 5px;
}
@media screen and (max-width: 480px) {
  .contents .contents_box.paid::after {
    top: 240px;
  }
}

/*----------------------------------------------
/            チケット
/----------------------------------------------*/
.ticket {
  padding-top: 10rem;
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  .ticket {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .ticket {
    margin-top: 0;
  }
}
.ticket .ticket_contents {
  background: url(../images/ticket_bg.jpg) repeat;
  padding: 6rem 0 0;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  border-radius: 2rem;
}
.ticket .ticket_ttl {
  border-bottom: 1px solid #3483FF;
  padding-bottom: 4rem;
  padding-left: 3.6rem;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_ttl {
    padding: 0 2rem 2rem 2rem;
  }
}
.ticket .ticket_ttl img {
  width: 215px;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_ttl img {
    width: 160px;
  }
}
.ticket .ticket_container {
  display: flex;
  border-bottom: 1px solid #3483FF;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container {
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container {
    border-bottom: 0;
  }
}
.ticket .ticket_container .ticket_type {
  flex: 1;
  flex-basis: 33.3333333333%;
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container .ticket_type {
    border-bottom: 1px solid #3483FF;
    flex-basis: 80%;
    margin-top: 0;
  }
  .ticket .ticket_container .ticket_type:not(:first-child) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .ticket .ticket_container .ticket_type:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container .ticket_type {
    padding-bottom: 2.8rem;
  }
}
.ticket .ticket_container .ticket_type:not(:last-child) {
  border-right: 1px solid #3483FF;
}
.ticket .ticket_container .ticket_type .ticket_type_ttl {
  color: #3483FF;
  background: #fff;
  border: 1px solid #3483FF;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 0 6rem;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4.2rem;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container .ticket_type .ticket_type_ttl {
    margin-top: 2.8rem;
    font-size: 1.8rem;
  }
}
.ticket .ticket_container .ticket_type .ticket_detail {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  -moz-column-gap: 5px;
       column-gap: 5px;
  width: 87%;
  margin-top: -0.6rem;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container .ticket_type .ticket_detail {
    justify-content: center;
    margin: 0 auto;
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container .ticket_type .ticket_detail {
    width: 90%;
  }
}
.ticket .ticket_container .ticket_type .ticket_detail.first {
  margin-top: 1rem;
}
.ticket .ticket_container .ticket_type .ticket_detail dt {
  text-align: right;
  flex-basis: 43%;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container .ticket_type .ticket_detail dt {
    flex-basis: 30%;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container .ticket_type .ticket_detail dt {
    flex-basis: 25%;
    font-size: 1.4rem;
  }
}
.ticket .ticket_container .ticket_type .ticket_detail dd {
  flex-basis: 53%;
  text-align: right;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container .ticket_type .ticket_detail dd {
    line-height: 1.2;
    flex-basis: 70%;
  }
}
.ticket .ticket_container .ticket_type .ticket_detail dd span {
  font-size: 1.8rem;
  margin-left: 7px;
}
.ticket .ticket_container .ticket_type .ticket_detail dd i {
  font: normal 500 1rem/1 "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  right: -1px;
  top: 13px;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_container .ticket_type .ticket_detail dd i {
    top: 7px;
    right: -2px;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_container .ticket_type .ticket_detail dd {
    flex-basis: 40%;
    font-size: 3.4rem;
  }
  .ticket .ticket_container .ticket_type .ticket_detail dd span {
    font-size: 1.6rem;
    margin-left: 5px;
  }
}
.ticket .ticket_container .ticket_type .ticket_detail_ex {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0.6rem;
}
.ticket .ticket_container.jimoto .ticket_type {
  padding-bottom: 3rem;
}
.ticket .ticket_container.jimoto h3 {
  margin-top: 3rem;
}
.ticket .ticket_container.jimoto dl dd {
  margin-top: 1.5rem;
}
.ticket .ticket_container.jimoto dl dd a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: #3483ff;
  text-decoration: underline;
}
.ticket .ticket_container.jimoto dl dd span {
  display: block;
  width: 24px;
  margin-bottom: 0.5rem;
}
.ticket .ticket_container.jimoto dl dd span img {
  width: 100%;
}
.ticket .ticket_link {
  padding: 4rem 0 6.4rem;
  border-bottom: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link {
    padding: 2.8rem 0 4.8rem;
  }
}
.ticket .ticket_link .ticket_inner_ttl {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_link .ticket_inner_ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link .ticket_inner_ttl {
    font-size: 2rem;
  }
}
.ticket .ticket_link .ticket_inner_ttl span {
  font-size: 1.5rem;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link .ticket_inner_ttl span {
    font-size: 1.2rem;
  }
}
.ticket .ticket_link .ticket_date {
  color: #8a8a8a;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link .ticket_date {
    font-size: 1.4rem;
    margin-top: 1.8rem;
  }
}
.ticket .ticket_link .ticket_date.other {
  color: #192948;
  margin-top: 2.4rem;
}
.ticket .ticket_link .more_btn {
  width: 473px;
  margin: 1.3rem auto 0;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_link .more_btn {
    width: 90%;
    padding: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link .more_btn {
    margin-top: 0;
  }
}
.ticket .ticket_link .more_btn::before {
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  .ticket .ticket_link .more_btn {
    padding: 1.6rem 1rem;
  }
  .ticket .ticket_link .more_btn span {
    font-size: 1.4rem;
  }
  .ticket .ticket_link .more_btn span svg {
    width: 14px;
    vertical-align: sub;
    margin-left: 1rem;
  }
}
.ticket .ticket_note {
  width: 80%;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .ticket .ticket_note {
    flex-direction: column;
    gap: 1.8rem;
    width: 90%;
  }
}
.ticket .note_ttl {
  font: 700 1.4rem/1.4 "Zen Kaku Gothic New", sans-serif;
  flex-basis: 15%;
}
.ticket .note_list li {
  font-size: 1.4rem;
  position: relative;
  padding-left: 2rem;
}
@media screen and (max-width: 480px) {
  .ticket .note_list li {
    font-size: 1.2rem;
  }
}
.ticket .note_list li::before {
  content: "・";
  position: absolute;
  font-weight: 800;
  color: #3483FF;
  left: 0;
}
.ticket .note_list li:not(:first-child) {
  margin-top: 0.5rem;
}
.ticket .note_list li span {
  margin-top: 1rem;
  font-size: 1.2rem;
  position: relative;
  padding-left: 2rem;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .ticket .note_list li span {
    font-size: 1rem;
  }
}
.ticket .note_list li span::before {
  content: "※";
  position: absolute;
  left: 0;
}

/*----------------------------------------------
/            タイムテーブル
/----------------------------------------------*/
.timetable {
  margin: 16rem auto 0;
}
.timetable .timetable_ttl {
  max-width: 490px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .timetable .timetable_ttl {
    width: 80%;
  }
}
.timetable .timetable_contents {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2rem;
  border: 1px solid #3483FF;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  margin-top: -2px;
  padding: 6% 2%;
}
.timetable .timetable_contents .img {
  max-width: 600px;
  margin: 0 auto;
}
.timetable .timetable_contents img {
  border-radius: 1rem;
}
.timetable .timetable_contents .img:first-child {
  margin-bottom: 2rem;
}
.timetable .more_btn {
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .timetable .more_btn {
    margin-top: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .timetable {
    margin: 10rem auto 0;
  }
}

/*-----------------------------------------------
/        アクセス
/----------------------------------------------*/
.access {
  margin: 16rem auto 0;
}
@media screen and (max-width: 767px) {
  .access {
    margin-top: 12rem;
  }
}
@media screen and (max-width: 480px) {
  .access {
    margin-top: 10rem;
  }
}
.access .access_container {
  display: flex;
  justify-content: center;
  border: 1px solid #3483FF;
  border-radius: 2rem;
  background: #3483FF;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
}
@media screen and (max-width: 767px) {
  .access .access_container {
    flex-direction: column;
  }
}
.access .access_txt {
  flex-basis: 50%;
  padding: 2.8rem 2rem 6.4rem 6rem;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .access .access_txt {
    padding: 4rem 2rem 3.2rem 3.2rem;
  }
}
.access .access_txt span {
  display: inline-block;
}
.access .access_txt span img {
  -o-object-fit: contain;
     object-fit: contain;
}
.access .access_txt .access_ttl {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .access .access_txt .access_ttl {
    width: 70%;
  }
}
.access .access_txt .place_name {
  font: 700 1.8rem/1.2 "Zen Kaku Gothic New", sans-serif;
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .access .access_txt .place_name {
    margin-top: 1.2rem;
  }
}
.access .access_txt .adress {
  display: flex;
  font-size: 1.4rem;
  margin-top: 1.4rem;
}
.access .access_txt .adress span {
  width: 2.4rem;
  margin-right: 0.8rem;
}
.access .access_txt .adress span img {
  width: 2.4rem;
}
.access .access_box {
  margin-top: 2rem;
}
.access .access_box .for_access {
  border-radius: 3rem;
  background: #fff;
  padding: 1px 1.8rem;
  color: #3483FF;
  font-size: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access .access_box .for_access {
    padding: 2px 1.8rem;
  }
}
.access .access_box .for_access span {
  width: 15px;
  vertical-align: text-top;
  margin-right: 0.5rem;
}
.access .access_box .for_access span img {
  vertical-align: sub;
  width: 15px;
  height: 17px;
}
.access .access_box .car span {
  width: 21px;
}
.access .access_box .car span img {
  width: 21px;
}
.access .access_box dd {
  font-size: 1.4rem;
  margin-top: 1.4rem;
}
@media screen and (max-width: 480px) {
  .access .access_box dd {
    margin-top: 0.8rem;
  }
}
.access .access_box dd ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.3rem;
  margin-top: 3px;
}
.access .access_box dd ul li strong {
  font-size: 1.4rem;
}
.access .access_box dd ul li::before {
  content: "◆";
  font-size: 0.8rem;
  position: absolute;
  left: 5px;
  top: 6px;
}
.access .map {
  flex-basis: 50%;
}
.access .map iframe {
  width: 100%;
  border-radius: 0 2rem 2rem 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access .map iframe {
    height: 300px;
    border-radius: 0 0 2rem 2rem;
  }
}

/*-----------------------------------------------
/        注意事項
/----------------------------------------------*/
.attention {
  margin: 16rem auto 0;
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  .attention {
    width: 95%;
    margin: 10rem auto 0;
  }
}
.attention .attention_container {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .attention .attention_container {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .attention .attention_container {
    flex-direction: column;
  }
}
.attention .attention_box {
  max-width: 435px;
  flex: 1;
  background: #7600FF;
  border-radius: 2rem;
  padding: 4.7rem 2rem 5rem;
  border: 1px solid #B8FF0B;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .attention .attention_box {
    padding: 3.2rem 2rem 4rem;
    width: 80%;
    margin: 0 auto;
  }
}
.attention .attention_box .attention_ttl {
  color: #B8FF0B;
  font: 700 2.8rem/1.4 "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .attention .attention_box .attention_ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .attention .attention_box .attention_ttl {
    font-size: 2rem;
  }
}
.attention .attention_box .note {
  color: #fff;
  text-align: center;
  margin-top: 1.4rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .attention .attention_box .note {
    font-size: 1.2rem;
  }
}
.attention .attention_box .more_btn.attentionbtn {
  color: #192948;
  border: 1px solid #192948;
  filter: none;
  font-size: 1.6rem;
  padding: 5px 1rem;
  max-width: 179px;
  border-radius: 8px;
  margin: 1.3rem auto 0;
}
.attention .attention_box .more_btn.attentionbtn:hover {
  transform: scale(0.95);
}
.attention .contact_box {
  background: #B8FF0B;
  border: 1px solid #7600FF;
}
.attention .contact_box .attention_ttl {
  color: #7600FF;
  margin-top: 4rem;
}
@media screen and (max-width: 480px) {
  .attention .contact_box .attention_ttl {
    margin-top: 0;
  }
}
.attention .contact_box .note {
  color: #192948;
}
.attention .contact_box .more_btn.attentionbtn {
  background: #fff;
  color: #7600FF;
  border: 1px solid #7600FF;
  margin-top: 3rem;
}

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

.remodal {
  padding-left: 60px !important;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .remodal {
    padding: 5rem 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .remodal .attention-remodal {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .remodal .attention-remodal {
    width: 90%;
  }
}
.remodal .attention-remodal h3 {
  font: 600 2.4rem/2 "Zen Kaku Gothic New", sans-serif;
}
.remodal .attention-remodal .group {
  margin-top: 4rem;
}
.remodal .attention-remodal h4 {
  font: 600 1.8rem/1.6 "Zen Kaku Gothic New", sans-serif;
  background: #f5f5f5;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .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: 480px) {
  .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: 480px) {
  .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 New", sans-serif;
}
@media screen and (max-width: 480px) {
  .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 New", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  .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: 480px) {
  .attention_page {
    padding: 0 !important;
  }
}
.attention_page .attention-remodal {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 480px) {
  .attention_page .attention-remodal {
    width: 100%;
  }
}
.attention_page .attention-remodal h3 {
  color: #7600FF;
}

/* 独自のクラスを作成して、Remodalのクラスと競合しないようにする */
.custom-remodal {
  display: block;
  visibility: visible;
  opacity: 1;
  width: 70%;
  max-width: none;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 4rem !important;
  background: #333;
}
@media screen and (max-width: 480px) {
  .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 New", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto;
  padding: 0 1rem;
}
@media screen and (max-width: 480px) {
  .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 {
  background: #fff;
  border-top: 1px solid #3483ff;
  border-bottom: 1px solid #3483ff;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8.5px);
          backdrop-filter: blur(8.5px);
  padding: 4rem 0;
}
@media screen and (max-width: 480px) {
  .slider-outer {
    padding: 2rem 0;
  }
}

/*-------------------------------------
ラインナップ
-------------------------------------*/
.stage_ex_container {
  background: #fff;
  border-radius: 3rem;
  border: 1px solid #3483FF;
  display: flex;
  margin-top: 8rem;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
}
@media screen and (max-width: 480px) {
  .stage_ex_container {
    flex-direction: column;
  }
}
.stage_ex_container .ex_box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 2rem;
}
.stage_ex_container .ex_box .more_btn {
  width: 28rem;
  padding: 1rem 2rem;
  margin-top: 2.6rem;
}
.stage_ex_container .ex_box::after {
  background: url(../images/paid_hukidashi_left.png) 0/contain no-repeat;
  right: auto;
  left: 5rem;
  top: -1rem;
  width: 88px;
  height: 88px;
}
@media screen and (max-width: 767px) {
  .stage_ex_container .ex_box::after {
    width: 74px;
    height: 74px;
    left: 2rem;
    top: -3rem;
  }
}
@media screen and (max-width: 480px) {
  .stage_ex_container .ex_box {
    border-bottom: 1px solid #3483FF;
  }
}
.stage_ex_container .ex_box.free::after {
  background: url(../images/free_hukidashi_left.png) 0/contain no-repeat;
}
.stage_ex_container .ex_txt {
  flex: 1;
  border-left: 1px solid #3483FF;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .stage_ex_container .ex_txt {
    font-size: 1.4rem;
  }
}

.lineup_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 1.6vw;
       column-gap: 1.6vw;
  margin-top: 6.4rem;
}
.lineup_container .ex {
  width: 70px;
  margin: 0 auto;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
}
@media screen and (max-width: 480px) {
  .lineup_container .ex {
    width: 60px;
  }
}
@media screen and (max-width: 480px) {
  .lineup_container {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.lineup_container .lineup_oneday {
  flex: 1;
}
@media screen and (max-width: 480px) {
  .lineup_container .lineup_oneday {
    padding: 4rem 1rem 0;
    width: 100%;
  }
}
.lineup_container .lineup_oneday .oneday_container {
  padding: 4.5rem 5rem 8rem;
  background: #fff;
  border: 1px solid #3483FF;
  border-radius: 2rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 480px) {
  .lineup_container .lineup_oneday .oneday_container {
    padding: 4.5rem 2rem 4rem;
  }
}
.lineup_container .lineup_oneday .inner_oneday_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.7rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 480px) {
  .lineup_container .lineup_oneday .inner_oneday_container {
    gap: 3rem 1rem;
  }
}

.lineup_oneday.twodays {
  width: 100%;
  margin-top: 4rem;
}
@media screen and (max-width: 480px) {
  .lineup_oneday.twodays {
    margin-top: 0;
  }
}
.lineup_oneday.twodays .date {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.lineup_oneday.twodays .oneday_container {
  margin-top: 2.4rem;
}
.lineup_oneday.twodays .oneday_container .inner_oneday_container {
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.7rem;
}
@media screen and (max-width: 480px) {
  .lineup_oneday.twodays .oneday_container .inner_oneday_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1rem;
  }
}
.lineup_oneday.twodays .oneday_container .mitei {
  color: #3483FF;
  font-size: 1.4rem;
  text-align: center;
  margin: 5rem auto -5rem;
}
@media screen and (max-width: 480px) {
  .lineup_oneday.twodays .oneday_container .mitei {
    font-size: 1.2rem;
  }
}

.date13 {
  width: 135px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .date13 {
    width: 120px;
  }
}

.date14 {
  margin: 0 auto;
  width: 142px;
}
@media screen and (max-width: 480px) {
  .date14 {
    width: 120px;
  }
}

.timetable_contents.timetable_flex {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 480px) {
  .timetable_contents.timetable_flex {
    flex-direction: column;
  }
}

.wcurry_contents {
  padding: 4rem 3rem;
  background: #fff;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  border-radius: 2rem;
  margin-top: 10rem;
}
.wcurry_contents .wcurry_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 480px) {
  .wcurry_contents .wcurry_container {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.wcurry_contents .wcurry_container .free_contents {
  border: 1px solid #3483FF;
  padding: 8px 8px 2.4rem;
  border-radius: 8px;
}
.wcurry_contents .wcurry_container .free_contents .img {
  width: 100%;
  transition: 0.3s;
  border-radius: 8px;
}
.wcurry_contents .wcurry_container .free_contents .img img {
  border-radius: 8px;
}
.wcurry_contents .wcurry_container .free_contents .name {
  text-align: center;
  width: 100%;
  margin-top: 1.4rem;
  transition: 0.3s;
}
.wcurry_contents .wcurry_container .free_contents:hover .img {
  opacity: 0.7;
}
.wcurry_contents .wcurry_container .free_contents:hover .name {
  color: #3483FF;
}
@media screen and (max-width: 480px) {
  .wcurry_contents {
    margin-top: 4.8rem;
    padding: 4rem 2rem;
  }
}

.andmore {
  width: 150px;
  margin: 5rem auto 0;
  color: #3483FF;
}

.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item {
    flex-direction: column;
  }
}
.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item:hover {
  opacity: 1;
}
.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item .area {
  font-size: 1.2rem;
  line-height: 1;
  padding: 3px 0.7rem;
  border: 1px solid #3483FF;
  color: #3483FF;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item .area.area-paid {
  color: #FF4800;
  border-color: #FF4800;
}
.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item .a-name {
  margin-top: 0.8rem;
  display: block;
}
.lineup_container.booth .lineup_oneday.twodays .oneday_container .inner_oneday_container .booth_item .hinmoku {
  color: #787878;
  font-size: 1.2rem;
  margin-top: 0.8rem;
  line-height: 1.4;
}

/*-------------------------------------
下層チケット
-------------------------------------*/
.ticket_pages {
  margin-top: 7rem;
  padding: 0;
}
.ticket_pages .ticket_contents {
  background: #fff;
  padding: 0;
}
.ticket_pages .stage_ttl {
  border-bottom: 1px solid #3483FF;
  text-align: center;
  font-size: 3.8rem;
  padding: 4.7rem 2rem 3.8rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .ticket_pages .stage_ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  .ticket_pages .stage_ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .ticket_pages .ticket_container {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .ticket_pages .jimoto {
    border-bottom: 1px solid #3483FF;
  }
}
.ticket_pages .jimoto .ticket_type {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 3.2rem;
  gap: 4vw;
}
@media screen and (max-width: 767px) {
  .ticket_pages .jimoto .ticket_type {
    border: none;
  }
}
@media screen and (max-width: 480px) {
  .ticket_pages .jimoto .ticket_type {
    flex-direction: column;
  }
}
.ticket_pages .jimoto .ticket_type .ticket_type_ttl {
  margin: 0;
}
.ticket_pages .jimoto .ticket_type .ticket_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  gap: 2rem;
  border-bottom: none;
}
.ticket_pages .jimoto .ticket_type .ticket_link span {
  width: 24px;
  height: 24px;
}
.ticket_pages .park_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .ticket_pages .park_info {
    flex-direction: column;
  }
}
.ticket_pages .park_info .info {
  flex-basis: 50%;
  padding: 3.2rem 2rem 3.2rem 5.2vw;
}
@media screen and (max-width: 480px) {
  .ticket_pages .park_info .info {
    padding: 2.8rem 2rem;
  }
}
.ticket_pages .park_info .info .stage_ttl {
  font-size: 2.4rem;
  padding: 0;
  border: none;
}
.ticket_pages .park_info .info .park_detail {
  margin: 2.4rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .ticket_pages .park_info .info .park_detail {
    margin-bottom: 0;
  }
}
.ticket_pages .park_info .info .park_detail .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.ticket_pages .park_info .info .park_detail .item::before {
  content: "◆";
  color: #7600FF;
  font-size: 1rem;
  margin-top: 3px;
  margin-right: 0rem;
}
.ticket_pages .park_info .info .park_detail .item dt, .ticket_pages .park_info .info .park_detail .item dd {
  font-size: 1.8rem;
}
.ticket_pages .park_info .info .park_detail .item dt span, .ticket_pages .park_info .info .park_detail .item dd span {
  font-size: 1.4rem;
}
.ticket_pages .park_info .info .park_detail .item dd {
  font-size: 2rem;
}
.ticket_pages .park_info .info .park_detail .item.free-park dd {
  font-size: 1.6rem;
}
.ticket_pages .park_info .info .park_detail .item.free-park dd span {
  font-size: 1.2rem;
  font-weight: 500;
}
.ticket_pages .park_info .info .info_02 {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 480px) {
  .ticket_pages .park_info .info .info_02 {
    font-size: 1.4rem;
  }
}
.ticket_pages .park_info .map {
  flex-basis: 50%;
  border-left: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .ticket_pages .park_info .map {
    border-left: none;
    border-top: 1px solid #3483FF;
    width: 100%;
  }
}
.ticket_pages .park_info .map iframe {
  width: 100%;
  height: 330px;
}
.ticket_pages .ticket_note {
  background: url(../images/ticketpage_bg.png) repeat;
  width: 100%;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .ticket_pages .ticket_note {
    padding: 4rem;
  }
}

/*************************************************
下層 イベント情報
*************************************************/
.date_img {
  max-width: 640px;
  margin: 7.2rem auto 0;
}
@media screen and (max-width: 767px) {
  .date_img {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .date_img {
    margin-top: 4rem;
  }
}

.about_page {
  background: #fff;
  border: 1px solid #3483FF;
  border-radius: 2rem;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  padding: 4.8rem 0 0;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .about_page {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .about_page {
    margin-top: 4rem;
  }
}
.about_page .about_access {
  margin-top: 4rem;
}
@media screen and (max-width: 480px) {
  .about_page .about_access {
    margin-top: 3.2rem;
  }
}
.about_page .cp {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #3483FF;
}
.about_page .about_access_ttl {
  margin-top: 4rem;
  padding-left: 8rem;
}
.about_page .about_access_ttl img {
  width: 181px;
}
@media screen and (max-width: 767px) {
  .about_page .about_access_ttl {
    font-size: 2.4rem;
    margin-left: 0;
    padding-left: 4rem;
  }
  .about_page .about_access_ttl img {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .about_page .about_access_ttl {
    margin-top: 0rem;
    padding-left: 2.4rem;
  }
}
.about_page .about_access_detail {
  margin-top: 1.8rem;
}
.about_page .about_access_detail .access_line {
  padding-left: 7.5rem;
  padding-bottom: 2.7rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about_page .about_access_detail .access_line {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .about_page .about_access_detail .access_line {
    padding-left: 2.4rem;
    flex-direction: column;
  }
}
.about_page .about_access_detail .access_line .place_name {
  display: flex;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .about_page .about_access_detail .access_line .place_name {
    font-size: 1.6rem;
  }
}
.about_page .about_access_detail .access_line .place_name span {
  display: block;
  width: 24px;
  height: 24px;
}
.about_page .about_access_detail .access_line .adress {
  font-size: 1.4rem;
}
.about_page .about_access_detail .access_line .adress span {
  color: #FF4800;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 5px 0 1rem;
}
.about_page .access_map {
  width: 100%;
  border-top: 1px solid #3483FF;
  border-bottom: 1px solid #3483FF;
}
.about_page .access_map iframe {
  width: 100%;
  height: 314px;
}
@media screen and (max-width: 480px) {
  .about_page .access_map iframe {
    height: 240px;
  }
}
.about_page .access_by {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .about_page .access_by {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .about_page .access_by {
    flex-direction: column;
    width: 100%;
  }
}
.about_page .access_by .access_box {
  width: 100%;
  padding: 5rem 2.8rem 5rem 4rem;
  padding: 5rem 2.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about_page .access_by .access_box {
    padding: 4rem 2rem 4rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .about_page .access_by .access_box {
    padding: 3rem 2.4rem 4rem;
    width: 100%;
  }
}
.about_page .access_by .access_box .for_access {
  width: -moz-fit-content;
  width: fit-content;
  background: #192948;
  color: #fff;
  font-size: 1.6rem;
}
.about_page .access_by .access_box .for_access span {
  margin-right: 7px;
}
.about_page .access_by .access_box dd {
  font-size: 1.4rem;
}
.about_page .access_by .access_box:not(:last-child) {
  border-right: 1px solid #3483FF;
}
@media screen and (max-width: 767px) {
  .about_page .access_by .access_box:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #3483FF;
  }
}

.about_page.information .about_access_ttl {
  border-left: 8px solid #FF4800;
  margin-left: 8rem;
  padding-left: 1.7rem;
  font-size: 3.3rem;
  line-height: 1.2;
  color: #3483FF;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .about_page.information .about_access_ttl {
    font-size: 2.4rem;
    margin-left: 3.2rem;
  }
}
.about_page.information .overview {
  width: 100%;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview {
    width: 100%;
  }
}
.about_page.information .overview .overview_table {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 2rem 2rem;
  border-collapse: separate; /*collapseから変更*/
  border-spacing: 0;
  border: 1px solid #3483FF;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table {
    width: 100%;
    border: none;
  }
  .about_page.information .overview .overview_table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .about_page.information .overview .overview_table tr:first-child {
    border-top: 0.5px solid #3483FF;
  }
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table {
    border-top: 1px solid #3483FF;
  }
}
.about_page.information .overview .overview_table tr:last-child th, .about_page.information .overview .overview_table tr:last-child td {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table tr:last-child th {
    border-bottom: 1px solid #3483FF;
  }
  .about_page.information .overview .overview_table tr:last-child td {
    padding-bottom: 2.5rem;
  }
}
.about_page.information .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 New", sans-serif;
  text-align: center;
}
.about_page.information .overview .overview_table th {
  padding: 2.4rem 5rem;
  width: 24%;
  border-bottom: 1px solid #3483FF;
  vertical-align: middle;
}
.about_page.information .overview .overview_table th span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table th {
    border: none;
    border-bottom: 0.5px solid #3483FF;
    width: 100%;
    padding: 0.8rem 1.6rem;
    font-size: 1.2rem;
    background: #D6E6FF;
  }
}
.about_page.information .overview .overview_table td {
  border-bottom: 1px solid #3483FF;
  border-left: 1px solid #3483FF;
  padding: 2.4rem 2rem 2.4rem 3rem;
  vertical-align: middle;
  font-weight: 500;
}
.about_page.information .overview .overview_table td p {
  font-weight: 500;
}
.about_page.information .overview .overview_table td.overview_kysan p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table td {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem;
    width: 100%;
    border: none;
    border-bottom: 0.5px solid #3483FF;
  }
}
.about_page.information .overview .overview_table td span {
  font-weight: 500;
  padding: 0 0.8rem;
  margin-left: 1.6rem;
  vertical-align: baseline;
}
.about_page.information .overview .overview_table td dl {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table td dl {
    width: 75%;
    margin: 0 auto;
  }
}
.about_page.information .overview .overview_table td dl dt {
  font-weight: 400;
  letter-spacing: 0.08em;
}
.about_page.information .overview .overview_table td dl dd {
  letter-spacing: 0.08em;
}
.about_page.information .overview .overview_table dd p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table .pl {
    font-weight: 600;
  }
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .pl {
    color: #7600FF;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table .item {
    padding: 0 0 2rem 0;
    border: none;
    border-bottom: 0.5px solid #3483FF;
  }
  .about_page.information .overview .overview_table .item p {
    padding-top: 0;
    padding-left: 4rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .about_page.information .overview .overview_table .item p {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about_page.information .overview .overview_table .item02 {
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .item02 {
    padding-bottom: 1rem;
  }
}
.about_page.information .overview .overview_table .price_box {
  padding: 0;
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .price_box {
    padding-bottom: 0;
  }
}
.about_page.information .overview .overview_table .price_box dl {
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .price_box dl {
    padding: 0;
  }
}
.about_page.information .overview .overview_table .price_box dl:not(:last-child) {
  border-bottom: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .price_box dl:not(:last-child) {
    border-bottom: none;
    border-bottom: 1px solid #3483FF;
  }
}
.about_page.information .overview .overview_table .price_box dl dt, .about_page.information .overview .overview_table .price_box dl dd {
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .price_box dl dt, .about_page.information .overview .overview_table .price_box dl dd {
    font-size: 1.4rem;
  }
  .about_page.information .overview .overview_table .price_box dl dt p, .about_page.information .overview .overview_table .price_box dl dd p {
    font-size: 1.4rem;
  }
}
.about_page.information .overview .overview_table .price_box dl dt {
  padding: 2rem;
  flex-basis: 25%;
  border-right: 1px solid #3483FF;
}
@media screen and (max-width: 480px) {
  .about_page.information .overview .overview_table .price_box dl dt {
    padding: 2rem 1rem;
  }
}
.about_page.information .overview .overview_table .price_box dl dd {
  padding: 2rem;
}

.photo_area {
  margin-top: 8rem;
}
.photo_area .contents_areattl .en {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .photo_area .contents_areattl .en {
    width: 100%;
  }
}
.photo_area .contents_areattl .jp {
  font-size: 1.2rem;
}
.photo_area .gallery_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1vw;
  margin-top: 3.5rem;
}
@media screen and (max-width: 480px) {
  .photo_area .gallery_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
  }
}
.photo_area .gallery_container img {
  border: 1px solid #3483FF;
  border-radius: 1rem;
}

/* -------------------------------------- */
/* ---     フォトギャラリーのモーダル     --- */
/* -------------------------------------- */
.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: 480px) {
  .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: 480px) {
  .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: #3483FF;
}
@media screen and (max-width: 480px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -1rem;
  }
}
/*************************************************
お知らせ一覧
*************************************************/
.pages_news {
  background: transparent;
  border: none;
  -webkit-backdrop-filter: unset;
          backdrop-filter: unset;
  margin-top: 4.8rem;
  padding: 0;
}
.pages_news .news_container {
  max-width: 900px;
  margin: 0 auto;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .pages_news .news_container {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .pages_news .news_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pages_news .news_container .news_article .article_ttl {
  height: 110px;
}

/*************************************************
お知らせ詳細
*************************************************/
.detail_news .page_ttl {
  width: 320px;
}
@media screen and (max-width: 767px) {
  .detail_news .page_ttl {
    width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .page_ttl {
    width: 225px;
  }
}
.detail_news .news_detail_contents {
  max-width: 900px;
  margin: 8rem auto 0;
  background: #fff;
  border: 1px solid #3483FF;
  filter: drop-shadow(0px 1.888px 13.217px #3483FF);
  border-radius: 2rem;
  padding: 7rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .detail_news .news_detail_contents {
    width: 90%;
    padding: 4.8rem 0 6.4rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .news_detail_contents {
    margin-top: 4.8rem;
  }
}
.detail_news .news_detail_contents .date {
  color: #3483FF;
  font: 600 2rem/1.3 "Zen Kaku Gothic New", sans-serif;
  padding-left: 7rem;
}
@media screen and (max-width: 767px) {
  .detail_news .news_detail_contents .date {
    padding-left: 3rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .news_detail_contents .date {
    padding-left: 2rem;
  }
}
.detail_news .news_detail_contents .news_detail_ttl {
  padding: 5px 7rem 3.5rem;
  font: 600 3.2rem/1.5 "Zen Kaku Gothic New", sans-serif;
  border-bottom: 1px solid #3483FF;
}
@media screen and (max-width: 767px) {
  .detail_news .news_detail_contents .news_detail_ttl {
    font-size: 2.8rem;
    padding: 5px 3rem 3.5rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .news_detail_contents .news_detail_ttl {
    font-size: 2.2rem;
    padding: 5px 2rem 3.5rem;
  }
}
.detail_news .detail_contents {
  width: 80%;
  margin: 6rem auto 0;
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents {
    margin-top: 3.2rem;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents {
    width: 90%;
  }
}
.detail_news .detail_contents h3 {
  font: 600 2.4rem/1.3 "Zen Kaku Gothic New", sans-serif;
  position: relative;
  margin-top: 1.6rem;
  padding: 1rem 2rem 1rem 3rem;
  background-image: linear-gradient(to right, #B4C3DA 5px, transparent 5px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
  background-position: bottom;
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents h3 {
    font-size: 2rem;
  }
}
.detail_news .detail_contents h3::before {
  content: "●";
  color: #FF4800;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents h3::before {
    font-size: 1.8rem;
  }
}
.detail_news .detail_contents p {
  font: 500 1.8rem/1.7 "Zen Kaku Gothic New", sans-serif;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents p {
    font-size: 1.4rem;
  }
}
.detail_news .detail_contents .bold {
  font-weight: 700;
}
.detail_news .detail_contents .strong {
  font-size: 2rem;
}
.detail_news .detail_contents h4 {
  font: 600 2rem/1.3 "Zen Kaku Gothic New", sans-serif;
  position: relative;
  margin: 4rem 0 1rem;
  padding: 0 0 0 3rem;
}
.detail_news .detail_contents h4::before {
  content: "◆";
  color: #7600FF;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents h4 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents h4 {
    font-size: 1.6rem;
  }
}
.detail_news .detail_contents h5 {
  font: 700 1.8rem/1.3 "Zen Kaku Gothic New", sans-serif;
  position: relative;
  margin: 3rem 0 2rem;
  padding: 0 0 0 2.4rem;
}
.detail_news .detail_contents h5::before {
  content: "●";
  color: #B8FF0B;
  font-size: 1rem;
  position: absolute;
  top: 30%;
  left: 0;
  transform: translateY(-50%);
}
.detail_news .detail_contents .img {
  margin: 2.4rem 0;
  width: 80%;
}
.detail_news .detail_contents .img img {
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.detail_news .detail_contents .img figcaption {
  padding-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents .img {
    width: 100%;
  }
  .detail_news .detail_contents .img img {
    height: 200px;
  }
}
.detail_news .detail_contents .timetable_flex .img {
  width: 100%;
}
.detail_news .detail_contents .timetable_flex .img img {
  height: auto;
}
.detail_news .detail_contents .wide {
  width: 100%;
}
.detail_news .detail_contents .wide img {
  height: auto;
}
.detail_news .detail_contents .wide iframe {
  width: 100%;
  height: 1050px;
}
@media screen and (max-width: 767px) {
  .detail_news .detail_contents .wide iframe {
    height: 790px;
  }
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents .wide iframe {
    height: 500px;
  }
}
.detail_news .detail_contents ul li {
  text-indent: -1.5rem;
  padding-left: 1.5rem;
}
.detail_news .detail_contents ul.box {
  margin: 3.2rem 0;
}
.detail_news .detail_contents .new {
  background: #B8FF0B;
  font-size: 1.2rem;
  padding: 1px 1rem 2px;
  font-weight: 600;
  margin-left: 1.4rem;
}
.detail_news .detail_contents .oa {
  background: #FF4800;
  font-size: 1rem;
  padding: 1px 1rem 2px;
  font-weight: 600;
  margin-left: 1.4rem;
  color: #fff;
}
.detail_news .detail_contents .img_container {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents .img_container {
    gap: 2.4rem 1rem;
  }
}
.detail_news .detail_contents .img_container .img {
  width: 100%;
  margin: 0;
}
.detail_news .detail_contents .img_container img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents .img_container img {
    height: auto;
  }
}
.detail_news .detail_contents .container_02 {
  display: flex;
  flex-wrap: wrap;
}
.detail_news .detail_contents .container_02 .img {
  flex-basis: 1;
  width: auto;
  max-width: 275px;
}
.detail_news .detail_contents .container_02 .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.detail_news .detail_contents span {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents span {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.detail_news .detail_contents a {
  color: #3483FF;
  font-size: 1.8rem;
  padding: 1rem 0;
}
.detail_news .detail_contents a span {
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  vertical-align: inherit;
  transition: 0.3s;
  margin-left: 8px;
}
.detail_news .detail_contents a span img {
  vertical-align: sub;
}
.detail_news .detail_contents a:hover {
  opacity: 0.8;
}
.detail_news .detail_contents a:hover span {
  transform: translateX(0.5rem);
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents a {
    font-size: 1.6rem;
  }
}
.detail_news .detail_contents a.inline {
  display: inline;
}
@media screen and (max-width: 480px) {
  .detail_news .detail_contents a.inline {
    display: inline;
  }
}
.detail_news .detail_contents .mt_20 {
  margin-top: 2rem;
}
.detail_news .detail_contents .no-margin {
  margin: 0;
}
.detail_news .more_btn {
  margin: 12rem auto 0;
}
@media screen and (max-width: 767px) {
  .detail_news .more_btn {
    margin: 8rem auto 0;
  }
}