@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* layout */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  position: relative;
  font-size: 1.4rem;
  word-break: break-all;
  background: url(/asset/images/bg_sp.jpg) #000 no-repeat top center;
  color: #fff;
}
@media (min-width: 960px) {
  body {
    font-size: 2rem;
    background: url(/asset/images/bg.jpg) #000 no-repeat top center;
  }
}

img {
  display: inline;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

@media (min-width: 960px) {
  a:hover {
    opacity: 0.7;
    transition: all 0.3s;
    text-decoration: none;
  }
}

.sp {
  display: block;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 960px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 960px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 960px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 960px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* contents */
.f_serif {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}

.wrap {
  padding: 2% 2% 120px;
}
@media (min-width: 960px) {
  .wrap {
    padding: 3.13% 3.13% 200px;
  }
}

.txt p {
  line-height: 1.6;
}
@media (min-width: 960px) {
  .txt p {
    line-height: 2;
  }
}

.page_ttl {
  text-align: center;
  padding: 50px 0;
}
.page_ttl img {
  height: 50px;
}
@media (min-width: 1366px) {
  .page_ttl img {
    height: 95px;
  }
}

.contents_block {
  background: rgba(255, 255, 255, 0.9);
  color: #333E4A;
  padding: 30px 20px;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 2;
}
@media (min-width: 1366px) {
  .contents_block {
    max-width: 90%;
    margin: 0 auto 100px;
    padding: 80px 100px;
  }
}
.contents_block a {
  color: #333E4A;
}

/*---------------------------------
  footer
---------------------------------*/
#footer {
  background-color: #000;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (min-width: 960px) {
  #footer {
    font-size: 1.6rem;
  }
}
#footer a {
  color: #fff;
}
#footer .inner {
  padding: 2%;
}

/*---------------------------------
  header
---------------------------------*/
#header {
  background-color: #fff;
  padding-left: 2%;
  padding-right: 2%;
  width: 100%;
  position: fixed;
  bottom: -70px;
  left: 0;
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
}
@media (min-width: 768px) {
  #header {
    padding-left: 3.13%;
    padding-right: 3.13%;
  }
}
#header.is-slidein {
  bottom: 0;
  opacity: 1;
}
#header.notransition {
  transition: none !important;
}
#header nav {
  margin: 0 auto;
}
#header nav ul {
  display: flex;
}
#header nav ul li {
  padding: 10px 0;
  width: 33.3333333333%;
  text-align: center;
}
#header nav ul li a {
  display: block;
  border-left: 1px solid #3D4351;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: #333E4A;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  #header nav ul li a {
    font-size: 2rem;
  }
}
@media (min-width: 1366px) {
  #header nav ul li a {
    padding: 5px 0;
  }
}
#header nav ul li a span {
  display: block;
  font-size: 1rem;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  #header nav ul li a span {
    font-size: 1.4rem;
  }
}
#header nav ul li:last-of-type a {
  border-right: 1px solid #3D4351;
}

#top #header nav .top {
  position: relative;
}
#top #header nav .top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0080FF;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}

#ticket #header nav .ticket {
  position: relative;
}
#ticket #header nav .ticket::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0080FF;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}

#news #header nav .news {
  position: relative;
}
#news #header nav .news::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0080FF;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}

/*---------------------------------
  hdg
---------------------------------*/
/*---------------------------------
  loading
---------------------------------*/
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
}
#loading.is-show {
  opacity: 1;
  transition: opacity 0.6s;
}
#loading.is-hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s;
}
#loading #loading_item {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  transition: opacity 0.8s, -webkit-transform 0.6s;
  transition: opacity 0.8s, transform 0.6s;
  transition: opacity 0.8s, transform 0.6s, -webkit-transform 0.6s;
}
#loading.item-in #loading_item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
#loading.item-leave #loading_item {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}

/*---------------------------------
  top
---------------------------------*/
#top .js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#top .js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv {
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  #top #kv {
    display: flex;
    margin-bottom: 140px;
  }
}
@media (min-width: 960px) {
  #top #kv .ph {
    width: 50%;
  }
}
#top #kv .txt {
  text-align: center;
}
@media (min-width: 960px) {
  #top #kv .txt {
    width: 50%;
    padding-top: 80px;
  }
}
@media (min-width: 768px) {
  #top #kv .txt .inner {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 960px) {
  #top #kv .txt .inner {
    width: 90%;
  }
}
#top #kv .txt .part, #top #kv .txt .ttl {
  transition-delay: 3.5s;
}
#top #intro {
  margin-bottom: 100px;
  position: relative;
}
@media (min-width: 768px) {
  #top #intro {
    margin-bottom: 160px;
  }
}
#top #intro h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (min-width: 960px) {
  #top #intro h2 {
    margin-bottom: 40px;
    font-size: 4.2rem;
  }
}
#top #intro .txt p {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #top #intro .txt p {
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 2;
  }
}
#top #intro .txt p.note {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #top #intro .txt p.note {
    font-size: 1.6rem;
  }
}
#top #intro .paets01, #top #intro .paets02, #top #intro .paets03 {
  position: absolute;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: 3s;
  transition-delay: 1s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #intro .paets01.is-active, #top #intro .paets02.is-active, #top #intro .paets03.is-active {
  opacity: 1;
  visibility: visible;
}
#top #intro .paets01 {
  width: 50px;
  height: 70px;
  top: -40px;
  left: 0;
}
@media (min-width: 768px) {
  #top #intro .paets01 {
    width: 70px;
    height: 90px;
    left: 10%;
  }
}
@media (min-width: 960px) {
  #top #intro .paets01 {
    width: 90px;
    height: 110px;
    top: -60px;
    left: 8%;
  }
}
@media (min-width: 1366px) {
  #top #intro .paets01 {
    width: 120px;
    height: 140px;
    top: -90px;
    left: 15%;
  }
}
#top #intro .paets02 {
  width: 50px;
  height: 70px;
  right: 0;
  bottom: -50px;
}
@media (min-width: 768px) {
  #top #intro .paets02 {
    bottom: auto;
    top: 50%;
  }
}
@media (min-width: 960px) {
  #top #intro .paets02 {
    width: 70px;
    height: 90px;
    top: 45%;
  }
}
@media (min-width: 1366px) {
  #top #intro .paets02 {
    width: 90px;
    height: 110px;
    top: 45%;
    right: 10%;
  }
}
#top #intro .paets03 {
  display: none;
}
@media (min-width: 768px) {
  #top #intro .paets03 {
    display: block;
    width: 40px;
    height: 60px;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 960px) {
  #top #intro .paets03 {
    width: 60px;
    height: 80px;
  }
}
@media (min-width: 1366px) {
  #top #intro .paets03 {
    width: 70px;
    height: 90px;
    left: 10%;
    bottom: -50px;
  }
}
#top #information {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  margin-bottom: 60px;
  color: #333E4A;
  font-weight: 400;
}
@media (min-width: 1366px) {
  #top #information {
    max-width: 90%;
    margin: 0 auto 100px;
    padding: 80px 100px;
  }
}
#top #information h2 {
  text-align: center;
  margin-bottom: 20px;
}
#top #information h2 img {
  height: 50px;
}
@media (min-width: 1366px) {
  #top #information h2 img {
    height: 93px;
  }
}
#top #information .detail dl {
  border-top: 1px solid #333E4A;
  padding: 20px 0;
}
@media (min-width: 768px) {
  #top #information .detail dl {
    display: flex;
  }
}
@media (min-width: 1366px) {
  #top #information .detail dl {
    padding: 40px 0;
  }
}
#top #information .detail dl dt {
  color: #FF5700;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  #top #information .detail dl dt {
    width: 12rem;
    flex: none;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 960px) {
  #top #information .detail dl dt {
    width: 18rem;
  }
}
#top #information .detail dl dd {
  font-weight: 500;
}
#top #information .detail dl p strong {
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
#top #information .detail dl .benefits_img {
  margin-top: 20px;
}
#top #information .detail dl .benefits_img img {
  width: 50%;
}
@media (min-width: 960px) {
  #top #information .detail dl .benefits_img img {
    width: 30%;
  }
}
#top #information .detail dl .note {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 1rem;
}
@media (min-width: 960px) {
  #top #information .detail dl .note {
    font-size: 1.6rem;
  }
}
#top #information .detail dl a {
  color: #333E4A;
}
@media (min-width: 1366px) {
  #top #news__index {
    max-width: 90%;
    margin: 0 auto 100px;
    display: flex;
  }
}
#top #news__index h2 {
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 1366px) {
  #top #news__index h2 {
    margin-right: 60px;
    flex: none;
  }
}
#top #news__index h2 img {
  height: 50px;
}
@media (min-width: 1366px) {
  #top #news__index h2 img {
    height: auto;
    width: 295px;
  }
}
#top #news__index .detail dl {
  border-top: 1px solid #fff;
  padding: 20px 0;
}
@media (min-width: 768px) {
  #top #news__index .detail dl {
    display: flex;
  }
}
@media (min-width: 1366px) {
  #top #news__index .detail dl {
    padding: 40px 0;
  }
}
#top #news__index .detail dl:last-of-type {
  border-bottom: 1px solid #fff;
}
#top #news__index .detail dl dt {
  color: #FF5700;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  #top #news__index .detail dl dt {
    width: 12rem;
    flex: none;
    letter-spacing: 0.1em;
  }
}
@media (min-width: 960px) {
  #top #news__index .detail dl dt {
    width: 18rem;
  }
}
#top #news__index .detail dl dd {
  font-weight: 500;
}
#top #news__index .detail dl a {
  color: #fff;
}

/*---------------------------------
  ticket
---------------------------------*/
#ticket .js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
#ticket .js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#ticket .page__nav {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  #ticket .page__nav {
    margin-bottom: 120px;
  }
}
#ticket .page__nav .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#ticket .page__nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 25%;
  text-align: center;
  position: relative;
  padding-top: 12px;
  padding-bottom: 20px;
  font-size: 1rem;
}
@media (min-width: 960px) {
  #ticket .page__nav a {
    font-size: 1.8rem;
    padding-top: 22px;
    padding-bottom: 35px;
  }
}
#ticket .page__nav a::before {
  content: "";
  clip-path: polygon(50% 85%, 90% 0, 100% 0, 50% 100%, 0 0, 10% 0);
  background-color: #fff;
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 10px;
}
@media (min-width: 960px) {
  #ticket .page__nav a::before {
    width: 20px;
    height: 10px;
    bottom: 20px;
  }
}
#ticket h2.page_ttl {
  transition-delay: 3s;
}
#ticket h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket h3 {
    font-size: 4.6rem;
    margin-bottom: 50px;
  }
}
#ticket .contents_block {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #ticket .contents_block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 960px) {
  #ticket .contents_block {
    margin-bottom: 70px;
  }
}
#ticket .border_bottom {
  border-bottom: 1px solid #3D4351;
}
#ticket .note_list {
  display: inline-block;
}
#ticket .note_list li {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 960px) {
  #ticket .note_list li {
    font-size: 1.4rem;
  }
}
#ticket h4 {
  color: #FF5700;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media (min-width: 960px) {
  #ticket h4 {
    font-size: 3rem;
  }
}
#ticket h4 .note {
  text-align: center;
}
#ticket .btn a {
  display: block;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  #ticket .btn a {
    width: 440px;
    margin: 0 auto;
    font-size: 2.2rem;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
#ticket .btn a::before {
  content: "";
  display: block;
  background-color: #3D4351;
  clip-path: polygon(0 0, 20% 0, 100% 50%, 20% 100%, 0 100%, 80% 50%);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  height: 20px;
  width: 10px;
}
@media (min-width: 768px) {
  #ticket .btn a::before {
    right: 20px;
    height: 30px;
    width: 15px;
  }
}
#ticket .btn_bg a {
  background-color: #FF5700;
  color: #fff;
}
#ticket .btn_bg a::before {
  background-color: #fff;
}
#ticket .btn_line a {
  border: 2px solid #FF5700;
  color: #FF5700;
  background-color: #2f343f;
}
#ticket .btn_line a::before {
  background-color: #FF5700;
}
#ticket .lead {
  padding: 20px 0;
}
@media (min-width: 960px) {
  #ticket .lead {
    padding: 40px 0;
  }
}
#ticket #theater .sec01 p {
  text-align: center;
  font-size: 2rem;
}
@media (min-width: 960px) {
  #ticket #theater .sec01 p {
    font-size: 3rem;
    font-weight: 600;
  }
}
#ticket #price {
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  #ticket #price {
    margin-bottom: 90px;
  }
}
#ticket #price .sec01 {
  padding-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket #price .sec01 {
    padding-bottom: 40px;
  }
}
#ticket #price .sec01 .price_txt {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.06em;
}
@media (min-width: 960px) {
  #ticket #price .sec01 .price_txt {
    font-size: 4.2rem;
    font-weight: 600;
  }
}
#ticket #price .sec01 .price_txt span {
  font-size: 60%;
}
#ticket #price .sec01 .note {
  text-align: center;
}
#ticket #price .sec02 {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
@media (min-width: 960px) {
  #ticket #price .sec02 {
    padding-top: 40px;
  }
}
#ticket #price .sec02 .note_list {
  font-size: 1.2rem;
}
#ticket #how {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  #ticket #how {
    margin-bottom: 90px;
  }
}
#ticket #how h4 {
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  #ticket #how h4 {
    margin-bottom: 50px;
  }
}
#ticket #how h4 span {
  display: block;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  #ticket #how h4 span {
    font-size: 1.6rem;
  }
}
#ticket #how dl dt {
  color: #FF5700;
}
@media (min-width: 960px) {
  #ticket #how dl dt {
    font-size: 2.2rem;
  }
}
@media (min-width: 960px) {
  #ticket #how dl dd {
    font-size: 2.2rem;
  }
}
#ticket #how dl dd span.big {
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  #ticket #how dl dd span.big {
    font-size: 2.6rem;
  }
}
#ticket #how .sec01 {
  padding-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket #how .sec01 {
    padding-bottom: 40px;
  }
}
#ticket #how .sec02 {
  padding-top: 20px;
}
@media (min-width: 960px) {
  #ticket #how .sec02 {
    padding-top: 40px;
  }
}
#ticket #how .sec02 dl {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket #how .sec02 dl {
    margin-bottom: 40px;
  }
}
#ticket #how .note_list {
  text-align: left;
  margin-top: 1rem;
}
@media (min-width: 960px) {
  #ticket #how .note_list li {
    font-size: 2rem;
  }
}
#ticket #info {
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  #ticket #info {
    margin-bottom: 90px;
  }
}
@media (min-width: 960px) {
  #ticket #info h4 {
    font-size: 2.6rem;
  }
}
@media (min-width: 960px) {
  #ticket #info .items {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
  }
}
#ticket #info .items .item {
  background-color: #000913;
  border: 1px solid #3D4351;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket #info .items .item {
    padding: 40px;
    width: 48%;
  }
}
#ticket #info .items .item h4 {
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  #ticket #info .items .item h4 {
    margin-bottom: 40px;
  }
}
#ticket #info .items .item .lead {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  #ticket #info .items .item .lead {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
#ticket #info .items .item .btn a {
  width: 100%;
}
@media (min-width: 960px) {
  #ticket #info .items .item .btn a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#ticket #info .items .item .note_list {
  text-align: left;
  margin-top: 15px;
}
#ticket #attention {
  max-width: 1000px;
  margin: 0 auto;
}

/*---------------------------------
  news
---------------------------------*/
#news .js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
  transition-delay: 3s;
}
#news .js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#news .items {
  max-width: 1260px;
  margin: 0 auto;
}
#news .items .item {
  border-bottom: 1px solid #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
#news .items .item:first-of-type {
  border-top: 1px solid #fff;
}
@media (min-width: 960px) {
  #news .items .item {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#news .items .item dt {
  color: #FF5700;
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  #news .items .item dt {
    width: 260px;
    flex: none;
    font-size: 2.2rem;
  }
}
#news .items .item dd {
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  #news .items .item dd {
    font-size: 2.2rem;
  }
}
#news .items .item dd a {
  color: #fff;
}
#news .news_article {
  max-width: 1260px;
  margin: 0 auto 30px;
}
@media (min-width: 960px) {
  #news .news_article {
    margin: 0 auto 80px;
  }
}
#news .news_article a {
  color: #fff;
}
#news .news_article .ttl_block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  font-weight: 700;
}
@media (min-width: 960px) {
  #news .news_article .ttl_block {
    padding-bottom: 40px;
    margin-bottom: 60px;
  }
}
#news .news_article .ttl_block .date {
  color: #FF5700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  #news .news_article .ttl_block .date {
    font-size: 2.2rem;
  }
}
#news .news_article .ttl_block h3 {
  font-size: 1.8rem;
}
@media (min-width: 960px) {
  #news .news_article .ttl_block h3 {
    font-size: 2.8rem;
  }
}
#news .news_article .article_con {
  border-bottom: 1px solid #fff;
  padding-bottom: 60px;
}
#news .news_article .article_con p {
  line-height: 2;
}
#news .news_article .article_con p:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  #news .news_article .article_con p:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
#news .news_article .article_con p.red {
  color: #ff0000;
}
#news .news_article .article_con p.bold {
  font-weight: 700;
}
#news .news_article .article_con ul {
  margin-left: 4rem;
}
#news .news_article .article_con ul:not(:last-of-type) {
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  #news .news_article .article_con ul:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}
#news .news_article .article_con .list li {
  list-style-type: disc;
}
#news .news_article .article_con .note_list {
  display: inline-block;
}
#news .news_article .article_con .note_list li {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-top: 0.5rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 960px) {
  #news .news_article .article_con .note_list li {
    font-size: 1.4rem;
  }
}
#news .news_article .article_con .img_center {
  text-align: center;
  margin-top: 60px;
}
#news .btn_back {
  text-align: center;
}
#news .btn_back a {
  display: inline-block;
  border: 1px solid #FF5700;
  border-radius: 6px;
  padding: 1rem 6rem;
  color: #FF5700;
  font-weight: 700;
  font-size: 1.4rem;
  background-color: #2f343f;
  text-decoration: none;
}
@media (min-width: 960px) {
  #news .btn_back a {
    font-size: 1.8rem;
  }
}

/*---------------------------------
  アニメーション
---------------------------------*/
/*# sourceMappingURL=styles.css.map */