@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato");
/*! creativereset.css v0.0.2 | MIT License | creative team at GMO Internet, Inc */
/*

  機能概要
  ==========================================================================
    - デフォルトのスタイルは維持
    - ブラウザごとの異なるスタイルやバグを修正
    - ユーザビリティを改善

  参考
  ==========================================================================
  ■ sanitize.css v6.0.0
      Chrome (last 3)
      Edge (last 3)
      Firefox (last 3)
      Firefox ESR
      Opera (last 3)
      Safari (last 3)
      iOS Safari (last 2)
      Internet Explorer 9+

  ■ normalize.css v8.0.0
      Chrome
      Edge
      Firefox ESR+
      Internet Explorer 10+
      Safari 8+
      Opera
*/
/* ドキュメント（Document）
 * ========================================================================== */
/**
 * box-sizingをすべての要素に適用（全てのブラウザ）
 */
*, ::before, ::after {
  box-sizing: border-box;
}

/**
 * 擬似要素は text-decoration, vertical-alignを継承（全てのブラウザ）
 */
::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/**
 * 1. 全てのブラウザでベースのline-heightを統一
 * 2. フォントサイズの調整を防止(Windows PhoneのIE,iOS)
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* セクション(Sections)
 * ========================================================================== */
/**
 * マージンを削除（全てのブラウザ）
 */
body {
  margin: 0;
}

/* グループコンテンツ(Grouping content)
 * ========================================================================== */
/**
 * 1. 高を修正(Firefox)
 * 2. オーバーフローを修正(Edge,IE)
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * displayの正しいプロパティを追加（IE）
 */
main {
  display: block;
}

/* テキストレベル（Text-level semantics）
 * ========================================================================== */
/**
 * 1. アクティブリンク時の背景グレイを削除(IE10)
 * 2. リンク下線のギャップを削除(iOS 8+ and Safari 8+ )
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * テキストデコレーションを修正（Edge,IE,Opera and Safari）
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * フォントウェイトを修正（Chrome, Edge, and Safari）
 */
b, strong {
  font-weight: bolder;
}

/**
 * 1. フォントサイズの継承とスケーリングを修正（全てのブラウザ）
 * 2. フォントの不規則なサイズを統一（全てのブラウザ）
 */
pre, code, kbd, samp {
  font-size: 1em; /* 2 */
}

/**
 * フォントのサイズを修正（全てのブラウザ）
 */
small {
  font-size: 80%;
}

/**
 * subとsup要素が行の高さに与える影響を阻止（全てのブラウザ）
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 埋め込みコンテント（Embedded content）
 * ========================================================================== */
/**
 * オーバーフローを修正（IE）
 */
svg:not(:root) {
  overflow: hidden;
}

/* 表形式のデータ（Tabular data）
 * ========================================================================== */
/**
 * テーブルのボーダーを削除
 */
table {
  border-collapse: collapse;
}

/* フォーム（Forms）
 * ========================================================================== */
input {
  border-radius: 0;
}

/**
 * マージンを削除（Firefox,Safari）
 */
button, input, optgroup, select, textarea {
  margin: 0;
}

/**
 * テキストのトランスフォームの継承を削除（Edge,IE,Firefox）
 */
button, select {
  text-transform: none;
}

/**
 * クリック可能なタイプをスタイルできない問題を修正（iOS,Safari）
 */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/**
 * 前のルールで設定したフォーカスのスタイルを元に戻す(Firefox)
 */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * インナーボーダー（-moz-focus-inner）とpaddingを削除（Firefox）
 */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * padding修正（Firefox）.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. テキスト周りを修正（IE）
 * 2. fieldsetからの色の継承を修正（IE）
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. displayの正しいプロパティを追加
 * 2. vertical-alignの正しい値を追加（Chrome, Firefox, and Opera）
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * テキストのトランスフォームの継承を削除（Firefox）
 */
select {
  text-transform: none;
}

/**
 * 1. デフォルトの垂直スクロールバーを削除（IE10+）
 * 2. 縦方向のみリサイズ（すべてのブラウザ）
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. box-sizingを修正（IE 10-）.
 * 2. paddingを削除（IE 10-）
 */
[type=checkbox], [type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 増減ボタンのカーソルのスタイルを修正（Chrome）
 */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. 不規則な外観を修正（Chrome,Safari）
 * 2. アウトラインのスタイルを修正（Safari）
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 外観を修正（Safari 8）
 */
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 幅を修正（Firefox 36+）
 */
[type=number] {
  width: auto;
}

/**
 * 内側のパディングを削除（macOSのChrome, Safari）
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. クリック可能なタイプをスタイルできない問題を修正（iOSとSafari）
 * 2. フォントのプロパティを「inherit」に変更（Safari）
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* インタラクティブ（Interactive）
 * ========================================================================== */
/*
 * displayの正しいプロパティを追加（Edge,IE）
 */
details {
  display: block;
}

/*
 * 正しいプロパティを追加（Edge,IE,Safari）
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * displayの正しいプロパティを追加（全てのブラウザ）
 */
summary {
  display: list-item;
}

/*
 * displayの正しいプロパティを追加（IE 10-）
 */
[hidden] {
  display: none;
}

/* スクリプト制御される要素（Scripting）
 * ========================================================================== */
/**
 * displayの正しいプロパティを追加（IE 9-）
 */
canvas {
  display: inline-block;
}

/**
 * displayの正しいプロパティを追加（IE）
 */
template {
  display: none;
}

/* ユーザーインタラクション（User interaction）
 * ========================================================================== */
/*
 * 1. タップ反応の遅延を削除（IE10）
 * 2. クリック可能な要素のタップ反応の遅延を削除（全てのブラウザ）
 */
a, area, button, input, label, select, summary, textarea, [tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

* {
  box-sizing: border-box;
}

::before, ::after {
  box-sizing: inherit;
}

/* 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-tap-highlight-color: transparent; /* 3 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* 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;
  line-height: inherit;
  margin: 0;
}

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

/* 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 {
  border: 0;
  border-top: 1px solid;
  box-sizing: content-box; /* 1 */
  clear: both;
  color: inherit;
  height: 0; /* 1 */
  margin: 0;
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  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;
  color: inherit;
  text-decoration: none;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  -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;
}

/* Embedded content */
/* ============================================ */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
  vertical-align: bottom;
}

embed, object, iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
   * Reset form fields to make them styleable
   */
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  text-align: inherit;
  vertical-align: middle;
}

/**
   * 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;
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button, input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button, select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

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

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Remove arrow in IE10 & IE11
   */
select::-ms-expand {
  display: none;
}

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

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

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * 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. Change font properties to `inherit` in Safari.
   */
::-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] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

/* Misc */
/* ============================================ */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

@font-face {
  font-family: "icon";
  font-style: normal;
  font-weight: normal;
  src: url("/wp-content/themes/athletes.gmo.jp/common/fonts/icon/icon.eot?1617163426035");
  src: url("/wp-content/themes/athletes.gmo.jp/common/fonts/icon/icon.eot?#iefix&1617163426035") format("eot"), url("/wp-content/themes/athletes.gmo.jp/common/fonts/icon/icon.woff?1617163426035") format("woff"), url("/wp-content/themes/athletes.gmo.jp/common/fonts/icon/icon.ttf?1617163426035") format("truetype"), url("/wp-content/themes/athletes.gmo.jp/common/fonts/icon/icon.svg#icon&1617163426035") format("svg");
}
.icon {
  font-size: 1.3rem;
}

.icon::before {
  display: inline-block;
  font-family: "icon";
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-decoration: none;
  text-transform: none;
}

.icon-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 3em;
}

.icon-4x {
  font-size: 4em;
}

.icon-5x {
  font-size: 5em;
}

.icon-fw {
  text-align: center;
  width: 1.2857142857em;
}

.icon-arrow_right::before {
  content: "\f001";
}

.icon-arrow_down::before {
  content: "\f002";
}

.icon-arrow_left::before {
  content: "\f003";
}

.icon-arrow_up::before {
  content: "\f004";
}

.icon-facebook::before {
  content: "\f005";
}

.icon-instagram::before {
  content: "\f006";
}

.icon-twitter::before {
  content: "\f007";
}

.icon-facebook-f::before {
  content: "\f008";
}

/**
 * ブレイクポイント
 */
/**
 * カラー設定
 */
.is-pc {
  display: block !important;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}
@media (min-width: 1px) and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.is-tb {
  display: none !important;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .is-tb {
    display: block !important;
  }
}

.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right !important;
}

.weight-normal {
  font-weight: normal !important;
}
.weight-bold {
  font-weight: bold !important;
}

body {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic W3 JIS2004", "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", meiryo, "メイリオ", sans-serif;
  line-height: 1;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
}

a {
  text-decoration: none;
}

img {
  height: auto;
  width: 100%;
}

.section_inner {
  max-width: 1100px;
  padding: 0 50px;
  width: 100%;
  margin: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  .section_inner {
    padding: 0 36px;
  }
}
.section_title {
  text-align: center;
  position: relative;
}
.section_title img {
  height: 36px;
  width: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  .section_title img {
    height: 26px;
  }
}
.section_title::after {
  content: "";
  display: block;
  width: 2px;
  height: 60px;
  background-color: #333;
  margin: 20px auto 40px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .section_title::after {
    height: 30px;
    margin: 10px auto 20px;
  }
}

.gmoGroupFooter {
  width: 100%;
  margin: auto;
}
.gmoGroupFooter_logo a img {
  width: 175px;
}
.gmoGroupFooter_text img {
  width: 438px;
}

.link-box {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 60px;
  height: 60px;
  border: 2px solid #333;
  transition: all 0.2s ease;
  text-align: center;
  color: #333;
  position: relative;
}
.link-box > svg path {
  fill: #333;
}
.link-box-arrow {
  position: absolute;
  right: 20px;
  display: block;
}
.link-box-arrow svg {
  width: 18px;
  vertical-align: text-bottom;
}
.link-box-arrow svg path {
  fill: #333;
}
.link-box:hover {
  color: #fff;
  background-color: #333;
}
.link-box:hover svg path {
  fill: #fff;
}
.link-box.is-black {
  background-color: #333;
  color: #fff;
}
.link-box.is-black:hover {
  color: #333;
  background-color: #fff;
}
.link-box.is-black:hover .link-box-arrow svg path {
  fill: #333;
}
.link-box.is-black .link-box-arrow svg path {
  fill: #fff;
}
.link-box.is-red {
  background-color: #E6394B;
  border-color: #E6394B;
  color: #fff;
}
.link-box.is-red:hover {
  background-color: #fff;
  color: #E6394B;
}
.link-box.is-red:hover .link-box-arrow svg path {
  fill: #E6394B;
}
.link-box.is-red .link-box-arrow svg path {
  fill: #fff;
}

.ticket-contact-link {
  align-items: center;
  display: flex;
}
.ticket-contact-link:hover span {
  color: #005BAC;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .ticket-contact-link:hover span {
    color: #333;
  }
}
.ticket-contact-link:hover svg path {
  fill: #005BAC;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .ticket-contact-link:hover svg path {
    fill: #333;
  }
}
.ticket-contact-link span {
  display: inline-block;
  margin-right: 6px;
  font-size: 14px;
  font-size: 0.875rem;
}
.ticket-contact-link svg {
  height: 12px;
  width: 12px;
}

.floatingLink {
  position: fixed;
  top: calc(50% - 218px);
  right: 0;
  z-index: 1001;
}
@media (min-width: 1px) and (max-width: 767px) {
  .floatingLink {
    display: none;
  }
}

#top .mainvisual {
  display: flex;
  justify-content: center;
  padding-top: 108px;
  width: 80%;
  margin: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mainvisual {
    padding: 90px 36px 0;
    display: block;
    width: 100%;
  }
}
#top .mainvisual h1 {
  width: 60%;
  padding: 48px 0;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mainvisual h1 {
    width: 100%;
    padding: 0;
  }
}
#top .mainvisual_inner {
  width: 40%;
  position: relative;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mainvisual_inner {
    width: 100%;
    margin: 20px auto 0;
  }
  #top .mainvisual_inner::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
#top .mainvisual_picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 2s ease;
}
#top .mainvisual_picture.is-active {
  opacity: 1;
}
#top .mainvisual_picture img {
  width: auto;
  height: 100%;
}
#top .event {
  padding-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .event {
    padding-top: 100px;
  }
}
#top .eventBox_title {
  text-align: center;
  line-height: 1.5;
}
#top .eventBox_title > span {
  display: block;
}
#top .eventBox_title .is-ja {
  font-weight: bold;
  font-size: 30px;
  font-size: 1.875rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBox_title .is-ja {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#top .eventBox_title .is-en {
  margin-top: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBox_title .is-en {
    font-size: 16px;
    font-size: 1rem;
  }
}
#top .eventBox > p {
  line-height: 2.5;
  margin-top: 48px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBox > p {
    margin-top: 22px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .eventBoxHighlights {
  margin-top: 64px;
  border-top: 1px solid #000;
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights {
    display: block;
    margin-top: 30px;
    padding-top: 30px;
  }
}
#top .eventBoxHighlights:nth-of-type(odd) {
  flex-flow: row-reverse;
}
#top .eventBoxHighlights:not(:first-of-type) {
  margin-top: 60px;
  border-top: none;
  padding-top: 0;
}
#top .eventBoxHighlights > div:nth-child(1) {
  width: 54%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights > div:nth-child(1) {
    width: 100%;
  }
}
#top .eventBoxHighlights > div:nth-child(1) > h3 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights > div:nth-child(1) > h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
#top .eventBoxHighlights > div:nth-child(1) > p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-top: 20px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights > div:nth-child(1) > p {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 16px;
  }
}
#top .eventBoxHighlights > div:nth-child(2) {
  width: 40%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights > div:nth-child(2) {
    width: 100%;
    margin-top: 60px;
  }
}
#top .eventBoxHighlights_link {
  margin: 24px auto 0;
  text-align: right;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .eventBoxHighlights_link {
    margin: 30px auto 0;
  }
}
#top .eventBoxHighlights_link > a {
  display: inline-block;
}
#top .eventBoxHighlights_link > a > span {
  display: flex;
}
#top .eventBoxHighlights_link > a > span > svg {
  width: 94px;
}
#top .eventBoxHighlights_link > a > span span {
  display: inline-block;
  margin-left: 20px;
}
#top .eventBoxHighlights_link > a > span span svg {
  width: 18px;
}
#top .eventBoxHighlights_link > a:hover svg {
  fill: #005BAC;
}
#top .artist {
  padding-top: 148px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .artist {
    padding-top: 100px;
  }
}
#top .artistBox_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .artistBox_item {
    display: block;
  }
}
#top .artistBox_item > p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.5;
  width: 54%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .artistBox_item > p {
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
  }
}
#top .artistBox_item img {
  width: 40%;
  height: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .artistBox_item img {
    margin-top: 32px;
    width: 100%;
  }
}
#top .ticket {
  padding-top: 148px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticket {
    padding-top: 100px;
  }
}
#top .ticket_title {
  position: relative;
  z-index: 2;
}
#top .ticketBox {
  margin: -70px 0 0;
  background-color: #F5F5F5;
  padding: 61px 0;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox {
    margin-top: -36px;
    padding: 36px 0 80px;
  }
}
#top .ticketBox_inner {
  max-width: 1100px;
  padding: 0 50px;
  width: 100%;
  margin: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox_inner {
    padding: 0 36px;
  }
}
#top .ticketBox_notes {
  text-align: center;
  line-height: 2;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox_notes {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .ticketBox_present {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox_present {
    display: block;
  }
}
#top .ticketBox_presentText {
  color: #666;
  line-height: 2;
  width: 54%;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox_presentText {
    margin: 0 0 30px;
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .ticketBox_presentImg {
  height: auto;
  width: 40%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox_presentImg {
    width: 100%;
  }
}
#top .ticketBox dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  margin: 60px 0 40px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl {
    margin: 60px 0 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#top .ticketBox dl dt {
  width: 20%;
  font-weight: normal;
  margin-bottom: 50px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dt {
    width: 30%;
  }
}
#top .ticketBox dl dd {
  width: 80%;
  margin-bottom: 50px;
  line-height: 1.5;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd {
    width: 70%;
  }
}
#top .ticketBox dl dd > p {
  margin-top: 22px;
}
#top .ticketBox dl dd > p:nth-child(1) {
  margin-top: 0;
}
#top .ticketBox dl dd > p.is-small {
  font-size: 12px;
  font-size: 0.75rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd > p.is-small {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#top .ticketBox dl dd ul.attention {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd ul.attention {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#top .ticketBox dl dd ul.attention li {
  text-indent: -18px;
  padding-left: 18px;
  margin-top: 6px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd ul.attention li {
    text-indent: -14px;
    padding-left: 14px;
  }
}
#top .ticketBox dl dd ul:nth-child(1) li:nth-child(1) {
  margin-top: 0;
}
#top .ticketBox dl dd .ticketConfig {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd .ticketConfig {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#top .ticketBox dl dd .ticketConfig li {
  display: flex;
}
#top .ticketBox dl dd .ticketConfig li + li {
  margin-top: 14px;
}
#top .ticketBox dl dd .ticketConfig_title {
  width: 18%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd .ticketConfig_title {
    width: 50%;
  }
}
#top .ticketBox dl dd .ticketConfig_detail {
  width: 82%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd .ticketConfig_detail {
    width: 50%;
  }
}
#top .ticketBox dl dd .ticketConfig_attention {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBox dl dd .ticketConfig_attention {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#top .ticketBoxLink {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  margin-top: 90px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBoxLink {
    margin-top: 60px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .ticketBoxLink a {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .ticketBoxLink a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .ticketBoxLink a.link-box {
  margin-bottom: 16px;
}
#top .instagram {
  padding-top: 120px;
}
#top .instagramCampaignBox {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaignBox {
    display: block;
  }
}
#top .instagramCampaignBox > p {
  width: 68%;
  line-height: 2;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaignBox > p {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .instagramCampaignBox > img {
  display: block;
  width: 26%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaignBox > img {
    width: 190px;
    margin: 13px auto 0;
  }
}
#top .instagramCampaignBox > div {
  width: 40%;
  height: 200px;
  background-color: #000;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaignBox > div {
    width: 100%;
    margin-top: 23px;
  }
}
#top .instagramCampaign dl {
  display: flex;
  flex-wrap: wrap;
}
#top .instagramCampaign dl dt {
  width: 20%;
  font-weight: normal;
  margin-top: 40px;
  line-height: 1.5;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dt {
    width: 30%;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#top .instagramCampaign dl dd {
  width: 80%;
  margin-top: 40px;
  line-height: 1.5;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd {
    width: 70%;
  }
}
#top .instagramCampaign dl dd.is-period > p {
  margin-top: 10px;
}
#top .instagramCampaign dl dd.is-period > p.is-end {
  color: #CCCCCC;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd.is-period > p {
    display: flex;
    flex-wrap: wrap;
  }
  #top .instagramCampaign dl dd.is-period > p .is-wrap {
    display: flex;
  }
}
#top .instagramCampaign dl dd.is-period > p .is-time {
  display: inline-block;
  width: 248px;
  margin-right: 20px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd.is-period > p .is-time {
    width: auto;
    margin-right: 10px;
  }
}
#top .instagramCampaign dl dd a {
  cursor: pointer;
  color: #005BAC;
}
#top .instagramCampaign dl dd > p {
  margin-top: 22px;
}
#top .instagramCampaign dl dd > p:nth-child(1) {
  margin-top: 0;
}
#top .instagramCampaign dl dd > p.has-indent {
  text-indent: -18px;
  padding-left: 18px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd > p.has-indent {
    text-indent: -14px;
    padding-left: 14px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd > p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#top .instagramCampaign dl dd ul.attention {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd ul.attention {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#top .instagramCampaign dl dd ul.attention li {
  text-indent: -18px;
  padding-left: 18px;
  margin-top: 6px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramCampaign dl dd ul.attention li {
    text-indent: -14px;
    padding-left: 14px;
  }
}
#top .instagramCampaign dl dd ul:nth-child(1) li:nth-child(1) {
  margin-top: 0;
}
#top .instagramBox {
  margin: 60px auto 0;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramBox {
    margin-top: 32px;
  }
}
#top .instagramBox .cmtin-wrap {
  margin: 22px auto 0 !important;
  text-align: center !important;
  padding: 0 50px !important;
}
#top .instagramBox_note {
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramBox_note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .instagramBox_note span, #top .instagramBox_note a {
  display: inline-block;
  color: #005BAC;
  font-feature-settings: "palt";
}
#top .instagramBox .cmtin-andmore a {
  position: relative;
}
#top .instagramBox .cmtin-andmore a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
  background: url("/assets/images/link.svg") center/cover no-repeat;
  height: 20px;
  width: 20px;
  display: block;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .instagramBox .cmtin-andmore a::after {
    right: 10px;
  }
}
#top .access {
  padding-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .access {
    padding-top: 100px;
  }
}
#top .access_title::after {
  margin-bottom: 0;
}
#top .accessBoxMap iframe {
  width: 100%;
  height: 500px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .accessBoxMap iframe {
    height: 400px;
  }
}
#top .accessBox > p {
  margin-top: 51px;
  text-align: center;
  line-height: 2;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .accessBox > p {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 36px;
  }
}
#top .accessBox > p a {
  color: #005BAC;
}
#top .concept {
  padding-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .concept {
    padding-top: 100px;
  }
}
#top .concept_title {
  position: relative;
  z-index: 2;
}
#top .conceptBox {
  margin: -70px auto 0;
  padding: 128px 0 100px;
  background: url("/assets/images/concept_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .conceptBox {
    margin-top: -36px;
    padding: 75px 0 80px;
  }
}
#top .conceptBox::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.86);
  z-index: 0;
}
#top .conceptBox_inner {
  max-width: 1100px;
  padding: 0 50px;
  width: 100%;
  margin: auto;
  z-index: 1;
  position: relative;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .conceptBox_inner {
    padding: 0 36px;
  }
}
#top .conceptBox_inner > p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .conceptBox_inner > p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .conceptBox_inner > a {
  display: block;
  width: 260px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 2px solid #666666;
  font-size: 20px;
  font-size: 1.25rem;
  color: #666;
  margin: 100px auto 0;
}
#top .media {
  padding-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .media {
    padding-top: 100px;
  }
}
#top .mediaInner_logo div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#top .mediaInner_logo div p {
  margin: 0 30px 40px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_logo div p {
    margin: 0 15px 20px;
  }
}
#top .mediaInner_logo div p a {
  display: block;
}
#top .mediaInner_logo div p a img {
  width: auto;
}
#top .mediaInner_logo div p a img.is-hover {
  display: none;
}
#top .mediaInner_logo div p a:hover img.is-default {
  display: none;
}
#top .mediaInner_logo div p a:hover img.is-hover {
  display: block;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #top .mediaInner_logo div p a:hover img.is-default {
    display: block;
  }
  #top .mediaInner_logo div p a:hover img.is-hover {
    display: none;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_logoPc {
    display: none;
  }
}
#top .mediaInner_list {
  margin-bottom: 60px;
}
#top .mediaInner_list li {
  line-height: 1.5;
}
#top .mediaInner_list li:last-of-type {
  border-bottom: 2px solid #F5F5F5;
}
#top .mediaInner_list li:nth-child(odd) {
  background-color: #F5F5F5;
}
#top .mediaInner_list li > p {
  padding: 10px 20px 10px;
  display: flex;
  align-items: center;
}
#top .mediaInner_list li .is-kind {
  display: inline-block;
  min-width: 300px;
  width: 300px;
  margin-right: 30px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #top .mediaInner_list li .is-kind {
    width: 220px;
    min-width: 220px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_list li .is-kind {
    display: none;
  }
}
#top .mediaInner_list li .is-title {
  overflow-wrap: break-word;
}
#top .mediaInner_listLink {
  display: flex;
  align-items: center;
  padding: 10px 70px 10px 20px;
  position: relative;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_listLink {
    padding: 10px 32px 10px 20px;
  }
}
#top .mediaInner_listLink:hover {
  color: #005BAC;
}
#top .mediaInner_listLink:hover svg path {
  fill: #005BAC;
}
#top .mediaInner_listLink svg {
  position: absolute;
  right: 20px;
  height: 12px;
  width: 12px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_listLink svg {
    right: 10px;
  }
}
#top .mediaInner_link {
  cursor: pointer;
  margin: 0 auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .mediaInner_link {
    max-width: 280px;
    width: 100%;
  }
  #top .mediaInner_link:hover {
    background: #fff;
  }
  #top .mediaInner_link:hover svg path {
    fill: #000;
  }
}
#top .mediaInner_link .link-box-arrow {
  transform: rotate(90deg);
}
#top .mediaInner_link.is-hide .link-box-arrow {
  transform: rotate(-90deg);
}
#top .operating {
  padding-top: 160px;
  margin-bottom: 170px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operating {
    padding-top: 100px;
    margin-bottom: 60px;
  }
}
#top .operatingBoxCompany {
  text-align: center;
}
#top .operatingBoxCompany img {
  display: block;
  margin: 40px auto 31px;
  width: 478px;
  height: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxCompany img {
    width: 100%;
  }
}
#top .operatingBoxCompany p {
  line-height: 2;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxCompany p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .operatingBoxApp {
  margin-top: 91px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxApp {
    margin-top: 60px;
    display: block;
  }
}
#top .operatingBoxAppLeft {
  width: 60%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppLeft {
    width: 100%;
  }
}
#top .operatingBoxAppLeft_logo {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppLeft_logo {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#top .operatingBoxAppLeft_logo img {
  width: 230px;
  display: block;
  margin: 15px auto 0;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppLeft_logo img {
    width: 62%;
  }
}
#top .operatingBoxAppLeft_text {
  margin-top: 32px;
  text-align: center;
  line-height: 2;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppLeft_text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
#top .operatingBoxAppLeftLink {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
#top .operatingBoxAppLeftLink a {
  display: block;
}
#top .operatingBoxAppLeftLink a img {
  height: 60px;
  width: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppLeftLink a img {
    height: 47px;
  }
}
#top .operatingBoxAppLeftLink a + a {
  margin-left: 10px;
}
#top .operatingBoxAppRight {
  width: 34%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #top .operatingBoxAppRight {
    margin-top: 50px;
    width: 100%;
  }
}

.mediaInner_listItem.is-more {
  display: none;
}
.mediaInner.is-expanded .mediaInner_listItem.is-more {
  display: block;
}
.mediaInner_link.js-mediaMore {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font: inherit;
}
.mediaInner.is-expanded .mediaInner_link.js-mediaMore .link-box-arrow {
  transform: rotate(-90deg);
}

#exhibition {
  padding-top: 136px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition {
    padding-top: 120px;
  }
}
#exhibition > h1 {
  text-align: center;
}
#exhibition > h1 img {
  width: 154px;
  margin: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition > h1 img {
    width: 116px;
  }
}
#exhibition > p {
  line-height: 2;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  margin: 10px 0 60px;
  font-weight: bold;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition > p {
    padding: 0 36px;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 14px 0 68px;
  }
}
#exhibition .exhibition_nav {
  display: flex;
  justify-content: center;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav {
    flex-wrap: wrap;
    width: 40%;
    min-width: 300px;
    margin: 0 auto;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li {
    display: inline-block;
    margin: 0 0 24px;
  }
  #exhibition .exhibition_nav li:nth-of-type(even) {
    margin-left: 24px;
  }
}
#exhibition .exhibition_nav li a {
  display: flex;
  position: relative;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #exhibition .exhibition_nav li a {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
#exhibition .exhibition_nav li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 60px;
  height: 2px;
  left: calc(50% - 30px);
  margin: 13px auto 0;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li a::after {
    display: none;
  }
}
#exhibition .exhibition_nav li a:hover::after {
  background: #333333;
  z-index: 1;
}
#exhibition .exhibition_nav li a span {
  margin-left: 10px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li a span {
    margin-left: 8px;
  }
}
#exhibition .exhibition_nav li a span svg {
  width: 14px;
  transform: rotate(90deg);
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li a span svg {
    width: 10px;
  }
}
#exhibition .exhibition_nav li + li {
  margin-left: 80px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #exhibition .exhibition_nav li + li {
    margin-left: 20px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .exhibition_nav li + li {
    margin-left: 0px;
  }
}
#exhibition .section_title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  font-weight: bold;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .section_title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
#exhibition .sectionWrap {
  padding-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap {
    padding-top: 100px;
  }
  #exhibition .sectionWrap#bouquet {
    padding-top: 76px;
  }
  #exhibition .sectionWrap#bouquet.is-gray::before {
    height: 164px;
  }
}
#exhibition .sectionWrap#bomb .event:nth-child(even) .eventBox {
  flex-flow: row-reverse;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap#bomb .event:nth-child(even) .eventBox {
    flex-flow: column-reverse;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap#bomb .event:nth-child(even) .eventBox_text {
    margin: 60px 0 0;
  }
}
#exhibition .sectionWrap.is-gray {
  background: #F5F5F5;
  padding-bottom: 104px;
  position: relative;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap.is-gray {
    padding-bottom: 50px;
  }
}
#exhibition .sectionWrap.is-gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 254px;
  background: #fff;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap.is-gray::before {
    height: 194px;
  }
}
#exhibition .sectionWrap.is-gray .event:nth-child(even) .eventBox {
  flex-flow: row-reverse;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap.is-gray .event:nth-child(even) .eventBox {
    flex-flow: column-reverse;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .sectionWrap.is-gray .event:nth-child(even) .eventBox_text {
    margin: 60px 0 0;
  }
}
#exhibition .event + .event {
  margin-top: 160px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .event + .event {
    margin-top: 100px;
  }
}
#exhibition .eventBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox {
    flex-flow: column;
  }
}
#exhibition .eventBox.no-img .eventBox_text {
  width: 100%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox.no-img .eventBox_text {
    margin: 0;
  }
}
#exhibition .eventBox_text {
  width: 54%;
  line-height: 2.5;
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox_text {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 33px;
    width: 100%;
  }
}
#exhibition .eventBox_text p.is-attention {
  line-height: 1.5;
  font-size: 14px;
  font-size: 0.875rem;
  text-indent: -18px;
  padding-left: 18px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox_text p.is-attention {
    font-size: 10px;
    font-size: 0.625rem;
    text-indent: -15px;
    padding-left: 15px;
  }
}
#exhibition .eventBox_text p + p {
  margin-top: 16px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox_text p + p {
    margin-top: 13px;
  }
}
#exhibition .eventBox_img {
  width: 40%;
  height: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .eventBox_img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#exhibition .bottomLink {
  display: flex;
  justify-content: center;
  margin: 60px 0 100px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .bottomLink {
    flex-flow: column-reverse;
    margin: 60px 0;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .bottomLink > div {
    margin: 0 auto;
  }
}
#exhibition .bottomLink > div + div {
  margin-left: 40px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #exhibition .bottomLink > div + div {
    margin-bottom: 30px;
    margin-left: auto;
  }
}
#exhibition .bottomLink > div a.is-ticket {
  margin-bottom: 16px;
}
#exhibition .bottomLink > div a > svg {
  width: 42px;
}
#exhibition .bottomLink > div a.ticket-contact-link > svg {
  width: 12px;
}

#hachiko .section {
  position: relative;
  padding: 250px 60px 200px;
  background: #11141A;
  margin: 0 10px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .section {
    margin: 0 8px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .section {
    margin: 0 4px;
    padding: 0 0 60px;
  }
}
#hachiko .sectionMainvisual {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  height: 480px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .sectionMainvisual {
    position: static;
    height: auto;
  }
}
#hachiko .sectionMainvisual img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .sectionMainvisual img {
    height: auto;
  }
}
#hachiko .sectionInner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #24262C;
  color: #FFFFFF;
  padding: 120px 100px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .sectionInner {
    padding: 100px 60px;
    line-height: 1.2;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .sectionInner {
    padding: 60px 20px;
  }
}
#hachiko .sectionInner_txt {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 60px;
  line-height: 2;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .sectionInner_txt {
    margin: 0 0 40px;
  }
}
#hachiko .sectionInner_txt p + p {
  margin: 24px 0 0;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .sectionInner_txt p + p {
    margin: 22px 0 0;
  }
}
#hachiko .section h2 {
  font-weight: bold;
  text-align: center;
  margin: 0 0 35px;
  font-size: 48px;
  font-size: 3rem;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .section h2 {
    margin: 0 0 30px;
    line-height: 1.5;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
#hachiko .mainvisual {
  margin: 10px 10px 100px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .mainvisual {
    margin: 4px 4px 60px;
  }
}
#hachiko .mainvisualInner {
  margin: 0 0 100px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .mainvisualInner {
    margin: 0 0 60px;
  }
  #hachiko .mainvisualInner img.is-tb {
    display: none !important;
  }
}
#hachiko .mainvisualTxt {
  text-align: center;
  line-height: 2;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .mainvisualTxt {
    padding: 0 50px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .mainvisualTxt {
    padding: 0 25px;
  }
}
#hachiko .mainvisualTxt a {
  color: #428BCA;
}
#hachiko .mainvisualTxt a:hover {
  text-decoration: underline;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .story {
    padding: 0;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .storyMainvisual img.bg-pc {
    display: none;
  }
}
#hachiko .storyMainvisual img.bg-sp {
  display: none;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .storyMainvisual img.bg-sp {
    display: block;
  }
}
#hachiko .storyInner_movie {
  background: #fff;
  margin: 0 0 40px;
  height: 500px;
  width: 100%;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .storyInner_movie {
    height: 290px;
    margin: 0 0 60px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .storyInner_movie {
    position: relative;
    height: auto;
    padding-top: 52.2%;
    margin: 0 0 30px;
  }
}
#hachiko .storyInner_movie iframe {
  height: 100%;
  width: 100%;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .storyInner_movie iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}
#hachiko .storyInner_list {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .storyInner_list {
    flex-wrap: wrap;
  }
}
#hachiko .storyInner_list li {
  width: 30%;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .storyInner_list li {
    width: 48%;
  }
  #hachiko .storyInner_list li:not(:last-of-type) {
    margin: 0 0 34px;
  }
}
#hachiko .page-top {
  width: 90px;
  position: fixed;
  bottom: 100px;
  color: #fff;
  height: 60px;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.54);
  border-radius: 4px;
  font-size: 10px;
  font-size: 0.625rem;
}
#hachiko .page-top a {
  display: block;
  padding-top: 38px;
  background: url("/assets/images/hachiko/top.svg") center 10px/22px 21px no-repeat;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .page-top {
    display: none;
  }
}
#hachiko .footerHead {
  padding: 150px 0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .footerHead {
    padding: 150px 120px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .footerHead {
    padding: 80px 24px;
  }
}
#hachiko .footerHead p {
  text-align: center;
}
#hachiko .footerHead_logo {
  padding: 0 110px;
  margin: 0 auto 60px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .footerHead_logo {
    margin: 0 auto 40px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .footerHead_logo {
    padding: 0;
  }
}
#hachiko .footerFoot small {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .footerFoot small {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
#hachiko .footerShareLinks {
  background-color: #005bac;
  display: flex;
  gap: 0 16px;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}
#hachiko .footerShareLinks_item {
  height: 32px;
  width: 32px;
}
#hachiko .footerShareLinks_item img {
  height: 100%;
  width: 100%;
}
#hachiko .footerShareLinks_item.is-title {
  font-size: 16px;
  font-size: 1rem;
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: bold;
  justify-content: center;
  white-space: nowrap;
  width: auto;
}
#hachiko .footer_seal {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 40px 0;
  /* @include is-sp {
      margin-top: 16px;
  } */
}

.siteWrap .header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid #E1E1E1;
  z-index: 1000;
  background-color: #fff;
}
.siteWrap .header_inner {
  padding: 0 50px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
  display: flex;
  height: 76px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_inner {
    padding: 0 15px;
    height: 60px;
  }
}
.siteWrap .headerLogo {
  width: 38.4vw;
  max-width: 144px;
}
.siteWrap .header_left {
  display: none;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .siteWrap .header_left {
    display: flex;
    align-items: center;
  }
}
.siteWrap .header_ticket {
  margin-right: 6.4vw;
}
.siteWrap .header_ticket a {
  width: 110px;
  text-align: center;
  padding: 12px 0;
  color: #E6394B;
  border: 1px solid #E6394B;
  font-size: 12px;
  font-size: 0.75rem;
}
.siteWrap .header_ticket a svg {
  vertical-align: text-bottom;
  width: 12px;
}
.siteWrap .header_ticket a svg path {
  fill: #E6394B;
}
.siteWrap .header_button {
  cursor: pointer;
  height: 32px;
  position: relative;
  width: 40px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_button {
    height: 22px;
    width: 30px;
  }
}
.siteWrap .header_button span {
  background-color: #333;
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_button span {
    height: 3px;
  }
}
.siteWrap .header_button span:nth-of-type(1) {
  top: 0;
}
.siteWrap .header_button span:nth-of-type(2) {
  top: 13px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_button span:nth-of-type(2) {
    top: 10px;
  }
}
.siteWrap .header_button span:nth-of-type(3) {
  bottom: 0;
}
.siteWrap .header_button.is-active span:nth-of-type(1) {
  top: 13px;
  transform: rotate(-45deg);
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_button.is-active span:nth-of-type(1) {
    top: 9px;
  }
}
.siteWrap .header_button.is-active span:nth-of-type(2) {
  opacity: 0;
}
.siteWrap .header_button.is-active span:nth-of-type(3) {
  bottom: 13px;
  transform: rotate(45deg);
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .header_button.is-active span:nth-of-type(3) {
    bottom: 10px;
  }
}
@media (min-width: 1px) and (max-width: 1000px) {
  .siteWrap .headerMenuPc {
    display: none;
  }
}
.siteWrap .headerMenuPcNav ul {
  display: flex;
  align-items: center;
}
.siteWrap .headerMenuPcNav ul li {
  font-weight: bold;
}
.siteWrap .headerMenuPcNav ul li a:hover {
  color: #AAA;
}
.siteWrap .headerMenuPcNav ul li a img {
  height: 12px;
  width: auto;
  display: block;
  margin: auto;
}
.siteWrap .headerMenuPcNav ul li a img.is-heightUp {
  height: 14px;
}
.siteWrap .headerMenuPcNav ul li + li {
  margin-left: 35px;
}
.siteWrap .headerMenuTb {
  display: none;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .siteWrap .headerMenuTb {
    display: block;
  }
}
.siteWrap .headerMenuTb {
  position: absolute;
  top: calc(-100vh - 76px);
  left: 0;
  width: 100%;
  overflow: auto;
  height: calc(100vh - 76px);
  transition: all 0.3s ease;
  z-index: -1;
  opacity: 0;
}
.siteWrap .headerMenuTb.is-active {
  opacity: 1;
  top: 100%;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTb {
    height: calc(100vh - 60px);
  }
}
.siteWrap .headerMenuTb_bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.siteWrap .headerMenuTbNav {
  background-color: #fff;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav {
    padding: 20px 0 30px;
  }
}
.siteWrap .headerMenuTbNav ul li > a:hover {
  color: #AAA;
}
.siteWrap .headerMenuTbNav ul li > a img {
  height: 18px;
  width: auto;
  display: block;
  margin: auto;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li > a img {
    height: 15px;
  }
}
.siteWrap .headerMenuTbNav ul li > a img.is-heightUp {
  height: 21px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li > a img.is-heightUp {
    height: 15px;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li.nav-event > a img, .siteWrap .headerMenuTbNav ul li.nav-artist > a img, .siteWrap .headerMenuTbNav ul li.nav-ticket > a img, .siteWrap .headerMenuTbNav ul li.nav-access > a img, .siteWrap .headerMenuTbNav ul li.nav-media > a img {
    height: 13px;
  }
}
.siteWrap .headerMenuTbNav ul li + li {
  margin-top: 60px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li + li {
    margin-top: 40px;
  }
}
.siteWrap .headerMenuTbNav ul li.is-sns {
  display: none;
  justify-content: center;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li.is-sns {
    display: flex;
    margin-top: 30px;
  }
}
.siteWrap .headerMenuTbNav ul li.is-sns > div + div {
  margin-left: 60px;
}
.siteWrap .headerMenuTbNav ul li.is-sns img {
  height: 30px;
}
.siteWrap .headerMenuTbNav ul li.is-ticket {
  display: none;
}
@media (min-width: 1px) and (max-width: 1000px) {
  .siteWrap .headerMenuTbNav ul li.is-ticket {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .headerMenuTbNav ul li.is-ticket {
    margin-top: 30px;
  }
}

.siteWrap .footerLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-size: 0.875rem;
}
.siteWrap .footerLink li a {
  display: block;
}
.siteWrap .footerLink li a + a {
  margin-left: 20px;
}
.siteWrap .footerLink li a img {
  height: 35px;
  width: auto;
}
.siteWrap .footerLink li:nth-child(1) {
  display: flex;
  position: relative;
  margin-right: 80px;
}
.siteWrap .footerLink li:nth-child(1)::after {
  width: 1px;
  background-color: #333;
  height: 20px;
  right: -40px;
  top: calc(50% - 10px);
  content: "";
  position: absolute;
}
.siteWrap .footerLink li:nth-child(2) a:hover {
  color: #005BAC;
}
.siteWrap .footerLink li.is-ticket {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}
.siteWrap .footerLink li.is-ticket a {
  display: flex;
}
.siteWrap .footer_attention {
  text-align: center;
  margin-top: 93px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  padding: 0 36px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .footer_attention {
    margin-top: 60px;
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.siteWrap .footer small {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  margin-top: 20px;
  text-align: center;
  line-height: 60px;
  height: 60px;
}
@media (min-width: 1px) and (max-width: 767px) {
  .siteWrap .footer small {
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 40px;
    height: 40px;
  }
}
.siteWrap .footer_seal {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 40px 0;
  /* @include is-sp {
      margin-top: 16px;
  } */
}

#hachiko .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 42px 0 60px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .header {
    padding: 24px 24px 0;
  }
}
#hachiko .headerInner {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .headerInner {
    justify-content: flex-end;
  }
}
#hachiko .headerInner.is-open .headerInner_nav {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
#hachiko .headerInner.is-open .headerInner_nav .headerHamburger span {
  background: #000;
}
#hachiko .headerInner.is-open .headerInner_nav .headerHamburger span:first-of-type {
  transform: translateY(10px) rotate(45deg);
}
#hachiko .headerInner.is-open .headerInner_nav .headerHamburger span:nth-child(2) {
  opacity: 0;
}
#hachiko .headerInner.is-open .headerInner_nav .headerHamburger span:last-of-type {
  transform: translateY(-10px) rotate(-45deg);
}
#hachiko .headerInner h1 {
  padding: 46px 47px;
  background: #fff;
}
#hachiko .headerInner h1 img {
  width: 146px;
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .headerInner h1 {
    position: absolute;
    padding: 26px 0;
    width: 140px;
    top: 0;
    left: calc(50% - 70px);
    display: flex;
    justify-content: center;
  }
  #hachiko .headerInner h1 img {
    width: 84px;
  }
}
#hachiko .headerInner_left {
  display: flex;
  align-items: center;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav {
    z-index: -1;
    opacity: 0;
    position: fixed;
    pointer-events: none;
    transition: 0.4s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("/assets/images/hachiko/menu_tb.jpg") center/cover no-repeat;
    z-index: 10;
    padding: 120px 32px 0;
  }
  #hachiko .headerInner_nav::before {
    content: "";
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav .headerHamburger {
    top: 24px;
    z-index: 12;
    position: fixed;
    right: 24px;
  }
  #hachiko .headerInner_nav .headerHamburger span {
    transition: 0.4s;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .headerInner_nav {
    background-image: url("/assets/images/hachiko/menu_sp.jpg");
  }
}
#hachiko .headerInner_nav > ul {
  display: flex;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav > ul {
    display: block;
    margin: 0 0 32px;
  }
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav > ul > li {
    border-bottom: 1px solid #D6D6D6;
    text-align: center;
  }
}
#hachiko .headerInner_nav > ul > li + li {
  margin: 0 0 0 24px;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav > ul > li + li {
    margin: 0;
  }
}
#hachiko .headerInner_nav > ul > li.headerInner_navSns {
  border-bottom: none;
  margin-top: 32px;
}
#hachiko .headerInner_nav > ul > li > a {
  color: #FFF;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_nav > ul > li > a {
    padding: 20px 0;
    color: #000;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
#hachiko .headerInner_navSns {
  display: none;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_navSns {
    display: flex;
    justify-content: center;
  }
  #hachiko .headerInner_navSns ul {
    display: flex;
  }
  #hachiko .headerInner_navSns ul li {
    width: 36px;
  }
  #hachiko .headerInner_navSns ul li + li {
    margin-left: 20px;
  }
}
#hachiko .headerInner_sns {
  display: flex;
  padding: 9px 28px 7px;
  border-radius: 40px;
  margin: 0 0 0 40px;
  background: rgba(255, 255, 255, 0.1);
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerInner_sns {
    margin: 0 26px 0 0;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  #hachiko .headerInner_sns {
    display: none;
  }
}
#hachiko .headerInner_sns li a {
  display: block;
}
#hachiko .headerInner_sns li a svg {
  height: 100%;
  width: 100%;
}
#hachiko .headerInner_sns li + li {
  margin-left: 16px;
}
#hachiko .headerInner_sns li.is-twitter {
  width: 24px;
}
#hachiko .headerInner_sns li.is-instagram {
  width: 22px;
}
#hachiko .headerHamburger {
  display: none;
  position: static;
}
@media (min-width: 1px) and (max-width: 1000px) {
  #hachiko .headerHamburger {
    display: block;
    height: 24px;
    position: relative;
    width: 28px;
  }
  #hachiko .headerHamburger span {
    position: absolute;
    left: 0;
    background: #fff;
    border-radius: 50px;
    height: 4px;
    width: 100%;
  }
  #hachiko .headerHamburger span:first-of-type {
    top: 0;
  }
  #hachiko .headerHamburger span:nth-child(2) {
    top: calc(50% - 2px);
  }
  #hachiko .headerHamburger span:last-of-type {
    bottom: 0;
  }
}

.m-flatingLink_ticket {
  border: 1px solid #E6394B;
  background-color: #E6394B;
  width: 50px;
  height: 240px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 10px;
  writing-mode: vertical-rl;
  transition: all 0.2s ease;
  font-size: 14px;
  font-size: 0.875rem;
}
.m-flatingLink_ticket:hover {
  background-color: #fff;
  color: #E6394B;
}
.m-flatingLink_ticket:hover svg path {
  fill: #E6394B;
}
.m-flatingLink_ticket svg {
  width: 18px;
}
.m-flatingLink_ticket svg path {
  fill: #fff;
}
.m-flatingLinkSns {
  margin-top: 40px;
}
.m-flatingLinkSns li {
  text-align: center;
}
.m-flatingLinkSns li img {
  width: 24px;
  height: auto;
}
.m-flatingLinkSns li + li {
  margin-top: 40px;
}

.musk {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
}/*# sourceMappingURL=style.css.map */
