@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);@charset "UTF-8";

/* [はじめに]

[設計思想]
・Flocssを採用
|_Foundationでは、cssの初期化や、グローバルな変数宣言等を行う。
|_Layoutでは、ヘッダー・フッター等のコンテナブロックの定義を行う。
|_Componentでは、パーツ単位で使い回せるクラスの定義を行う。※最低限の機能を持つものとして定義され、それ自体が固有の幅や色などを持つことは避けるべき。
|_Projectでは、ページ単位での詳細なスタイル調整を行う。
|_Utilityでは、スタイル調整用の独立したクラスの定義を行う。

[命名規則]
・MindBEMdingを採用
・block__element--modifier のように、blockとelementはアンダースコア2つで区切り、elementとmodifierはハイフン2つで区切る。
・SCSSファイルは1blockにつき1ファイルで作成する。
・基本的に全てシングルクラスで記述する

*/

/* -------------------------------- ここからユーザー定義変数 ----------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  height: 100vh;
  width: 100%;
}

*:focus {
  outline: none;
}

html {
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #0f73a0;
}

ul {
  list-style-type: none;
}

textarea:focus,
select:focus {
  outline: none;
  border: 0;
  line-height: 1rem;
}

select::-ms-expand {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 16px;
  font-weight: normal;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

table {
  border-collapse: collapse;
}

input::-webkit-input-placeholder {
  color: #bbb;
}

input::-moz-placeholder {
  color: #bbb;
}

input::-ms-input-placeholder {
  color: #bbb;
}

input::placeholder {
  color: #bbb;
}

/* IE */

input:-ms-input-placeholder {
  color: #bbb;
}

/* Edge */

input::-ms-input-placeholder {
  color: #bbb;
}

/* ---------------- 動作説明 ----------------- */

/*
.hoge-enter-active { 開始アニメーションの時間、イージングなどを設定 }
.hoge-leave-active { 終了アニメーションの時間、イージングなどを設定 }
.hoge-enter    { 開始アニメーションの初期状態 }
.hoge-enter-to { 開始アニメーションの終了状態 }
.hoge-leave    { 終了アニメーションの初期状態 }
.hoge-leave-to { 終了アニメーションの終了状態 }
*/

/* ---------------- フェードイン・アウト動作(標準) ----------------- */

.v-enter-active {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.v-leave-active {
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

.v-enter {
  opacity: 0;
}

.v-enter-to {
  opacity: 1;
}

.v-leave {
  opacity: 1;
}

.v-leave-to {
  opacity: 0;
}

/* ------------------- アコーディオン動作 -------------------- */

.accordion-enter-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.accordion-leave-active {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.accordion-enter {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.accordion-enter-to {
  max-height: 200rem;
  opacity: 1;
}

.accordion-leave {
  max-height: 200rem;
  opacity: 1;
}

.accordion-leave-to {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* ---------------------- モーダル表示動作 ----------------------- */

.modal-enter-active {
  -webkit-transition: 0.15s ease-in-out !important;
  transition: 0.15s ease-in-out !important;
}

.modal-leave-active {
  -webkit-transition: 0.15s ease-in-out !important;
  transition: 0.15s ease-in-out !important;
}

.modal-enter {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.modal-enter-to {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.modal-leave {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

.modal-leave-to {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* ---------------------- スライド動作(チケット切り替え) ----------------------- */

.slide-enter-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.slide-leave-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.slide-enter {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.slide-enter-to {
  opacity: 1;
}

.slide-leave {
  opacity: 1;
}

.slide-leave-to {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

/* ---------------------- チケット選択動作(ポップアップ) ----------------------- */

.popup-enter-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.popup-leave-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.popup-enter {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.popup-enter-to {
  opacity: 1;
}

.popup-leave {
  opacity: 1;
}

.popup-leave-to {
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

/* ---------------------- チケット選択画面ボタンエリア出現動作 ----------------------- */

.cart-enter-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.cart-leave-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.cart-enter {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.cart-enter-to {
  opacity: 1;
}

.cart-leave {
  opacity: 1;
}

.cart-leave-to {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

/* ---------------------- アラート動作 ----------------------- */

.alert-enter-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.alert-leave-active {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.alert-enter {
  opacity: 0;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.alert-enter-to {
  opacity: 1;
}

.alert-leave {
  opacity: 1;
}

.alert-leave-to {
  opacity: 0;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* ------------------- アニメーションなし -------------------- */

.non-enter-active {
  -webkit-transition: -webkit-transform 0s !important;
  transition: -webkit-transform 0s !important;
  transition: transform 0s !important;
  transition: transform 0s, -webkit-transform 0s !important;
}

.non-leave-active {
  -webkit-transition: -webkit-transform 0s !important;
  transition: -webkit-transform 0s !important;
  transition: transform 0s !important;
  transition: transform 0s, -webkit-transform 0s !important;
}

.non-enter {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.non-enter-to {
  max-height: 200rem;
  opacity: 1;
}

.non-leave {
  max-height: 200rem;
  opacity: 1;
}

.non-leave-to {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* --------------------------------------------------------- */

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }

  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

[v-cloak] {
  display: none;
}

@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  30% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  40% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  30% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  40% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  60% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  70% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  10% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  50% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  60% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  70% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  10% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  50% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  60% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  70% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center 50%;
    transform-origin: top center 50%;
  }

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center 50%;
    transform-origin: top center 50%;
  }

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  50% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
    transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
    transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
    transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
    transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
    transform: skewX(9deg);
  }

  10% {
    -webkit-transform: skewX(-8deg);
    transform: skewX(-8deg);
  }

  20% {
    -webkit-transform: skewX(7deg);
    transform: skewX(7deg);
  }

  30% {
    -webkit-transform: skewX(-6deg);
    transform: skewX(-6deg);
  }

  40% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  50% {
    -webkit-transform: skewX(-4deg);
    transform: skewX(-4deg);
  }

  60% {
    -webkit-transform: skewX(3deg);
    transform: skewX(3deg);
  }

  70% {
    -webkit-transform: skewX(-2deg);
    transform: skewX(-2deg);
  }

  80% {
    -webkit-transform: skewX(1deg);
    transform: skewX(1deg);
  }

  90% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }

  100% {
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
  }
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  25% {
    -webkit-transform: scale(0.95, 0.95);
    transform: scale(0.95, 0.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
  }
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }

  70% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3, 0.3);
    transform: scale(0.3, 0.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
  }

  70% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
}

@keyframes fadeOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
}

@keyframes fadeOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
    opacity: 0;
  }
}

@keyframes fadeOutUpBig {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUpBig {
  0% {
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUpBig {
  0% {
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) scale(1);
    transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center 50%;
    transform-origin: center center 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom 50%;
    transform-origin: left bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom 50%;
    transform-origin: right bottom 50%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform-origin: top left 50%;
    transform-origin: top left 50%;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@-webkit-keyframes rollIn {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@-webkit-keyframes rollOut {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
}

@keyframes rollOut {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

*:focus {
  outline: none;
}

html {
  height: 100%;
  line-height: 1.5;
}

body {
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
  background-color: #fff;
  word-wrap: break-word;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 14px;
  }
}

body.noscroll {
  pointer-events: none;
}

#body-wrapper.isFixed {
  height: 100vh;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

a,
button {
  text-decoration: none;
  color: #231815;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: none;
  outline: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

input[type="text"]:focus {
  outline: 0;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

.inner {
  max-width: 1240px;
  width: 92%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .only_pc {
    display: none;
  }
}

@media screen and (max-width: 896px) {
  .only_pctb {
    display: none;
  }
}

.only_tbsp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .only_tbsp {
    display: inline;
  }
}

@media screen and (max-width: 1024px) {
  section.only_tbsp,
  div.only_tbsp {
    display: block;
  }
}

.only_sp {
  display: none;
}

@media screen and (max-width: 896px) {
  .only_sp {
    display: inline;
  }
}

@media screen and (max-width: 896px) {
  section.only_sp,
  div.only_sp {
    display: block;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

@media screen and (max-width: 896px) {
  .center_sp {
    text-align: center;
  }

  .right_sp {
    text-align: right;
  }

  .left_sp {
    text-align: left;
  }
}

.caution {
  font-size: 12px;
}

.more_link a {
  padding: 10px 60px 10px 10px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.more_link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url("/images/link_arrow.svg") no-repeat right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}

.more_link a:hover::after {
  -webkit-animation: more_link 0.4s forwards;
          animation: more_link 0.4s forwards;
}

@-webkit-keyframes more_link {
  0% {
    right: 100%;
  }

  100% {
    right: 0;
  }
}

@keyframes more_link {
  0% {
    right: 100%;
  }

  100% {
    right: 0;
  }
}

.back_link a {
  padding: 10px 10px 10px 60px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.back_link a::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url("/images/link_arrow_left.svg") no-repeat left bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}

.back_link a:hover::after {
  -webkit-animation: back_link 0.4s forwards;
          animation: back_link 0.4s forwards;
}

@-webkit-keyframes back_link {
  0% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

@keyframes back_link {
  0% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

/*-----------------------------改修ヘッダー---------------------------------*/

header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.float_number_nav.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

.float_number_nav.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#sp_nav_btn {
  display: none;
}

@media screen and (max-width: 1240px) {
  #sp_nav_btn {
    display: block;
    z-index: 1000;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    position: relative;
  }

  #sp_nav_btn span,
  #sp_nav_btn::before,
  #sp_nav_btn::after {
    display: block;
    content: "";
    background-color: #231815;
    height: 2px;
    width: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  #sp_nav_btn span {
    opacity: 1;
    -webkit-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;
  }

  #sp_nav_btn::before {
    margin-top: -8px;
  }

  #sp_nav_btn::after {
    margin-top: 8px;
  }

  #sp_nav_btn.active span {
    opacity: 0;
  }

  #sp_nav_btn.active::before {
    -webkit-animation: sp_nav_btn01 1s forwards;
    animation: sp_nav_btn01 1s forwards;
  }

@-webkit-keyframes sp_nav_btn01 {
    0% {
      margin-top: -8px;
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
    }
}

@keyframes sp_nav_btn01 {
    0% {
      margin-top: -8px;
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
    }
}

  #sp_nav_btn.active::after {
    -webkit-animation: sp_nav_btn02 1s forwards;
    animation: sp_nav_btn02 1s forwards;
  }

@-webkit-keyframes sp_nav_btn02 {
    0% {
      margin-top: 8px;
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
    }
}

@keyframes sp_nav_btn02 {
    0% {
      margin-top: 8px;
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
    }
}

  #sp_nav_btn.close::before {
    -webkit-animation: sp_nav_btn01_close 1s forwards;
    animation: sp_nav_btn01_close 1s forwards;
  }

@-webkit-keyframes sp_nav_btn01_close {
    0% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: -8px;
    }
}

@keyframes sp_nav_btn01_close {
    0% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(45deg);
      transform: translate(-50%, -50%) rotate(45deg);
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: -8px;
    }
}

  #sp_nav_btn.close::after {
    -webkit-animation: sp_nav_btn02_close 1s forwards;
    animation: sp_nav_btn02_close 1s forwards;
  }

@-webkit-keyframes sp_nav_btn02_close {
    0% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 8px;
    }
}

@keyframes sp_nav_btn02_close {
    0% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    50% {
      margin-top: 0px;
      -webkit-transform: translate(-50%, -50%) rotate(0deg);
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      margin-top: 8px;
    }
}
}

.emergencyNews {
  width: 100%;
  background-color: #FFCC00;
  padding: 8px;
}

.emergencyNews p {
  text-align: center;
  font-weight: bold;
}

header {
  z-index: 1000;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

header .header_nav {
  background-color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

header .header_nav .emergency_news {
  background-color: #cd1d33;
  color: #fff;
  font-weight: bold;
  width: 100%;
  padding: 14px;
  line-height: 1rem;
}

header .header_nav .emergency_news p:not(:last-child),
header .header_nav .emergency_news a:not(:last-child) {
  margin-bottom: .5rem;
}

header .header_nav .emergency_news a {
  text-decoration: underline;
  color: #fff;
}

header .header_nav h1 {
  width: 180px;
  height: 100px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 896px) {
  header .header_nav h1 {
    width: 100px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  header .header_nav h1 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 55px;
  }
}

header .header_nav h1 a {
  -webkit-transition-duration: .4s;
          transition-duration: .4s;
}

header .header_nav h1 a:hover {
  opacity: .6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

header .header_nav h1 a img {
  width: 100%;
  max-width: 120px;
}

header .header_nav .pc_nav {
  width: calc(100% - 180px);
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 896px) {
  header .header_nav .pc_nav {
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 480px) {
  header .header_nav .pc_nav {
    width: 100%;
  }
}

header .header_nav .pc_nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

header .header_nav .pc_nav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_nav .pc_nav .topNav {
  height: 45%;
  font-size: 12px;
  border-bottom: 1px solid #cccccc;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .header_nav .pc_nav .bottomNavBlock {
  width: 100%;
  height: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1240px) {
  header .header_nav .pc_nav .bottomNavBlock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

header .header_nav .pc_nav .bottomNavBlock .bottomNav {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1240px) {
  header .header_nav .pc_nav .bottomNavBlock .bottomNav {
    width: inherit;
  }
}

.nav-business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  .nav-business {
    margin-left: 14px;
  }
}

.nav-business a {
  margin-right: 4px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-business a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav-business a:hover {
  opacity: .6;
}

.nav-business a:hover::after {
  width: 100%;
}

.nav-business a img {
  width: 100%;
  max-width: 18px;
}

.nav-business a span {
  margin-left: 4px;
}

.btn-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.nav-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-sns ul li {
  margin-right: 14px;
}

.nav-sns ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-sns ul li a:hover {
  opacity: .6;
}

.nav-sns ul li a img {
  display: block;
  height: 20px;
}

.nav-sns ul li a .yt {
  height: 16px;
}

.nav-sns ul li a p {
  margin-left: 4px;
  display: inline;
}

@media screen and (max-width: 480px) {
  .nav-sns ul li a p {
    display: none;
  }
}

.nav-sns_sp {
  padding: 10px 180px;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
}

@media screen and (max-width: 896px) {
  .nav-sns_sp {
    padding: 10px 20px;
  }
}

.nav-sns_sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-sns_sp ul li {
  margin-right: 28px;
}

@media screen and (max-width: 896px) {
  .nav-sns_sp ul li {
    margin-right: 20px;
  }
}

.nav-sns_sp ul li p {
  font-weight: bold;
  font-size: 14px;
}

.nav-sns_sp ul li a {
  display: block;
}

.nav-sns_sp ul li a img {
  display: block;
  height: 20px;
}

.nav-sns_sp ul li a .yt {
  height: 16px;
}

.nav-ticket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -3px;
}

@media screen and (max-width: 896px) {
  .nav-ticket {
    display: none;
  }
}

.nav-ticket a {
  font-weight: bold;
  border: 3px solid #231815;
  background-color: #FFCC00;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 4px;
  border-radius: 50px;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-ticket a:hover {
  color: #FFCC00;
  background-color: #231815;
}

.nav-ticket .black-btn {
  background-color: #231815;
  color: #fff;
  border-radius: 0;
  font-weight: 100;
  margin-right: 6px;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-ticket .black-btn:hover {
  color: #231815;
  background-color: #fff;
}

.nav-main {
  font-size: 14px;
  min-width: 50%;
  word-break: keep-all;
}

@media screen and (max-width: 1240px) {
  .nav-main {
    font-size: 12px;
  }
}

@media screen and (max-width: 630px) {
  .nav-main {
    min-width: auto;
  }
}

.nav-main li {
  max-width: 200px;
  margin-right: 20px;
  font-weight: bold;
}

@media screen and (max-width: 630px) {
  .nav-main li {
    display: none;
  }
}

.nav-main li a {
  position: relative;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-main li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav-main li a:hover {
  opacity: .6;
}

.nav-main li a:hover::after {
  width: 100%;
}

.nav-sub {
  font-size: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  word-break: keep-all;
}

@media screen and (max-width: 480px) {
  .nav-sub {
    padding-left: 100px;
  }
}

.nav-sub li {
  min-width: 70px;
  max-width: 100px;
  border-left: 1px solid #cccccc;
  padding: 0 7px;
}

@media screen and (max-width: 896px) {
  .nav-sub li {
    max-width: none;
    min-width: auto;
  }
}

.nav-sub li a {
  position: relative;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
}

.nav-sub li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.nav-sub li a:hover {
  opacity: .6;
}

.nav-sub li a:hover::after {
  width: 100%;
}

.nav-sub li#language select {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: url("/images/ico_arrow_s_bottom.svg") no-repeat right 0px center;
  margin: 0 20px 0 0;
  background-size: 10px auto;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1240px) {
  .nav-sub li#language select {
    font-size: 10px;
  }
}

.nav-sub li#language select:hover {
  opacity: .6;
}

@media screen and (max-width: 1240px) {
  .pc_s_none {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .tb_none {
    display: none !important;
  }
}

@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .sp_s_none {
    display: none !important;
  }
}

.float_link_ver2 {
  display: none;
  width: 100%;
}

@media screen and (max-width: 896px) {
  .float_link_ver2 {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    z-index: 888;
  }
}

.float_link_ver2 .ticket a {
  display: block;
  width: 100%;
  font-weight: bold;
  text-align: center;
  background-color: #FFCC00;
  padding: 14px;
  font-size: 18px;
  border-radius: 50px;
  border: 3px solid #231815;
}

.float_link_ver2 .ticket a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next.svg") no-repeat center center;
  background-size: contain;
  margin-left: .5rem;
}

@media screen and (max-width: 896px) {
  .en .nav-main li,
  .cn .nav-main li,
  .tw .nav-main li,
  .kr .nav-main li {
    display: none !important;
  }
}

.en .wdith50,
.cn .wdith50,
.tw .wdith50,
.kr .wdith50 {
  width: 100% !important;
}

.en .wdith30,
.cn .wdith30,
.tw .wdith30,
.kr .wdith30 {
  width: 100% !important;
}

#sp_nav {
  display: none;
  overflow: auto;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  padding-bottom: 200px;
}

#sp_nav #header_nav_sp {
  width: 100%;
}

#sp_nav #header_nav_sp .nav_sp-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 180px;
}

@media screen and (max-width: 896px) {
  #sp_nav #header_nav_sp .nav_sp-ul {
    padding: 0 20px;
  }
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 896px) {
  #sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li:not(:last-child) {
    margin-bottom: 12px;
  }
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li p {
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li a {
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li div {
  margin: 0 auto 0.5rem;
  padding-top: 0.5rem;
  border-bottom: dotted 2px #231815;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li .arrow::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next.svg") no-repeat center center;
  background-size: contain;
  margin-left: .5rem;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li .ticket-btn {
  text-align: center;
  background-color: #FFCC00;
  border: 3px solid #231815;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 16px;
  width: 100%;
  max-width: 300px;
  border-radius: 50px;
  font-size: 16px;
}

@media screen and (max-width: 896px) {
  #sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li .ticket-btn {
    font-size: 18px;
  }
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li ul li {
  margin-left: 1rem;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li ul li a {
  font-size: 14px;
  font-weight: 100;
  text-indent: -1rem;
  margin-left: 1rem;
}

#sp_nav #header_nav_sp .nav_sp-ul .nav_sp-li ul li a::before {
  content: "-";
  margin-right: .5rem;
}

#sp_nav #header_nav_sp .nav_sp-ul .wdith100 {
  width: 100%;
}

#sp_nav #header_nav_sp .nav_sp-ul .wdith50 {
  width: 50%;
}

@media screen and (max-width: 896px) {
  #sp_nav #header_nav_sp .nav_sp-ul .wdith50 {
    width: 100%;
  }
}

#sp_nav #header_nav_sp .nav_sp-ul .wdith30 {
  width: 30%;
}

@media screen and (max-width: 896px) {
  #sp_nav #header_nav_sp .nav_sp-ul .wdith30 {
    width: 100%;
  }
}

#sp_nav #header_nav_sp ul li .pickup {
  margin-top: 20px;
  background-color: #231815;
  color: #fff;
  padding: 14px 30px;
  display: inline-block;
  text-align: center;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  border: 3px solid #231815;
}

#sp_nav #header_nav_sp ul li .pickup::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next_wh.svg") no-repeat center center;
  background-size: contain;
  margin-left: .5rem;
}

#sp_nav #header_subnav_sp {
  border-top: 1px #766965 solid;
  padding: 10px 0;
  width: 100%;
}

#sp_nav #header_subnav_sp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

#sp_nav #header_subnav_sp ul li a {
  padding: 6px 16px;
  display: block;
  font-size: 12px;
}

#sp_nav #header_subnav_sp #language_sp select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  font-size: 12px;
  padding: 6px 16px 6px 0px;
  background: url("/images/ico_arrow_s_bottom.svg") no-repeat right center;
  background-size: 10px auto;
}

/*----------------------------ここまで--------------------------------------*/

.modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 900px;
  max-width: 92%;
  max-height: 86%;
  overflow-y: auto;
}

main {
  min-height: 100vh;
  display: block;
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  main {
    margin-top: 48px;
    margin-bottom: 40px;
  }
}

#pagetop {
  padding: 6px 60px 6px 10px;
  font-weight: bold;
  position: relative;
  display: block;
  position: fixed;
  right: 10px;
  bottom: 0px;
  font-size: 14px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  cursor: pointer;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
  z-index: 1000;
}

@media screen and (max-width: 1024px) {
  #pagetop {
    display: none;
  }
}

#pagetop.on {
  bottom: 160px;
}

#pagetop::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url("/images/link_arrow.svg") no-repeat right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1240px) {
  footer {
    display: block;
  }
}

footer #footer_linkarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #f7f3de;
  font-size: 14px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 1240px) {
  footer #footer_linkarea {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

footer #footer_linkarea .toggle_btn {
  display: none;
}

@media screen and (max-width: 1024px) {
  footer #footer_linkarea .toggle_btn {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    position: relative;
    background-color: #231815;
    padding: 16px 40px 16px 0;
    color: #fff;
    border-bottom: 1px #766965 solid;
  }

  footer #footer_linkarea .toggle_btn::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("/images/ico_arrow_s_top_wh.svg") no-repeat center center;
    position: absolute;
    top: 50%;
    right: 4vw;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  footer #footer_linkarea .toggle_btn.open::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }
}

footer #footer_linkarea .toggle_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 100px 6%;
}

@media screen and (max-width: 1024px) {
  footer #footer_linkarea .toggle_detail {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    display: none;
    padding: 40px 4vw 20px;
  }
}

footer #footer_linkarea .footer_link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 1024px) {
  footer #footer_linkarea .footer_link {
    width: 100%;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}

footer #footer_linkarea .footer_link > li {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  footer #footer_linkarea .footer_link > li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 896px) {
  footer #footer_linkarea .footer_link > li {
    width: 100%;
  }
}

footer #footer_linkarea .footer_link > li > a {
  display: inline-block;
  font-weight: bold;
  padding: 4px 0;
  position: relative;
}

footer #footer_linkarea .footer_link > li > a::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 10px;
  margin-right: 8px;
  background-color: #231815;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

footer #footer_linkarea .footer_link > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

footer #footer_linkarea .footer_link > li > a:hover::after {
  width: 100%;
}

footer #footer_linkarea .footer_link > li .footer_link_s {
  margin-left: 12px;
  margin-top: 4px;
}

footer #footer_linkarea .footer_link > li .footer_link_s > li a {
  display: inline-block;
  padding: 4px 0;
  position: relative;
}

footer #footer_linkarea .footer_link > li .footer_link_s > li a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

footer #footer_linkarea .footer_link > li .footer_link_s > li a:hover::after {
  width: 100%;
}

footer #footer_addressarea {
  background-color: #231815;
  color: #fff;
  text-align: center;
  position: relative;
  width: 300px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 30px 0;
  }
}

footer #footer_addressarea #footer_addressarea_in {
  position: relative;
  top: 46%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_addressarea_in {
    top: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer #footer_addressarea #footer_addressarea_in #footer_logo {
  margin-bottom: 40px;
}

footer #footer_addressarea #footer_addressarea_in #footer_logo img {
  width: 170px;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_addressarea_in #footer_logo {
    text-align: right;
    margin-right: 20px;
    margin-bottom: 20px;
  }

  footer #footer_addressarea #footer_addressarea_in #footer_logo img {
    width: 140px;
  }
}

footer #footer_addressarea #footer_addressarea_in #footer_address {
  font-size: 14px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_addressarea_in #footer_address {
    text-align: left;
    font-size: 12px;
  }
}

footer #footer_addressarea #footer_addressarea_in #footer_address_link {
  margin-bottom: 40px;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_addressarea_in #footer_address_link {
    margin-bottom: 20px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 896px) {
  footer #footer_addressarea #footer_addressarea_in #footer_address_link {
    width: 100%;
    margin-left: 0px;
  }
}

footer #footer_addressarea #footer_addressarea_in #footer_address_link a {
  display: block;
  padding: 6px;
  border: 1px #fff solid;
  color: #fff;
  width: 180px;
  margin: 0 auto;
  font-size: 14px;
}

footer #footer_addressarea #footer_addressarea_in #footer_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_addressarea_in #footer_sns {
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 896px) {
  footer #footer_addressarea #footer_addressarea_in #footer_sns {
    width: 100%;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}

footer #footer_addressarea #footer_addressarea_in #footer_sns li {
  margin: 0 14px;
}

footer #footer_addressarea #footer_addressarea_in #footer_sns li a:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

footer #footer_addressarea #footer_addressarea_in #footer_sns li a img {
  width: 30px;
}

footer #footer_addressarea #footer_copy {
  font-size: 10px;
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
}

@media screen and (max-width: 1240px) {
  footer #footer_addressarea #footer_copy {
    position: relative;
    bottom: 0;
  }
}

#mainvisual {
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

@media screen and (max-width: 1024px) {
  #mainvisual {
    opacity: 1;
  }
}

@media screen and (max-width: 896px) {
  #mainvisual {
    margin-bottom: 0px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  #mainvisual {
    padding-bottom: 0;
  }
}

#mainvisual.on {
  opacity: 1;
}

#mainvisual .mainvisual_slide li {
  padding: 0 10px;
}

@media screen and (max-width: 480px) {
  #mainvisual .mainvisual_slide li {
    padding: 0;
  }
}

#mainvisual .mainvisual_slide li a {
  border: 6px #231815 solid;
  display: block;
  position: relative;
}

#mainvisual .mainvisual_slide li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0px #231815 solid;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#mainvisual .mainvisual_slide li a:hover::after {
  border: 8px #231815 solid;
}

@media screen and (max-width: 480px) {
  #mainvisual .mainvisual_slide li a {
    border: none;
  }
}

#mainvisual .mainvisual_slide li a img {
  width: 100%;
}

#mainvisual .mainvisual_slide .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 1;
  text-indent: -1000px;
  overflow: hidden;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  background-position: center center;
  background-color: #231815;
  cursor: pointer;
}

#mainvisual .mainvisual_slide .slick-arrow:hover {
  width: 80px;
  height: 80px;
}

#mainvisual .mainvisual_slide .slick-arrow.slick-prev {
  background-image: url("/images/ico_arrow_prev_wh.svg");
  left: 120px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#mainvisual .mainvisual_slide .slick-arrow.slick-next {
  background-image: url("/images/ico_arrow_next_wh.svg");
  right: 120px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

#mainvisual .mainvisual_slide:hover .slick-arrow {
  opacity: 1;
}

#float_link {
  position: fixed;
  right: 16px;
  top: 80px;
  z-index: 800;
}

@media screen and (max-width: 1024px) {
  #float_link {
    position: relative;
    top: 0;
    right: 0;
    padding: 16px 3vw;
    background-color: #e9e9e9;
  }
}

@media screen and (max-width: 1024px) {
  #float_link .float_link_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#float_link .float_link_list li {
  margin-bottom: 16px;
}

#float_link .float_link_list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  #float_link .float_link_list li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0px;
  }

  #float_link .float_link_list li:nth-child(2n-1) {
    margin-right: 3vw;
  }
}

#float_link .float_link_list li a {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  display: block;
  padding: 30px 10px;
  border: 3px #231815 solid;
  font-weight: bold;
  font-size: 14px;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  #float_link .float_link_list li a {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 8px 0px;
    font-size: 12px;
  }
}

#float_link .float_link_list li a:hover {
  background-color: #231815;
  color: #fff;
}

#important_news {
  background-color: #231815;
  color: #fff;
  padding: 18px 0;
}

@media screen and (max-width: 896px) {
  #important_news {
    padding: 10px 0;
  }
}

#important_news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 896px) {
  #important_news .inner {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

#important_news h2 {
  width: 160px;
}

@media screen and (max-width: 896px) {
  #important_news h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

#important_news .important_news_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}

@media screen and (max-width: 896px) {
  #important_news .important_news_list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
    margin-right: 0px;
    margin-top: 6px;
  }
}

#important_news .important_news_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}

#important_news .important_news_list li:last-child {
  margin-bottom: 0;
}

#important_news .important_news_list li .important_news_date {
  font-size: 10px;
  margin-right: 20px;
}

@media screen and (max-width: 896px) {
  #important_news .important_news_list li .important_news_date {
    margin-right: 10px;
  }
}

#important_news .important_news_list li .important_news_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#important_news .important_news_list li .important_news_text a {
  color: #fff;
  display: inline-block;
  position: relative;
}

#important_news .important_news_list li .important_news_text a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#important_news .important_news_list li .important_news_text a:hover::after {
  width: 100%;
}

@media screen and (max-width: 896px) {
  #important_news .important_news_link {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#important_news .important_news_link a {
  display: block;
  padding-left: 20px;
  border: 1px #fff solid;
  padding: 6px 20px;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #important_news .important_news_link a {
    font-size: 12px;
    padding: 6px 12px;
  }
}

#important_news .important_news_link a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next_wh.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
  #important_news .important_news_link a::before {
    margin-right: 6px;
  }
}

#important_news .important_news_link a:hover {
  background-color: #fff;
  color: #231815;
}

#important_news .important_news_link a:hover::before {
  background: url("/images/ico_arrow_s_next.svg") no-repeat center center;
  background-size: contain;
}

#pickup_event {
  padding: 60px 0 50px 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background: url("/images/bg_color_r.svg") no-repeat 30vw top;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  #pickup_event {
    padding: 30px 0 30px 4vw;
  }
}

#pickup_event h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  font-size: 28px;
  font-weight: bold;
  margin-right: 80px;
  width: 1.5em;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #pickup_event h2 {
    font-size: 18px;
    margin-right: 3vw;
  }
}

#pickup_event .event_list {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 1024px) {
  #pickup_event .event_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 40px;
  }

  #pickup_event .event_list > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 200px;
    margin-bottom: 0;
    margin-right: 2%;
  }

  #pickup_event .event_list > li:last-child {
    width: calc(140px + 4vw);
    padding-right: 4vw;
  }
}

@media screen and (max-width: 896px) {
  #pickup_event .event_list > li {
    width: 140px;
  }
}

#pickup_event .event_list .slick-list {
  width: 110%;
  padding-bottom: 80px;
}

@media screen and (max-width: 896px) {
  #pickup_event .event_list .slick-list {
    padding-bottom: 50px;
  }
}

#pickup_event .event_list .slick-list .slick-track > li {
  margin-right: 40px;
}

@media screen and (max-width: 896px) {
  #pickup_event .event_list .slick-list .slick-track > li {
    margin-right: 12px;
  }
}

#pickup_event .event_list .slick-arrow {
  background-color: #231815;
  width: 40px;
  height: 40px;
  text-indent: -1000px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  position: absolute;
  bottom: 10px;
  z-index: 1;
}

#pickup_event .event_list .slick-arrow:hover {
  background-color: #766965;
}

#pickup_event .event_list .slick-arrow.slick-prev {
  background-image: url("/images/ico_arrow_prev_wh.svg");
  left: 0;
}

#pickup_event .event_list .slick-arrow.slick-next {
  background-image: url("/images/ico_arrow_next_wh.svg");
  left: 50px;
}

#pickup_event .more_link {
  position: absolute;
  right: 100px;
  bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #pickup_event .more_link {
    right: 4vw;
    bottom: 30px;
  }
}

#pickup_floorguide {
  padding: 60px 0;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide {
    padding: 30px 0;
  }
}

#pickup_floorguide::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #f7f3de;
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide::before {
    height: 400px;
  }
}

#pickup_floorguide h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0 4vw 30px;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

#pickup_floorguide .pickup_floor_list {
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .pickup_floor_list {
    padding-bottom: 60px;
  }
}

#pickup_floorguide .pickup_floor_list .slick-arrow {
  background-color: #231815;
  width: 40px;
  height: 40px;
  text-indent: -1000px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

#pickup_floorguide .pickup_floor_list .slick-arrow:hover {
  background-color: #766965;
}

#pickup_floorguide .pickup_floor_list .slick-arrow.slick-prev {
  background-image: url("/images/ico_arrow_prev_wh.svg");
  left: 4vw;
}

#pickup_floorguide .pickup_floor_list .slick-arrow.slick-next {
  background-image: url("/images/ico_arrow_next_wh.svg");
  left: calc(4vw + 50px);
}

#pickup_floorguide .pickup_floor_list li {
  margin: 0 20px;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_img {
  width: 80%;
  border: 6px #231815 solid;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_img img {
  width: 100%;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea {
  width: 50%;
  background-color: #fff;
  margin: -300px 0 0 auto;
  padding: 40px 40px 60px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1240px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea {
    width: 60%;
    margin: -250px 0 0 auto;
  }
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea {
    margin: -150px 0 0 auto;
  }
}

@media screen and (max-width: 896px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea {
    width: 90%;
    margin: -60px 0 0 auto;
    padding: 20px 20px 30px;
  }
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_textarea_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea h3 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  color: #231815;
  font-weight: bold;
  font-size: 20px;
  margin-right: 20px;
  min-width: 1.5em;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea h3 {
    font-size: 16px;
    margin-right: 14px;
  }
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail p {
  margin-bottom: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail p {
    font-size: 14px;
    margin-top: 0px;
  }
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail .more_s a {
  display: inline-block;
  padding-left: 20px;
  font-weight: bold;
  border: 3px #231815 solid;
  padding: 6px 20px;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail .more_s a {
    font-size: 12px;
  }
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail .more_s a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next.svg") no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail .more_s a:hover {
  background-color: #231815;
  color: #fff;
}

#pickup_floorguide .pickup_floor_list li .pickup_floor_textarea .pickup_floor_text_detail .more_s a:hover::before {
  background: url("/images/ico_arrow_s_next_wh.svg") no-repeat center center;
  background-size: contain;
}

#pickup_floorguide .more_link {
  position: absolute;
  right: 100px;
  bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #pickup_floorguide .more_link {
    right: 4vw;
    bottom: 30px;
  }
}

#pickup_guide {
  padding: 30px 0;
  background-color: #f7f3de;
}

@media screen and (max-width: 896px) {
  #pickup_guide {
    padding: 10px 0;
  }
}

#pickup_guide .pickup_guide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 896px) {
  #pickup_guide .pickup_guide_list {
    display: block;
  }
}

#pickup_guide .pickup_guide_list li {
  width: 380px;
  border-top: 3px #231815 solid;
  border-bottom: 3px #231815 solid;
  border-left: 3px #231815 solid;
}

@media screen and (max-width: 896px) {
  #pickup_guide .pickup_guide_list li {
    width: 92%;
    margin: 0 auto;
    border-bottom: none;
    border-right: 3px #231815 solid;
  }

  #pickup_guide .pickup_guide_list li:last-child {
    border-bottom: 3px #231815 solid;
  }
}

#pickup_guide .pickup_guide_list li:last-child {
  border-right: 3px #231815 solid;
}

#pickup_guide .pickup_guide_list li a {
  display: block;
  padding: 30px 0;
  text-align: center;
  font-weight: bold;
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  #pickup_guide .pickup_guide_list li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 896px) {
  #pickup_guide .pickup_guide_list li a {
    padding: 15px;
    text-align: left;
  }
}

#pickup_guide .pickup_guide_list li a:hover {
  background-image: url("/images/bg_line.png");
}

#pickup_guide .pickup_guide_list li a:hover img {
  -webkit-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}

#pickup_guide .pickup_guide_list li a img {
  width: 30px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 896px) {
  #pickup_guide .pickup_guide_list li a img {
    width: 24px;
  }
}

#pickup_museum {
  padding: 60px 0;
  background-color: #f7f3de;
}

@media screen and (max-width: 1024px) {
  #pickup_museum {
    padding: 30px 0;
  }
}

#pickup_museum .pickup_museum_img_slide {
  width: 60vw;
  min-width: 900px;
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1240px) {
  #pickup_museum .pickup_museum_img_slide {
    min-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_img_slide {
    min-width: inherit;
    width: inherit;
    margin-right: 4vw;
  }
}

#pickup_museum .pickup_museum_img_slide li img {
  width: 100%;
}

#pickup_museum .pickup_museum_textarea {
  background-color: #fff;
  width: 60vw;
  min-width: 900px;
  margin: -400px 0 0 auto;
  position: relative;
  z-index: 1;
  padding: 80px 180px 80px 80px;
}

@media screen and (max-width: 1240px) {
  #pickup_museum .pickup_museum_textarea {
    margin-top: -200px;
    padding: 80px 100px 80px 80px;
    min-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea {
    min-width: inherit;
    width: inherit;
    margin-top: -40px;
    margin-left: 4vw;
    padding: 30px;
  }
}

#pickup_museum .pickup_museum_textarea h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

#pickup_museum .pickup_museum_textarea p {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea p {
    margin-bottom: 20px;
  }
}

#pickup_museum .pickup_museum_textarea .more_s {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .more_s {
    margin-bottom: 20px;
  }
}

#pickup_museum .pickup_museum_textarea .more_s a {
  display: inline-block;
  padding-left: 20px;
  font-weight: bold;
  border: 3px #231815 solid;
  padding: 6px 20px;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .more_s a {
    font-size: 12px;
  }
}

#pickup_museum .pickup_museum_textarea .more_s a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url("/images/ico_arrow_s_next.svg") no-repeat center center;
  margin-right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#pickup_museum .pickup_museum_textarea .more_s a:hover {
  background-color: #231815;
  color: #fff;
}

#pickup_museum .pickup_museum_textarea .more_s a:hover::before {
  background: url("/images/ico_arrow_s_next_wh.svg") no-repeat center center;
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .pickup_museum_btn_list {
    display: block;
  }
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li {
    margin-bottom: 20px;
  }
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li:nth-child(2n-1) {
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li:nth-child(2n-1) {
    margin-right: 0;
  }
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li a {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px #231815 solid;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li a:hover {
  background-image: url("/images/bg_line.png");
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li a img {
  width: 120px;
}

@media screen and (max-width: 1024px) {
  #pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li a img {
    width: 80px;
  }
}

#pickup_museum .pickup_museum_textarea .pickup_museum_btn_list li a span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

#pickup_education {
  padding: 60px 0;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #pickup_education {
    padding: 30px 0;
  }
}

#pickup_education::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background-color: #f7f3de;
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  #pickup_education::before {
    height: 200px;
  }
}

#pickup_education h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  #pickup_education h2 {
    font-size: 18px;
    margin-bottom: 0px;
  }
}

#pickup_education .education_list {
  padding-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  #pickup_education .education_list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    padding-bottom: 20px;
    margin-bottom: 40px;
    padding-left: 4vw;
  }

  #pickup_education .education_list > li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 180px;
    margin-left: 0 !important;
    margin-right: 50px !important;
    margin-bottom: 0px !important;
  }

  #pickup_education .education_list > li:last-child {
    width: calc(180px + 50px);
    padding-right: 50px;
  }

  #pickup_education .education_list > li:last-child .education_list_category {
    right: 10px;
  }
}

#pickup_education .education_list .slick-arrow {
  background-color: #231815;
  width: 40px;
  height: 40px;
  text-indent: -1000px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  position: absolute;
  bottom: 0px;
  z-index: 1;
}

#pickup_education .education_list .slick-arrow:hover {
  background-color: #766965;
}

#pickup_education .education_list .slick-arrow.slick-prev {
  background-image: url("/images/ico_arrow_prev_wh.svg");
  left: 4vw;
}

#pickup_education .education_list .slick-arrow.slick-next {
  background-image: url("/images/ico_arrow_next_wh.svg");
  left: calc(4vw + 50px);
}

#pickup_education .education_list li {
  margin: 0 30px;
  position: relative;
}

#pickup_education .more_link {
  position: absolute;
  right: 100px;
  bottom: 60px;
}

@media screen and (max-width: 1024px) {
  #pickup_education .more_link {
    right: 4vw;
    bottom: 30px;
  }
}

#pickup_news {
  padding: 60px 0 0;
}

@media screen and (max-width: 1024px) {
  #pickup_news {
    padding: 30px 0 0;
  }
}

#pickup_news .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 65px;
}

@media screen and (max-width: 1024px) {
  #pickup_news .inner {
    padding-bottom: 50px;
  }
}

#pickup_news .inner h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  white-space: nowrap;
  font-size: 28px;
  font-weight: bold;
  margin-right: 80px;
  width: 1.5em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1024px) {
  #pickup_news .inner h2 {
    font-size: 18px;
    margin-right: 3vw;
  }
}

#pickup_news .inner .pickup_news_listarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 40px;
  margin-right: 60px;
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  #pickup_news .inner .pickup_news_listarea {
    margin-top: -20px;
    margin-right: 0;
  }
}

#pickup_news .inner .more_link {
  position: absolute;
  right: 60px;
  bottom: 0;
}

@media screen and (max-width: 1024px) {
  #pickup_news .inner .more_link {
    right: 0;
  }
}

#bnr_link {
  padding: 30px 0;
}

@media screen and (max-width: 1024px) {
  #bnr_link {
    padding: 30px 0;
  }
}

#bnr_link .bnr_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#bnr_link .bnr_link_list li {
  margin: 0 30px;
}

@media screen and (max-width: 1024px) {
  #bnr_link .bnr_link_list li {
    margin: 0 10px;
  }
}

#bnr_link .bnr_link_list li:first-of-type a {
  display: block;
}

#bnr_link .bnr_link_list li:first-of-type a:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

#bnr_link .bnr_link_list li:first-of-type a img {
  width: 240px;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #bnr_link .bnr_link_list li:first-of-type a img {
    height: 40px;
    width: auto;
  }
}

#bnr_link .bnr_link_list li a {
  display: block;
}

#bnr_link .bnr_link_list li a:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

#bnr_link .bnr_link_list li a img {
  height: 80px;
}

@media screen and (max-width: 1024px) {
  #bnr_link .bnr_link_list li a img {
    height: 40px;
  }
}

.page_title {
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .page_title {
    margin-bottom: 20px;
  }
}

.page_title h2 {
  max-width: 1240px;
  width: 50%;
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .page_title h2 {
    background-color: #fff;
    width: inherit;
    font-size: 16px;
    padding: 16px 10vw 16px 6vw;
    display: inline-block;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-clip-path: polygon(0% 0%, 84% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 84% 0%, 100% 100%, 0% 100%);
  }
}

.page_title .page_title_img {
  width: 56vw;
  margin: 0 0 0 auto;
  -webkit-clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(16% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1024px) {
  .page_title .page_title_img {
    width: 100%;
    -webkit-clip-path: none;
    clip-path: none;
  }
}

.page_title_s {
  max-width: 1240px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .page_title_s {
    padding-top: 20px;
  }
}

.page_title_s h2 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 3px #231815 solid;
  padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .page_title_s h2 {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

.subpage_link {
  border-bottom: 3px #231815 solid;
  margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
  .subpage_link {
    margin-bottom: 40px;
  }
}

.subpage_link .subpage_link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  width: 92%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .subpage_link .subpage_link_list {
    max-width: 100%;
    width: 100%;
    padding: 0 4vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
  }
}

.subpage_link .subpage_link_list li {
  margin-right: 8px;
}

@media screen and (max-width: 1024px) {
  .subpage_link .subpage_link_list li {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  .subpage_link .subpage_link_list li:last-child {
    padding-right: 4vw;
  }
}

.subpage_link .subpage_link_list li .active {
  padding: 6px 20px;
  background-color: #231815;
  color: #fff;
  border: 3px #231815 solid;
  border-bottom: none;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .subpage_link .subpage_link_list li .active {
    padding: 6px 10px;
  }
}

.subpage_link .subpage_link_list li a {
  display: block;
  padding: 6px 20px;
  border: 3px #231815 solid;
  border-bottom: none;
  font-weight: bold;
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .subpage_link .subpage_link_list li a {
    padding: 6px 10px;
  }
}

.subpage_link .subpage_link_list li a:hover {
  background-color: #f7f3de;
}

.textbox_center {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .textbox_center {
    text-align: left;
  }
}

.textbox_center p {
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .textbox_center p {
    margin-bottom: 20px;
  }
}

.textbox_center p:last-child {
  margin-bottom: 0;
}

.textbox_center p.text_l {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .textbox_center p.text_l {
    font-size: 16px;
  }
}

.textbox_center p a {
  display: inline-block;
  padding: 1px 4px;
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
}

.textbox_center p a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #231815;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.textbox_center p a:hover::after {
  -webkit-animation: text_link 0.4s forwards;
          animation: text_link 0.4s forwards;
}

@-webkit-keyframes text_link {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes text_link {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.category_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .category_link {
    margin-bottom: 20px;
  }
}

.category_link h3 {
  margin-right: 20px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .category_link h3 {
    margin-right: 10px;
  }
}

.category_link .category_link_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

@media screen and (max-width: 1024px) {
  .category_link .category_link_list {
    display: none;
  }
}

.category_link .category_link_list li {
  margin: 0 8px 8px 0;
}

.category_link .category_link_list li .active {
  padding: 6px 20px;
  background-color: #231815;
  color: #fff;
  border: 3px #231815 solid;
  font-weight: bold;
  font-size: 14px;
}

.category_link .category_link_list li a {
  display: block;
  padding: 6px 20px;
  border: 3px #231815 solid;
  font-weight: bold;
  font-size: 14px;
}

.category_link .category_link_list li a:hover {
  background-color: #f7f3de;
}

.category_link .category_link_list_sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .category_link .category_link_list_sp {
    display: block;
  }
}

.category_link .category_link_list_sp select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: 3px #231815 solid;
  font-size: 14px;
  padding: 6px 16px 6px 0px;
  background: url("/images/ico_arrow_s_bottom.svg") no-repeat right 10px center;
  background-size: 10px auto;
  border-radius: 0px;
  font-weight: bold;
  padding: 10px 20px 10px 10px;
}

.news_list li {
  position: relative;
  border-bottom: 1px #231815 solid;
}

.news_list li:last-child {
  border-bottom: none;
}

.news_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

@media screen and (max-width: 480px) {
  .news_list li a {
    display: block;
    padding: 20px 0;
  }
}

.news_list li a:hover {
  background-color: #f7f3de;
}

@media screen and (max-width: 480px) {
  .news_list li a:hover {
    background-color: inherit;
  }
}

.news_list li a:hover .news_list_tmb::after {
  border: 8px #231815 solid;
}

.news_list li a .news_list_tmb {
  width: 260px;
  height: 120px;
  position: relative;
  border: 6px #231815 solid;
  overflow: hidden;
  margin-right: 20px;
}

.news_list li a .news_list_tmb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0px #231815 solid;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .news_list li a .news_list_tmb {
    width: 208px;
    height: 96px;
  }
}

@media screen and (max-width: 480px) {
  .news_list li a .news_list_tmb {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.news_list li a .news_list_tmb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.news_list li a .news_list_textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  padding: 20px 0;
}

@media screen and (max-width: 480px) {
  .news_list li a .news_list_textarea {
    padding: 0;
  }
}

.news_list li a .news_list_textarea .news_list_category {
  font-size: 12px;
  margin-right: 20px;
  margin-bottom: 2px;
}

@media screen and (max-width: 1024px) {
  .news_list li a .news_list_textarea .news_list_category {
    font-size: 10px;
  }
}

.news_list li a .news_list_textarea .news_list_time {
  font-size: 12px;
  margin-bottom: 2px;
}

@media screen and (max-width: 1024px) {
  .news_list li a .news_list_textarea .news_list_time {
    font-size: 10px;
  }
}

.news_list li a .news_list_textarea .news_list_title {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .news_list li a .news_list_textarea .news_list_title {
    font-size: 14px;
  }
}

.event_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.event_list > li {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 60px;
}

.event_list > li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .event_list > li {
    width: 32%;
  }

  .event_list > li:nth-child(4n) {
    margin-right: 2%;
  }

  .event_list > li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 896px) {
  .event_list > li {
    width: 49%;
    margin-bottom: 30px;
  }

  .event_list > li:nth-child(3n) {
    margin-right: 2%;
  }

  .event_list > li:nth-child(2n) {
    margin-right: 0;
  }
}

.event_list li a:hover .event_list_tmb::after {
  border: 8px #231815 solid;
}

.event_list li a .event_list_tmb {
  border: 3px #231815 solid;
  margin-bottom: 10px;
  position: relative;
}

.event_list li a .event_list_tmb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0px #231815 solid;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.event_list li a .event_list_tmb img {
  width: 100%;
}

.event_list li a .event_list_textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.event_list li a .event_list_textarea .event_list_name {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 2px;
}

@media screen and (max-width: 896px) {
  .event_list li a .event_list_textarea .event_list_name {
    font-size: 14px;
  }
}

.event_list li a .event_list_textarea .event_list_data .event_list_date {
  font-size: 12px;
  padding-left: 3em;
  position: relative;
}

.event_list li a .event_list_textarea .event_list_data .event_list_date::before {
  content: "\5834\6240";
  display: inline-block;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 896px) {
  .event_list li a .event_list_textarea .event_list_data .event_list_date {
    font-size: 10px;
  }
}

.event_list li a .event_list_textarea .event_list_data .event_list_place {
  font-size: 12px;
  padding-left: 3em;
  position: relative;
}

.event_list li a .event_list_textarea .event_list_data .event_list_place::before {
  content: "\671F\9593";
  display: inline-block;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 896px) {
  .event_list li a .event_list_textarea .event_list_data .event_list_place {
    font-size: 10px;
  }
}

.event_category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.event_category_list li {
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 2px;
  background-color: #766965;
  color: #fff;
  padding: 2px 6px;
}

@media screen and (max-width: 896px) {
  .event_category_list li {
    font-size: 10px;
  }
}

.event_category_list li.category01 {
  background-color: #231815;
}

.event_category_list li.category02 {
  background-color: #766965;
}

.event_category_list li.category03 {
  background-color: #b2b2b2;
}

.event_category_list li.category11 {
  background-color: #f36536;
}

.event_category_list li.category12 {
  background-color: #42c1eb;
}

.event_category_list li.category13 {
  background-color: #905ed3;
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.pager .pager_prev a {
  display: block;
  font-weight: bold;
  padding: 6px 20px 6px 36px;
  background: url("/images/ico_arrow_prev.svg") no-repeat 10px center;
}

@media screen and (max-width: 1024px) {
  .pager .pager_prev a {
    text-indent: -1000px;
    overflow: hidden;
    padding: 6px 0px 6px 0px;
    width: 30px;
    background: url("/images/ico_arrow_prev.svg") no-repeat 0px center;
  }
}

.pager .pager_prev a:hover {
  background: url("/images/ico_arrow_prev.svg") no-repeat 0px center;
}

.pager .pager_next a {
  display: block;
  font-weight: bold;
  padding: 6px 36px 6px 20px;
  background: url("/images/ico_arrow_next.svg") no-repeat right 10px center;
}

@media screen and (max-width: 1024px) {
  .pager .pager_next a {
    text-indent: -1000px;
    overflow: hidden;
    padding: 6px 0px 6px 0px;
    width: 30px;
    background: url("/images/ico_arrow_next.svg") no-repeat right 0px center;
  }
}

.pager .pager_next a:hover {
  background: url("/images/ico_arrow_next.svg") no-repeat right 0px center;
}

.pager .pager_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1024px) {
  .pager .pager_num {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.pager .pager_num li {
  margin: 0 4px;
}

.pager .pager_num li .active {
  font-weight: bold;
  padding: 6px 10px;
  border: 3px #231815 solid;
  background-color: #231815;
  color: #fff;
}

.pager .pager_num li a {
  font-weight: bold;
  padding: 6px 10px;
  border: 3px #231815 solid;
}

.pager .pager_num li a:hover {
  background-color: #f7f3de;
}

@media screen and (max-width: 896px) {
  .pager .pager_num .disabled,
  .pager .pager_num .sp__hidden {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pager .pager_num .twoDigits a,
  .pager .pager_num .twoDigits span {
    display: inline-block;
    width: 2.2rem;
    white-space: nowrap;
    padding: 6px 6px !important;
  }
}

.news_detail {
  margin-bottom: 40px;
}

.news_detail .news_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  border-bottom: 3px #231815 solid;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.news_detail .news_header .news_detail_category {
  font-size: 12px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.news_detail .news_header .news_detail_date {
  font-size: 12px;
  margin-bottom: 10px;
}

.news_detail .news_header .news_detail_title {
  width: 100%;
  font-size: 28px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .news_detail .news_header .news_detail_title {
    font-size: 20px;
  }
}

.news_detail .news_footer {
  text-align: center;
}

.event_detail {
  margin-bottom: 40px;
}

.event_detail .event_header {
  border-bottom: 3px #231815 solid;
  margin-bottom: 40px;
  padding-bottom: 20px;
}

.event_detail .event_header .event_category_list {
  margin-bottom: 10px;
}

.event_detail .event_header .event_title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .event_detail .event_header .event_title {
    font-size: 20px;
  }
}

.event_detail .event_header .event_date {
  font-size: 14px;
}

.event_detail .event_detail_data {
  background-color: #e9e9e9;
  padding: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .event_detail .event_detail_data {
    padding: 20px;
  }
}

.event_detail .event_detail_data table {
  width: 100%;
}

.event_detail .event_detail_data table th {
  font-weight: bold;
  border-bottom: 1px #766965 solid;
  padding: 18px 20px 18px 10px;
  font-size: 14px;
  width: 160px;
}

@media screen and (max-width: 1024px) {
  .event_detail .event_detail_data table th {
    width: 100%;
    display: block;
    border-bottom: none;
    padding: 18px 0 0 0;
  }
}

.event_detail .event_detail_data table td {
  border-bottom: 1px #766965 solid;
  padding: 14px;
}

@media screen and (max-width: 1024px) {
  .event_detail .event_detail_data table td {
    width: 100%;
    display: block;
    padding: 0 0 14px 0;
  }
}

.event_detail .event_detail_data table tr:last-child th,
.event_detail .event_detail_data table tr:last-child td {
  border-bottom: none;
}

.event_detail .event_detail_data a {
  text-decoration: underline;
}

.event_detail .event_footer {
  text-align: center;
}

.free_html {
  margin-bottom: 40px;
}

.free_html p {
  margin-bottom: 20px;
}

.free_html img.alignright {
  clear: both;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.free_html img.aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: block;
}

.free_html img.alignleft {
  clear: both;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .free_html img {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.free_html ul {
  margin-bottom: 20px;
}

.free_html ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.free_html ul li::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0.55em;
  left: 5px;
  width: 4px;
  height: 4px;
  background-color: #231815;
  vertical-align: middle;
}

.free_html ol {
  margin-bottom: 20px;
  margin-left: 20px;
}

.free_html ol li {
  list-style-type: decimal;
  margin-bottom: 10px;
}

.free_html table {
  width: auto;
  margin-bottom: 20px;
  border-top: 1px solid #766965;
  border-left: 1px solid #766965;
}

.free_html table th,
.free_html table td {
  border-right: 1px solid #766965;
  border-bottom: 1px solid #766965;
  padding: 10px;
}

.free_html em {
  font-style: italic;
}

.free_html blockquote {
  padding: 20px 40px;
}

.free_html h1 {
  margin-bottom: 20px;
  padding: 5px 0 12px 20px;
  border-bottom: 2px #231815 solid;
  font-size: 26px;
  font-weight: bold;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .free_html h1 {
    font-size: 20px;
  }
}

.free_html h1::before {
  content: "";
  display: block;
  background-color: #231815;
  width: 4px;
  height: 30px;
  position: absolute;
  top: 10px;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .free_html h1::before {
    height: 24px;
  }
}

.free_html h2 {
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #231815;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .free_html h2 {
    font-size: 18px;
  }
}

.free_html h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px #231815 dashed;
  padding: 5px;
}

@media screen and (max-width: 1024px) {
  .free_html h3 {
    font-size: 18px;
  }
}

.free_html h4 {
  font-size: 20px;
  font-weight: bold;
  color: #231815;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #e9e9e9;
}

@media screen and (max-width: 1024px) {
  .free_html h4 {
    font-size: 16px;
  }
}

.free_html h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}

@media screen and (max-width: 1024px) {
  .free_html h5 {
    font-size: 16px;
  }
}

.free_html h5::before,
.free_html h5::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: #231815;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.free_html h5::before {
  left: 0;
}

.free_html h5::after {
  right: 0;
}

.free_html h6 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 12px;
  color: #231815;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .free_html h6 {
    font-size: 16px;
  }
}

.free_html h6::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #231815;
}

.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.share li {
  margin: 0 4px;
}

.share .fb_iframe_widget > span {
  vertical-align: baseline !important;
}

.education_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.education_list > li {
  width: 30%;
  margin-left: 0;
  margin-right: 5%;
  margin-bottom: 80px;
}

.education_list > li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .education_list > li {
    width: 46%;
    margin-right: 6%;
  }

  .education_list > li:nth-child(3n) {
    margin-right: 6%;
  }

  .education_list > li:nth-child(2n) {
    margin-right: 2%;
  }
}

@media screen and (max-width: 896px) {
  .education_list > li {
    width: 90%;
    margin-right: 0;
  }
}

.education_list li {
  position: relative;
}

.education_list li a {
  display: block;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .education_list li a {
    padding-top: 30px;
  }
}

.education_list li a:hover .education_list_tmb::after {
  border: 8px #231815 solid;
}

.education_list li a .education_list_tmb {
  border: 6px #231815 solid;
  margin-bottom: 10px;
  position: relative;
}

.education_list li a .education_list_tmb::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0px #231815 solid;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.education_list li a .education_list_tmb img {
  width: 100%;
}

.education_list li a .education_list_textarea .education_list_place {
  font-size: 12px;
  margin-bottom: 2px;
}

@media screen and (max-width: 1024px) {
  .education_list li a .education_list_textarea .education_list_place {
    font-size: 10px;
  }
}

.education_list li a .education_list_textarea .education_list_name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 2px;
}

@media screen and (max-width: 1024px) {
  .education_list li a .education_list_textarea .education_list_name {
    font-size: 14px;
  }
}

.education_list li a .education_list_textarea .education_list_date {
  font-size: 12px;
}

@media screen and (max-width: 1024px) {
  .education_list li a .education_list_textarea .education_list_date {
    font-size: 10px;
  }
}

.education_list li .education_list_category {
  background: url("/images/education_label.svg") no-repeat center center;
  background-size: contain;
  width: 126px;
  height: 110px;
  position: absolute;
  top: 20px;
  right: -40px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .education_list li .education_list_category {
    top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .education_list li .education_list_category {
    width: 100px;
    height: 88px;
  }
}

.education_list li .education_list_category:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.education_list li .education_list_category span {
  display: block;
  background: url("/images/ico_hatena.svg") no-repeat center top;
  background-size: 20px;
  text-align: center;
  font-weight: bold;
  padding-top: 24px;
  line-height: 1.3;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 1024px) {
  .education_list li .education_list_category span {
    font-size: 11px;
  }
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_bg {
    background: rgba(0, 0, 0, 0.8) url("/images/ico_close_wh.svg") no-repeat right 10px top 10px !important;
  }
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content {
    width: 400px;
  }
}

.education_list_category_list li .modal_content .modal_content_sc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content .modal_content_sc {
    display: block;
  }
}

.education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_textarea {
    padding: 20px;
  }
}

.education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_textarea h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_textarea h3 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_img {
  width: 500px;
}

@media screen and (max-width: 1024px) {
  .education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_img {
    width: 400px;
  }
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content .modal_content_sc .education_list_category_cont_img {
    width: 100%;
  }
}

.education_list_category_list li .modal_content .js_modal_close {
  width: 60px;
  height: 60px;
  background: url("/images/ico_close.svg") no-repeat center center;
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -1000px;
  overflow: hidden;
  cursor: pointer;
}

@media screen and (max-width: 896px) {
  .education_list_category_list li .modal_content .js_modal_close {
    display: none;
  }
}

.form {
  background-color: #e9e9e9;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 896px) {
  .form {
    padding: 20px;
  }
}

.form table {
  margin-bottom: 30px;
  width: 100%;
}

.form table tbody tr th {
  padding: 32px 20px 0 0;
  font-weight: bold;
  white-space: nowrap;
  font-size: 14px;
}

@media screen and (max-width: 896px) {
  .form table tbody tr th {
    display: block;
    width: 100%;
    padding-bottom: 6px;
  }
}

.form table tbody tr th .require {
  background-color: #e52843;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  padding: 0 4px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.form table tbody tr th small {
  display: block;
  font-weight: normal;
  font-size: small;
}

@media screen and (max-width: 896px) {
  .form table tbody tr th small {
    display: inline-block !important;
  }
}

.form table tbody tr td {
  padding: 32px 0 0 0;
  width: 100%;
}

@media screen and (max-width: 896px) {
  .form table tbody tr td {
    display: block;
    padding: 0;
  }
}

.form table tbody tr:last-of-type td {
  padding-bottom: 16px;
}

.form input,
.form textarea {
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 6px 10px;
  width: 100%;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

.form textarea {
  height: 100px;
}

.form select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("/images/ico_arrow_s_bottom.svg") no-repeat right 10px center;
  background-size: 10px auto;
  border-radius: 0px;
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 6px 30px 6px 10px;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

.btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 896px) {
  .btn_area {
    display: block;
  }
}

.btn_area .btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  cursor: pointer;
  border: none;
  width: 100%;
  max-width: 240px;
  margin: 0 20px;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn_area .btn:lang(en) {
  max-width: 300px;
}

@media screen and (max-width: 896px) {
  .btn_area .btn {
    margin: 0 auto 16px;
    font-size: 16px;
  }
}

.btn_area .btn.btn_main {
  background-color: #231815;
  color: #fff;
}

.btn_area .btn.btn_sub {
  background-color: #766965;
  color: #fff;
}

.btn_area .btn:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.btn_area .btn:disabled {
  opacity: 0.5;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none;
          transform: none;
  cursor: auto;
}

.guide_range {
  height: 200px;
  position: relative;
  margin-top: 30px;
  /* .l_range */
  /*.r_range*/
}

@media screen and (max-width: 1240px) {
  .guide_range {
    height: 200px;
  }
}

@media screen and (max-width: 1024px) {
  .guide_range {
    display: block;
    height: auto;
    margin-top: 0;
  }
}

.guide_range .l_range {
  position: absolute;
  left: 0;
  width: 53%;
  /* a */
}

@media screen and (max-width: 1024px) {
  .guide_range .l_range {
    position: inherit;
    width: 100%;
    margin-top: 4%;
  }
}

.guide_range .l_range a {
  cursor: pointer;
  /* h3 */
  /* img */
}

.guide_range .l_range a h3 {
  position: absolute;
  background-color: #fff;
  font-weight: bold;
  top: -20px;
  left: 0;
  z-index: 1;
  padding: 10px 20px;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .guide_range .l_range a h3 {
    font-size: 14px;
  }
}

.guide_range .l_range a img {
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .guide_range .l_range a img {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
    height: 160px;
  }
}

.guide_range .r_range {
  position: absolute;
  right: 0;
  width: 53%;
  /* a */
}

@media screen and (max-width: 1024px) {
  .guide_range .r_range {
    position: inherit;
    width: 100%;
    margin-top: 4%;
  }
}

.guide_range .r_range a {
  cursor: pointer;
  /* h3 */
  /* img */
}

.guide_range .r_range a h3 {
  position: absolute;
  background-color: #fff;
  font-weight: bold;
  top: -20px;
  right: 0;
  z-index: 1;
  padding: 10px 20px;
  font-size: 20px;
}

@media screen and (max-width: 1024px) {
  .guide_range .r_range a h3 {
    font-size: 14px;
  }
}

.guide_range .r_range a img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .guide_range .r_range a img {
    -webkit-clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    height: 160px;
  }
}

/* .guide_range */

/*--------------------info(開館時間・休館日・利用料金) アクセス FAQ-----------------*/

.note_text {
  display: block;
  font-weight: 100;
  font-size: 12px;
}

.guide_range_s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 896px) {
  .guide_range_s {
    display: block;
  }
}

.guide_range_s .guide_box {
  width: 48%;
}

@media screen and (max-width: 896px) {
  .guide_range_s .guide_box {
    width: 100%;
  }
}

.ver_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse;
          flex-flow: row-reverse;
}

@media screen and (max-width: 896px) {
  .ver_flex {
    display: block;
  }
}

.guide_box {
  width: 100%;
  margin-top: 80px;
  /*h3*/
  /*.guide_content_box*/
  /* .faq_box */
}

@media screen and (max-width: 896px) {
  .guide_box {
    margin-top: 40px;
  }
}

.guide_box .guide_content_img {
  width: 50%;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_img {
    width: 100%;
    margin-top: 20px;
  }
}

.guide_box .guide_content_img img {
  border: 6px solid #231815;
}

.guide_box .guide_content_text {
  margin-left: 8%;
  width: 50%;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_text {
    width: 100%;
    margin-left: 0;
  }
}

.guide_box .guide_content_text .guide_content_title {
  font-weight: bold;
  font-size: 24px;
}

.guide_box .guide_box_title {
  font-weight: bold;
  font-size: 24px;
  border-bottom: 2px solid #231815;
}

.guide_box .guide_content_box {
  margin-top: 30px;
  /*.table_box*/
  /*.title_text */
  /*.backcolor_box*/
  /*p:nth-child(n+2)*/
}

.guide_box .guide_content_box .table_box h4 {
  font-weight: bold;
  font-size: 20px;
}

.guide_box .guide_content_box .table_box:nth-child(n+2) {
  margin-top: 50px;
}

.guide_box .guide_content_box .table_box table {
  width: 100%;
}

.guide_box .guide_content_box .table_box table tr:first-child {
  background-color: #fff;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .table_box table tr:first-child {
    display: none;
  }
}

.guide_box .guide_content_box .table_box table tr:first-child td {
  font-weight: bold;
}

.guide_box .guide_content_box .table_box table tr {
  border-bottom: 4px solid #fff;
  background-color: #f7f7f7;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .table_box table tr {
    display: block;
    margin-top: 20px;
  }
}

.guide_box .guide_content_box .table_box table tr th {
  font-weight: bold;
  width: 25%;
  padding: 10px 30px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .table_box table tr th {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}

.guide_box .guide_content_box .table_box table tr td {
  text-align: center;
  width: 10%;
  padding: 10px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .table_box table tr td {
    width: 100%;
    display: block;
    background-color: #fff;
    border-bottom: 2px solid #f7f7f7;
  }
}

.guide_box .guide_content_box .table_box table tr td .sp_th {
  display: none;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .table_box table tr td .sp_th {
    display: inline-block;
    width: 130px;
    font-weight: bold;
    margin-right: 10%;
  }
}

.guide_box .guide_content_box .title_text {
  font-weight: bold;
  display: inline-block;
  width: 100%;
  max-width: 150px;
}

@media screen and (max-width: 896px) {
  .guide_box .guide_content_box .title_text {
    display: block;
  }
}

.guide_box .guide_content_box .backcolor_box {
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 20px;
}

.guide_box .guide_content_box p:nth-child(n+2) {
  margin-top: 10px;
}

.guide_box .guide_content_box a {
  font-weight: bold;
  text-decoration: underline;
  margin-top: 10px;
  display: block;
}

.guide_box .guide_content_box .guide_ticket_area {
  text-align: center;
}

.guide_box .guide_content_box .guide_ticket_area img {
  width: 90%;
}

.guide_box .guide_content_box .guide_ticket_area .guide_ticket_area_text {
  margin-top: 30px;
  color: red;
  font-size: 12px;
}

.guide_box .guide_content_box .guide_ticket_area .guide_ticket_area_text a {
  display: inline;
  color: red;
}

.guide_box .guide_content_box .passport_price_usable_days {
  font-weight: normal;
}

.guide_box .guide_content_box .passport_price_usable_days a {
  display: inline;
}

.guide_box .faq_box {
  width: 100%;
  background-color: #f7f7f7;
  -webkit-clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
  padding: 40px;
}

.guide_box .faq_box:nth-child(n+2) {
  margin-top: 20px;
}

@media screen and (max-width: 896px) {
  .guide_box .faq_box:nth-child(n+2) {
    margin-top: 10px;
  }
}

@media screen and (max-width: 896px) {
  .guide_box .faq_box {
    padding: 20px;
  }
}

.guide_box .faq_box .faq_title {
  font-weight: bold;
  font-size: 24px;
}

@media screen and (max-width: 896px) {
  .guide_box .faq_box .faq_title {
    font-size: 20px;
  }
}

/*.guide_box*/

.museum_title {
  font-size: 30px;
  font-weight: bold;
}

.museum_message {
  width: 100%;
  margin: 20px auto 0;
  height: 800px;
}

@media screen and (max-width: 1240px) {
  .museum_message {
    height: 900px;
  }
}

.museum_message .museum_message_img {
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}

.museum_message .museum_message_img img {
  width: 100%;
  max-width: 600px;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.museum_message .museum_message_text {
  position: absolute;
  top: 150px;
  right: 0;
  padding: 65px;
  background: #fff;
  width: 100%;
  max-width: 800px;
  border: solid 1px #eee;
  z-index: 1;
}

@media screen and (max-width: 1240px) {
  .museum_message .museum_message_text {
    top: 300px;
  }
}

.museum_message .museum_message_text .name {
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}

.museum_message .museum_message_text .name img {
  width: 100%;
  max-width: 200px;
  margin-top: 10px;
}

.museum_membership {
  width: 100%;
  margin: 40px auto;
}

@media screen and (max-width: 1024px) {
  .museum_membership {
    height: auto;
  }
}

.museum_membership .museum_membership_img {
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
}

.museum_membership .museum_membership_img .main_img {
  width: 100%;
  max-width: 400px;
  -webkit-clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

@media screen and (max-width: 1024px) {
  .museum_membership .museum_membership_img .main_img {
    max-width: 600px;
  }
}

.museum_membership .museum_membership_text {
  position: absolute;
  top: 50px;
  right: 0;
  padding: 30px;
  background: #fff;
  width: 100%;
  max-width: 750px;
  border: solid 1px #eee;
  z-index: 1;
}

@media screen and (max-width: 1240px) {
  .museum_membership .museum_membership_text {
    max-width: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .museum_membership .museum_membership_text {
    padding: 40px;
    position: static;
    max-width: inherit;
  }
}

@media screen and (max-width: 896px) {
  .museum_membership .museum_membership_text {
    padding: 20px;
  }
}

.museum_membership .museum_membership_text h4 {
  font-size: 20px;
  font-weight: bold;
}

.museum_philosophy {
  width: 100%;
  margin-top: 20px;
}

.museum_philosophy .philosophy_title {
  font-size: 28px;
  font-weight: bold;
  background: #f7f7f7;
  padding: 15px 20px;
}

.museum_philosophy .philosophy_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

@media screen and (max-width: 1024px) {
  .museum_philosophy .philosophy_box {
    display: block;
  }
}

.museum_philosophy .philosophy_box p {
  width: auto;
}

.museum_philosophy .philosophy_box .philosophy_img {
  width: 100%;
  min-width: 400px;
}

@media screen and (max-width: 1024px) {
  .museum_philosophy .philosophy_box .philosophy_img {
    width: 100%;
    max-width: 300px;
    min-width: inherit;
    margin: 0 auto;
  }
}

.museum_philosophy .philosophy_box .philosophy_img img {
  width: 100%;
  padding-left: 20px;
}

@media screen and (max-width: 1024px) {
  .museum_philosophy .philosophy_box .philosophy_img img {
    padding-left: 0;
    padding-top: 20px;
  }
}

.museum_overciew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 896px) {
  .museum_overciew {
    display: block;
  }
}

.museum_overciew .overciw_box {
  width: 48%;
}

@media screen and (max-width: 896px) {
  .museum_overciew .overciw_box {
    width: 100%;
  }
}

.museum_overciew .overciw_box .box_title {
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  background: #f7f7f7;
}

@media screen and (max-width: 896px) {
  .museum_overciew .overciw_box .box_title {
    font-size: 22px;
  }
}

.museum_overciew .overciw_box table {
  width: 100%;
}

.museum_overciew .overciw_box table tr {
  margin-top: 10px;
  border-bottom: solid 2px #f7f7f7;
}

.museum_overciew .overciw_box table tr th {
  padding: 20px 10px;
  font-weight: bold;
  width: 20%;
}

.museum_overciew .overciw_box table tr td {
  width: 80%;
}

.main {
  padding-left: 0;
  min-height: 55vh;
}

.main section {
  margin: 0 auto;
  width: 92%;
  margin: auto;
}

.main section article > div {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.main section article > div > p {
  margin-top: 1.875rem;
}

.main section article {
  width: 100%;
  margin: auto;
  margin-top: 3.125rem;
}

.main section article h3 {
  text-align: left;
  font-size: 28px;
  font-weight: bold;
  padding: 10px 20px;
  background: #f7f7f7;
}

.main section article label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  color: #666;
}

.main section article input {
  font-weight: normal;
  height: 50px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0 0;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #231815;
  width: 100%;
  padding: 10px 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main section article input:focus {
  outline: 0;
  border-color: #231815;
}

.main section article input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.main section article input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}

.main section article input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

.main section article input::-moz-placeholder {
  /* Others */
  color: #ccc;
}

.main section article input::-ms-input-placeholder {
  /* Others */
  color: #ccc;
}

.main section article input::placeholder {
  /* Others */
  color: #ccc;
}

.main section article input.c-form__error {
  background-color: #fcf1f1;
}

.main section article select.c-form__error,
.main section article textarea.c-form__error {
  background-color: #fcf1f1;
}

.main section article button {
  width: 80%;
  margin: 1.25rem auto 0 auto;
  padding: 1rem;
  background: #231815;
  color: #fff;
  line-height: 1rem;
  border-radius: 4px;
  font-weight: bold;
  -webkit-box-shadow: 1px 1px 3px #aaa;
          box-shadow: 1px 1px 3px #aaa;
}

.main section article button.negative {
  background-color: #fff;
  color: #333;
}

.main section article button:hover {
  opacity: 0.5;
  -webkit-transition: .3s;
  transition: .3s;
}

.main section article button:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* ==================================================================
Desktop
================================================================== */

@media screen and (min-width: 1024px) {
  .main section article:first-of-type {
    margin-top: 0;
  }

  .main section article form input {
    width: 500px;
  }

  .main section article button {
    width: 280px;
    margin: 1.25rem auto 0 auto;
    padding: 1rem;
    background: #231815;
    color: #fff;
    line-height: 1rem;
    border-radius: 4px;
    font-weight: bold;
    -webkit-box-shadow: 1px 1px 3px #aaa;
            box-shadow: 1px 1px 3px #aaa;
  }

  .main section article button:hover {
    opacity: 0.5;
    -webkit-transition: .3s;
    transition: .3s;
  }

  .main section article button:disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}

div.inner .c-progressbar {
  border-bottom: 1px dotted #ccc;
  padding-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px dotted #ccc;
  margin-bottom: 2rem;
}

div.inner .c-progressbar ul {
  margin: 0;
  padding: 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

div.inner .c-progressbar ul li {
  list-style-type: none;
  font-size: 12px;
  position: relative;
  text-align: center;
  color: #aaa;
  font-weight: bold;
  width: 33%;
}

div.inner .c-progressbar ul li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #eee;
}

div.inner .c-progressbar ul li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #eee;
  top: 15px;
  left: -50%;
  z-index: -1;
}

div.inner .c-progressbar ul li:first-child:after {
  content: none;
}

div.inner .c-progressbar ul li.active {
  color: green;
}

div.inner .c-progressbar ul li.active:before {
  background-color: #55b776;
  color: #fff;
}

div.inner .c-progressbar ul li.active + li:after {
  background-color: #55b776;
}

div.inner .c-button--negative {
  margin-top: 0;
  border: 2px solid #231815;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  background-color: #fff;
  color: #231815;
  padding: 0.5rem 1rem;
  width: 240px;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

div.inner .c-button--negative:lang(en) {
  width: 300px;
}

div.inner .c-button--negative:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

div.inner .c-button--async {
  position: relative;
  border: 0;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  white-space: nowrap;
}

div.inner .c-button--async[data-loading] {
  cursor: default;
  border-color: rgba(0, 0, 0, 0.07);
  background-color: #999;
}

div.inner .c-button--async .spinner {
  zoom: 0.7;
  position: absolute;
  width: 32px;
  height: 32px;
  top: 50%;
  margin-top: -16px;
  opacity: 0;
  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf///6+vr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs/Ly8vz8/AAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
}

div.inner .c-button--async.expand-left .spinner {
  left: 1rem;
}

div.inner .c-button--async.expand-left[data-loading] {
  padding-left: 2rem;
}

div.inner .c-button--async.expand-left[data-loading] .spinner {
  opacity: 1;
}

div.inner .c-button--async.expand-left,
div.inner .c-button--async .spinner,
div.inner .c-button--async .label {
  -webkit-transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

div.inner .c-button--amount-reservation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 8vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
}

div.inner .c-button--amount-reservation__kind {
  font-size: 0.95rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

div.inner .c-button--amount-reservation__kind__icon {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 15vw;
  color: #231815;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.8;
}

div.inner .c-button--amount-reservation__kind__icon .fa-male {
  font-size: 1.7rem;
}

div.inner .c-button--amount-reservation__kind__icon .fa-child {
  font-size: 1.3rem;
}

div.inner .c-button--amount-reservation__kind__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.inner .c-button--amount-reservation__kind__detail span:first-of-type {
  font-size: 1rem;
}

div.inner .c-button--amount-reservation__kind__detail span:last-of-type {
  font-size: 0.8rem;
  color: #aaa;
}

div.inner .c-button--amount-reservation--accordion {
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border-radius: 50% !important;
  font-size: 150% !important;
  font-weight: 700 !important;
  margin-right: 0.5rem;
  -webkit-transition: .2s;
  transition: .2s;
}

div.inner .c-button--amount-reservation--accordion.btn_off {
  border: 1px solid #231815 !important;
  background-color: #fff !important;
  color: #231815 !important;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

div.inner .c-button--amount-reservation--accordion.btn_on {
  border: 1px solid #231815 !important;
  background-color: #231815 !important;
  color: #fff !important;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

div.inner .c-button--amount-reservation--accordion .fa-chevron-right {
  margin-bottom: 0.1rem;
  margin-left: 0.1rem;
  font-size: 1rem;
}

div.inner .c-form--side .c-form__title-wrap {
  text-align: left;
  margin: auto;
}

div.inner .c-form--side .c-form__list {
  margin: auto;
}

div.inner .c-form--side .c-form__item {
  margin-top: 1.875rem;
}

div.inner .c-form--side .c-form__item:first-of-type {
  margin-top: 0;
}

div.inner .c-form--side .c-form__item--border {
  border-top: 1px solid #3F2B26;
  margin-top: 1.875rem;
}

div.inner .c-form--side .c-form__item--border hr {
  border: none;
}

div.inner .c-form--side .c-form__item--error {
  margin-top: 0;
}

div.inner .c-form--side .c-form__item--error td p {
  position: relative;
}

div.inner .c-form--side .c-form__label {
  width: 100%;
  text-align: left;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
  color: #666;
}

div.inner .c-form--side .c-form__label--required {
  margin-bottom: 5px;
  display: inline-block;
  font-weight: 700;
  color: #666;
}

div.inner .c-form--side .c-form__label--required::after {
  content: '\5FC5\9808';
  color: #dc3535;
  border: 2px solid #dc3535;
  font-size: 0.7rem;
  padding: 0 .3rem;
  margin-left: .5rem;
}

div.inner .c-form--side .c-form__input--postal-code {
  width: 30%;
  margin: 0 1rem;
}

div.inner .c-form--side .c-form__input-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .c-form--side .c-form__input-wrap {
  text-align: left;
  display: block;
}

div.inner .c-form--side .c-form__input-wrap--side input {
  width: 48%;
}

div.inner .c-form--side .c-form__input-wrap--side input:last-child {
  margin-left: 4%;
}

div.inner .c-form--side .c-form__input-wrap--side span.c-form__error {
  color: #dc3535 !important;
  display: inline !important;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-form--side .c-form__input-wrap span.c-form__error {
  color: #dc3535 !important;
  display: inline;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-form--side .c-form__select-wrap {
  margin: 0 auto;
  text-align: left;
}

div.inner .c-form--side .c-form__select--expirationdate {
  padding-right: 1rem;
  line-height: 1rem;
  width: 5rem;
  height: 42px;
}

div.inner .c-form--side .c-form__select--birthday {
  text-align: right;
  width: 22%;
  height: 42px;
}

div.inner .c-form--side .c-form__select--birthday:lang(ja):first-of-type {
  width: 30%;
}

div.inner .c-form--side .c-form__select--birthday:lang(en):nth-of-type(3) {
  width: 30%;
}

div.inner .c-form--side .c-form__select--convenience {
  padding-right: 1rem;
  line-height: 1rem;
  width: 13rem;
  height: 42px;
}

div.inner .c-form--side .c-form__radiot-wrap {
  text-align: left;
  width: 70%;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
  padding: 0 !important;
}

div.inner .c-form--side .c-form__radiot-wrap span.c-form__error {
  color: #dc3535 !important;
  display: inline;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-form--side .c-form__radio-list label {
  display: inline-block;
}

div.inner .c-form--side .c-form__list--button {
  text-align: center;
  margin-top: 3rem;
}

div.inner .c-form--side .c-form__bottom {
  text-align: left;
  margin-top: 1.5rem;
}

div.inner .c-form--side span.c-form__error {
  color: #dc3535 !important;
  display: inline;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-form__button-wrap {
  margin-top: 6rem !important;
}

div.inner .c-form__list--button {
  margin-top: 2rem;
  text-align: center;
}

div.inner .c-form__list--button .c-form__item .c-form__button {
  margin-top: 0;
}

div.inner .c-form__list--button .c-form__item:nth-of-type(2) {
  margin-top: 1rem;
}

div.inner .c-form__list--button .c-form__item:nth-of-type(2) .c-button--negative {
  margin-top: 0;
}

div.inner .c-form__item {
  margin-top: 1.875rem;
}

div.inner .c-form__item:first-of-type {
  margin-top: 0;
}

div.inner .c-form__item--border {
  border-top: 1px solid #3F2B26;
  margin-top: 1.875rem;
}

div.inner .c-form__item--border hr {
  border: none;
}

div.inner .c-form__item--error th,
div.inner .c-form__item--error td {
  padding: 0 !important;
}

div.inner .c-form__item--error td {
  position: relative;
}

div.inner .c-form__label {
  display: block;
  margin: auto;
  margin-bottom: 5px;
  font-weight: bold;
}

div.inner .c-form__label--required {
  margin: 0;
}

div.inner .c-form__label--required::after {
  content: '\5FC5\9808';
  color: #dc3535;
  border: 1px solid #dc3535;
  font-size: 0.7rem;
  padding: 0 .3rem;
  margin-left: .5rem;
}

div.inner .c-form__input {
  padding: 1rem;
  width: 100%;
}

div.inner .c-form__input-list {
  position: relative;
}

div.inner .c-form__textarea {
  width: 100%;
  resize: none;
  font-family: inherit;
}

div.inner .c-form__text {
  margin-top: 1.25rem;
  text-align: center;
}

div.inner .c-form__button-wrap {
  margin-top: 6rem !important;
}

div.inner .c-form__button {
  text-align: center;
}

div.inner .c-form__input-wrap {
  position: relative;
}

div.inner .c-form__input-wrap span.c-form__error {
  color: #dc3535 !important;
  display: inline;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-form__icon {
  position: absolute;
  top: 0.7rem;
  right: 1.8rem;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #bbb;
}

div.inner .c-form__select {
  width: 100%;
  padding: 6px 10px;
  height: 42px;
}

div.inner .c-form span.c-form__error {
  color: #dc3535 !important;
  display: inline;
  text-align: left;
  font-weight: bold;
  position: absolute;
  left: 0;
}

div.inner .c-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

div.inner .c-modal__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

div.inner .c-modal__content {
  position: fixed;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 15rem;
  background: #fff;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

div.inner .c-modal__header {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

div.inner .c-modal__header--icon {
  position: absolute;
  font-size: 2rem;
  top: -0.3rem;
  right: 0.5rem;
  width: 2rem;
  cursor: pointer;
  display: block;
  height: 2rem;
}

div.inner .c-modal__body {
  text-align: center;
  padding: 0 1rem;
  height: auto;
  width: 80%;
  margin: auto;
  padding-top: 1rem;
}

div.inner .c-modal__body .name_parent {
  table-layout: fixed;
  width: 100%;
  text-align: left;
}

div.inner .c-modal__body .name_parent tr th {
  display: block;
}

div.inner .c-modal__body .name_parent tr td {
  display: block;
  padding-bottom: 1rem;
}

div.inner .c-modal__body .text {
  display: block;
  margin-top: 2rem;
  text-align: left;
}

div.inner .c-modal__footer {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0.5rem 0 1.5rem;
}

div.inner .c-modal--without-title {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

div.inner .c-modal--without-title__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

div.inner .c-modal--without-title__content {
  position: fixed;
  width: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 15rem;
  background: #fff;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

div.inner .c-modal--without-title__header--icon {
  position: absolute;
  font-size: 2rem;
  top: -0.3rem;
  right: 0.5rem;
  width: 2rem;
  cursor: pointer;
  display: block;
  height: 2rem;
}

div.inner .c-modal--without-title__header--sabu {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  width: 80%;
  margin: 2rem auto 1rem;
}

div.inner .c-modal--without-title__body {
  text-align: center;
  padding: 0 1rem;
  height: auto;
  width: 80%;
  margin: auto;
  padding-top: 1rem;
}

div.inner .c-modal--without-title__body .name_parent {
  table-layout: fixed;
  width: 100%;
  text-align: left;
}

div.inner .c-modal--without-title__body .name_parent tr th {
  display: block;
}

div.inner .c-modal--without-title__body .name_parent tr td {
  display: block;
  padding-bottom: 1rem;
}

div.inner .c-modal--without-title__body .text {
  display: block;
  margin-top: 2rem;
  text-align: left;
}

div.inner .c-modal--without-title__footer {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0.5rem 0 1.5rem;
}

div.inner .c-modal--content-scroll {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

div.inner .c-modal--content-scroll__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

div.inner .c-modal--content-scroll__content {
  position: fixed;
  height: 70vh;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 15rem;
  background: #fff;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

div.inner .c-modal--content-scroll__ticket-table {
  border: 1px solid;
}

div.inner .c-modal--content-scroll__ticket-table tr,
div.inner .c-modal--content-scroll__ticket-table th,
div.inner .c-modal--content-scroll__ticket-table td {
  border: 1px solid;
}

div.inner .c-modal--content-scroll__header {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
}

div.inner .c-modal--content-scroll__header--icon {
  position: absolute;
  font-size: 2rem;
  top: -0.3rem;
  right: 0.5rem;
  width: 2rem;
  cursor: pointer;
  display: block;
  height: 2rem;
}

div.inner .c-modal--content-scroll__header--sabu {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  width: 80%;
  margin: 2rem auto 1rem;
}

div.inner .c-modal--content-scroll__body {
  min-height: 8rem;
  text-align: center;
  margin-top: 1rem;
  padding: 0 1rem;
  overflow-y: auto;
  height: 55vh;
  width: 80vw;
  margin: auto;
}

div.inner .c-modal--content-scroll__body .text {
  display: block;
  margin-top: 2rem;
  text-align: left;
}

div.inner .c-modal--content-scroll__body .text--center {
  text-align: center;
}

div.inner .c-modal--content-scroll__body table {
  margin-top: 1rem;
  table-layout: fixed;
  width: 100% !important;
}

div.inner .c-modal--content-scroll__body--sabu {
  text-align: center;
  padding: 0 1rem;
  padding-top: 1rem;
  overflow-y: auto;
  height: 16rem;
  width: 17rem;
  margin: auto;
  border: solid 1px #ccc;
}

div.inner .c-modal--content-scroll__body--sabu .name_parent {
  table-layout: fixed;
  width: 100%;
  text-align: left;
}

div.inner .c-modal--content-scroll__body--sabu .name_parent tr th {
  display: block;
  text-align: left;
  padding-top: 0 !important;
}

div.inner .c-modal--content-scroll__body--sabu .name_parent tr td {
  display: block;
  padding-bottom: 1rem;
  padding-top: 0 !important;
}

div.inner .c-modal--content-scroll__area-select {
  text-align: right;
}

div.inner .c-modal--content-scroll__area-select p {
  color: #999;
  font-size: 11px;
  text-align: right;
  margin-top: 1rem;
  display: inline-block;
}

div.inner .c-modal--content-scroll__area-select p span {
  font-weight: bold;
  background-color: #999;
  color: #fff;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 3px #aaa;
          box-shadow: 0px 0px 3px #aaa;
}

div.inner .c-modal--content-scroll__area-select p span::after {
  content: "\30D5\30A3\30EB\30BF";
}

div.inner .c-modal--content-scroll__area {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  right: 2.8rem;
  width: 50%;
  top: 6.3rem;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1rem;
  border-radius: 7px;
}

div.inner .c-modal--content-scroll__area::before {
  content: "";
  position: absolute;
  top: -14px;
  right: 1rem;
  margin-left: -16px;
  border: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 2;
}

div.inner .c-modal--content-scroll__area .fa-times-circle {
  cursor: pointer;
  position: absolute;
  right: 0.7rem;
  top: 0.5rem;
  font-size: 1.5rem;
  color: #aaa;
}

div.inner .c-modal--content-scroll__area ul {
  text-align: left;
}

div.inner .c-modal--content-scroll__area ul li h4 {
  margin-top: 1rem;
}

div.inner .c-modal--content-scroll__footer {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: absolute;
  margin: 0rem 0 1.5rem;
  height: 10%;
  bottom: 0;
}

div.inner .c-modal--content-scroll__footer .c-form__item {
  margin-top: 0 !important;
}

div.inner .c-modal--content-scroll__footer--sabu {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: absolute;
  margin: 0rem 0 1.5rem;
  bottom: 0;
}

div.inner .c-modal--content-scroll__footer--sabu .c-form__list--button .c-form__item:first-of-type {
  margin-top: 0;
}

div.inner .c-modal--map {
  opacity: 0;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1.5rem;
  border-radius: 7px;
  pointer-events: none;
  background-color: #fff;
  text-align: left;
  font-weight: normal;
}

div.inner .c-modal--map i {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
}

div.inner .c-modal--map .link {
  border-bottom: solid 1px #231815;
  font-weight: bold;
}

div.inner .c-modal--map--right {
  opacity: 0;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1.5rem;
  border-radius: 7px;
  pointer-events: none;
  background-color: #fff;
  text-align: left;
  font-weight: normal;
}

div.inner .c-modal--map--right i {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
}

div.inner .c-modal--map--right .link {
  border-bottom: solid 1px #231815;
  font-weight: bold;
}

div.inner .c-modal--calendar {
  opacity: 0;
  position: absolute;
  z-index: 3;
  font-size: 13px;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1.5rem;
  border-radius: 7px;
  pointer-events: none;
  background-color: #fff;
  text-align: left;
  font-weight: normal;
}

div.inner .c-modal--calendar i {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
}

.p-ticketSelect__bod div.inner .c-modal--calendar {
  z-index: 10000;
}

div.inner .c-modal--calendar .vc-container {
  pointer-events: none;
}

div.inner .c-modal--calendar .vc-container .calender-highlight {
  background-color: #333;
  border-radius: 3px;
}

div.inner .c-modal--calendar .vc-container .vc-grid-cell:nth-of-type(1) > .vc-weekday {
  color: pink;
}

div.inner .c-modal--calendar .vc-container .vc-grid-cell:nth-of-type(7) > .vc-weekday {
  color: lightskyblue;
}

@media all and (-ms-high-contrast: none) {
  div.inner .c-modal--calendar .vc-container {
    pointer-events: none;
  }

  div.inner .c-modal--calendar .vc-grid-container {
    width: 100%;
    display: -ms-grid;
    margin-top: 12px;
  }

  div.inner .c-modal--calendar .vc-weeks {
    padding: 5px 6px 7px 6px;
  }

  div.inner .c-modal--calendar div.inner .c-modal--calendar div.inner .c-modal--calendar {
    background-color: #333;
    border-radius: 3px;
  }

  div.inner .c-modal--calendar .vc-day-content {
    min-height: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
    margin: 0.2rem 0.2rem;
  }

  div.inner .c-modal--calendar .vc-text-white {
    background-color: #333;
    border-radius: 3px;
  }

  div.inner .c-modal--calendar .vc-grid-cell:nth-of-type(1) > .vc-weekday {
    color: pink;
  }

  div.inner .c-modal--calendar .vc-grid-cell:nth-of-type(7) > .vc-weekday {
    color: lightskyblue;
  }
}

div.inner .c-modal--calendar .close {
  margin: 0;
}

div.inner .c-modal--price {
  opacity: 0;
  position: absolute;
  z-index: 1;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1.5rem;
  border-radius: 7px;
  pointer-events: none;
  background-color: #fff;
  text-align: left;
  font-weight: normal;
  left: 5%;
  right: 5%;
}

div.inner .c-modal--price .close {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
}

div.inner .c-modal--price .link {
  border-bottom: solid 1px #231815;
  font-weight: bold;
}

.show-modal {
  opacity: 1 !important;
  visibility: visible !important;
}

div.inner .c-modal--holder_name {
  opacity: 0;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  display: block;
  -webkit-box-shadow: 0 0 5px #aaa;
          box-shadow: 0 0 5px #aaa;
  padding: 1.5rem;
  border-radius: 7px;
  background-color: #fff;
  text-align: left;
  font-weight: normal;
  max-width: 300px;
  pointer-events: none;
  white-space: normal;
  text-indent: -1em;
}

div.inner .c-modal--holder_name i {
  position: absolute;
  right: 0.3rem;
  top: 0.3rem;
  font-size: 1.5rem;
  color: #aaa;
  cursor: pointer;
}

div.inner .c-modal--holder_name.show-modal {
  pointer-events: auto;
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  50% {
    display: block;
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }

  100% {
    display: block;
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  1% {
    display: block;
    opacity: 0;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }

  50% {
    display: block;
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }

  100% {
    display: block;
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

div.inner .c-table {
  table-layout: fixed;
  width: 100%;
  font-size: 1rem;
}

div.inner .c-table tr:last-of-type td {
  border: none;
}

div.inner .c-table tr:first-of-type th {
  padding-top: 0;
}

div.inner .c-table th {
  display: block;
  text-align: left;
  padding-top: 1rem;
  font-weight: bold;
}

div.inner .c-table td {
  display: block;
  width: 100%;
  border-bottom: 2px solid #f7f7f7;
  padding-bottom: 1rem;
  text-align: left;
  border-top: 0;
}

div.inner .c-table--side {
  width: 100%;
}

div.inner .c-table--side:first-of-type {
  margin-top: 0.75rem;
}

div.inner .c-table--side tr {
  border-bottom: 2px solid #f7f7f7;
}

div.inner .c-table--side tr:last-of-type {
  border-bottom: 0;
}

div.inner .c-table--side tr:first-of-type {
  border-bottom: 2px solid #f7f7f7;
}

div.inner .c-table--side tr--contents {
  border-bottom: 0;
}

div.inner .c-table--side th {
  text-align: left;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-weight: bold;
}

div.inner .c-table--side td {
  text-align: right;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

div.inner .c-table--contents {
  width: 100%;
}

div.inner .c-table--contents:first-of-type {
  margin-top: 0.75rem;
}

div.inner .c-table--contents tr {
  border-bottom: 0;
}

div.inner .c-table--contents tr:last-of-type {
  border-bottom: 2px solid #f7f7f7;
}

div.inner .c-table--contents th {
  text-align: left;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: bold;
}

div.inner .c-table--contents td {
  text-align: right;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

div.inner .c-table--contents-side {
  width: 100%;
}

div.inner .c-table--contents-side tr {
  border-bottom: 2px solid #f7f7f7;
}

div.inner .c-table--contents-side th {
  display: block;
  text-align: left;
  padding-top: 1.25rem;
  font-weight: bold;
}

div.inner .c-table--contents-side td {
  display: block;
  padding-left: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

div.inner .c-table--contents-side td table {
  width: 100%;
}

div.inner .c-table--contents-side td table tr {
  border: 0;
}

div.inner .c-table--contents-side td table th {
  padding-top: 0;
}

div.inner .c-table--contents-side td table td {
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
}

div.inner .c-table--contents-side td table td span {
  float: right;
}

div.inner .c-aside {
  margin-top: 3.125rem;
  width: 100%;
  height: 130px;
}

div.inner .c-aside--inner {
  width: 90%;
  margin: 0 auto;
}

div.inner .c-aside ul {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 130px;
}

div.inner .c-aside li {
  width: 280px;
  height: 55px;
  margin: auto;
}

div.inner .c-aside .button {
  margin-top: 0;
  width: 100%;
  height: 100%;
}

div.inner .c-aside .negative {
  margin: 1.25rem 0 0 0;
  width: 100%;
  height: 100%;
}

div.inner .c-term {
  border: 1px solid #ccc;
  padding: 40px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

div.inner .c-term__title {
  text-align: center;
}

div.inner .c-term__title h3 {
  font-weight: bold;
  position: relative;
  display: inline-block;
}

div.inner .c-term__title h3::after {
  content: "\5FC5\9808";
  color: #dc3535;
  border: 1px solid #dc3535;
  font-size: .75rem;
  padding: 0 .25rem;
  margin-left: 0.5rem;
}

div.inner .c-term__title p {
  margin-top: 1rem;
}

div.inner .c-term__content {
  text-align: center;
}

div.inner .c-term__content button {
  display: block;
  background-color: #eee;
  color: #333;
  border: 1px solid #ccc;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

div.inner .c-term__content label {
  display: inline-block;
}

.c-input--checkbox {
  display: none !important;
}

.c-input--checkbox + label {
  margin-top: 1.25rem;
  position: relative;
}

.c-input--checkbox + label:before {
  content: "";
  display: inline-block;
  margin-right: 4px !important;
  width: 13px !important;
  height: 13px !important;
  border: 1px solid #999;
  position: relative;
}

.c-input--checkbox:checked + label:before {
  content: "";
  display: inline-block;
  margin-right: 4px !important;
  width: 13px !important;
  height: 13px !important;
  border: 1px solid #231815;
  position: relative;
}

.c-input--checkbox:checked + label:after {
  content: "";
  color: #231815;
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 2px;
  width: 10px;
  height: 6px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-input--radio {
  display: none !important;
}

.c-input--radio + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-input--radio + label::before {
  content: "";
  display: inline-block;
  margin-right: 4px !important;
  width: 13px !important;
  height: 13px !important;
  border: 1px solid #999;
  position: relative;
  border-radius: 100%;
}

.c-input--radio:checked + label::before {
  background-color: #231815;
  border: solid 1px #231815;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  box-shadow: 0 0 0 2px #fff inset;
  -webkit-box-shadow: 0 0 0 2px #fff inset;
  -moz-box-shadow: 0 0 0 2px #fff inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-input--radio:focus {
  outline: none;
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.5;
  z-index: 9;
  margin: 0;
}

div.inner .c-link__list {
  text-align: right;
}

.c-price-list__content {
  background-color: #fff;
  min-height: 65vh;
  width: 85%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  z-index: 10;
  overflow-y: auto;
}

.c-price-list__header {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.c-price-list__header .close_btn {
  position: absolute;
  right: .7rem;
  top: .3rem;
  font-size: 1.7rem;
  font-weight: bold;
  cursor: pointer;
}

.c-price-list__body {
  min-height: 6rem;
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.c-price-list__list--category,
.c-price-list__list--subcategory {
  width: 100%;
}

.c-price-list__list--category li,
.c-price-list__list--subcategory li {
  font-size: 0.8rem;
  color: #231815;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  font-weight: bold;
}

.c-price-list__list--category li.checked,
.c-price-list__list--subcategory li.checked {
  background-color: #231815;
  color: #fff;
}

.c-price-list__list--category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #231815;
}

.c-price-list__list--category li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.c-price-list__list--subcategory {
  display: -webkit-box;
}

.c-price-list__list--subcategory li {
  overflow-x: auto;
  border: 2px solid #231815;
  border-radius: 5px;
  margin-top: 0.3rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  margin-right: 0.15rem;
  margin-left: 0.15rem;
  min-width: 40px;
}

.c-price-list__list--subcategory li:first-of-type {
  margin-left: 0;
}

.c-price-list__footer {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  margin: 0.5rem 0 1.5rem;
}

.c-price-list .close {
  margin: 0;
}

div.inner .c-error--global {
  width: 100%;
  margin: auto;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #dc3535;
  padding-left: 1em;
  text-indent: -0.8em;
}

div.inner .c-error--global i {
  padding-right: 0.3em;
  margin-left: 0.5em;
}

.c-message__text--confirm {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
}

.c-message__text--comp {
  text-align: center;
  margin-bottom: 3rem;
}

.c-message__text--title {
  text-align: center;
}

.c-message__text {
  text-align: center;
}

.c-message__text--long {
  text-align: left;
  margin-top: 2rem;
}

.c-message__text--last-left {
  text-align: left;
  margin-top: 2rem;
}

div.inner .c-accordion--off {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

div.inner .c-accordion--on {
  max-height: 100rem;
  opacity: 1;
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}

div.inner .c-qr {
  text-align: center;
  margin-bottom: 1rem;
}

div.inner .c-qr__frame--header {
  width: 90%;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: auto;
}

div.inner .c-qr__frame--wrap {
  display: inline-block;
  width: 90vw;
}

div.inner .c-qr__frame--code {
  width: 90%;
  min-width: 16rem;
  border: 1px solid #ccc;
  border-bottom: none;
  text-align: center;
  overflow: hidden;
  position: relative;
  margin: auto;
}

div.inner .c-qr__frame--code p {
  padding: 1rem;
  background-color: #f7f7f7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}

div.inner .c-qr__frame--code p i {
  margin-right: 0.5rem;
}

div.inner .c-qr__frame--code svg {
  width: 70% !important;
  margin-top: 1.5rem;
}

div.inner .c-qr__frame--contents {
  width: 90%;
  min-width: 16rem;
  border: 1px solid #ccc;
  border-top: 0;
  margin: auto;
}

div.inner .c-qr__frame--contents div p {
  font-size: 0.8rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

div.inner .c-qr__frame--contents--passport {
  border-top: 1px solid #ccc;
}

div.inner .c-qr__frame--note {
  width: 90%;
  min-width: 16rem;
  border: 1px solid #ccc;
  border-top: 0;
  margin: auto;
}

div.inner .c-qr__frame--note p {
  padding: 1rem;
  font-size: 0.7rem;
}

div.inner .c-qr__frame--wrap-pass {
  display: inline-block;
}

div.inner .c-qr__frame-header-pass {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 90%;
  margin: auto;
}

div.inner .c-qr__frame-passport-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  margin: auto;
}

div.inner .c-qr__frame-passport-item {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

div.inner .c-qr__frame-passport-left {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

div.inner .c-qr__frame-passport-right {
  display: none;
}

div.inner .c-qr__frame-passport-useday {
  border-bottom: 1px solid #ccc;
}

div.inner .c-qr__frame-passport-useday p {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

div.inner .c-qr__frame-passport {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.inner .c-qr__frame-passport-title {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: #f7f7f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.inner .c-qr__frame-passport i.student {
  height: 0.9rem;
}

div.inner .c-qr__frame-passport i.adult {
  height: 1.1rem;
}

div.inner .c-qr__frame-passport i.children {
  height: 0.8rem;
}

div.inner .c-qr__frame-passport-date {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.7rem;
}

div.inner .c-qr__frame-passport-date p {
  font-size: 0.7rem;
  padding: 1rem;
}

div.inner .c-qr__frame-usable-num-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  margin: auto;
}

div.inner .c-qr__frame-usable-num-item {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  width: 100%;
}

div.inner .c-qr__frame-usable-num-left {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

div.inner .c-qr__frame-usable-num-right {
  display: none;
}

div.inner .c-qr__frame-usable-num-useday {
  border-bottom: 1px solid #ccc;
}

div.inner .c-qr__frame-usable-num-useday p {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

div.inner .c-qr__frame-usable-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.inner .c-qr__frame-usable-num-title {
  border-bottom: 1px solid #ccc;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background-color: #f7f7f7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.inner .c-qr__frame-usable-num-date {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.inner .c-qr__frame-usable-num-date p {
  font-size: 0.7rem;
  padding: 1rem;
}

div.inner .c-qr__frame-note-num {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: auto;
}

div.inner .c-qr__frame-note-num p {
  font-size: 0.7rem;
  padding: 1rem;
}

div.inner .c-qr__ticket-table {
  width: 100%;
}

div.inner .c-qr__ticket-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  margin-left: 1rem;
  margin-right: 1rem;
}

div.inner .c-qr__ticket-table tr:last-of-type {
  border-bottom: 0;
}

div.inner .c-qr__ticket-table tr th {
  text-align: left;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-size: 13px;
  padding-right: 1em;
}

div.inner .c-qr__ticket-table tr td {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  font-size: 11px;
  -ms-flex-item-align: center;
      align-self: center;
}

div.inner .c-qr__ticket-num {
  text-align: right;
  display: flow-root;
  font-weight: normal;
}

div.inner .c-qr__ticket-num div {
  display: inline;
}

div.inner .c-qr__ticket-num div > div {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  padding-right: 0.5rem;
  display: inline;
  margin: 0;
  font-weight: normal;
}

div.inner .c-qr__note {
  margin: 1rem;
  margin-top: 0rem;
}

div.inner .c-qr__map-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

div.inner .c-qr__map-icon:hover {
  opacity: 0.5;
}

div.inner .c-qr__map-icon i {
  width: 0.8rem;
  height: 1rem;
}

div.inner .c-qr .c-modal--map {
  left: 88px;
}

div.inner .c-qr__icon--print {
  cursor: pointer;
  position: absolute;
  display: inline-block;
  top: 4.8rem;
  right: 2.5rem;
  color: #0f73a0;
}

div.inner .c-qr__icon--print .fa-print {
  font-size: 1.2rem;
  padding-right: 0.3rem;
}

div.inner .c-qr__hidden-sp {
  display: none !important;
}

div.inner .c-qr__hidden-sp--date {
  display: none !important;
}

div.inner .c-qr__hidden-pc-sp {
  display: none;
}

div.inner .c-qr__ticket-name {
  position: relative;
}

div.inner .c-qr__ticket-name > div:first-child {
  padding-bottom: 0.4em;
  padding-top: 0.4em;
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
}

div.inner .c-qr__ticket-name > div:first-child p {
  max-width: 15rem;
}

div.inner .c-qr .show-modal {
  pointer-events: all;
}

div.inner .c-qr__ticket-title {
  background-color: #f7f7f7;
  border-top: 1px solid #ccc;
}

div.inner .c-qr__ticket-title th {
  padding-bottom: 10px;
  padding-top: 10px;
}

div.inner .c-qr__ticket-title i.student {
  height: 0.9rem;
}

div.inner .c-qr__ticket-title i.adult {
  height: 1.1rem;
}

div.inner .c-qr__ticket-title i.children {
  height: 0.8rem;
}

div.inner .c-qr__ticket-sp-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div.inner .c-qr__table-data-sp-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #ccc;
}

div.inner .c-qr__table-data-sp-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #ccc;
}

div.inner .c-qr__table-data-sp-remarks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-top: 1px solid #ccc;
}

div.inner .c-qr__table-data-sp-1 {
  background-color: #f7e6de;
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.7rem;
}

div.inner .c-qr__table-data-sp-2 {
  background-color: #eff7de;
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.7rem;
  border-left: 1px solid #ccc;
}

div.inner .c-qr__table-data-sp-3 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

div.inner .c-qr__table-data-sp-4 {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-left: 1px solid #ccc;
}

div.inner .c-qr__table-data-sp-4-top {
  height: 1rem;
}

div.inner .c-qr__table-data-sp-4-center {
  font-weight: bold;
}

div.inner .c-qr__table-data-sp-4-bottom {
  height: 1rem;
  width: 100%;
  font-size: 0.7rem;
  text-align: right;
  padding-right: 0.7rem;
}

div.inner .c-qr__table-data-sp-5 {
  -ms-flex-preferred-size: 35%;
      flex-basis: 35%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.6rem;
}

div.inner .c-qr__table-data-sp-6 {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.6rem;
  border-left: 1px solid #ccc;
  text-align: left;
}

/* ==================================================================
Desktop
================================================================== */

@media screen and (min-width: 1024px) {
  div.inner .c-progressbar {
    margin-bottom: 5rem;
    border-top: 0;
    padding-top: 0;
    padding-bottom: 3rem;
  }

  div.inner .c-progressbar ul {
    margin: 0;
    padding: 0;
    counter-reset: step;
    z-index: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  div.inner .c-progressbar ul li {
    list-style-type: none;
    font-size: 12px;
    position: relative;
    text-align: center;
    color: #aaa;
    font-weight: bold;
    width: 33%;
  }

  div.inner .c-progressbar ul li:before {
    width: 30px;
    height: 30px;
    content: counter(step);
    counter-increment: step;
    line-height: 30px;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #eee;
  }

  div.inner .c-progressbar ul li:after {
    width: 100%;
    height: 2px;
    content: '';
    position: absolute;
    background-color: #eee;
    top: 15px;
    left: -50%;
    z-index: -1;
  }

  div.inner .c-progressbar ul li:first-child:after {
    content: none;
  }

  div.inner .c-progressbar ul li.active {
    color: green;
  }

  div.inner .c-progressbar ul li.active:before {
    background-color: #55b776;
    color: #fff;
  }

  div.inner .c-progressbar ul li.active + li:after {
    background-color: #55b776;
  }

  div.inner .c-form--side .c-form__title-wrap {
    text-align: left;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    margin: 0;
    padding: 0;
  }

  div.inner .c-form--side .c-form__list {
    width: 80%;
  }

  div.inner .c-form--side .c-form__list:lang(en) {
    width: 100%;
  }

  div.inner .c-form--side .c-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }

  div.inner .c-form--side .c-form__item--side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    width: 100%;
    margin-top: 1.875rem;
  }

  div.inner .c-form--side .c-form__item--side .c-form__title-wrap {
    width: 30% !important;
  }

  div.inner .c-form--side .c-form__item--side .c-form__input-wrap--side {
    width: 70% !important;
    display: inline-block;
  }

  div.inner .c-form--side .c-form__item--side .c-form__input-wrap--side .c-form__input-list {
    width: 100%;
  }

  div.inner .c-form--side .c-form__label {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    width: 200px;
    margin-left: 0;
  }

  div.inner .c-form--side .c-form__label--required {
    margin-left: 0;
    text-align: left;
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
    width: 200px;
  }

  div.inner .c-form--side .c-form__input {
    width: 100%;
  }

  div.inner .c-form--side .c-form__input--postal-code {
    width: 20%;
    margin: 0 1rem;
  }

  div.inner .c-form--side .c-form__input-list {
    width: 100%;
  }

  div.inner .c-form--side .c-form__input-wrap {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 !important;
  }

  div.inner .c-form--side .c-form__input-wrap--side {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 !important;
  }

  div.inner .c-form--side .c-form__input-wrap--side span.c-form__error {
    display: inline;
    margin: auto;
    width: 25rem;
  }

  div.inner .c-form--side .c-form__input-wrap span.c-form__error {
    display: inline;
    margin: auto;
    width: auto;
  }

  div.inner .c-form--side .c-form__select {
    width: 100%;
  }

  div.inner .c-form--side .c-form__select-wrap {
    text-align: left;
    width: 70%;
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 !important;
  }

  div.inner .c-form--side .c-form__select-list {
    width: 100%;
  }

  div.inner .c-form--side .c-form__select--birthday {
    text-align: left;
    width: 18%;
    padding-right: 1rem;
  }

  div.inner .c-form--side .c-form__select--birthday:lang(ja):first-of-type {
    width: 22%;
  }

  div.inner .c-form--side .c-form__select--birthday:lang(en):nth-of-type(3) {
    width: 22%;
  }

  div.inner .c-form--side .c-form__radiotWrap {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    padding: 0 !important;
  }

  div.inner .c-form--side .c-form__bottom {
    text-align: center;
  }

  div.inner .c-form--side .c-form #card_number {
    width: 100%;
  }

  div.inner .c-form--side .c-form__textarea {
    width: 100%;
  }

  div.inner .c-form--side .c-form__textarea-wrap {
    -ms-flex-preferred-size: 70% !important;
        flex-basis: 70% !important;
    padding: 0 !important;
  }

  div.inner .c-form__item {
    text-align: center;
  }

  div.inner .c-form__title-wrap {
    width: 500px;
    text-align: left;
    display: inline-block;
    padding: 0;
  }

  div.inner .c-form__label {
    display: inline;
    width: 500px;
    margin: auto;
    text-align: left;
  }

  div.inner .c-form__label--required {
    width: 500px;
    margin: auto;
    text-align: left;
  }

  div.inner .c-form__input {
    width: 100%;
  }

  div.inner .c-form__input-wrap span.c-form__error {
    display: inline;
    margin: auto;
    width: 500px;
    text-align: left;
  }

  div.inner .c-form__select {
    width: 500px;
  }

  div.inner .c-form__textarea {
    width: 500px;
  }

  div.inner .c-form__icon {
    position: absolute;
    top: 0.7rem;
    right: 2rem;
  }

  div.inner .c-form__text {
    text-align: center;
  }

  div.inner .c-modal__content {
    min-height: 18rem;
    width: 30rem;
  }

  div.inner .c-modal .close {
    margin: 0;
  }

  div.inner .c-modal--content-scroll__content {
    width: 40rem;
    max-width: 50rem;
    height: 36rem;
  }

  div.inner .c-modal--content-scroll__body {
    width: 100%;
    height: 55vh;
  }

  div.inner .c-modal--content-scroll__body--sabu {
    width: 28rem;
    border: 0;
  }

  div.inner .c-modal--content-scroll__area {
    right: 4rem;
  }

  div.inner .c-table tr:last-of-type th {
    border: none;
  }

  div.inner .c-table th {
    display: table-cell;
    text-align: left;
    width: 50%;
  }

  div.inner .c-table td {
    display: table-cell;
  }

  div.inner .c-table th,
  div.inner .c-table td {
    border-bottom: 2px solid #f7f7f7;
    padding-left: 1.25rem !important;
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  div.inner .c-table--side th {
    padding: 1.25rem;
  }

  div.inner .c-table--side td {
    padding: 1.25rem;
  }

  div.inner .c-table--contents th {
    padding: 1.25rem;
  }

  div.inner .c-table--contents td {
    padding: 1.25rem;
  }

  div.inner .c-table--contents-side th {
    padding-left: 1.25rem;
  }

  div.inner .c-table--contents-side td {
    padding-left: 2.5rem;
  }

  div.inner .c-table--contents-side td table th {
    padding-left: 0;
    padding-right: 1.25rem;
  }

  div.inner .c-table--contents-side td table td {
    padding-right: 1.25rem;
  }

  div.inner .c-aside {
    margin-top: 50px;
  }

  div.inner .c-aside ul {
    margin: 0 auto;
    text-align: center;
  }

  div.inner .c-aside li {
    width: 280px;
    height: 55px;
    display: inline-block;
    margin: 0 20px 0 0;
  }

  div.inner .c-aside button {
    margin: 0;
  }

  div.inner .c-aside .negative {
    margin: 0;
  }

  div.inner .c-error--global {
    width: 850px;
    text-align: center;
  }

  .c-message__text--confirm {
    margin-top: 2rem;
  }

  .c-message__text--comp {
    margin-bottom: 3rem;
  }

  .c-message__text--title-long {
    width: 500px;
    margin: auto;
    text-align: center;
  }

  .c-message__text--title-medium {
    text-align: center;
  }

  .c-message__text--long {
    text-align: center;
  }

  div.inner .c-qr__frame--header {
    width: 100%;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin: auto;
  }

  div.inner .c-qr__frame--wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 100%;
    border: 1px solid #ccc;
  }

  div.inner .c-qr__frame--code {
    border: 0;
    min-width: 20%;
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    margin-top: 0;
    padding-top: 1rem;
    position: relative;
  }

  div.inner .c-qr__frame--code p {
    background-color: unset;
    border: unset;
    padding: 0;
  }

  div.inner .c-qr__frame--code svg {
    width: 80% !important;
    height: 65%;
    margin: 0 auto;
  }

  div.inner .c-qr__frame--contents {
    border-right: 1px solid #ccc !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }

  div.inner .c-qr__frame--contents div p {
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  div.inner .c-qr__frame--contents--date {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-size: 1rem;
  }

  div.inner .c-qr__frame--contents--ticket {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  div.inner .c-qr__frame--contents--passport {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  div.inner .c-qr__frame--wrap-pass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  div.inner .c-qr__frame-header-pass {
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin: auto;
  }

  div.inner .c-qr__frame-passport-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  div.inner .c-qr__frame-passport-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }

  div.inner .c-qr__frame-passport-left {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    border-right: 1px solid #ccc;
  }

  div.inner .c-qr__frame-passport-right {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  div.inner .c-qr__frame-passport-right-justified {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  div.inner .c-qr__frame-passport-useday {
    display: none;
  }

  div.inner .c-qr__frame-passport {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: 0;
  }

  div.inner .c-qr__frame-passport-title {
    border-bottom: 1px solid #ccc;
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    background-color: #f7f7f7;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  div.inner .c-qr__frame-passport-date {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  div.inner .c-qr__frame-passport-date p {
    font-size: 0.8rem;
    padding: 1rem;
  }

  div.inner .c-qr__frame-passport i.student {
    height: 0.9rem;
  }

  div.inner .c-qr__frame-passport i.adult {
    height: 1.1rem;
  }

  div.inner .c-qr__frame-passport i.children {
    height: 0.8rem;
  }

  div.inner .c-qr__frame-passport-date {
    font-size: 0.8rem;
  }

  div.inner .c-qr__frame-usable-num-all {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }

  div.inner .c-qr__frame-usable-num-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }

  div.inner .c-qr__frame-usable-num-left {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
    border-right: 1px solid #ccc;
  }

  div.inner .c-qr__frame-usable-num-right {
    -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  div.inner .c-qr__frame-usable-num-right-justified {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  div.inner .c-qr__frame-usable-num-useday {
    display: none;
  }

  div.inner .c-qr__frame-usable-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin: auto;
  }

  div.inner .c-qr__frame-usable-num-title {
    -webkit-box-flex: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    background-color: #f7f7f7;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  div.inner .c-qr__frame-usable-num-date {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  div.inner .c-qr__frame-usable-num-date p {
    font-size: 0.8rem;
    padding: 1rem;
  }

  div.inner .c-qr__frame-usable-num i.student {
    height: 0.9rem;
  }

  div.inner .c-qr__frame-usable-num i.adult {
    height: 1.1rem;
  }

  div.inner .c-qr__frame-usable-num i.children {
    height: 0.8rem;
  }

  div.inner .c-qr__frame-note-num {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin: auto;
  }

  div.inner .c-qr__frame-note-num p {
    font-size: 0.8rem;
    padding: 1rem;
  }

  div.inner .c-qr__ticket {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  div.inner .c-qr__ticket-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  div.inner .c-qr__ticket-details tr {
    border-bottom: 10px dotted #ccc;
  }

  div.inner .c-qr__ticket-details tr th {
    text-align: left;
    font-size: 0.9rem;
    margin: 0;
    padding-bottom: 0.4em;
    padding-top: 0.4em;
    width: 23rem;
  }

  div.inner .c-qr__ticket-details tr td {
    font-size: 0.9rem;
    margin: 0;
    padding-bottom: 0;
    padding-top: 0.4em;
    width: 23rem;
  }

  div.inner .c-qr__ticket-details tr.c-qr__date {
    text-align: left;
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: block !important;
    border: 10px;
  }

  div.inner .c-qr__ticket-details tr.c-qr__date th {
    display: block;
    font-size: 0.9rem;
    padding-left: 0;
    font-weight: bold;
  }

  div.inner .c-qr__ticket-details tr.c-qr__date td {
    display: block;
    font-size: 0.9rem;
    margin-top: 0;
    padding-top: 0;
  }

  div.inner .c-qr__ticket-details tr.c-qr__date td P {
    padding-left: 0.4em;
    padding-top: 0.4em;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 0;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind th {
    padding-left: 0;
    width: 38%;
    font-weight: bold;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind td div {
    -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind td div i.student {
    height: 1.1rem;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind td div i.adult {
    height: 1.3rem;
  }

  div.inner .c-qr__ticket-details tr.c-qr__ticket-num--kind td div i.children {
    height: 1rem;
  }

  div.inner .c-qr__ticket-remarks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-top: 1px solid #ccc;
  }

  div.inner .c-qr__map--icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0;
  }

  div.inner .c-qr__map--icon i {
    height: 1rem;
    margin-top: 0.3rem;
  }

  div.inner .c-qr .c-modal--map {
    bottom: 30px;
  }

  div.inner .c-qr__icon--print {
    top: 0.5rem;
    right: 2.5rem;
  }

  div.inner .c-qr__icon--print .fa-print {
    font-size: 1.2rem;
    padding-right: 0.3rem;
  }

  div.inner .c-qr__hidden-pc {
    display: none;
  }

  div.inner .c-qr__hidden-pc-display-print {
    display: none;
  }

  div.inner .c-qr__hidden-sp {
    display: inline-block !important;
  }

  div.inner .c-qr__hidden-pc-sp {
    display: none;
  }

  div.inner .c-qr__note {
    margin-top: 0;
  }

  div.inner .c-qr__note p {
    position: relative;
    font-weight: normal;
    margin-top: 0;
    font-size: 0.8rem;
  }

  div.inner .c-qr__ticket-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  div.inner .c-qr__ticket-name > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }

  div.inner .c-qr__ticket-name > div:first-child {
    padding-right: 1em;
    text-align: left;
    margin: 0;
    padding-bottom: 0.4em;
    padding-top: 0.4em;
    padding-left: 0;
    width: 23rem;
    font-weight: normal;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-left: 0.4em;
  }

  div.inner .c-qr__ticket-name > div:first-child p {
    max-width: 22rem;
  }

  div.inner .c-qr__ticket-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  div.inner .c-qr__ticket-num > div {
    -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%;
    text-align: left;
  }

  div.inner .c-qr__ticket-title {
    background-color: #f7f7f7;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  div.inner .c-qr__ticket-title p {
    font-size: 1rem;
  }

  div.inner .c-qr__ticket-title th {
    padding-bottom: 10px;
    padding-top: 10px;
    border: 1px solid #ccc;
  }

  div.inner .c-qr__ticket-title i.student {
    height: 0.9rem;
  }

  div.inner .c-qr__ticket-title i.adult {
    height: 1.1rem;
  }

  div.inner .c-qr__ticket-title i.children {
    height: 0.8rem;
  }

  div.inner .c-qr__table-data-1 {
    background-color: #f7e6de;
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    border-right: 1px solid #ccc;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  div.inner .c-qr__table-data-2 {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    border-right: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  div.inner .c-qr__table-data-3 {
    background-color: #eff7de;
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    border-right: 1px solid #ccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.8rem;
  }

  div.inner .c-qr__table-data-4 {
    -ms-flex-preferred-size: 65%;
        flex-basis: 65%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  div.inner .c-qr__table-data-4 ul {
    padding-left: 0;
    display: inline-block;
    list-style-type: none;
  }

  div.inner .c-qr__table-data-4 ul li {
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
  }

  div.inner .c-qr__table-data-4-left {
    -ms-flex-preferred-size: 18%;
        flex-basis: 18%;
  }

  div.inner .c-qr__table-data-4-center {
    -ms-flex-preferred-size: 64%;
        flex-basis: 64%;
    text-align: center;
  }

  div.inner .c-qr__table-data-4-right {
    -ms-flex-preferred-size: 18%;
        flex-basis: 18%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 0.8rem;
    padding-right: 1.0rem;
  }

  div.inner .c-qr__table-data-4-right span {
    text-align: right;
  }

  div.inner .c-qr__table-data-5 {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    border-right: 1px solid #ccc;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  div.inner .c-qr__table-data-6 {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
  }
}

@media print {
  .p-reservations article.c-qr,
  .p-top article.c-qr {
    text-align: left;
    width: 48%;
    -webkit-column-break-after: page;
       page-break-after: page;
            break-after: page;
  }

  .p-reservations article.c-qr .only_pc,
  .p-top article.c-qr .only_pc {
    display: none;
  }

  .p-reservations article.c-qr .c-qr__hidden-pc-display-print,
  .p-top article.c-qr .c-qr__hidden-pc-display-print {
    display: inline-block;
  }

  .p-reservations article.c-qr .c-qr__hidden-pc-sp,
  .p-top article.c-qr .c-qr__hidden-pc-sp {
    display: inline-block;
  }

  .p-reservations article.c-qr .c-qr__ticket-details-pc,
  .p-top article.c-qr .c-qr__ticket-details-pc {
    display: none;
  }

  .p-reservations article.c-qr .c-qr__frame--contents--date,
  .p-top article.c-qr .c-qr__frame--contents--date {
    display: none;
  }

  .p-reservations article.c-qr .c-qr__frame--code,
  .p-top article.c-qr .c-qr__frame--code {
    width: 85%;
    border: 2px solid #ccc;
    border-bottom: none;
  }

  .p-reservations article.c-qr .c-qr__frame--code p,
  .p-top article.c-qr .c-qr__frame--code p {
    border-bottom: 2px solid #ccc;
  }

  .p-reservations article.c-qr .c-qr__frame--code svg,
  .p-top article.c-qr .c-qr__frame--code svg {
    margin-bottom: -1.5rem;
    margin-top: 1.5rem;
  }

  .p-reservations article.c-qr .c-qr__frame--contents,
  .p-top article.c-qr .c-qr__frame--contents {
    width: 85%;
    border: 2px solid #ccc;
    border-top: 0;
  }

  .p-reservations article.c-qr .c-qr__table-data-sp-2,
  .p-reservations article.c-qr .c-qr__table-data-sp-4,
  .p-top article.c-qr .c-qr__table-data-sp-2,
  .p-top article.c-qr .c-qr__table-data-sp-4 {
    border-left: 2px solid #ccc;
  }

  .p-reservations article.c-qr .c-qr__frame--note,
  .p-top article.c-qr .c-qr__frame--note {
    width: 85%;
    border: 2px solid #ccc;
    border-top: 0;
  }

  .p-reservations article.c-qr .c-qr__table-data-sp-top div,
  .p-top article.c-qr .c-qr__table-data-sp-top div {
    text-align: center;
  }

  .p-reservations article.c-qr .c-qr__ticket-title,
  .p-reservations article.c-qr .c-qr__table-data-sp-bottom,
  .p-reservations article.c-qr .c-qr__table-data-sp-top,
  .p-top article.c-qr .c-qr__ticket-title,
  .p-top article.c-qr .c-qr__table-data-sp-bottom,
  .p-top article.c-qr .c-qr__table-data-sp-top {
    border-top: 2px solid #ccc;
  }

  .p-reservations article.c-qr__coupon,
  .p-top article.c-qr__coupon {
    display: none;
  }

  .p-reservations article.select-date,
  .p-top article.select-date {
    display: none;
  }

  .p-reservations article.top-calendar,
  .p-top article.top-calendar {
    display: none;
  }

  .p-reservations article.guide_box,
  .p-top article.guide_box {
    display: none;
  }

  footer,
  header,
  .page_title,
  .page_link,
  .price_list,
  #pagetop,
  .p-top__precautions,
  .c-qr__icon--print,
  .c-qr__map-icon,
  .link,
  .c-form__button-wrap {
    display: none !important;
  }

  i {
    display: inline-block !important;
  }

  body {
    height: 100%;
  }
}

:root {
  --cell-week-height-1: 3.5;
  --cell-week-height-2: 3.5;
  --cell-week-height-3: 3.5;
  --cell-week-height-4: 3.5;
  --cell-week-height-5: 3.5;
  --cell-week-height-6: 3.5;
}

div.inner #calendar .event-calendar,
#rentalCalendar .event-calendar {
  display: none;
}

div.inner #calendar .event-calendar-mobile,
#rentalCalendar .event-calendar-mobile {
  display: block;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper {
  width: 100% !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  margin-bottom: 0.5rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f4f4f4;
  color: #bbb;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: inset 0 3px #f4f4f4;
          box-shadow: inset 0 3px #f4f4f4;
  cursor: pointer;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li.selected,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li.selected {
  background-color: #fff;
  color: #231815;
  -webkit-box-shadow: inset 0 3px #231815;
          box-shadow: inset 0 3px #231815;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li:nth-child(3),
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-tab li:nth-child(3) {
  display: none;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-notice,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-notice {
  margin-bottom: 1.5rem;
  text-align: right;
  font-size: 11px !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-notice div a,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-notice div a {
  border-bottom: solid 1px;
  font-weight: bold;
  font-size: 0.9rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup {
  background-color: transparent;
  border: 0;
  border-bottom: 1px dotted #ccc;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  padding-bottom: 1rem;
  border-radius: 0;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-dateRange,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-weekRange,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-dateRange,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-weekRange {
  border-right: 1px dotted #ccc;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl {
  width: 90%;
  margin: 0 auto;
  z-index: 1;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before {
  content: "";
  display: block !important;
  top: 1.7rem;
  border: 3px solid #231815;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.7rem !important;
  height: 0.7rem !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth {
  pointer-events: none;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth:before,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth:before,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth:before,
div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth:before {
  border-color: #ccc;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn {
  top: 1px;
  left: 0;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before {
  border-top: 0;
  border-right: 0;
  float: right;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn {
  top: 1px;
  right: 0;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before {
  border-left: 0;
  border-bottom: 0;
  float: left;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner {
  width: 100%;
  float: unset;
  margin: 0 auto;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body {
  padding: 0;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body p:first-of-type,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body p:first-of-type {
  font-size: 1.1rem !important;
  font-weight: bold;
  color: #231815;
  padding-top: 0.3rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--red,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--red {
  color: #ec5252;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--blue,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--blue {
  color: #0192c7;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--gray,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--gray {
  color: #bbb !important;
  background: #eee !important;
  pointer-events: none !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange {
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
  padding-top: 0;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span {
  width: 13.58571428571429% !important;
  margin: 1px;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:first-of-type,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:first-of-type {
  color: #ec5252;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:last-of-type,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:last-of-type {
  color: #0192c7;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange {
  padding-top: 0;
  font-size: 0;
  display: block;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell {
  width: 13.58571428571429% !important;
  height: 3.5rem !important;
  overflow: hidden;
  position: relative;
  font-weight: bold;
  font-size: 14px;
  margin: 1px;
  -webkit-box-shadow: 0px 0px 0px 1px #eee inset;
          box-shadow: 0px 0px 0px 1px #eee inset;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-1,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-1 {
  height: calc(var(--cell-week-height-1) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-2,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-2 {
  height: calc(var(--cell-week-height-2) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-3,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-3 {
  height: calc(var(--cell-week-height-3) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-4,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-4 {
  height: calc(var(--cell-week-height-4) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-5,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-5 {
  height: calc(var(--cell-week-height-5) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-6,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:not(.datepicker-item-gray).cell-week-6 {
  height: calc(var(--cell-week-height-6) * 1rem) !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div {
  position: absolute;
  top: 0;
  left: 12%;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail {
  height: 3rem !important;
  width: 100% !important;
  background-color: #fff;
  display: block;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail.is-selected div.day-cell--day,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail.is-selected div.day-cell--day {
  background-color: #fff;
  font-size: 2.2rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail div.day-cell--day,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail div.day-cell--day {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 2rem;
  top: 0;
  left: 0;
  width: 6rem;
  height: 100%;
  padding-top: 0.8rem;
  padding-left: 1rem;
  background-color: #f4f4f4;
  text-align: left;
  -webkit-box-shadow: 0px 0px 0px 3px #eee inset;
          box-shadow: 0px 0px 0px 3px #eee inset;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail div.day-cell--day .weekDay,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail div.day-cell--day .weekDay {
  font-size: 0.9rem;
  top: 0.8rem;
  left: 3rem;
  position: absolute;
  width: auto;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table {
  display: inline-block;
  height: 2.6rem;
  margin-top: 0.2rem;
  width: 100%;
  padding-left: 6rem;
  overflow: auto;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table tr th,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table tr th {
  text-align: left;
  color: #dc3535;
  font-size: 0.9rem !important;
  line-height: 1rem;
  padding-left: 1rem;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table tr td,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.show-detail table tr td {
  line-height: 1rem;
  padding: 0.4rem;
  font-size: 10px;
  text-align: left;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.hidden-detail,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.hidden-detail {
  height: 0 !important;
  opacity: 0 !important;
  font-size: 0 !important;
  margin: 0 !important;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.is-selected,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.is-selected {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 0px 1px #f4f4f4 inset;
          box-shadow: 0px 0px 0px 1px #f4f4f4 inset;
  font-size: 1.2rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  top: 8%;
  left: 12%;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div.day-cell--msg,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div.day-cell--msg {
  position: relative;
  left: 0;
  margin-top: 2.0rem;
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  line-height: 1rem;
  display: inline-table;
  vertical-align: top;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray {
  opacity: 0;
  pointer-events: none;
}

div.inner #calendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray div,
#rentalCalendar .event-calendar-mobile .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray div {
  color: #ccc;
}

div.inner #calendar .p-calendar__operation,
#rentalCalendar .p-calendar__operation {
  display: block;
  padding-top: 1rem;
  margin: auto;
}

div.inner #calendar .p-calendar__operation .link,
#rentalCalendar .p-calendar__operation .link {
  color: #0f73a0;
  cursor: pointer;
}

#ticketSelect,
#parkSelect {
  width: 100%;
  margin: auto;
}

#ticketSelect .isLoading,
#parkSelect .isLoading {
  background-image: url("/images/loading.gif");
  background-size: 20%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 5;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#ticketSelect .isLoading.isOn,
#parkSelect .isLoading.isOn {
  visibility: visible;
  opacity: 0.72;
}

#ticketSelect .modal,
#parkSelect .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
}

#ticketSelect .modal-overlay,
#parkSelect .modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

#ticketSelect .modal-close-btn,
#parkSelect .modal-close-btn {
  cursor: pointer;
}

#ticketSelect .modal-content,
#parkSelect .modal-content {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  border-radius: .3em;
  padding: 2rem 1rem;
  overflow: hidden;
  min-height: 230px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#ticketSelect .modal-content.login .modal-msg,
#parkSelect .modal-content.login .modal-msg {
  margin-top: 0;
}

#ticketSelect .modal-title,
#parkSelect .modal-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

#ticketSelect .modal-msg,
#parkSelect .modal-msg {
  margin-top: 1.7rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.8rem;
}

#ticketSelect .modal-close-btn,
#parkSelect .modal-close-btn {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.5rem;
}

#ticketSelect .modal-btn-wrap,
#parkSelect .modal-btn-wrap {
  margin: auto;
  text-align: center;
  position: relative;
}

#ticketSelect .modal-btn,
#parkSelect .modal-btn {
  background: #231815;
  color: #fff;
  font-weight: bold !important;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 65%;
  font-weight: normal;
  margin-top: 1rem;
  padding: 0.8rem;
}

#ticketSelect .sendForm,
#parkSelect .sendForm {
  visibility: hidden;
  width: 0;
  height: 0;
}

#ticketSelect .select-tab,
#parkSelect .select-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2.5rem;
  margin-bottom: 0.5rem;
}

#ticketSelect .select-tab li,
#parkSelect .select-tab li {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f4f4f4;
  color: #bbb;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: inset 0 3px #f4f4f4;
          box-shadow: inset 0 3px #f4f4f4;
  cursor: pointer;
}

#ticketSelect .select-tab li.selected,
#parkSelect .select-tab li.selected {
  background-color: #fff;
  color: #231815;
  -webkit-box-shadow: inset 0 3px #231815;
          box-shadow: inset 0 3px #231815;
}

#ticketSelect .select-tab li > a,
#parkSelect .select-tab li > a {
  color: #bbb;
}

#ticketSelect .select-tab li:nth-child(4),
#parkSelect .select-tab li:nth-child(4) {
  display: none;
}

#ticketSelect .select-tab-notice,
#parkSelect .select-tab-notice {
  font-size: 0.7rem;
  text-align: right;
  padding-right: calc(10px + 2.7%);
}

#ticketSelect .p-ticketSelect__wrapper,
#parkSelect .p-ticketSelect__wrapper {
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}

#ticketSelect .p-ticketSelect__overlay,
#parkSelect .p-ticketSelect__overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

#ticketSelect .p-ticketSelect__overlay.isActive,
#parkSelect .p-ticketSelect__overlay.isActive {
  z-index: 3;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
}

#ticketSelect .p-ticketSelect__overlay--tickets-info,
#parkSelect .p-ticketSelect__overlay--tickets-info {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

#ticketSelect .p-ticketSelect__overlay--tickets-info.isActive,
#parkSelect .p-ticketSelect__overlay--tickets-info.isActive {
  z-index: 3;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}

#ticketSelect .p-ticketSelect__overlay--message,
#parkSelect .p-ticketSelect__overlay--message {
  z-index: 4;
  position: absolute;
  background-color: #fff;
  left: 10%;
  right: 10%;
  top: 15%;
  bottom: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__overlay--message > p,
#parkSelect .p-ticketSelect__overlay--message > p {
  text-align: center;
  color: #dc3535;
  font-size: 1.7rem;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__header,
#parkSelect .p-ticketSelect__header {
  z-index: 2;
  background-color: #fff;
  position: relative;
  left: 0;
  right: 0;
}

#ticketSelect .p-ticketSelect__navigation-list,
#parkSelect .p-ticketSelect__navigation-list {
  height: 3rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__navigation-item,
#parkSelect .p-ticketSelect__navigation-item {
  font-weight: bold;
  padding-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__navigation-item:first-of-type,
#parkSelect .p-ticketSelect__navigation-item:first-of-type {
  padding-left: 0.3rem;
  font-size: 1rem;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

#ticketSelect .p-ticketSelect__navigation-item:nth-of-type(2),
#parkSelect .p-ticketSelect__navigation-item:nth-of-type(2) {
  color: #231815;
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ticketSelect .p-ticketSelect__navigation-item:nth-of-type(2) span,
#parkSelect .p-ticketSelect__navigation-item:nth-of-type(2) span {
  font-size: 1rem;
  margin-left: 0.35rem;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__navigation-item:nth-of-type(2) i,
#parkSelect .p-ticketSelect__navigation-item:nth-of-type(2) i {
  width: 1.5rem;
}

#ticketSelect .p-ticketSelect__navigation-item:last-of-type,
#parkSelect .p-ticketSelect__navigation-item:last-of-type {
  font-size: 1.7rem;
  line-height: 1rem;
  z-index: 2;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  text-align: right;
}

#ticketSelect .p-ticketSelect__navigation-item:last-of-type.isNotEnable,
#parkSelect .p-ticketSelect__navigation-item:last-of-type.isNotEnable {
  pointer-events: none;
}

#ticketSelect .p-ticketSelect__day-select,
#parkSelect .p-ticketSelect__day-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0.4rem 0;
  background-color: #fff;
  font-weight: bold;
  min-height: 6rem;
}

#ticketSelect .p-ticketSelect__day-select li,
#parkSelect .p-ticketSelect__day-select li {
  margin-left: 0.25rem;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  text-align: center;
  -webkit-box-shadow: 0px 0px 0px 2px #eee inset;
          box-shadow: 0px 0px 0px 2px #eee inset;
}

#ticketSelect .p-ticketSelect__day-select li:first-of-type,
#parkSelect .p-ticketSelect__day-select li:first-of-type {
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}

#ticketSelect .p-ticketSelect__day-select li:first-of-type > div,
#parkSelect .p-ticketSelect__day-select li:first-of-type > div {
  padding-top: 0;
}

#ticketSelect .p-ticketSelect__day-select li:last-of-type,
#parkSelect .p-ticketSelect__day-select li:last-of-type {
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
}

#ticketSelect .p-ticketSelect__day-select li:last-of-type > div,
#parkSelect .p-ticketSelect__day-select li:last-of-type > div {
  padding-top: 0;
}

#ticketSelect .p-ticketSelect__day-select li div,
#parkSelect .p-ticketSelect__day-select li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.25rem 0;
  font-size: 0.8rem;
}

#ticketSelect .p-ticketSelect__day-select li div small:last-of-type,
#parkSelect .p-ticketSelect__day-select li div small:last-of-type {
  line-height: 1rem;
}

#ticketSelect .p-ticketSelect__day-select li div > i,
#parkSelect .p-ticketSelect__day-select li div > i {
  padding-top: 40%;
  padding-bottom: 25%;
}

#ticketSelect .p-ticketSelect__day-select li div .right-arrow,
#parkSelect .p-ticketSelect__day-select li div .right-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

#ticketSelect .p-ticketSelect__day-select li div .right-arrow:before,
#parkSelect .p-ticketSelect__day-select li div .right-arrow:before {
  width: 0.7rem;
  height: 4.9rem;
  background: darkgray;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

#ticketSelect .p-ticketSelect__day-select li div .right-arrow:after,
#parkSelect .p-ticketSelect__day-select li div .right-arrow:after {
  position: absolute;
  top: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 3rem;
  border: 2.45rem solid transparent;
  border-left: 0.8rem solid darkgray;
}

#ticketSelect .p-ticketSelect__day-select li div .left-arrow,
#parkSelect .p-ticketSelect__day-select li div .left-arrow {
  position: relative;
  display: inline-block;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

#ticketSelect .p-ticketSelect__day-select li div .left-arrow:before,
#parkSelect .p-ticketSelect__day-select li div .left-arrow:before {
  width: 3rem;
  position: absolute;
  top: 0;
  right: 0.7rem;
  margin: auto;
  content: "";
  vertical-align: middle;
  border: 2.45rem solid transparent;
  border-right: 1rem solid darkgray;
}

#ticketSelect .p-ticketSelect__day-select li div .left-arrow:after,
#parkSelect .p-ticketSelect__day-select li div .left-arrow:after {
  position: absolute;
  top: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 0.7rem;
  height: 4.9rem;
  background: darkgray;
}

#ticketSelect .p-ticketSelect__day-select li.selected,
#parkSelect .p-ticketSelect__day-select li.selected {
  background-color: rgba(255, 0, 0, 0.5);
  border: solid 2px red;
  cursor: pointer;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect,
#parkSelect .p-ticketSelect__day-select li.cantSelect {
  color: #bbb;
  background: #eee;
  pointer-events: none;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:first-of-type,
#parkSelect .p-ticketSelect__day-select li.cantSelect:first-of-type {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:first-of-type .left-arrow:before,
#parkSelect .p-ticketSelect__day-select li.cantSelect:first-of-type .left-arrow:before {
  border-right: 1rem solid lightgray;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:first-of-type .left-arrow:after,
#parkSelect .p-ticketSelect__day-select li.cantSelect:first-of-type .left-arrow:after {
  background: lightgray;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:last-of-type,
#parkSelect .p-ticketSelect__day-select li.cantSelect:last-of-type {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #fff;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:last-of-type .right-arrow:before,
#parkSelect .p-ticketSelect__day-select li.cantSelect:last-of-type .right-arrow:before {
  background: lightgray;
}

#ticketSelect .p-ticketSelect__day-select li.cantSelect:last-of-type .right-arrow:after,
#parkSelect .p-ticketSelect__day-select li.cantSelect:last-of-type .right-arrow:after {
  border-left: 0.8rem solid lightgray;
}

#ticketSelect .p-ticketSelect__body,
#parkSelect .p-ticketSelect__body {
  position: relative;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
}

#ticketSelect .p-ticketSelect__body.isDayFixed,
#parkSelect .p-ticketSelect__body.isDayFixed {
  padding-top: 3rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--info,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--info {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 1.5rem 1.5rem 3rem 1.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:first-of-type,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:first-of-type {
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type {
  text-indent: 1rem;
  display: block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type .link,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type .link {
  color: #0f73a0;
  cursor: pointer;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--notice,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--notice {
  color: #dc3535;
  text-align: center;
  margin-top: 1rem;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__message--procession-max,
#parkSelect .p-ticketSelect__body .p-ticketSelect__message--procession-max {
  border: 1px solid #231815;
  border-radius: 5px;
  text-align: center;
  width: 7rem;
  font-size: 11.5px;
  margin: 0 0 0 auto;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table {
  width: 100%;
  overflow-y: auto;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr.isHide,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr.isHide {
  border: 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th {
  height: 100%;
  cursor: pointer;
  text-align: left;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  margin-left: 0;
  margin-top: 0.5rem;
  overflow-x: auto;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isShow,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isShow {
  background: #fff;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide {
  display: none;
  height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div h3,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div h3 {
  font-size: 0;
  padding: 0;
  height: 0;
  line-height: 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div small,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div small {
  font-size: 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div span i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th.isHide div span i {
  height: 0;
  padding-top: 10px;
  padding-right: 10px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title {
  border: 1.5px solid #231815;
  padding: 0.25rem 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title > div,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title > div {
  margin-left: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 {
  height: 100%;
  font-weight: bold;
  display: inline-block;
  white-space: normal;
  line-height: 1.3rem;
  position: relative;
  font-size: 1rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > span {
  left: 0;
  padding: 0 0.5rem;
  color: #fff;
  background: #231815;
  border-radius: 12px;
  line-height: 1rem;
  font-size: 11px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 .badge,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 .badge {
  color: #fff;
  font-weight: bold;
  font-size: 0.8rem;
  border-radius: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: inline-block;
  bottom: 1.5px;
  line-height: 20px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > p {
  font-size: 0.8rem;
  font-weight: normal;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > p i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 > p i {
  margin-right: 4px;
  margin-bottom: 2px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div small,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div small {
  margin-right: 0.3rem;
  font-size: 14px;
  color: #aaa;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span {
  padding-right: 0.7rem;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span.btn_on,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span.btn_on {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: x-large;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail {
  border: solid 4px #231815;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail > img,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail > img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover';
  width: 100%;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail.isHide,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail.isHide {
  display: none;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td {
  display: block;
  margin-top: 0.2rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div {
  margin-bottom: 1rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div > img,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div > img {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  background-color: #231815;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: 'object-fit: contain';
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image .link,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image .link {
  width: 90%;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid #231815;
  background-color: rgba(35, 24, 21, 0.1);
  border-radius: 5px;
  padding-right: 1rem;
  padding-left: 1rem;
  text-align: center;
  margin-right: 5%;
  margin-left: 5%;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div > ul,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div > ul {
  margin-left: 0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-text,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-text {
  text-align: center;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content {
  margin: auto;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content-non-accordion,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content-non-accordion {
  -webkit-transition: none;
  transition: none;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time {
  display: inline-block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button {
  width: 75px;
  height: auto;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: bold;
  padding: 0.25rem;
  border-radius: 10px;
  border: 1px solid #231815;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span {
  font-weight: normal;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span > span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span > span {
  padding-right: 2px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span .few,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button > span .few {
  color: #dc3535;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button #end-time,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button #end-time {
  font-size: 0.6rem;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unusedbtn,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unusedbtn {
  background-color: #fff;
  color: black;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unusedbtn .lots,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unusedbtn .lots {
  color: #0070C0;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn {
  background-color: black;
  color: #fff;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn:hover,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn:hover {
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn .lots,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-usedbtn .lots {
  color: #00bfff;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unavailablebtn,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time-unavailablebtn {
  pointer-events: none;
  background-color: grey;
  color: #fff;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__open-time,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__open-time {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__open-time > span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__open-time > span {
  font-weight: bold;
  color: #999;
  text-decoration: underline;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-area ul li,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area {
  margin-top: 1rem;
  display: block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list {
  margin-bottom: 2%;
  border: 1px solid #231815;
  border-radius: 5px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list .test,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list .test {
  height: 500px;
  background-color: #ccc;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item {
  min-height: 5.5rem;
  font-weight: bold;
  padding: 0.5rem;
  position: relative;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  color: #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 span {
  margin-left: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 i {
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item p {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity {
  display: inline-block;
  width: 49%;
  margin-right: 1%;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity p {
  font-size: 1.4rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 i {
  width: 14px;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 span {
  margin-left: 0.35rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area p {
  font-size: 0.9rem;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note {
  height: auto;
  min-height: 7rem;
  display: block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p {
  padding-left: 0.5rem;
  height: auto;
  text-align: left;
  font-size: 0.9rem;
  display: block;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p span {
  color: #231815;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price-area,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__kind,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__kind {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.3rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__kind .children,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__kind .children {
  height: 2rem !important;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type span {
  line-height: 1rem;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type .isEnglish,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type .isEnglish {
  font-size: 0.6rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price span,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price span {
  line-height: 1rem;
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price .isEnglish,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price .isEnglish {
  font-size: 0.6rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button-area,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7rem;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button-area p,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button-area p {
  font-size: 1.7rem !important;
  font-weight: bold !important;
  color: #231815;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase,
#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease {
  margin: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border-radius: 30px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #231815;
  color: #fff;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase:hover,
#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease:hover,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase:hover,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease:hover {
  opacity: 1 !important;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase.limited,
#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease.limited,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase.limited,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease.limited {
  opacity: 0.7;
  pointer-events: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase i,
#ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase i,
#parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease i {
  font-size: 16px;
}

#ticketSelect .p-ticketSelect__ui-panel,
#parkSelect .p-ticketSelect__ui-panel {
  width: 100%;
  pointer-events: none;
  height: 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  z-index: 1;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select {
  pointer-events: visible;
  position: relative;
  display: inline-block;
  right: 15px;
  background: #231815;
  color: #fff;
  border-radius: 30px;
  margin: 0;
  -webkit-box-shadow: 0px 0px 20px #aaa;
          box-shadow: 0px 0px 20px #aaa;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 4;
  cursor: pointer;
  left: 80%;
  top: 10%;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select.isHide,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select.isHide {
  opacity: 0;
  visibility: hidden;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p {
  color: #999;
  font-size: 11px;
  text-align: right;
  display: inline-block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p span,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p span {
  font-weight: bold;
  color: #231815;
  font-size: 20px;
  border-radius: 11px;
  padding: 0.2rem 0.8rem;
  padding-right: 0;
  color: #fff;
  padding: 0;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  right: 0;
  width: 250px;
  bottom: 2.5rem;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1rem;
  border-radius: 7px;
  text-align: left;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div:before,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div:before {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  margin-left: -16px;
  border: 8px solid transparent;
  border-top: 8px solid #fff;
  z-index: 2;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i {
  position: absolute;
  right: 0.7rem;
  top: 0.5rem;
  font-size: 1.5rem;
  color: #aaa;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > h4,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > h4 {
  font-size: 12px;
  font-weight: bold;
  color: #231815;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul {
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 2px;
  color: #231815;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:before,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:before {
  width: 15px !important;
  height: 15px !important;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:after,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:after {
  top: 8px;
  left: 3px;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back {
  pointer-events: visible;
  position: absolute;
  left: 15px;
  top: 16rem;
  background: #231815;
  color: #fff;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: 0px 0px 20px #aaa;
          box-shadow: 0px 0px 20px #aaa;
  text-align: center;
  font-size: 22px;
  border-radius: 50px;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.0s;
  transition: 0.0s;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back i,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back i {
  margin-top: -3px;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isHide,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isHide {
  opacity: 0;
  visibility: hidden;
}

#ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isFixed,
#parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isFixed {
  position: fixed;
  top: 5rem;
  -webkit-transition: 0.0s;
  transition: 0.0s;
}

#ticketSelect .p-ticketSelect__footer,
#parkSelect .p-ticketSelect__footer {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li,
#parkSelect .p-ticketSelect__footer--alert-area > li {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .mild,
#ticketSelect .p-ticketSelect__footer--alert-area > li .severe,
#parkSelect .p-ticketSelect__footer--alert-area > li .mild,
#parkSelect .p-ticketSelect__footer--alert-area > li .severe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 1px 3px 8px #231815;
          box-shadow: 1px 3px 8px #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 0;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .mild > i,
#ticketSelect .p-ticketSelect__footer--alert-area > li .severe > i,
#parkSelect .p-ticketSelect__footer--alert-area > li .mild > i,
#parkSelect .p-ticketSelect__footer--alert-area > li .severe > i {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .mild > p,
#ticketSelect .p-ticketSelect__footer--alert-area > li .severe > p,
#parkSelect .p-ticketSelect__footer--alert-area > li .mild > p,
#parkSelect .p-ticketSelect__footer--alert-area > li .severe > p {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  line-height: 1.3rem;
  font-size: 0.9rem;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .mild strong,
#ticketSelect .p-ticketSelect__footer--alert-area > li .severe strong,
#parkSelect .p-ticketSelect__footer--alert-area > li .mild strong,
#parkSelect .p-ticketSelect__footer--alert-area > li .severe strong {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .mild,
#parkSelect .p-ticketSelect__footer--alert-area > li .mild {
  background-color: #f4cb2f;
}

#ticketSelect .p-ticketSelect__footer--alert-area > li .severe,
#parkSelect .p-ticketSelect__footer--alert-area > li .severe {
  background-color: #ec5252;
  color: #fff;
}

#ticketSelect .p-ticketSelect__footer--btn-area > div,
#parkSelect .p-ticketSelect__footer--btn-area > div {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-color: #231815;
  height: 60px;
  font-weight: bold;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid #231815;
  -webkit-box-shadow: 1px 3px 8px #231815;
          box-shadow: 1px 3px 8px #231815;
  cursor: pointer;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type,
#parkSelect .p-ticketSelect__footer-item:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  font-size: 1rem;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1rem;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type div,
#parkSelect .p-ticketSelect__footer-item:first-of-type div {
  position: relative;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
#parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type {
  position: absolute;
  left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon,
#ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon-g,
#parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon,
#parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon-g {
  width: 2rem;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
#parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o {
  color: #78b973;
  background-color: #fff;
  position: absolute;
  left: 1.5rem;
  font-size: 1.5rem;
  top: -8px;
}

#ticketSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type,
#parkSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type {
  font-size: 0.9rem;
  padding-left: 0.5rem;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type,
#parkSelect .p-ticketSelect__footer-item:last-of-type {
  color: #fff;
  text-align: center;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div,
#parkSelect .p-ticketSelect__footer-item:last-of-type div {
  position: relative;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
#parkSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0.5rem;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type span.badge,
#parkSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type span.badge {
  position: absolute;
  right: -8px;
  top: -6px;
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type i,
#parkSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type i {
  width: 2rem;
  height: 1.8rem;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type,
#parkSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 60%;
}

#ticketSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type span,
#parkSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type span {
  font-size: 0.9rem;
  display: inline-block;
}

#ticketSelect .p-ticketSelect__footer-item--passport,
#parkSelect .p-ticketSelect__footer-item--passport {
  color: #fff;
  text-align: center;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#ticketSelect .p-ticketSelect__footer-item--passport div,
#parkSelect .p-ticketSelect__footer-item--passport div {
  position: relative;
}

#ticketSelect .p-ticketSelect__footer-item--passport div:first-of-type,
#parkSelect .p-ticketSelect__footer-item--passport div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0.5rem;
}

#ticketSelect .p-ticketSelect__footer-item--passport div:first-of-type span.badge,
#parkSelect .p-ticketSelect__footer-item--passport div:first-of-type span.badge {
  position: absolute;
  right: -8px;
  top: -6px;
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#ticketSelect .p-ticketSelect__footer-item--passport div:first-of-type i,
#parkSelect .p-ticketSelect__footer-item--passport div:first-of-type i {
  width: 2rem;
  height: 1.8rem;
}

#ticketSelect .p-ticketSelect__footer-item--passport div:last-of-type span,
#parkSelect .p-ticketSelect__footer-item--passport div:last-of-type span {
  font-size: 1.15rem;
  display: inline-block;
  height: 1.6rem;
}

#ticketSelect .p-ticketSelect__cart,
#parkSelect .p-ticketSelect__cart {
  background-color: #fff;
  z-index: 4;
  width: 90%;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
}

#ticketSelect .p-ticketSelect__cart-header,
#parkSelect .p-ticketSelect__cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 11vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  width: 96%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__cart-header div,
#parkSelect .p-ticketSelect__cart-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__cart-header div:first-of-type,
#parkSelect .p-ticketSelect__cart-header div:first-of-type {
  margin-left: 0.5rem;
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__cart-header div:first-of-type i,
#parkSelect .p-ticketSelect__cart-header div:first-of-type i {
  width: 2rem;
  height: 2rem;
}

#ticketSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
#parkSelect .p-ticketSelect__cart-header div:first-of-type span.badge {
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -0.2rem;
  left: 1.2rem;
}

#ticketSelect .p-ticketSelect__cart-header div:nth-of-type(2),
#parkSelect .p-ticketSelect__cart-header div:nth-of-type(2) {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__cart-header div:last-of-type,
#parkSelect .p-ticketSelect__cart-header div:last-of-type {
  font-size: 2rem;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

#ticketSelect .p-ticketSelect__cart-body,
#parkSelect .p-ticketSelect__cart-body {
  padding-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-y: auto;
  height: 47vh;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li,
#parkSelect .p-ticketSelect__cart-body-ticket li {
  position: relative;
  margin: .5rem 0;
  padding: .5rem .3rem;
  border: 1px dotted #ccc;
  border-radius: 8px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li:first-of-type,
#parkSelect .p-ticketSelect__cart-body-ticket li:first-of-type {
  margin-top: 0;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-name,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-name {
  font-size: 0.9rem;
  font-weight: bold;
  padding-bottom: 1rem;
  position: absolute;
  display: inline-block;
  top: -6px;
  left: 9px;
  padding: 0 7px;
  line-height: 1;
  background: #fff;
  color: #231815;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-content,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-content {
  border-top: 1px dotted #ccc;
  padding-top: 0.3rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-content:first-of-type,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-content:first-of-type {
  border-top: 0;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule span:first-of-type,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule span:first-of-type {
  font-weight: bold;
  color: rgba(35, 24, 21, 0.5);
  padding-left: 1rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule span:nth-of-type(2),
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-schedule span:nth-of-type(2) {
  padding-right: 1rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-select,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li {
  min-height: 4.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  margin: 0.5rem 0 0.2rem;
  padding: 0 0.5rem 0;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li + li,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li + li {
  border-left: 0.5px #ccc dotted;
  border-radius: unset;
  padding-left: 0.5rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.2rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p.mab,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p.mab {
  margin-bottom: 0.64rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span {
  max-width: 80%;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span.long,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span.long {
  font-size: 0.8rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i {
  margin-right: 0.2rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.adult,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.adult {
  width: 0.85rem;
  height: 1.5rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.children,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.children {
  width: 0.85rem;
  height: 1.2rem;
  margin-top: 0.3rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.student,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li i.student {
  height: 1.3rem;
  margin-top: 0.2rem;
  width: 0.85rem;
}

#ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li select,
#parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li select {
  height: 2.7rem;
  width: 100%;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("/images/ico_arrow_s_bottom.svg") no-repeat right 10px center;
  background-size: 10px auto;
  border-radius: 0px;
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 0px 25px 0px 7px;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

#ticketSelect .p-ticketSelect__cart-body > P,
#parkSelect .p-ticketSelect__cart-body > P {
  text-align: center;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li,
#parkSelect .p-ticketSelect__cart-body--alert-area > li {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  font-weight: bold;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .mild,
#ticketSelect .p-ticketSelect__cart-body--alert-area > li .severe,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .mild,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .severe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 1px 3px 8px #231815;
          box-shadow: 1px 3px 8px #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 0;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .mild > i,
#ticketSelect .p-ticketSelect__cart-body--alert-area > li .severe > i,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .mild > i,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .severe > i {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .mild > p,
#ticketSelect .p-ticketSelect__cart-body--alert-area > li .severe > p,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .mild > p,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .severe > p {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  line-height: 1.3rem;
  font-size: 0.9rem;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .mild strong,
#ticketSelect .p-ticketSelect__cart-body--alert-area > li .severe strong,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .mild strong,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .severe strong {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .mild,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .mild {
  background-color: #f4cb2f;
}

#ticketSelect .p-ticketSelect__cart-body--alert-area > li .severe,
#parkSelect .p-ticketSelect__cart-body--alert-area > li .severe {
  background-color: #ec5252;
  color: #fff;
}

#ticketSelect .p-ticketSelect__cart-footer,
#parkSelect .p-ticketSelect__cart-footer {
  height: 13vh;
  position: fixed;
  bottom: 0;
  width: 96%;
  left: 2%;
  border-top: 1px solid #ccc;
}

#ticketSelect .p-ticketSelect__cart-footer div,
#parkSelect .p-ticketSelect__cart-footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #fff;
}

#ticketSelect .p-ticketSelect__cart-footer div p,
#parkSelect .p-ticketSelect__cart-footer div p {
  font-weight: bold;
  font-size: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  color: #333;
  border-bottom: 1px solid rgba(35, 24, 21, 0.6);
  height: 1.6rem;
}

#ticketSelect .p-ticketSelect__cart-footer div button,
#parkSelect .p-ticketSelect__cart-footer div button {
  margin: 0;
  margin-right: 0.5rem;
  width: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: auto;
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

#ticketSelect .p-ticketSelect__coupon,
#parkSelect .p-ticketSelect__coupon {
  background-color: #fff;
  z-index: 6;
  width: 90%;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
}

#ticketSelect .p-ticketSelect__coupon-header,
#parkSelect .p-ticketSelect__coupon-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  width: 96%;
  margin: auto;
}

#ticketSelect .p-ticketSelect__coupon-header div,
#parkSelect .p-ticketSelect__coupon-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ticketSelect .p-ticketSelect__coupon-header div:first-of-type,
#parkSelect .p-ticketSelect__coupon-header div:first-of-type {
  margin-left: 0.5rem;
  position: relative;
  left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#ticketSelect .p-ticketSelect__coupon-header div:first-of-type i.coupon,
#parkSelect .p-ticketSelect__coupon-header div:first-of-type i.coupon {
  width: 2rem;
  height: 1.7rem;
  margin-top: 0.2rem;
}

#ticketSelect .p-ticketSelect__coupon-header div:first-of-type i.fa-check-circle-o,
#parkSelect .p-ticketSelect__coupon-header div:first-of-type i.fa-check-circle-o {
  position: absolute;
  color: #78b973;
  background-color: #fff;
  position: absolute;
  left: 1.5rem;
  font-size: 1.4rem;
  top: 8px;
}

#ticketSelect .p-ticketSelect__coupon-header div:nth-of-type(2),
#parkSelect .p-ticketSelect__coupon-header div:nth-of-type(2) {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

#ticketSelect .p-ticketSelect__coupon-header div:last-of-type,
#parkSelect .p-ticketSelect__coupon-header div:last-of-type {
  font-size: 2rem;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

#ticketSelect .p-ticketSelect__coupon-body,
#parkSelect .p-ticketSelect__coupon-body {
  padding-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  height: 57vh;
  overflow-y: auto;
}

#ticketSelect .p-ticketSelect__coupon-body p,
#parkSelect .p-ticketSelect__coupon-body p {
  font-size: 0.9rem;
}

#ticketSelect .p-ticketSelect__coupon-body ul,
#parkSelect .p-ticketSelect__coupon-body ul {
  margin-top: 2rem;
}

#ticketSelect .p-ticketSelect__coupon-body ul li,
#parkSelect .p-ticketSelect__coupon-body ul li {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#ticketSelect .p-ticketSelect__coupon-body ul li div:first-of-type,
#parkSelect .p-ticketSelect__coupon-body ul li div:first-of-type {
  width: 85%;
  position: relative;
}

#ticketSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
#parkSelect .p-ticketSelect__coupon-body ul li div:first-of-type input {
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 6px 10px;
  width: 100%;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

#ticketSelect .p-ticketSelect__coupon-body ul li div:first-of-type i,
#parkSelect .p-ticketSelect__coupon-body ul li div:first-of-type i {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  font-size: 1.5rem;
  color: #231815;
}

#ticketSelect .p-ticketSelect__coupon-body ul li div:last-of-type,
#parkSelect .p-ticketSelect__coupon-body ul li div:last-of-type {
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  color: #231815;
}

#ticketSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
#parkSelect .p-ticketSelect__coupon-body ul li div:last-of-type i {
  width: 2rem;
  height: 2rem;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #231815;
  color: #fff;
  border-radius: 30px;
}

#ticketSelect .p-ticketSelect__coupon-footer,
#parkSelect .p-ticketSelect__coupon-footer {
  height: 7vh;
  position: absolute;
  bottom: 0;
  width: 96%;
  left: 2%;
  border-top: 1px solid #ccc;
}

#ticketSelect .p-ticketSelect__coupon-footer div,
#parkSelect .p-ticketSelect__coupon-footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#ticketSelect .p-ticketSelect__coupon-footer div p,
#parkSelect .p-ticketSelect__coupon-footer div p {
  font-weight: bold;
  font-size: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  color: #231815;
  border-bottom: 1px solid rgba(35, 24, 21, 0.6);
  height: 1.6rem;
}

#ticketSelect .p-ticketSelect__coupon-footer div button,
#parkSelect .p-ticketSelect__coupon-footer div button {
  margin: 0;
  margin-right: 0.5rem;
  width: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 75%;
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

#ticketSelect .p-ticketSelect__message--attention,
#parkSelect .p-ticketSelect__message--attention {
  position: relative;
  width: auto;
  text-align: center;
}

#ticketSelect .p-ticketSelect__message--attention p,
#parkSelect .p-ticketSelect__message--attention p {
  color: #dc3535;
  border: solid 2px #dc3535;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

#ticketSelect .p-ticketSelect__message--attention p > i,
#parkSelect .p-ticketSelect__message--attention p > i {
  font-size: 1rem;
}

#ticketSelect .p-ticketSelect__message--attention p > span,
#parkSelect .p-ticketSelect__message--attention p > span {
  font-weight: bold;
  font-size: 1rem;
}

#ticketSelect .operation,
#parkSelect .operation {
  display: block;
  padding-top: 2rem;
  margin: auto;
}

#ticketSelect .operation .link,
#parkSelect .operation .link {
  color: #0f73a0;
  cursor: pointer;
}

#ticketSelect .p-ticketSelect__footer--btn-area > div,
#parkSelect .p-ticketSelect__footer--btn-area > div {
  display: block;
}

#ticketSelect .p-ticketSelect__footer--btn-area > div .p-ticketSelect__footer-item:first-of-type,
#parkSelect .p-ticketSelect__footer--btn-area > div .p-ticketSelect__footer-item:first-of-type {
  display: none;
}

#passportSelect,
#parkPassportSelect,
#rentalSelect {
  width: 94%;
  margin: auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

#passportSelect .isLoading,
#parkPassportSelect .isLoading,
#rentalSelect .isLoading {
  background-image: url("/images/loading.gif");
  background-size: 20%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1000;
}

#passportSelect .isLoading.isOn,
#parkPassportSelect .isLoading.isOn,
#rentalSelect .isLoading.isOn {
  visibility: visible;
  opacity: 0.72;
}

#passportSelect .modal,
#parkPassportSelect .modal,
#rentalSelect .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}

#passportSelect .modal-overlay,
#parkPassportSelect .modal-overlay,
#rentalSelect .modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
}

#passportSelect .modal-close-btn,
#parkPassportSelect .modal-close-btn,
#rentalSelect .modal-close-btn {
  cursor: pointer;
}

#passportSelect .modal-content,
#parkPassportSelect .modal-content,
#rentalSelect .modal-content {
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  border-radius: .3em;
  padding: 2rem 1rem;
  overflow: hidden;
  min-height: 230px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#passportSelect .modal-content.login .modal-msg,
#parkPassportSelect .modal-content.login .modal-msg,
#rentalSelect .modal-content.login .modal-msg {
  margin-top: 0;
}

#passportSelect .modal-title,
#parkPassportSelect .modal-title,
#rentalSelect .modal-title {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

#passportSelect .modal-msg,
#parkPassportSelect .modal-msg,
#rentalSelect .modal-msg {
  margin-top: 1.7rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.8rem;
}

#passportSelect .modal-close-btn,
#parkPassportSelect .modal-close-btn,
#rentalSelect .modal-close-btn {
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 1.5rem;
}

#passportSelect .modal-btn-wrap,
#parkPassportSelect .modal-btn-wrap,
#rentalSelect .modal-btn-wrap {
  margin: auto;
  text-align: center;
  position: relative;
}

#passportSelect .modal-btn,
#parkPassportSelect .modal-btn,
#rentalSelect .modal-btn {
  background: #231815;
  color: #fff;
  font-weight: bold !important;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 65%;
  font-weight: normal;
  margin-top: 1rem;
  padding: 0.8rem;
}

#passportSelect .sendForm,
#parkPassportSelect .sendForm,
#rentalSelect .sendForm {
  visibility: hidden;
  width: 0;
  height: 0;
}

#passportSelect .p-ticketSelect__wrapper,
#parkPassportSelect .p-ticketSelect__wrapper,
#rentalSelect .p-ticketSelect__wrapper {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 7;
  -webkit-overflow-scrolling: touch;
}

#passportSelect .p-ticketSelect__overlay,
#parkPassportSelect .p-ticketSelect__overlay,
#rentalSelect .p-ticketSelect__overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

#passportSelect .p-ticketSelect__overlay.isActive,
#parkPassportSelect .p-ticketSelect__overlay.isActive,
#rentalSelect .p-ticketSelect__overlay.isActive {
  z-index: 5;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
}

#passportSelect .p-ticketSelect__header,
#parkPassportSelect .p-ticketSelect__header,
#rentalSelect .p-ticketSelect__header {
  padding: 0 0.7rem;
  z-index: 2;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
}

#passportSelect .p-ticketSelect__navigation-list,
#parkPassportSelect .p-ticketSelect__navigation-list,
#rentalSelect .p-ticketSelect__navigation-list {
  height: 3rem;
  font-size: 1.1rem;
  border-bottom: 2px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__navigation-item,
#parkPassportSelect .p-ticketSelect__navigation-item,
#rentalSelect .p-ticketSelect__navigation-item {
  font-weight: bold;
  padding-top: 0.5rem;
}

#passportSelect .p-ticketSelect__navigation-item:first-of-type,
#parkPassportSelect .p-ticketSelect__navigation-item:first-of-type,
#rentalSelect .p-ticketSelect__navigation-item:first-of-type {
  padding-left: 0.3rem;
  font-size: 1rem;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

#passportSelect .p-ticketSelect__navigation-item:nth-of-type(2),
#parkPassportSelect .p-ticketSelect__navigation-item:nth-of-type(2),
#rentalSelect .p-ticketSelect__navigation-item:nth-of-type(2) {
  color: #231815;
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#passportSelect .p-ticketSelect__navigation-item:nth-of-type(2) span,
#parkPassportSelect .p-ticketSelect__navigation-item:nth-of-type(2) span,
#rentalSelect .p-ticketSelect__navigation-item:nth-of-type(2) span {
  font-size: 1rem;
  margin-left: 0.35rem;
  margin-top: 0.5rem;
}

#passportSelect .p-ticketSelect__navigation-item:nth-of-type(2) i,
#parkPassportSelect .p-ticketSelect__navigation-item:nth-of-type(2) i,
#rentalSelect .p-ticketSelect__navigation-item:nth-of-type(2) i {
  width: 1.5rem;
}

#passportSelect .p-ticketSelect__navigation-item:last-of-type,
#parkPassportSelect .p-ticketSelect__navigation-item:last-of-type,
#rentalSelect .p-ticketSelect__navigation-item:last-of-type {
  font-size: 1.7rem;
  line-height: 1rem;
  z-index: 2;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  text-align: right;
}

#passportSelect .p-ticketSelect__navigation-item:last-of-type.isNotEnable,
#parkPassportSelect .p-ticketSelect__navigation-item:last-of-type.isNotEnable,
#rentalSelect .p-ticketSelect__navigation-item:last-of-type.isNotEnable {
  pointer-events: none;
}

#passportSelect .p-ticketSelect__day-select,
#parkPassportSelect .p-ticketSelect__day-select,
#rentalSelect .p-ticketSelect__day-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0.4rem 0;
  border-bottom: 2px solid #231815;
  background-color: #fff;
}

#passportSelect .p-ticketSelect__day-select li,
#parkPassportSelect .p-ticketSelect__day-select li,
#rentalSelect .p-ticketSelect__day-select li {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  text-align: center;
}

#passportSelect .p-ticketSelect__day-select li span,
#parkPassportSelect .p-ticketSelect__day-select li span,
#rentalSelect .p-ticketSelect__day-select li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 0;
}

#passportSelect .p-ticketSelect__day-select li span small:first-of-type,
#parkPassportSelect .p-ticketSelect__day-select li span small:first-of-type,
#rentalSelect .p-ticketSelect__day-select li span small:first-of-type {
  font-size: 1rem;
  line-height: 1.4rem;
}

#passportSelect .p-ticketSelect__day-select li span small:last-of-type,
#parkPassportSelect .p-ticketSelect__day-select li span small:last-of-type,
#rentalSelect .p-ticketSelect__day-select li span small:last-of-type {
  line-height: 1rem;
  font-size: 0.8rem;
}

#passportSelect .p-ticketSelect__day-select li.selected,
#parkPassportSelect .p-ticketSelect__day-select li.selected,
#rentalSelect .p-ticketSelect__day-select li.selected {
  background-color: #231815;
  -webkit-box-shadow: 0px 0px 3px #aaa;
          box-shadow: 0px 0px 3px #aaa;
  color: #fff;
  border-radius: 8px;
}

#passportSelect .p-ticketSelect__day-select li.cantSelect,
#parkPassportSelect .p-ticketSelect__day-select li.cantSelect,
#rentalSelect .p-ticketSelect__day-select li.cantSelect {
  color: #bbb;
  background: #eee;
  pointer-events: none;
}

#passportSelect .p-ticketSelect__body,
#parkPassportSelect .p-ticketSelect__body,
#rentalSelect .p-ticketSelect__body {
  height: 100vh;
  position: relative;
  right: 0;
  bottom: 0;
  top: 0;
  left: 0;
  overflow-y: auto;
  padding-top: 7.2rem;
  padding-bottom: 7.7rem;
}

#passportSelect .p-ticketSelect__body.isDayFixed,
#parkPassportSelect .p-ticketSelect__body.isDayFixed,
#rentalSelect .p-ticketSelect__body.isDayFixed {
  padding-top: 3rem;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--info,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--info,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--info {
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:first-of-type,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:first-of-type,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:first-of-type {
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type {
  text-indent: 1rem;
  display: block;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type .link,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type .link,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--info p span:last-of-type .link {
  color: #0f73a0;
  cursor: pointer;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--attention,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--attention,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--attention {
  position: relative;
  display: inline-block;
  width: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--attention p,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--attention p,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--attention p {
  color: #dc3535;
  border: solid 2px #dc3535;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--attention p > span,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--attention p > span,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--attention p > span {
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body .p-ticketSelect__message--notice,
#parkPassportSelect .p-ticketSelect__body .p-ticketSelect__message--notice,
#rentalSelect .p-ticketSelect__body .p-ticketSelect__message--notice {
  color: #dc3535;
  text-align: center;
  margin-top: 2rem;
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body > table,
#parkPassportSelect .p-ticketSelect__body > table,
#rentalSelect .p-ticketSelect__body > table {
  width: 100%;
  overflow-y: auto;
}

#passportSelect .p-ticketSelect__body > table > tr.isHide,
#parkPassportSelect .p-ticketSelect__body > table > tr.isHide,
#rentalSelect .p-ticketSelect__body > table > tr.isHide {
  border: 0;
}

#passportSelect .p-ticketSelect__body > table > tr:first-of-type > th,
#parkPassportSelect .p-ticketSelect__body > table > tr:first-of-type > th,
#rentalSelect .p-ticketSelect__body > table > tr:first-of-type > th {
  margin-top: 1rem;
}

#passportSelect .p-ticketSelect__body > table > tr:nth-child(even) > th,
#parkPassportSelect .p-ticketSelect__body > table > tr:nth-child(even) > th,
#rentalSelect .p-ticketSelect__body > table > tr:nth-child(even) > th {
  background: #F7F7F7;
}

#passportSelect .p-ticketSelect__body > table > tr > th,
#parkPassportSelect .p-ticketSelect__body > table > tr > th,
#rentalSelect .p-ticketSelect__body > table > tr > th {
  width: 100vw;
  cursor: pointer;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 1.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  white-space: nowrap;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 4.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__body > table > tr > th.isShow,
#parkPassportSelect .p-ticketSelect__body > table > tr > th.isShow,
#rentalSelect .p-ticketSelect__body > table > tr > th.isShow {
  background: #fff;
}

#passportSelect .p-ticketSelect__body > table > tr > th.isHide,
#parkPassportSelect .p-ticketSelect__body > table > tr > th.isHide,
#rentalSelect .p-ticketSelect__body > table > tr > th.isHide {
  height: 0;
  padding: 0;
  border: 0;
  opacity: 0;
}

#passportSelect .p-ticketSelect__body > table > tr > th.isHide h3,
#parkPassportSelect .p-ticketSelect__body > table > tr > th.isHide h3,
#rentalSelect .p-ticketSelect__body > table > tr > th.isHide h3 {
  font-size: 0;
  padding: 0;
  height: 0;
  line-height: 0;
}

#passportSelect .p-ticketSelect__body > table > tr > th.isHide small,
#parkPassportSelect .p-ticketSelect__body > table > tr > th.isHide small,
#rentalSelect .p-ticketSelect__body > table > tr > th.isHide small {
  font-size: 0;
}

#passportSelect .p-ticketSelect__body > table > tr > th.isHide span i,
#parkPassportSelect .p-ticketSelect__body > table > tr > th.isHide span i,
#rentalSelect .p-ticketSelect__body > table > tr > th.isHide span i {
  height: 0;
}

#passportSelect .p-ticketSelect__body > table > tr > th h3,
#parkPassportSelect .p-ticketSelect__body > table > tr > th h3,
#rentalSelect .p-ticketSelect__body > table > tr > th h3 {
  font-weight: bold;
  display: inline-block;
  padding-top: 0.3rem;
  white-space: normal;
  line-height: 1.3rem;
  width: 88%;
  position: relative;
  font-size: 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#passportSelect .p-ticketSelect__body > table > tr > th h3 > span,
#parkPassportSelect .p-ticketSelect__body > table > tr > th h3 > span,
#rentalSelect .p-ticketSelect__body > table > tr > th h3 > span {
  top: 1.65rem;
  left: 0;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  color: #fff;
  background: #231815;
  border-radius: 12px;
  line-height: 1rem;
  font-size: 11px;
}

#passportSelect .p-ticketSelect__body > table > tr > th h3 > p,
#parkPassportSelect .p-ticketSelect__body > table > tr > th h3 > p,
#rentalSelect .p-ticketSelect__body > table > tr > th h3 > p {
  font-size: 12px;
  color: gray;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__body > table > tr > th h3 > p i,
#parkPassportSelect .p-ticketSelect__body > table > tr > th h3 > p i,
#rentalSelect .p-ticketSelect__body > table > tr > th h3 > p i {
  margin-right: 4px;
  margin-bottom: 2px;
}

#passportSelect .p-ticketSelect__body > table > tr > th div,
#parkPassportSelect .p-ticketSelect__body > table > tr > th div,
#rentalSelect .p-ticketSelect__body > table > tr > th div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__body > table > tr > th div small,
#parkPassportSelect .p-ticketSelect__body > table > tr > th div small,
#rentalSelect .p-ticketSelect__body > table > tr > th div small {
  margin-right: 0.3rem;
  font-size: 14px;
  color: #aaa;
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body > table > tr > th div span,
#parkPassportSelect .p-ticketSelect__body > table > tr > th div span,
#rentalSelect .p-ticketSelect__body > table > tr > th div span {
  padding-right: 0.7rem;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
}

#passportSelect .p-ticketSelect__body > table > tr > th div span.btn_on,
#parkPassportSelect .p-ticketSelect__body > table > tr > th div span.btn_on,
#rentalSelect .p-ticketSelect__body > table > tr > th div span.btn_on {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

#passportSelect .p-ticketSelect__body > table > tr > th div span i,
#parkPassportSelect .p-ticketSelect__body > table > tr > th div span i,
#rentalSelect .p-ticketSelect__body > table > tr > th div span i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#passportSelect .p-ticketSelect__body > table > tr > td,
#parkPassportSelect .p-ticketSelect__body > table > tr > td,
#rentalSelect .p-ticketSelect__body > table > tr > td {
  width: 95vw;
  display: block;
  margin: 0 0.7rem;
  margin-top: 0.2rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td > ul,
#parkPassportSelect .p-ticketSelect__body > table > tr > td > ul,
#rentalSelect .p-ticketSelect__body > table > tr > td > ul {
  margin-bottom: 2.5rem;
  margin-left: 1rem;
  margin-top: 1rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-text,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-text,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-text {
  text-align: center;
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__content,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__content,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__content {
  width: 92%;
  margin: auto;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time {
  display: inline-block;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time > button,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time > button,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time > button {
  width: 6.5rem !important;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  font-size: small;
  padding: 0.5rem;
  background-color: #231815;
  color: #fff;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-unusedbtn,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-unusedbtn,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-unusedbtn {
  opacity: 0.6;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn {
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn:hover,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn:hover,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-time-usedbtn:hover {
  opacity: 10;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time > span,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time > span,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__open-time > span {
  font-weight: bold;
  color: #999;
  text-decoration: underline;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li:last-of-type,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li:last-of-type,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__select-area ul li:last-of-type {
  border-bottom: 0;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area {
  margin-top: 2rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:last-of-type,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:last-of-type,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:last-of-type {
  margin-top: 2%;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list .test,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list .test,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list .test {
  height: 500px;
  background-color: #ccc;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item {
  min-height: 5.5rem;
  background-color: rgba(35, 24, 21, 0.1);
  font-weight: bold;
  border-radius: 5px;
  padding: 0.5rem;
  position: relative;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  color: #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 span,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 span,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 span {
  margin-left: 0.5rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 i,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 i,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item h4 i {
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item p,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item p,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--item p {
  text-align: center;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity {
  display: inline-block;
  width: 49%;
  margin-right: 1%;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity p,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity p,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__capacity p {
  font-size: 1.4rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area {
  display: inline-block;
  width: 49%;
  margin-left: 1%;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 i,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 i,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 i {
  width: 14px;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 span,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 span,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area h4 span {
  margin-left: 0.35rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area p,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area p,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area p {
  font-size: 0.9rem;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note {
  margin-top: 0.5rem;
  margin-bottom: 120px;
  height: auto;
  min-height: 7rem;
  display: block;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p {
  padding-left: 0.5rem;
  height: auto;
  text-align: left;
  font-size: 0.9rem;
  display: block;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p span,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p span,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note p span {
  color: #231815;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price-area,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price-area,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.3rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind .children,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind .children,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__kind .children {
  height: 2rem !important;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding-left: 1rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span {
  display: block;
  line-height: 1rem;
  font-weight: bold;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:first-of-type,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:first-of-type,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:first-of-type {
  color: #231815;
  font-size: 0.9rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:last-of-type,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:last-of-type,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__price span:last-of-type {
  color: #777;
  font-size: 0.8rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 7rem;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area p,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area p,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button-area p {
  font-size: 1.7rem !important;
  font-weight: bold !important;
  color: #231815;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase,
#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease {
  margin: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
  padding: 0 !important;
  border-radius: 30px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #231815;
  color: #fff;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase:hover,
#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease:hover,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase:hover,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease:hover,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase:hover,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease:hover {
  opacity: 1 !important;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited {
  opacity: 0.7;
  pointer-events: none;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase i,
#passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease i,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase i,
#parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease i,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase i,
#rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease i {
  font-size: 16px;
}

#passportSelect .p-ticketSelect__ui-panel,
#parkPassportSelect .p-ticketSelect__ui-panel,
#rentalSelect .p-ticketSelect__ui-panel {
  position: fixed;
  width: 100%;
  pointer-events: none;
  height: 40px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  z-index: 1;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select {
  pointer-events: visible;
  position: absolute;
  display: inline-block;
  right: 15px;
  background: #231815;
  color: #fff;
  border-radius: 30px;
  margin: 0;
  -webkit-box-shadow: 0px 0px 20px #aaa;
          box-shadow: 0px 0px 20px #aaa;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
  cursor: pointer;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select.isHide,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select.isHide,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select.isHide {
  opacity: 0;
  visibility: hidden;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p {
  color: #999;
  font-size: 11px;
  text-align: right;
  display: inline-block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p span,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p span,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > p span {
  font-weight: bold;
  color: #231815;
  font-size: 20px;
  border-radius: 11px;
  padding: 0.2rem 0.8rem;
  padding-right: 0;
  color: #fff;
  padding: 0;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div {
  position: absolute;
  z-index: 1;
  background-color: #fff;
  right: 0;
  width: 210px;
  bottom: 2.5rem;
  -webkit-box-shadow: 0px 0px 5px #aaa;
          box-shadow: 0px 0px 5px #aaa;
  padding: 1rem;
  border-radius: 7px;
  text-align: left;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div:before,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div:before,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div:before {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  margin-left: -16px;
  border: 8px solid transparent;
  border-top: 8px solid #fff;
  z-index: 2;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i {
  position: absolute;
  right: 0.7rem;
  top: 0.5rem;
  font-size: 1.5rem;
  color: #aaa;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > h4,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > h4,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > h4 {
  font-size: 12px;
  font-weight: bold;
  color: #231815;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul {
  margin-top: 0.5rem;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label {
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 2px;
  color: #231815;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:before,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:before,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:before {
  width: 15px !important;
  height: 15px !important;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:after,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:after,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label:after {
  top: 8px;
  left: 3px;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back {
  pointer-events: visible;
  position: absolute;
  display: inline-block;
  left: 15px;
  background: #231815;
  color: #fff;
  border-radius: 30px;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: 0px 0px 20px #aaa;
          box-shadow: 0px 0px 20px #aaa;
  text-align: center;
  font-size: 22px;
  border-radius: 50px;
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back i,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back i,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back i {
  margin-top: -3px;
}

#passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isHide,
#parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isHide,
#rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back.isHide {
  opacity: 0;
  visibility: hidden;
}

#passportSelect .p-ticketSelect__footer,
#parkPassportSelect .p-ticketSelect__footer,
#rentalSelect .p-ticketSelect__footer {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
}

#passportSelect .p-ticketSelect__footer--alert-area li,
#parkPassportSelect .p-ticketSelect__footer--alert-area li,
#rentalSelect .p-ticketSelect__footer--alert-area li {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  font-weight: bold;
}

#passportSelect .p-ticketSelect__footer--alert-area li .mild,
#passportSelect .p-ticketSelect__footer--alert-area li .severe,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .mild,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .severe,
#rentalSelect .p-ticketSelect__footer--alert-area li .mild,
#rentalSelect .p-ticketSelect__footer--alert-area li .severe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 1px 3px 8px #231815;
          box-shadow: 1px 3px 8px #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.7rem 0;
}

#passportSelect .p-ticketSelect__footer--alert-area li .mild i,
#passportSelect .p-ticketSelect__footer--alert-area li .severe i,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .mild i,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .severe i,
#rentalSelect .p-ticketSelect__footer--alert-area li .mild i,
#rentalSelect .p-ticketSelect__footer--alert-area li .severe i {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#passportSelect .p-ticketSelect__footer--alert-area li .mild p,
#passportSelect .p-ticketSelect__footer--alert-area li .severe p,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .mild p,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .severe p,
#rentalSelect .p-ticketSelect__footer--alert-area li .mild p,
#rentalSelect .p-ticketSelect__footer--alert-area li .severe p {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  line-height: 1.3rem;
  font-size: 0.9rem;
}

#passportSelect .p-ticketSelect__footer--alert-area li .mild strong,
#passportSelect .p-ticketSelect__footer--alert-area li .severe strong,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .mild strong,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .severe strong,
#rentalSelect .p-ticketSelect__footer--alert-area li .mild strong,
#rentalSelect .p-ticketSelect__footer--alert-area li .severe strong {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  font-size: 1.5rem;
  text-align: center;
}

#passportSelect .p-ticketSelect__footer--alert-area li .mild,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .mild,
#rentalSelect .p-ticketSelect__footer--alert-area li .mild {
  background-color: #f4cb2f;
}

#passportSelect .p-ticketSelect__footer--alert-area li .severe,
#parkPassportSelect .p-ticketSelect__footer--alert-area li .severe,
#rentalSelect .p-ticketSelect__footer--alert-area li .severe {
  background-color: #ec5252;
  color: #fff;
}

#passportSelect .p-ticketSelect__footer--btn-area > div,
#parkPassportSelect .p-ticketSelect__footer--btn-area > div,
#rentalSelect .p-ticketSelect__footer--btn-area > div {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  background-color: #231815;
  height: 60px;
  font-weight: bold;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid #231815;
  -webkit-box-shadow: 1px 3px 8px #231815;
          box-shadow: 1px 3px 8px #231815;
  cursor: pointer;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type,
#rentalSelect .p-ticketSelect__footer-item:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #231815;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  font-size: 1rem;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1rem;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type div,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div {
  position: relative;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type {
  position: absolute;
  left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon,
#passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon-g,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon-g,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.coupon-g {
  width: 2rem;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o {
  color: #78b973;
  background-color: #fff;
  position: absolute;
  left: 1.5rem;
  font-size: 1.5rem;
  top: -8px;
}

#passportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type,
#rentalSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type {
  font-size: 0.9rem;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type,
#rentalSelect .p-ticketSelect__footer-item:last-of-type {
  color: #fff;
  text-align: center;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div {
  position: relative;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0.5rem;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type span.badge,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type span.badge,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type span.badge {
  position: absolute;
  right: -8px;
  top: -6px;
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type i,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type i,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type i {
  width: 2rem;
  height: 1.8rem;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 60%;
}

#passportSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type span,
#parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type span,
#rentalSelect .p-ticketSelect__footer-item:last-of-type div:last-of-type span {
  font-size: 0.9rem;
  display: inline-block;
}

#passportSelect .p-ticketSelect__footer-item--passport,
#parkPassportSelect .p-ticketSelect__footer-item--passport,
#rentalSelect .p-ticketSelect__footer-item--passport {
  color: #fff;
  text-align: center;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

#passportSelect .p-ticketSelect__footer-item--passport div,
#parkPassportSelect .p-ticketSelect__footer-item--passport div,
#rentalSelect .p-ticketSelect__footer-item--passport div {
  position: relative;
}

#passportSelect .p-ticketSelect__footer-item--passport div:first-of-type,
#parkPassportSelect .p-ticketSelect__footer-item--passport div:first-of-type,
#rentalSelect .p-ticketSelect__footer-item--passport div:first-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0.5rem;
}

#passportSelect .p-ticketSelect__footer-item--passport div:first-of-type span.badge,
#parkPassportSelect .p-ticketSelect__footer-item--passport div:first-of-type span.badge,
#rentalSelect .p-ticketSelect__footer-item--passport div:first-of-type span.badge {
  position: absolute;
  right: -8px;
  top: -6px;
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#passportSelect .p-ticketSelect__footer-item--passport div:first-of-type i,
#parkPassportSelect .p-ticketSelect__footer-item--passport div:first-of-type i,
#rentalSelect .p-ticketSelect__footer-item--passport div:first-of-type i {
  width: 2rem;
  height: 1.8rem;
}

#passportSelect .p-ticketSelect__footer-item--passport div:last-of-type span,
#parkPassportSelect .p-ticketSelect__footer-item--passport div:last-of-type span,
#rentalSelect .p-ticketSelect__footer-item--passport div:last-of-type span {
  font-size: 1.15rem;
  display: inline-block;
  height: 1.6rem;
}

#passportSelect .p-ticketSelect__cart,
#parkPassportSelect .p-ticketSelect__cart,
#rentalSelect .p-ticketSelect__cart {
  background-color: #fff;
  z-index: 5;
  width: 90%;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
}

#passportSelect .p-ticketSelect__cart-header,
#parkPassportSelect .p-ticketSelect__cart-header,
#rentalSelect .p-ticketSelect__cart-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 11vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  width: 96%;
  margin: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__cart-header div,
#parkPassportSelect .p-ticketSelect__cart-header div,
#rentalSelect .p-ticketSelect__cart-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__cart-header div:first-of-type,
#parkPassportSelect .p-ticketSelect__cart-header div:first-of-type,
#rentalSelect .p-ticketSelect__cart-header div:first-of-type {
  margin-left: 0.5rem;
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
}

#passportSelect .p-ticketSelect__cart-header div:first-of-type i,
#parkPassportSelect .p-ticketSelect__cart-header div:first-of-type i,
#rentalSelect .p-ticketSelect__cart-header div:first-of-type i {
  width: 2rem;
  height: 2rem;
}

#passportSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
#parkPassportSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
#rentalSelect .p-ticketSelect__cart-header div:first-of-type span.badge {
  background-color: #dc3535;
  color: #fff;
  font-weight: bold;
  width: 1.3rem;
  height: 1.3rem;
  font-size: 0.9rem;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -0.2rem;
  left: 1.2rem;
}

#passportSelect .p-ticketSelect__cart-header div:nth-of-type(2),
#parkPassportSelect .p-ticketSelect__cart-header div:nth-of-type(2),
#rentalSelect .p-ticketSelect__cart-header div:nth-of-type(2) {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

#passportSelect .p-ticketSelect__cart-header div:last-of-type,
#parkPassportSelect .p-ticketSelect__cart-header div:last-of-type,
#rentalSelect .p-ticketSelect__cart-header div:last-of-type {
  font-size: 2rem;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

#passportSelect .p-ticketSelect__cart-body,
#parkPassportSelect .p-ticketSelect__cart-body,
#rentalSelect .p-ticketSelect__cart-body {
  padding-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  overflow-y: auto;
  height: 47vh;
}

#passportSelect .p-ticketSelect__cart-body ul li,
#parkPassportSelect .p-ticketSelect__cart-body ul li,
#rentalSelect .p-ticketSelect__cart-body ul li {
  position: relative;
  margin: .5rem 0;
  padding: .5rem .3rem;
  border: 1px dotted #ccc;
  border-radius: 8px;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#passportSelect .p-ticketSelect__cart-body ul li:first-of-type,
#parkPassportSelect .p-ticketSelect__cart-body ul li:first-of-type,
#rentalSelect .p-ticketSelect__cart-body ul li:first-of-type {
  margin-top: 0;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-name,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-name,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-name {
  font-size: 0.9rem;
  font-weight: bold;
  padding-bottom: 1rem;
  position: absolute;
  display: inline-block;
  top: -6px;
  left: 9px;
  padding: 0 7px;
  line-height: 1;
  background: #fff;
  color: #231815;
  white-space: nowrap;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content {
  border-top: 1px dotted #ccc;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content:first-of-type,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content:first-of-type,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-content:first-of-type {
  border-top: 0;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:first-of-type,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:first-of-type,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:first-of-type {
  font-weight: bold;
  color: rgba(35, 24, 21, 0.5);
  padding-left: 1rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:nth-of-type(2),
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:nth-of-type(2),
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-schedule span:nth-of-type(2) {
  padding-right: 1rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-select,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-select,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li {
  min-height: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  margin: 0.5rem 0 0.2rem;
  padding: 0 0.5rem 0;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li + li,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li + li,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li + li {
  border-left: 0.5px #ccc dotted;
  border-radius: unset;
  padding-left: 0.5rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.2rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab {
  margin-bottom: 0.64rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span {
  max-width: 80%;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long {
  font-size: 0.8rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i {
  margin-right: 0.2rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.adult,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.adult,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.adult {
  width: 0.85rem;
  height: 1.5rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.children,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.children,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.children {
  width: 0.85rem;
  height: 1.2rem;
  margin-top: 0.3rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.student,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.student,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li i.student {
  height: 1.3rem;
  margin-top: 0.2rem;
  width: 0.85rem;
}

#passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select,
#parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select,
#rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select {
  height: 2.7rem;
  width: 100%;
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("/images/ico_arrow_s_bottom.svg") no-repeat right 10px center;
  background-size: 10px auto;
  border-radius: 0px;
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 0px 25px 0px 7px;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

#passportSelect .p-ticketSelect__cart-body > P,
#parkPassportSelect .p-ticketSelect__cart-body > P,
#rentalSelect .p-ticketSelect__cart-body > P {
  text-align: center;
}

#passportSelect .p-ticketSelect__cart-footer,
#parkPassportSelect .p-ticketSelect__cart-footer,
#rentalSelect .p-ticketSelect__cart-footer {
  height: 13vh;
  position: fixed;
  bottom: 0;
  width: 96%;
  left: 2%;
  border-top: 1px solid #ccc;
}

#passportSelect .p-ticketSelect__cart-footer div,
#parkPassportSelect .p-ticketSelect__cart-footer div,
#rentalSelect .p-ticketSelect__cart-footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #fff;
}

#passportSelect .p-ticketSelect__cart-footer div p,
#parkPassportSelect .p-ticketSelect__cart-footer div p,
#rentalSelect .p-ticketSelect__cart-footer div p {
  font-weight: bold;
  font-size: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  color: #333;
  border-bottom: 1px solid rgba(35, 24, 21, 0.6);
  height: 1.6rem;
}

#passportSelect .p-ticketSelect__cart-footer div button,
#parkPassportSelect .p-ticketSelect__cart-footer div button,
#rentalSelect .p-ticketSelect__cart-footer div button {
  margin: 0;
  margin-right: 0.5rem;
  width: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: auto;
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

#passportSelect .p-ticketSelect__coupon,
#parkPassportSelect .p-ticketSelect__coupon,
#rentalSelect .p-ticketSelect__coupon {
  background-color: #fff;
  z-index: 5;
  width: 90%;
  height: 70vh;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 10px;
}

#passportSelect .p-ticketSelect__coupon-header,
#parkPassportSelect .p-ticketSelect__coupon-header,
#rentalSelect .p-ticketSelect__coupon-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 6vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  width: 96%;
  margin: auto;
}

#passportSelect .p-ticketSelect__coupon-header div,
#parkPassportSelect .p-ticketSelect__coupon-header div,
#rentalSelect .p-ticketSelect__coupon-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#passportSelect .p-ticketSelect__coupon-header div:first-of-type,
#parkPassportSelect .p-ticketSelect__coupon-header div:first-of-type,
#rentalSelect .p-ticketSelect__coupon-header div:first-of-type {
  margin-left: 0.5rem;
  position: relative;
  left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#passportSelect .p-ticketSelect__coupon-header div:first-of-type i.coupon,
#parkPassportSelect .p-ticketSelect__coupon-header div:first-of-type i.coupon,
#rentalSelect .p-ticketSelect__coupon-header div:first-of-type i.coupon {
  width: 2rem;
  height: 1.7rem;
  margin-top: 0.2rem;
}

#passportSelect .p-ticketSelect__coupon-header div:first-of-type i.fa-check-circle-o,
#parkPassportSelect .p-ticketSelect__coupon-header div:first-of-type i.fa-check-circle-o,
#rentalSelect .p-ticketSelect__coupon-header div:first-of-type i.fa-check-circle-o {
  position: absolute;
  color: #78b973;
  background-color: #fff;
  position: absolute;
  left: 1.5rem;
  font-size: 1.4rem;
  top: 8px;
}

#passportSelect .p-ticketSelect__coupon-header div:nth-of-type(2),
#parkPassportSelect .p-ticketSelect__coupon-header div:nth-of-type(2),
#rentalSelect .p-ticketSelect__coupon-header div:nth-of-type(2) {
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

#passportSelect .p-ticketSelect__coupon-header div:last-of-type,
#parkPassportSelect .p-ticketSelect__coupon-header div:last-of-type,
#rentalSelect .p-ticketSelect__coupon-header div:last-of-type {
  font-size: 2rem;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

#passportSelect .p-ticketSelect__coupon-body,
#parkPassportSelect .p-ticketSelect__coupon-body,
#rentalSelect .p-ticketSelect__coupon-body {
  padding-top: 1.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  height: 57vh;
  overflow-y: auto;
}

#passportSelect .p-ticketSelect__coupon-body p,
#parkPassportSelect .p-ticketSelect__coupon-body p,
#rentalSelect .p-ticketSelect__coupon-body p {
  font-size: 0.9rem;
}

#passportSelect .p-ticketSelect__coupon-body ul,
#parkPassportSelect .p-ticketSelect__coupon-body ul,
#rentalSelect .p-ticketSelect__coupon-body ul {
  margin-top: 2rem;
}

#passportSelect .p-ticketSelect__coupon-body ul li,
#parkPassportSelect .p-ticketSelect__coupon-body ul li,
#rentalSelect .p-ticketSelect__coupon-body ul li {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#passportSelect .p-ticketSelect__coupon-body ul li div:first-of-type,
#parkPassportSelect .p-ticketSelect__coupon-body ul li div:first-of-type,
#rentalSelect .p-ticketSelect__coupon-body ul li div:first-of-type {
  width: 85%;
  position: relative;
}

#passportSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
#parkPassportSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
#rentalSelect .p-ticketSelect__coupon-body ul li div:first-of-type input {
  border: 3px #766965 solid;
  font-size: 16px;
  padding: 6px 10px;
  width: 100%;
  font-family: "Noto Sans JP", "\30E1\30A4\30EA\30AA", Meiryo, "\30D2\30E9\30AE\30CE\89D2\30B4   ProN W3", "Hiragino Kaku Gothic ProN", "\6E38\30B4\30B7\30C3\30AF", YuGothic, sans-serif;
}

#passportSelect .p-ticketSelect__coupon-body ul li div:first-of-type i,
#parkPassportSelect .p-ticketSelect__coupon-body ul li div:first-of-type i,
#rentalSelect .p-ticketSelect__coupon-body ul li div:first-of-type i {
  position: absolute;
  right: 1rem;
  top: 0.75rem;
  font-size: 1.5rem;
  color: #231815;
}

#passportSelect .p-ticketSelect__coupon-body ul li div:last-of-type,
#parkPassportSelect .p-ticketSelect__coupon-body ul li div:last-of-type,
#rentalSelect .p-ticketSelect__coupon-body ul li div:last-of-type {
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5rem;
  color: #231815;
}

#passportSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
#parkPassportSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
#rentalSelect .p-ticketSelect__coupon-body ul li div:last-of-type i {
  width: 2rem;
  height: 2rem;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #231815;
  color: #fff;
  border-radius: 30px;
}

#passportSelect .p-ticketSelect__coupon-footer,
#parkPassportSelect .p-ticketSelect__coupon-footer,
#rentalSelect .p-ticketSelect__coupon-footer {
  height: 7vh;
  position: absolute;
  bottom: 0;
  width: 96%;
  left: 2%;
  border-top: 1px solid #ccc;
}

#passportSelect .p-ticketSelect__coupon-footer div,
#parkPassportSelect .p-ticketSelect__coupon-footer div,
#rentalSelect .p-ticketSelect__coupon-footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#passportSelect .p-ticketSelect__coupon-footer div p,
#parkPassportSelect .p-ticketSelect__coupon-footer div p,
#rentalSelect .p-ticketSelect__coupon-footer div p {
  font-weight: bold;
  font-size: 1.2rem;
  height: 1.2rem;
  margin-left: 0.5rem;
  color: #231815;
  border-bottom: 1px solid rgba(35, 24, 21, 0.6);
  height: 1.6rem;
}

#passportSelect .p-ticketSelect__coupon-footer div button,
#parkPassportSelect .p-ticketSelect__coupon-footer div button,
#rentalSelect .p-ticketSelect__coupon-footer div button {
  margin: 0;
  margin-right: 0.5rem;
  width: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 75%;
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

div.inner .p-login a {
  font-weight: bold;
  border-bottom: 1px #333 solid;
}

div.inner .p-login__register p {
  text-align: center;
  border-top: 1px solid #3F2B26;
  padding-top: 1.5rem;
}

div.inner .p-top .ticket_name td:first-of-type {
  padding: 0 1rem;
}

div.inner .p-top__precautions {
  border: solid 2px red;
  padding: 1rem;
  margin: 0 auto 2rem;
}

div.inner .p-top__precautions .link {
  border-bottom: solid 1px;
  font-weight: bold;
}

div.inner .p-top__precautions-title {
  text-align: center;
  padding-bottom: 1rem;
}

div.inner .p-top__emergency―stop {
  text-align: center;
}

div.inner .p-top__ticket-name {
  width: 40%;
}

div.inner .p-top__ticket-title {
  padding: 0 1rem;
}

div.inner .p-top__ticket-user,
div.inner .p-top__ticket-price {
  display: block;
  border-bottom: solid 1px;
  padding: 0 1rem;
}

div.inner .p-top__ticket-user:last-of-type,
div.inner .p-top__ticket-price:last-of-type {
  border: none;
}

div.inner .p-top__news {
  border: 1px solid #3F2B26;
  margin: auto;
  padding: 0.5rem 1rem;
}

div.inner .p-top__news--content {
  border-top: 1px solid #3F2B26;
  padding: 1rem 0;
}

div.inner .p-top__news--content:first-of-type {
  border: none;
}

div.inner .p-top__news--content p {
  font-weight: bold;
}

div.inner .p-top__news--content a {
  display: block;
}

div.inner .p-top__news--new {
  font-weight: bolder;
  color: #dc3535;
}

div.inner .p-top > ul li {
  width: 90%;
  margin: auto;
}

div.inner .p-top > ul li .c-form__button {
  width: 100%;
}

div.inner .p-top__ticket-price .p-top__ticket--name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

div.inner .p-top__map-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

div.inner .p-top__map-icon:hover {
  opacity: 0.5;
}

div.inner .p-top .show-modal {
  pointer-events: all !important;
}

div.inner .p-top .show-modal-calendar {
  width: 19.3rem;
}

div.inner .p-top__calendar {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 5px;
  padding-left: 5px;
}

div.inner .p-top__calendar-guard {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: .3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  -webkit-box-shadow: 0 0 0.8rem #b0b0b0;
          box-shadow: 0 0 0.8rem #b0b0b0;
}

div.inner .p-top__calendar-guard__modal {
  text-align: center;
  width: 80%;
  padding: 2rem 1rem;
  background-color: #fff;
  border-radius: .3em;
  font-weight: bold;
  -webkit-box-shadow: 0 0 2rem #231815;
          box-shadow: 0 0 2rem #231815;
}

div.inner .p-top__calendar-guard__modal button {
  background-color: #231815;
  color: #fff;
  font-weight: bold;
  width: 65%;
  margin-top: 1rem;
  padding: 0.8rem;
  -webkit-transition: 0.05s ease-in-out;
  transition: 0.05s ease-in-out;
}

div.inner .p-top__calendar-guard__modal button:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: 0.05s ease-in-out;
  transition: 0.05s ease-in-out;
}

div.inner .p-top__guard__modal_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .p-register-verify {
  -webkit-transition: 0s;
  transition: 0s;
}

div.inner .p-law article table tr th {
  display: block;
  text-align: left;
  padding-top: 1.25rem;
  font-weight: bold;
}

div.inner .p-law article table tr td {
  display: block;
  text-align: left;
  border-bottom: 2px solid #f7f7f7;
  padding: 0.5rem 0 1rem;
  line-height: 1rem;
}

div.inner .p-law article table tr:last-of-type td {
  border: 0;
}

div.inner .p-law article table tr:first-of-type th {
  padding: 0;
}

div.inner .p-term h3 {
  margin-top: 3.125rem;
  font-size: 1.45rem;
  line-height: 1.22rem;
  text-align: left;
  font-weight: bold;
  padding: 1.22rem;
  background-color: #f7f7f7;
}

div.inner .p-term__contents--wrap {
  padding: 0 0.5rem;
}

div.inner .p-term div {
  margin: 0 auto;
  text-align: left;
}

div.inner .p-term div h5 {
  margin: 1.25rem 0 1.25rem 1rem;
  position: relative;
  padding-left: 4rem;
  font-weight: bold;
  font-size: 1rem;
}

div.inner .p-term div h5 span {
  position: absolute;
  left: -1rem;
  top: 0;
  width: 6rem;
  text-align: left;
}

div.inner .p-term div p {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7rem;
}

div.inner .p-term div ol li {
  margin-left: .9rem;
  padding-bottom: .5rem;
  line-height: 1.7;
}

div.inner .p-term div ol li:last-of-type {
  padding-bottom: 0;
}

div.inner .p-term:first-of-type {
  margin-top: 1.875rem;
}

div.inner .p-term hr {
  margin-top: 1.25rem;
  border: 0;
  border-bottom: 2px solid #f7f7f7;
}

div.inner .p-term .link {
  border-bottom: solid 1px;
  font-weight: bold;
}

div.inner .p-privacypolicy {
  margin: 1rem 0 0;
}

div.inner .p-privacypolicy h2 {
  margin-top: 3.125rem;
  font-size: 1.22rem;
  line-height: 1.22rem;
  text-align: left;
  font-weight: 700;
  padding: 1.22rem;
  background-color: #eee;
}

div.inner .p-privacypolicy div {
  margin: 0 auto;
  text-align: left;
}

div.inner .p-privacypolicy div h3 {
  margin: 1.25rem 0 1.25rem 1rem;
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

div.inner .p-privacypolicy div h3 span {
  position: absolute;
  left: -1rem;
  top: 0;
  width: 6rem;
  text-align: left;
}

div.inner .p-privacypolicy div p {
  width: 90%;
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7rem;
}

div.inner .p-privacypolicy div ol li {
  margin-left: .9rem;
  padding-bottom: .5rem;
  line-height: 1.7;
}

div.inner .p-privacypolicy div ol li:last-of-type {
  padding-bottom: 0;
}

div.inner .p-privacypolicy div ul li {
  margin-left: 0;
  padding-bottom: .5rem;
  padding-left: 1rem;
  text-indent: -1rem;
  line-height: 1.7;
}

div.inner .p-privacypolicy:first-of-type {
  margin-top: 1.875rem;
}

div.inner .p-privacypolicy hr {
  margin-top: 1.25rem;
  border: 0;
  border-bottom: 1px solid #ccc;
}

div.inner .p-usage {
  width: 100%;
}

div.inner .p-usage__faq-choice div {
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

div.inner .p-usage__faq-choice div > h2 {
  background-color: #fff;
}

div.inner .p-usage__faq-choice div p {
  text-align: left;
  padding-left: 2rem;
  margin-top: 1rem !important;
}

div.inner .p-usage__faq-choice div p span {
  cursor: pointer;
}

div.inner .p-usage__faq-choice div p span > i {
  margin-right: .5rem;
}

div.inner .p-usage__faq-choice div p span:hover > i {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

div.inner .p-usage__questions div > h2 {
  background-color: #fff;
}

div.inner .p-usage__questions div dl {
  border-bottom: 1px solid #231815;
  font-weight: bold;
  width: 100%;
}

div.inner .p-usage__questions div dl dt div,
div.inner .p-usage__questions div dl dd div {
  padding-left: 1rem;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  position: relative;
}

div.inner .p-usage__questions div dl dt div p,
div.inner .p-usage__questions div dl dd div p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.inner .p-usage__questions div dl dt {
  border-bottom: 1px solid #231815;
  cursor: pointer;
}

div.inner .p-usage__questions div dl dt span {
  margin-right: 0.5rem;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-usage__questions div dl dt span .fa-angle-right {
  font-size: 1.5rem;
  font-weight: bolder;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-usage__questions div dl dd {
  background-color: #f7f3de;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

div.inner .p-usage__questions div dl dd div:before {
  content: "A";
  padding-right: 1rem;
  -ms-flex-preferred-size: 5%;
      flex-basis: 5%;
}

div.inner .p-usage__questions div dl dd div:after {
  content: " ";
  font-size: 1.2rem;
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
}

div.inner .p-usage .btn_on {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-mypage h2 {
  position: relative;
}

div.inner .p-mypage h2 span:last-of-type {
  right: 5%;
}

div.inner .p-mypage__table-wrap {
  border-bottom: 2px solid #f7f7f7;
  position: relative;
}

div.inner .p-mypage__table-wrap:first-of-type {
  margin-top: 0.75rem;
}

div.inner .p-mypage__table-wrap:first-of-type table tr:first-of-type th {
  padding-top: 1.25rem;
}

div.inner .p-mypage__table-wrap:last-of-type {
  border: 0;
}

div.inner .p-mypage__table-wrap table {
  border: 0;
}

div.inner .p-mypage__table-wrap table:first-of-type {
  margin-top: 0;
}

div.inner .p-mypage__table-wrap table tr:last-of-type td {
  padding-bottom: 1rem;
}

div.inner .p-mypage__table-wrap table tr:first-of-type th {
  padding-top: 1rem;
}

div.inner .p-mypage__table-wrap table tr th {
  font-weight: bold;
}

div.inner .p-mypage__table-wrap table tr td {
  border-bottom: 0;
  padding-bottom: 0.5rem;
  padding-top: 0.2rem;
}

div.inner .p-mypage__credit > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .p-mypage__credit > div div {
  margin-right: 1.5rem;
  font-weight: bold;
}

div.inner .p-mypage__credit > div ul li {
  font-size: 0.9rem;
  letter-spacing: .1rem;
}

div.inner .p-mypage__credit > div ul li:nth-of-type(2) {
  color: #999;
}

div.inner .p-mypage__credit--title {
  position: relative;
  margin-top: 1rem;
}

div.inner .p-mypage__icon {
  background-color: #231815;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  right: 0;
  width: 4rem;
  height: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 1px 1px 3px #aaa;
          box-shadow: 1px 1px 3px #aaa;
}

div.inner .p-mypage__icon:lang(en) {
  width: 5rem;
}

div.inner .p-mypage__icon:hover {
  opacity: 0.5;
}

div.inner .p-mypage__unsubscribe-wrap {
  border-top: solid 2px #f7f7f7;
  padding-top: 1rem;
  margin-top: 1rem;
}

div.inner .p-mypage__unsubscribe-wrap p {
  display: inline-block;
  cursor: pointer;
}

div.inner .p-withdrawal--notes .p-notes__precautions {
  text-align: left;
  padding: 0 1rem 3rem;
}

div.inner .p-withdrawal--notes .p-notes__precautions .link {
  border-bottom: solid 1px;
  font-weight: bold;
}

div.inner .p-withdrawal--notes .p-notes__confirmation {
  border-top: 1px solid #231815;
  padding: 1rem 0 1rem;
}

div.inner .p-withdrawal--notes p {
  margin-bottom: 1rem;
}

div.inner .p-withdrawal--notes ol li {
  margin-left: 1rem;
  padding-top: 0.5rem;
}

div.inner .p-withdrawal--notes .checkbox {
  margin-bottom: 3rem;
}

div.inner .p-withdrawal--confirm__text {
  margin: 3rem 0;
  padding-top: 3rem;
  border-top: 1px solid #231815;
}

div.inner .p-contact__overline {
  widows: 100%;
  border-top: 1px solid #3F2B26;
  padding-top: 1rem;
}

div.inner .p-contact__text {
  margin-left: 1.5rem;
}

div.inner .p-contact .c-modal--content-scroll__content {
  height: 33rem !important;
  width: 20rem !important;
}

div.inner .p-contact--comp__img {
  text-align: center;
}

div.inner .p-contact--comp__img .fa-paper-plane {
  text-align: center;
  font-size: 10rem;
  color: #999;
}

div.inner .p-contact--comp__img h2 {
  text-align: center;
  background-color: #fff;
  margin-top: 1rem;
}

div.inner .p-contact--comp__body {
  margin: 2rem auto 3rem;
  width: 74%;
  text-align: center;
}

div.inner .p-contact--comp__body p:last-of-type {
  text-align: center;
  margin-top: 0.5rem;
}

div.inner .p-news__content {
  padding: 2rem 0;
  border-bottom: 1px solid #3F2B26;
}

div.inner .p-news__day {
  text-align: right;
  margin: 1rem 0;
}

div.inner .p-reserved__ticket {
  position: relative;
}

div.inner .p-reserved__ticket--name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-right: 5rem;
}

div.inner .p-reserved__map-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

div.inner .p-reserved__map-icon:hover {
  opacity: 0.5;
}

div.inner .p-reserved .c-modal--map {
  left: 45px;
}

div.inner .p-reserved .c-modal--map--right {
  right: 15%;
}

div.inner .p-reserved__credit-head th {
  padding-top: 1.875rem;
  text-align: left;
}

div.inner .p-reserved__credit-block td div .c-form--side .c-form__list li.c-form__item:last-of-type {
  margin-bottom: 1.875rem;
}

div.inner .p-reserved__credit-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
}

div.inner .p-reserved__credit-list li:last-of-type {
  padding-bottom: 1.5rem;
}

div.inner .p-reserved__credit-list li div {
  font-weight: bold;
}

div.inner .p-reserved__credit-list li div:first-of-type {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

div.inner .p-reserved__credit-list li div:last-of-type span {
  display: block;
  font-size: 0.8rem;
}

div.inner .p-reserved__credit-list li div:last-of-type span.new-card {
  font-size: 1rem;
}

div.inner .p-reserved__convenience-head {
  display: block;
  margin-top: 1.25rem;
}

div.inner .p-reserved__convenience-note {
  line-height: 1.7rem;
  margin-top: 3.125rem;
}

div.inner .p-reserved__link {
  text-decoration: underline;
}

div.inner .p-reserved__border {
  border-bottom: 2px solid #f7f7f7;
}

div.inner .p-reserved__ticket-title {
  text-align: left;
  font-weight: bold;
}

div.inner .p-reserved__ticket-title__first {
  text-align: left;
  font-weight: bold;
  padding: 0.5rem 0 0 0;
}

div.inner .p-reserved__ticket-title__last {
  text-align: left;
  font-weight: bold;
}

div.inner .p-reserved__ticket-contents {
  text-align: right;
}

div.inner .p-reserved__ticket-contents__first {
  text-align: right;
}

div.inner .p-reserved__ticket-contents__last {
  text-align: right;
  padding: 0 0 0.5rem 0;
}

div.inner .p-reserved__ticket-note {
  color: #dc3535;
  padding: 1rem 0 1rem 0;
  text-align: center;
  border-bottom: 2px solid #f7f7f7;
}

div.inner .p-reserved__settlement-note {
  border: solid 2px #dc3535;
  color: #dc3535;
  margin: 2rem auto 0;
  width: 18rem;
  padding: 1rem;
  text-align: center;
}

div.inner .p-reserved__settlement-notice {
  border: solid 2px #dc3535;
  color: #dc3535;
  margin: 2rem auto 0;
  max-width: 40rem;
  padding: 1rem;
  text-align: center;
}

div.inner .p-reserved__name-block {
  padding-bottom: 1.25rem;
}

div.inner .p-reserved__name-block > div p span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

div.inner .p-reserved__name-block > div > label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

div.inner .p-reserved__name-block > div form table tr td p span {
  text-indent: 0;
  padding-left: 0;
}

div.inner .p-reserved table {
  width: 100%;
}

div.inner .p-reserved--comp p a {
  border-bottom: solid 1px #333;
  font-weight: bold;
}

div.inner .p-reserved--comp .show-modal {
  pointer-events: all !important;
}

div.inner .p-reserved--comp .c-modal--map {
  left: 45px;
}

div.inner .p-reserved--comp .c-modal--map--right {
  right: 15%;
}

div.inner .p-reserved .c-form__item--credit {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

div.inner .p-reserved #only_can_credit {
  color: #dc3535;
}

div.inner .p-reserved #error_inputForm_Ticket,
div.inner .p-reserved #error_credit_select_block {
  color: #dc3535;
  font-weight: bold;
  text-align: center;
}

div.inner .p-reserved__term {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 2rem;
  overflow: hidden;
  height: 190px;
  /* 開く前に見えている部分の高さ */
}

div.inner .p-reserved__term--wrap {
  position: relative;
}

div.inner .p-reserved__term--wrap *,
div.inner .p-reserved__term--wrap .p-reserved__term--wrap *:before,
div.inner .p-reserved__term--wrap .p-reserved__term--wrap *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

div.inner .p-reserved__term--wrap label {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  height: 100px;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), color-stop(90%, rgba(255, 255, 255, 0.95)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 90%);
}

div.inner .p-reserved__term--wrap input:checked + label {
  background: inherit;
  /* 開いた時にグラデーションを消す */
}

div.inner .p-reserved__term--wrap #detailsButton {
  line-height: 2.5rem;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 50%;
  width: 8rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #231815;
}

div.inner .p-reserved__term--wrap input {
  display: none;
}

div.inner .p-reserved__term--wrap input:checked ~ .p-reserved__term {
  height: 100%;
  padding-bottom: 80px;
  /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div.inner .p-reserved__term--wrap h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding: 1rem;
  font-size: 20px;
  background-color: #f7f7f7;
}

div.inner .p-reserved__term--wrap ul li {
  margin: 1rem 0;
}

div.inner .p-reserved__term--wrap ul li:first-of-type {
  margin: 0.5rem 0 1rem;
}

div.inner .p-reserved__term--wrap ul li ul li:first-of-type {
  margin: 0 0 1rem !important;
}

div.inner .p-reserved__term--title {
  font-weight: bold;
}

div.inner .p-reserved__term--sentence {
  margin-top: 0 !important;
}

div.inner .p-reserved__term--details li {
  text-indent: -1em;
  padding-left: 2em;
  display: block;
}

div.inner .p-reserved__term--bullets li {
  margin-left: 0;
  padding-bottom: .5rem;
  padding-left: 1rem;
  text-indent: -1rem;
  line-height: 1.7;
}

div.inner .p-reserved__term--link {
  border-bottom: solid 1px;
  font-weight: bold;
}

div.inner .p-reserved .show-modal {
  pointer-events: all !important;
}

div.inner .p-reserved #confirm_modal .c-modal__body {
  width: 85%;
}

div.inner .p-reserved #confirm_modal .c-modal__body p:first-of-type {
  color: #dc3535;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

div.inner .p-reserved #confirm_modal .c-modal__body p:nth-of-type(2) {
  font-weight: bold;
  margin-bottom: 1rem;
}

div.inner .p-reserved #confirm_modal .c-modal__body p:nth-of-type(3) {
  font-weight: bold;
  margin-bottom: 0.2rem;
}

div.inner .p-reserved #no-card_modal .c-modal__content {
  min-height: 10rem;
}

div.inner .p-reserved #no-card_modal .c-modal__body {
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

div.inner .p-reserved #no-card_modal .c-modal__body > p {
  margin: auto;
  color: #dc3535;
}

div.inner .p-errors__picture {
  text-align: center;
}

div.inner .p-errors .fa-exclamation-triangle {
  font-size: 10rem;
  color: #999;
}

div.inner .p-errors h2 {
  background: none;
  text-align: center;
}

div.inner .p-errors__wrap {
  text-align: center;
}

div.inner .p-errors--default__wrap {
  text-align: center;
}

div.inner .p-errors--default__code {
  text-align: center;
}

div.inner .p-errors--default__code p {
  font-weight: bold;
  font-size: 8rem;
  color: #999;
}

div.inner .p-maintenance__picture {
  text-align: center;
}

div.inner .p-maintenance__picture .fa-cogs {
  font-size: 10rem;
  color: #999;
}

div.inner .p-maintenance h2 {
  background: none;
  text-align: center;
}

div.inner .p-maintenance--default__picture {
  text-align: center;
}

div.inner .p-maintenance--default__picture .fa-cogs {
  font-size: 10rem;
  color: #999;
}

div.inner .p-maintenance--default h2 {
  background: none;
  text-align: center;
}

div.inner .p-reservations__ticket-table {
  width: 100%;
}

div.inner .p-reservations__ticket-table > tbody > tr:first-of-type > th {
  margin-top: 1rem;
  border-top: 0;
}

div.inner .p-reservations__ticket-table > tbody > tr > th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.25rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #231815;
  font-weight: normal;
}

div.inner .p-reservations__ticket-table > tbody > tr > th span:last-of-type {
  padding-right: 0.5rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > th span:last-of-type i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-reservations__ticket-table > tbody > tr > th span:last-of-type i.isOpen {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

div.inner .p-reservations__ticket-table > tbody > tr > td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 1rem;
  margin-right: 1rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table {
  width: 100%;
  margin-bottom: 2rem;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > th {
  display: block;
  text-align: left;
  background-color: #f7f7f7;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td {
  display: block;
  margin-right: 1rem;
  margin-left: 1rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table {
  width: 100%;
  margin: 1rem 0;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr {
  border-bottom: 1px dotted #ccc;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr:last-of-type {
  border-bottom: 0;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr > th {
  text-align: left;
  padding: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr > th i.adult {
  height: 1.3rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr > th i.children {
  height: 1rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr > th i.student {
  height: 1.3rem;
}

div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr > td {
  text-align: right;
  padding: 0.75rem;
}

div.inner .p-reservations__table-title {
  border: 0;
  background: #f7f7f7;
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  margin: 0;
  font-weight: bold;
}

div.inner .p-reservations__table {
  margin-top: 0 !important;
}

div.inner .p-reservations__table td .area-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  padding: 1rem 0;
}

div.inner .p-reservations__table td .area-info:last-of-type {
  border: none;
}

div.inner .p-reservations__table td .passport-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-top: 1.5rem;
}

div.inner .p-reservations__contents .c-accordion--on {
  max-height: 999rem !important;
}

div.inner .p-reservations__table-place {
  background: #fff !important;
}

div.inner .p-reservations__table-place div {
  margin-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .p-reservations__table-place div span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

div.inner .p-reservations__table-place div span span {
  margin-left: 0.5rem;
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-reservations__table-place div .children-wrap {
  margin-left: 1.15rem;
}

div.inner .p-reservations__table-place div i {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

div.inner .p-reservations__table-contents th {
  font-weight: normal !important;
}

div.inner .p-reservations .btn_on {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

div.inner .p-reservations .c-accordion--on {
  max-height: 999rem !important;
}

div.inner .p-reservations > ul li {
  width: 90%;
  margin: auto;
}

div.inner .p-reservations > ul li .c-form__button {
  width: 100%;
}

div.inner .p-reservations--history__cancele {
  color: #dc3535 !important;
}

div.inner .p-reservations--history table {
  table-layout: fixed;
  width: 100%;
}

div.inner .p-reservations--history table tr {
  border-bottom: 2px solid #f7f7f7;
  padding: 1rem 0;
  height: 5rem;
}

div.inner .p-reservations--history table tr:last-of-type {
  border: none;
}

div.inner .p-reservations--history table tr th {
  text-align: left;
  width: 75%;
}

div.inner .p-reservations--history table tr th small {
  color: #999;
}

div.inner .p-reservations--history table tr td {
  text-align: right;
}

div.inner .p-reservations--history .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.inner .p-reservations--history .pagination li {
  margin: 0 .5rem;
}

div.inner .p-reservations--history__button {
  line-height: 1rem !important;
  width: 5rem !important;
  -webkit-box-shadow: 1px 1px 3px #aaa;
          box-shadow: 1px 1px 3px #aaa;
}

div.inner .p-reservations--history__button:lang(en) {
  width: 6rem !important;
}

div.inner .p-reservations--detail__message {
  font-weight: bold !important;
}

div.inner .p-reservations--detail__contents table:last-of-type tr {
  border: none !important;
}

div.inner .p-reservations--detail p a {
  border-bottom: solid 1px #333;
  font-weight: bold;
}

div.inner .p-reservations--detail__ticket {
  position: relative;
}

div.inner .p-reservations--detail__ticket-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-right: 5rem;
}

div.inner .p-reservations--detail__map-icon {
  margin-left: 0.5rem;
  cursor: pointer;
}

div.inner .p-reservations--detail__map-icon:hover {
  opacity: 0.5;
}

div.inner .p-reservations--detail .c-modal--map {
  left: 45px;
}

div.inner .p-reservations--detail .c-modal--map--right {
  right: 15%;
}

div.inner .p-reservations--detail .show-modal {
  pointer-events: all !important;
}

div.inner .p-receipts {
  margin: 50px 1rem;
}

div.inner .p-receipts h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

div.inner .p-receipts .print {
  cursor: pointer;
}

div.inner .p-receipts__top > span {
  border-bottom: solid 1px #333;
  font-weight: bold;
}

div.inner .p-receipts__info {
  float: right;
  margin-top: 3rem;
  min-width: 20%;
}

div.inner .p-receipts__info div + div {
  margin-top: 0.5rem;
}

div.inner .p-receipts__info > div {
  border-bottom: 1px solid #ccc;
}

div.inner .p-receipts__info > div:last-of-type {
  text-align: center;
}

div.inner .p-receipts__content {
  margin: 45% auto 20%;
  width: 80%;
  text-align: center;
}

div.inner .p-receipts__money {
  font-size: 2.5rem;
  border-bottom: 1px solid #ccc;
  margin: auto;
}

div.inner .p-receipts__explanation {
  margin-top: 20%;
}

div.inner .p-receipts__publisher--logo {
  margin: 1rem auto;
  width: 8rem;
}

div.inner .p-receipts__publisher--info {
  text-align: center;
}

div.inner .p-receipts__no {
  text-align: center;
  margin-top: 5%;
}

/* ==================================================================
Desktop
================================================================== */

@media screen and (min-width: 1024px) {
  div.inner #calendar .event-calendar-mobile,
  #rentalCalendar .event-calendar-mobile {
    display: none;
  }

  div.inner #calendar .event-calendar,
  #rentalCalendar .event-calendar {
    display: block;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper,
  #rentalCalendar .event-calendar .datepicker-wrapper {
    width: 100% !important;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-tab,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.5rem;
    margin-bottom: 0.5rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    padding-right: calc(10px + 2.7%);
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-tab li,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-tab li {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    height: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
    border: 3px solid #231815;
    color: #231815;
    font-weight: bold;
    -webkit-transition: 0;
    transition: 0;
    cursor: pointer;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-tab li.selected,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-tab li.selected {
    background-color: #231815;
    color: #fff;
    position: relative;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-tab li.selected:after,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-tab li.selected:after {
    content: "";
    position: absolute;
    bottom: -9px;
    border-top: 10px solid #231815;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-notice,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-notice {
    margin-bottom: 3rem;
    padding-right: calc(10px + 2.7%);
    text-align: right;
    font-size: 11px !important;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-notice div,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-notice div {
    display: none;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup {
    border: 0;
    border-bottom: 1px dotted #ccc;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding-bottom: 2rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-dateRange,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-weekRange,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-dateRange,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div:nth-last-of-type(2) .datepicker-weekRange {
    border-right: 1px dotted #ccc;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl {
    width: 90%;
    margin: 0 auto;
    z-index: 1;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn {
    width: 12rem;
    margin-top: 0.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before {
    content: "";
    display: block !important;
    top: 1.7rem;
    border: 3px solid #231815;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 0.7rem !important;
    height: 0.7rem !important;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth {
    pointer-events: none;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth:before,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth:before,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth:before,
  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantPreMonth:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn.cantNextMonth:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantPreMonth:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn.cantNextMonth:before {
    border-color: #ccc;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn {
    top: 5px;
    left: 18%;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-preBtn:before {
    border-top: 0;
    border-right: 0;
    float: right;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn {
    top: 5px;
    right: 18%;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup div.datepicker-ctrl span.datepicker-nextBtn:before {
    border-left: 0;
    border-bottom: 0;
    float: left;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner {
    width: 100%;
    float: unset;
    margin: auto;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body {
    height: 38rem;
    padding: 0;
    position: relative;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body p:first-of-type,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body p:first-of-type {
    font-size: 1.4rem !important;
    font-weight: bold;
    color: #231815;
    margin-top: 0.7rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--red,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--red {
    color: #ec5252;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--blue,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--blue {
    color: #0192c7;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--gray,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body span.cell-color--gray {
    color: #bbb !important;
    background: #eee !important;
    pointer-events: none !important;
    -webkit-box-shadow: unset !important;
            box-shadow: unset !important;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange {
    margin-top: 2rem;
    padding: 10px 10px;
    padding-top: 0;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span {
    width: 13.28571428571429% !important;
    margin: 0.1rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:first-of-type,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:first-of-type {
    color: #ec5252;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:last-of-type,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange span:last-of-type {
    color: #0192c7;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange {
    padding: 10px 10px;
    padding-bottom: 0;
    font-size: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    margin-top: 1rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell {
    width: 13.28571428571429%;
    height: 5rem !important;
    overflow: hidden;
    position: relative;
    font-weight: bold;
    background-color: #fff;
    font-size: 14px;
    margin: 0.1rem;
    -webkit-box-shadow: 0px 0px 0px 2px #f4f4f4 inset;
            box-shadow: 0px 0px 0px 2px #f4f4f4 inset;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:hover,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell:hover {
    font-size: 1.2rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.is-selected,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.is-selected {
    font-size: 1.2rem;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    top: 8%;
    left: 12%;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div.day-cell--msg,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell div.day-cell--msg {
    position: relative;
    left: 0;
    margin-top: 1.3rem;
    font-size: 0.9rem;
    display: inline-table;
    vertical-align: top;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray {
    opacity: 0;
    pointer-events: none;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray div,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-dateRange .day-cell.datepicker-item-gray div {
    color: #ccc;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation {
    position: absolute;
    font-size: 3rem;
    color: #ccc;
    bottom: 0;
    width: 100%;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span {
    cursor: pointer;
    width: auto;
    height: auto;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.before-week,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.before-week {
    left: -2rem;
    bottom: 16.3rem;
    position: absolute;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.next-week,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.next-week {
    right: -2rem;
    bottom: 16.5rem;
    position: absolute;
  }

  div.inner #calendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.cancel,
  #rentalCalendar .event-calendar .datepicker-wrapper .datepicker-popup .datepicker-inner .datepicker-body .datepicker-weekRange-operation span.cancel {
    display: none;
  }

  div.inner #calendar .p-calendar-operation,
  #rentalCalendar .p-calendar-operation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 1rem;
    height: 5rem;
  }

  div.inner #calendar .p-calendar__operation,
  #rentalCalendar .p-calendar__operation {
    text-align: center;
  }

  #ticketSelect .isLoading,
  #parkSelect .isLoading {
    background-size: 70px;
  }

  #ticketSelect .modal-content,
  #parkSelect .modal-content {
    width: 30rem;
  }

  #ticketSelect .select-tab,
  #parkSelect .select-tab {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    padding-right: calc(10px + 2.7%);
  }

  #ticketSelect .select-tab li,
  #parkSelect .select-tab li {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    height: 3rem;
    background-color: #fff;
    color: #231815;
    border: 3px solid #231815;
    -webkit-transition: 0;
    transition: 0;
    cursor: pointer;
  }

  #ticketSelect .select-tab li.selected,
  #parkSelect .select-tab li.selected {
    background-color: #231815;
    color: #fff;
    position: relative;
  }

  #ticketSelect .select-tab li.selected:after,
  #parkSelect .select-tab li.selected:after {
    content: "";
    position: absolute;
    bottom: -9px;
    border-top: 10px solid #231815;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    z-index: 4;
  }

  #ticketSelect .select-tab li > a,
  #parkSelect .select-tab li > a {
    color: #231815;
  }

  #ticketSelect .select-tab li:nth-child(3),
  #parkSelect .select-tab li:nth-child(3) {
    display: none;
  }

  #ticketSelect .p-ticketSelect__wrapper,
  #parkSelect .p-ticketSelect__wrapper {
    width: 100%;
    top: 50%;
    left: 50%;
    z-index: 3;
    overflow: hidden;
  }

  #ticketSelect .p-ticketSelect__overlay--pc,
  #parkSelect .p-ticketSelect__overlay--pc {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
  }

  #ticketSelect .p-ticketSelect__overlay.isActive,
  #parkSelect .p-ticketSelect__overlay.isActive {
    z-index: 6;
  }

  #ticketSelect .p-ticketSelect__overlay--message,
  #parkSelect .p-ticketSelect__overlay--message {
    left: 15%;
    right: 15%;
  }

  #ticketSelect .p-ticketSelect__contents,
  #parkSelect .p-ticketSelect__contents {
    display: block;
    height: 100%;
  }

  #ticketSelect .p-ticketSelect__header,
  #parkSelect .p-ticketSelect__header {
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
  }

  #ticketSelect .p-ticketSelect__header.isDayFixed,
  #parkSelect .p-ticketSelect__header.isDayFixed {
    -ms-flex-preferred-size: 11%;
        flex-basis: 11%;
  }

  #ticketSelect .p-ticketSelect__navigation-list,
  #parkSelect .p-ticketSelect__navigation-list {
    height: 4rem;
  }

  #ticketSelect .p-ticketSelect__navigation-item:first-of-type,
  #parkSelect .p-ticketSelect__navigation-item:first-of-type {
    font-size: 1.2rem;
    padding-left: 1.2rem;
  }

  #ticketSelect .p-ticketSelect__navigation-item:nth-of-type(2),
  #parkSelect .p-ticketSelect__navigation-item:nth-of-type(2) {
    display: none;
  }

  #ticketSelect .p-ticketSelect__navigation-item:last-of-type,
  #parkSelect .p-ticketSelect__navigation-item:last-of-type {
    display: none;
  }

  #ticketSelect .p-ticketSelect__day-select,
  #parkSelect .p-ticketSelect__day-select {
    border-bottom: 0px;
  }

  #ticketSelect .p-ticketSelect__day-select li,
  #parkSelect .p-ticketSelect__day-select li {
    margin-right: 0.25rem;
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__day-select li:first-of-type,
  #parkSelect .p-ticketSelect__day-select li:first-of-type {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }

  #ticketSelect .p-ticketSelect__day-select li:last-of-type,
  #parkSelect .p-ticketSelect__day-select li:last-of-type {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }

  #ticketSelect .p-ticketSelect__day-select li div,
  #parkSelect .p-ticketSelect__day-select li div {
    padding: 0.5rem 0.5rem;
  }

  #ticketSelect .p-ticketSelect__day-select li div:hover small:first-of-type,
  #parkSelect .p-ticketSelect__day-select li div:hover small:first-of-type {
    font-size: 1rem;
  }

  #ticketSelect .p-ticketSelect__day-select li div small,
  #parkSelect .p-ticketSelect__day-select li div small {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  #ticketSelect .p-ticketSelect__day-select li div .right-arrow:before,
  #parkSelect .p-ticketSelect__day-select li div .right-arrow:before {
    width: 1rem;
  }

  #ticketSelect .p-ticketSelect__day-select li div .right-arrow:after,
  #parkSelect .p-ticketSelect__day-select li div .right-arrow:after {
    left: 0.98rem;
    border-left: 1rem solid darkgray;
  }

  #ticketSelect .p-ticketSelect__day-select li div .left-arrow:before,
  #parkSelect .p-ticketSelect__day-select li div .left-arrow:before {
    right: 1rem;
  }

  #ticketSelect .p-ticketSelect__day-select li div .left-arrow:after,
  #parkSelect .p-ticketSelect__day-select li div .left-arrow:after {
    width: 1rem;
  }

  #ticketSelect .p-ticketSelect__body,
  #parkSelect .p-ticketSelect__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 385px;
    position: relative;
    border: 2px solid #231815;
  }

  #ticketSelect .p-ticketSelect__body > div:first-of-type,
  #parkSelect .p-ticketSelect__body > div:first-of-type {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  #ticketSelect .p-ticketSelect__body > div:last-of-type,
  #parkSelect .p-ticketSelect__body > div:last-of-type {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }

  #ticketSelect .p-ticketSelect__body.isDayFixed,
  #parkSelect .p-ticketSelect__body.isDayFixed {
    -ms-flex-preferred-size: 89%;
        flex-basis: 89%;
    padding-top: 0;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__message--notice,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__message--notice {
    margin-top: 2rem;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info {
    position: relative;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr {
    margin-top: 1rem;
    height: auto;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 55rem;
    padding-left: 1.5rem;
    border-bottom: 2px solid #231815;
    margin-top: 0;
    width: 100%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th:nth-child(even) > th,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th:nth-child(even) > th {
    background: #fff;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title {
    border: none;
    padding: 0;
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title > div,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title > div {
    margin-left: 0;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .ticket-title h3 {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    font-size: 1.2rem;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th div span {
    padding-right: 0;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail > img,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > th .thumbnail > img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover';
    height: 100%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td {
    margin-left: auto;
    margin-right: auto;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div {
    margin-left: 1rem;
    margin-top: 0;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div:first-of-type,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div:first-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div {
    margin-top: 1rem;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div > img,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div .ticket-image > div > img {
    max-height: 200px;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div > ul,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td > div > ul {
    margin-left: 1rem;
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__content {
    width: 92%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button {
    width: 7rem !important;
    height: 4rem;
    margin-top: 0.7rem;
    margin-right: 0.5rem;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button #end-time,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__select-time > button #end-time {
    font-size: 0.7rem;
    font-weight: bold;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:first-of-type {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    margin-right: 2%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:last-of-type,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__info--list:last-of-type {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__area {
    margin-right: 1%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note {
    margin-bottom: 0;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__type {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__price {
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
  }

  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase.limited,
  #ticketSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease.limited,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--increase.limited,
  #parkSelect .p-ticketSelect__body .p-ticketSelect__tickets-info > table > tr > td .p-ticketSelect__button--decrease.limited {
    cursor: unset;
  }

  #ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select,
  #parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select {
    left: 90%;
  }

  #ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
  #parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i {
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
  #parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label {
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li .c-input--checkbox:checked + label:after,
  #parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li .c-input--checkbox:checked + label:after {
    top: 8px !important;
  }

  #ticketSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back,
  #parkSelect .p-ticketSelect__ui-panel .p-ticketSelect__page-back {
    top: 26rem;
  }

  #ticketSelect .p-ticketSelect__footer,
  #parkSelect .p-ticketSelect__footer {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    z-index: 5;
    position: absolute;
    top: unset;
    left: auto;
    bottom: 1rem;
    right: 0;
  }

  #ticketSelect .p-ticketSelect__footer--btn-area > div,
  #parkSelect .p-ticketSelect__footer--btn-area > div {
    height: 4.5rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    overflow: hidden;
  }

  #ticketSelect .p-ticketSelect__footer--btn-area > div.isEmpty,
  #parkSelect .p-ticketSelect__footer--btn-area > div.isEmpty {
    background-color: #999;
    border-color: #999;
    cursor: unset;
  }

  #ticketSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item,
  #parkSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item {
    cursor: unset;
  }

  #ticketSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item:first-of-type,
  #parkSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item:first-of-type {
    color: #999;
    cursor: default;
  }

  #ticketSelect .p-ticketSelect__footer-item:first-of-type,
  #parkSelect .p-ticketSelect__footer-item:first-of-type {
    margin-left: 2px;
    margin-bottom: 2px;
    padding-left: 0rem;
    cursor: pointer;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  #ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
  #parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type {
    position: relative;
  }

  #ticketSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
  #parkSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o {
    left: 1.1rem;
  }

  #ticketSelect .p-ticketSelect__footer-item:last-of-type,
  #parkSelect .p-ticketSelect__footer-item:last-of-type {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }

  #ticketSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
  #parkSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type {
    position: relative;
    left: 0;
    margin-right: 0.5rem;
  }

  #ticketSelect .p-ticketSelect__cart,
  #parkSelect .p-ticketSelect__cart {
    width: 200px;
    height: auto;
    min-height: 380px;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #f5f5f5;
    z-index: 2;
    border-left: 2px solid #231815;
    border-radius: 0px;
  }

  #ticketSelect .p-ticketSelect__cart-header,
  #parkSelect .p-ticketSelect__cart-header {
    height: 3.5rem;
    border-bottom: 0;
    width: 92%;
  }

  #ticketSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
  #parkSelect .p-ticketSelect__cart-header div:first-of-type span.badge {
    top: 0.55rem;
    left: 1.3rem;
  }

  #ticketSelect .p-ticketSelect__cart-header div:nth-of-type(2),
  #parkSelect .p-ticketSelect__cart-header div:nth-of-type(2) {
    font-size: 1.2rem;
  }

  #ticketSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span,
  #parkSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #ticketSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span i,
  #parkSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span i {
    width: 1.7rem;
    height: 2rem;
    margin-top: -0.5rem;
    margin-right: 0.5rem;
  }

  #ticketSelect .p-ticketSelect__cart-header div:last-of-type span,
  #parkSelect .p-ticketSelect__cart-header div:last-of-type span {
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__cart-body,
  #parkSelect .p-ticketSelect__cart-body {
    padding-top: 1rem;
    background-color: #fff;
    width: 92%;
    height: auto;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    position: absolute;
    top: 4rem;
    bottom: 9rem;
    left: 4%;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li,
  #parkSelect .p-ticketSelect__cart-body-ticket li {
    margin: auto;
    width: 92%;
    margin-bottom: 1.5rem;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li:first-of-type,
  #parkSelect .p-ticketSelect__cart-body-ticket li:first-of-type {
    margin-top: 0.5rem;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li,
  #parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li {
    padding-right: 0;
    padding-left: 1rem !important;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p.mab,
  #parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p.mab {
    margin-bottom: 0.45rem;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span,
  #parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span {
    max-width: 70%;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span.long,
  #parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li > p > span.long {
    font-size: 0.7rem;
  }

  #ticketSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li select,
  #parkSelect .p-ticketSelect__cart-body-ticket li .p-ticketSelect__cart-kind li select {
    padding: 0px 25px 0px 7px;
    width: 80%;
  }

  #ticketSelect .p-ticketSelect__cart-body--alert-area,
  #parkSelect .p-ticketSelect__cart-body--alert-area {
    position: absolute;
    bottom: 0;
    width: 100%;
  }

  #ticketSelect .p-ticketSelect__cart-body--alert-area li .mild,
  #ticketSelect .p-ticketSelect__cart-body--alert-area li .severe,
  #parkSelect .p-ticketSelect__cart-body--alert-area li .mild,
  #parkSelect .p-ticketSelect__cart-body--alert-area li .severe {
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }

  #ticketSelect .p-ticketSelect__cart-body--alert-area li .mild p,
  #ticketSelect .p-ticketSelect__cart-body--alert-area li .severe p,
  #parkSelect .p-ticketSelect__cart-body--alert-area li .mild p,
  #parkSelect .p-ticketSelect__cart-body--alert-area li .severe p {
    position: static;
  }

  #ticketSelect .p-ticketSelect__cart-footer,
  #parkSelect .p-ticketSelect__cart-footer {
    height: 2.5rem;
    position: absolute;
    border-top: 0;
    bottom: 6rem;
  }

  #ticketSelect .p-ticketSelect__cart-footer div,
  #parkSelect .p-ticketSelect__cart-footer div {
    margin-right: 0.6rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-color: #f5f5f5;
  }

  #ticketSelect .p-ticketSelect__coupon,
  #parkSelect .p-ticketSelect__coupon {
    z-index: 7;
    width: 500px;
    height: 400px;
  }

  #ticketSelect .p-ticketSelect__coupon-header,
  #parkSelect .p-ticketSelect__coupon-header {
    height: 50px;
  }

  #ticketSelect .p-ticketSelect__coupon-header div:last-of-type span,
  #parkSelect .p-ticketSelect__coupon-header div:last-of-type span {
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__coupon-body,
  #parkSelect .p-ticketSelect__coupon-body {
    height: 290px;
  }

  #ticketSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
  #parkSelect .p-ticketSelect__coupon-body ul li div:first-of-type input {
    width: 100%;
  }

  #ticketSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
  #parkSelect .p-ticketSelect__coupon-body ul li div:last-of-type i {
    cursor: pointer;
  }

  #ticketSelect .p-ticketSelect__coupon-footer,
  #parkSelect .p-ticketSelect__coupon-footer {
    height: 60px;
  }

  #ticketSelect .p-ticketSelect__message--attention p > i,
  #parkSelect .p-ticketSelect__message--attention p > i {
    font-size: 1.3rem;
  }

  #ticketSelect .p-ticketSelect__message--attention p > span,
  #parkSelect .p-ticketSelect__message--attention p > span {
    font-size: 1.3rem;
  }

  #ticketSelect .operation,
  #parkSelect .operation {
    text-align: center;
  }

  #passportSelect .isLoading,
  #parkPassportSelect .isLoading,
  #rentalSelect .isLoading {
    background-size: 70px;
  }

  #passportSelect .modal-content,
  #parkPassportSelect .modal-content,
  #rentalSelect .modal-content {
    width: 30rem;
  }

  #passportSelect .p-ticketSelect__wrapper,
  #parkPassportSelect .p-ticketSelect__wrapper,
  #rentalSelect .p-ticketSelect__wrapper {
    width: 900px;
    height: 600px;
    top: 50%;
    left: 50%;
    z-index: 4;
    -webkit-box-shadow: 0 0 30px;
    box-shadow: 0 0 30px;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
    margin-left: -450px;
    margin-top: -300px;
  }

  #passportSelect .p-ticketSelect__overlay--pc,
  #parkPassportSelect .p-ticketSelect__overlay--pc,
  #rentalSelect .p-ticketSelect__overlay--pc {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    z-index: 2;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
  }

  #passportSelect .p-ticketSelect__overlay.isActive,
  #parkPassportSelect .p-ticketSelect__overlay.isActive,
  #rentalSelect .p-ticketSelect__overlay.isActive {
    z-index: 6;
  }

  #passportSelect .p-ticketSelect__contents,
  #parkPassportSelect .p-ticketSelect__contents,
  #rentalSelect .p-ticketSelect__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }

  #passportSelect .p-ticketSelect__contents > div:first-of-type,
  #parkPassportSelect .p-ticketSelect__contents > div:first-of-type,
  #rentalSelect .p-ticketSelect__contents > div:first-of-type {
    -ms-flex-preferred-size: 62%;
        flex-basis: 62%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-right: 3px solid #ccc;
  }

  #passportSelect .p-ticketSelect__contents > div:last-of-type,
  #parkPassportSelect .p-ticketSelect__contents > div:last-of-type,
  #rentalSelect .p-ticketSelect__contents > div:last-of-type {
    -ms-flex-preferred-size: 38%;
        flex-basis: 38%;
  }

  #passportSelect .p-ticketSelect__header,
  #parkPassportSelect .p-ticketSelect__header,
  #rentalSelect .p-ticketSelect__header {
    position: relative;
    -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
    padding: 0;
  }

  #passportSelect .p-ticketSelect__header.isDayFixed,
  #parkPassportSelect .p-ticketSelect__header.isDayFixed,
  #rentalSelect .p-ticketSelect__header.isDayFixed {
    -ms-flex-preferred-size: 11%;
        flex-basis: 11%;
  }

  #passportSelect .p-ticketSelect__navigation-list,
  #parkPassportSelect .p-ticketSelect__navigation-list,
  #rentalSelect .p-ticketSelect__navigation-list {
    height: 4rem;
  }

  #passportSelect .p-ticketSelect__navigation-item:first-of-type,
  #parkPassportSelect .p-ticketSelect__navigation-item:first-of-type,
  #rentalSelect .p-ticketSelect__navigation-item:first-of-type {
    font-size: 1.2rem;
    padding-left: 1.2rem;
  }

  #passportSelect .p-ticketSelect__navigation-item:nth-of-type(2),
  #parkPassportSelect .p-ticketSelect__navigation-item:nth-of-type(2),
  #rentalSelect .p-ticketSelect__navigation-item:nth-of-type(2) {
    display: none;
  }

  #passportSelect .p-ticketSelect__navigation-item:last-of-type,
  #parkPassportSelect .p-ticketSelect__navigation-item:last-of-type,
  #rentalSelect .p-ticketSelect__navigation-item:last-of-type {
    display: none;
  }

  #passportSelect .p-ticketSelect__day-select li,
  #parkPassportSelect .p-ticketSelect__day-select li,
  #rentalSelect .p-ticketSelect__day-select li {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__body,
  #parkPassportSelect .p-ticketSelect__body,
  #rentalSelect .p-ticketSelect__body {
    overflow-y: auto;
    padding: 0 0.7rem;
    width: 100%;
    position: relative;
    -ms-flex-preferred-size: 78%;
        flex-basis: 78%;
  }

  #passportSelect .p-ticketSelect__body.isDayFixed,
  #parkPassportSelect .p-ticketSelect__body.isDayFixed,
  #rentalSelect .p-ticketSelect__body.isDayFixed {
    -ms-flex-preferred-size: 89%;
        flex-basis: 89%;
    padding-top: 0;
  }

  #passportSelect .p-ticketSelect__body > table,
  #parkPassportSelect .p-ticketSelect__body > table,
  #rentalSelect .p-ticketSelect__body > table {
    margin-bottom: 2rem;
  }

  #passportSelect .p-ticketSelect__body > table > tr > th,
  #parkPassportSelect .p-ticketSelect__body > table > tr > th,
  #rentalSelect .p-ticketSelect__body > table > tr > th {
    max-width: 32.8rem;
    margin-left: auto;
    margin-right: auto;
  }

  #passportSelect .p-ticketSelect__body > table > tr > td,
  #parkPassportSelect .p-ticketSelect__body > table > tr > td,
  #rentalSelect .p-ticketSelect__body > table > tr > td {
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
  }

  #passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
  #parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note,
  #rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__info-area .p-ticketSelect__note {
    margin-bottom: 0;
  }

  #passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
  #passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited,
  #parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
  #parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited,
  #rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--increase.limited,
  #rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__button--decrease.limited {
    cursor: unset;
  }

  #passportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__page-back,
  #parkPassportSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__page-back,
  #rentalSelect .p-ticketSelect__body > table > tr > td .p-ticketSelect__page-back {
    left: 50%;
    -webkit-transform: translateX(-440px);
            transform: translateX(-440px);
  }

  #passportSelect .p-ticketSelect__ui-panel,
  #parkPassportSelect .p-ticketSelect__ui-panel,
  #rentalSelect .p-ticketSelect__ui-panel {
    margin-top: 250px;
    width: 540px;
    top: 50%;
    bottom: 0;
  }

  #passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
  #parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i,
  #rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > i {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
  #parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label,
  #rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li > label {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li .c-input--checkbox:checked + label:after,
  #parkPassportSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li .c-input--checkbox:checked + label:after,
  #rentalSelect .p-ticketSelect__ui-panel .p-ticketSelect__area-select > div > ul > li > ul > li .c-input--checkbox:checked + label:after {
    top: 8px !important;
  }

  #passportSelect .p-ticketSelect__footer,
  #parkPassportSelect .p-ticketSelect__footer,
  #rentalSelect .p-ticketSelect__footer {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 342px;
    z-index: 5;
    position: absolute;
    top: unset;
    left: auto;
    bottom: 0;
    right: 0;
  }

  #passportSelect .p-ticketSelect__footer--alert-area,
  #parkPassportSelect .p-ticketSelect__footer--alert-area,
  #rentalSelect .p-ticketSelect__footer--alert-area {
    position: fixed;
    left: 50%;
    bottom: 50%;
    width: 540px;
    -webkit-transform: translate(-450px, 300px);
            transform: translate(-450px, 300px);
  }

  #passportSelect .p-ticketSelect__footer--alert-area li .mild,
  #passportSelect .p-ticketSelect__footer--alert-area li .severe,
  #parkPassportSelect .p-ticketSelect__footer--alert-area li .mild,
  #parkPassportSelect .p-ticketSelect__footer--alert-area li .severe,
  #rentalSelect .p-ticketSelect__footer--alert-area li .mild,
  #rentalSelect .p-ticketSelect__footer--alert-area li .severe {
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }

  #passportSelect .p-ticketSelect__footer--btn-area > div,
  #parkPassportSelect .p-ticketSelect__footer--btn-area > div,
  #rentalSelect .p-ticketSelect__footer--btn-area > div {
    height: 4.5rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0px;
    overflow: hidden;
  }

  #passportSelect .p-ticketSelect__footer--btn-area > div.isEmpty,
  #parkPassportSelect .p-ticketSelect__footer--btn-area > div.isEmpty,
  #rentalSelect .p-ticketSelect__footer--btn-area > div.isEmpty {
    background-color: #999;
    border-color: #999;
    cursor: unset;
  }

  #passportSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item,
  #parkPassportSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item,
  #rentalSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item {
    cursor: unset;
  }

  #passportSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item:first-of-type,
  #parkPassportSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item:first-of-type,
  #rentalSelect .p-ticketSelect__footer--btn-area > div.isEmpty .p-ticketSelect__footer-item:first-of-type {
    color: #999;
    cursor: default;
  }

  #passportSelect .p-ticketSelect__footer-item:first-of-type,
  #parkPassportSelect .p-ticketSelect__footer-item:first-of-type,
  #rentalSelect .p-ticketSelect__footer-item:first-of-type {
    margin-left: 2px;
    margin-bottom: 2px;
    padding-left: 0rem;
    cursor: pointer;
    -ms-flex-preferred-size: 45%;
        flex-basis: 45%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  #passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
  #parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type,
  #rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type {
    position: relative;
  }

  #passportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
  #parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o,
  #rentalSelect .p-ticketSelect__footer-item:first-of-type div:first-of-type i.fa-check-circle-o {
    left: 1.1rem;
  }

  #passportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type,
  #parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type,
  #rentalSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type {
    margin-left: 0.8rem;
  }

  #passportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type span,
  #parkPassportSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type span,
  #rentalSelect .p-ticketSelect__footer-item:first-of-type div:last-of-type span {
    white-space: nowrap;
  }

  #passportSelect .p-ticketSelect__footer-item:last-of-type,
  #parkPassportSelect .p-ticketSelect__footer-item:last-of-type,
  #rentalSelect .p-ticketSelect__footer-item:last-of-type {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
  }

  #passportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
  #parkPassportSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type,
  #rentalSelect .p-ticketSelect__footer-item:last-of-type div:first-of-type {
    position: relative;
    left: 0;
    margin-right: 0.5rem;
  }

  #passportSelect .p-ticketSelect__cart,
  #parkPassportSelect .p-ticketSelect__cart,
  #rentalSelect .p-ticketSelect__cart {
    width: 200px;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: #f5f5f5;
  }

  #passportSelect .p-ticketSelect__cart-header,
  #parkPassportSelect .p-ticketSelect__cart-header,
  #rentalSelect .p-ticketSelect__cart-header {
    height: 4rem;
    border-bottom: 0;
    width: 92%;
  }

  #passportSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
  #parkPassportSelect .p-ticketSelect__cart-header div:first-of-type span.badge,
  #rentalSelect .p-ticketSelect__cart-header div:first-of-type span.badge {
    top: 0.55rem;
    left: 1.3rem;
  }

  #passportSelect .p-ticketSelect__cart-header div:nth-of-type(2),
  #parkPassportSelect .p-ticketSelect__cart-header div:nth-of-type(2),
  #rentalSelect .p-ticketSelect__cart-header div:nth-of-type(2) {
    font-size: 1.2rem;
  }

  #passportSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span,
  #parkPassportSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span,
  #rentalSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  #passportSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span i,
  #parkPassportSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span i,
  #rentalSelect .p-ticketSelect__cart-header div:nth-of-type(2) > span i {
    width: 1.7rem;
    height: 2rem;
    margin-top: -0.5rem;
    margin-right: 0.5rem;
  }

  #passportSelect .p-ticketSelect__cart-header div:last-of-type span,
  #parkPassportSelect .p-ticketSelect__cart-header div:last-of-type span,
  #rentalSelect .p-ticketSelect__cart-header div:last-of-type span {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__cart-body,
  #parkPassportSelect .p-ticketSelect__cart-body,
  #rentalSelect .p-ticketSelect__cart-body {
    height: 25rem;
    background-color: #fff;
    width: 92%;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
  }

  #passportSelect .p-ticketSelect__cart-body ul li,
  #parkPassportSelect .p-ticketSelect__cart-body ul li,
  #rentalSelect .p-ticketSelect__cart-body ul li {
    margin: auto;
    width: 92%;
    margin-bottom: 1.5rem;
  }

  #passportSelect .p-ticketSelect__cart-body ul li:first-of-type,
  #parkPassportSelect .p-ticketSelect__cart-body ul li:first-of-type,
  #rentalSelect .p-ticketSelect__cart-body ul li:first-of-type {
    margin-top: 0.5rem;
  }

  #passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li,
  #parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li,
  #rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li {
    padding-right: 0;
    padding-left: 1rem !important;
  }

  #passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab,
  #parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab,
  #rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p.mab {
    margin-bottom: 0.45rem;
  }

  #passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span,
  #parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span,
  #rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span {
    max-width: 70%;
  }

  #passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long,
  #parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long,
  #rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li > p > span.long {
    font-size: 0.7rem;
  }

  #passportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select,
  #parkPassportSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select,
  #rentalSelect .p-ticketSelect__cart-body ul li .p-ticketSelect__cart-kind li select {
    padding: 0px 25px 0px 7px;
    width: 80%;
  }

  #passportSelect .p-ticketSelect__cart-footer,
  #parkPassportSelect .p-ticketSelect__cart-footer,
  #rentalSelect .p-ticketSelect__cart-footer {
    height: 3rem;
    position: relative;
    border-top: 0;
  }

  #passportSelect .p-ticketSelect__cart-footer div,
  #parkPassportSelect .p-ticketSelect__cart-footer div,
  #rentalSelect .p-ticketSelect__cart-footer div {
    margin-right: 0.6rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  #passportSelect .p-ticketSelect__coupon,
  #parkPassportSelect .p-ticketSelect__coupon,
  #rentalSelect .p-ticketSelect__coupon {
    z-index: 7;
    width: 500px;
    height: 400px;
  }

  #passportSelect .p-ticketSelect__coupon-header,
  #parkPassportSelect .p-ticketSelect__coupon-header,
  #rentalSelect .p-ticketSelect__coupon-header {
    height: 50px;
  }

  #passportSelect .p-ticketSelect__coupon-header div:last-of-type span,
  #parkPassportSelect .p-ticketSelect__coupon-header div:last-of-type span,
  #rentalSelect .p-ticketSelect__coupon-header div:last-of-type span {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__coupon-body,
  #parkPassportSelect .p-ticketSelect__coupon-body,
  #rentalSelect .p-ticketSelect__coupon-body {
    height: 290px;
  }

  #passportSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
  #parkPassportSelect .p-ticketSelect__coupon-body ul li div:first-of-type input,
  #rentalSelect .p-ticketSelect__coupon-body ul li div:first-of-type input {
    width: 100%;
  }

  #passportSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
  #parkPassportSelect .p-ticketSelect__coupon-body ul li div:last-of-type i,
  #rentalSelect .p-ticketSelect__coupon-body ul li div:last-of-type i {
    cursor: pointer;
  }

  #passportSelect .p-ticketSelect__coupon-footer,
  #parkPassportSelect .p-ticketSelect__coupon-footer,
  #rentalSelect .p-ticketSelect__coupon-footer {
    height: 60px;
  }

  div.inner .p-login .c-form__list:first-of-type .c-form__item:first-of-type {
    margin-top: 0;
  }

  div.inner .p-top__precautions {
    max-width: 72rem;
  }

  div.inner .p-top__emergency―stop {
    margin-bottom: 1rem;
  }

  div.inner .p-top__ticket-title {
    width: 75%;
  }

  div.inner .p-top .c-form__button {
    width: 500px;
  }

  div.inner .p-top__ticket-price .p-top__ticket--name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    position: relative;
  }

  div.inner .p-top__calendar-guard__modal {
    width: 30rem;
  }

  div.inner .p-register-input .c-form__list__item__inputWrap {
    width: 500px;
    margin: auto;
    margin-bottom: 30px;
  }

  div.inner .p-register-comp p {
    text-align: center;
    margin-top: 0;
  }

  div.inner .p-register .c-input--checkbox:checked + label:after {
    top: 8px;
  }

  div.inner .p-law table {
    width: 100%;
  }

  div.inner .p-law table tr {
    border-bottom: 1px solid #ccc;
  }

  div.inner .p-law table tr th {
    display: table-cell;
    line-height: 1rem;
    padding-left: 1rem !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  div.inner .p-law table tr td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border: 0;
  }

  div.inner .p-law table tr:last-of-type {
    border: 0;
  }

  div.inner .p-term {
    margin: auto;
  }

  div.inner .p-privacypolicy {
    margin: auto;
  }

  div.inner .p-mypage h2 span:last-of-type {
    right: 1.25rem;
  }

  div.inner .p-mypage__table-wrap table tr th {
    border-bottom: 0;
    padding-left: 1.25rem;
  }

  div.inner .p-mypage__credit {
    padding-left: 1.25rem;
  }

  div.inner .p-mypage__icon {
    right: 1.25rem;
    font-size: 1rem;
  }

  div.inner .p-mypage__icon:lang(en) {
    width: 5rem;
  }

  div.inner .p-withdrawal--notes .p-notes__confirmation {
    padding: 3rem 0 1rem;
  }

  div.inner .p-withdrawal--notes .c-input--checkbox:checked + label:after {
    top: 8px !important;
  }

  div.inner .p-contact__text {
    text-align: center;
  }

  div.inner .p-contact__overline {
    text-align: center;
  }

  div.inner .p-contact .c-modal--content-scroll__content {
    width: 36rem !important;
  }

  div.inner .p-contact--comp__body {
    margin: 1rem auto 2rem;
    width: 52%;
    text-align: center;
  }

  div.inner .p-reserved .c-form__list {
    width: 100%;
  }

  div.inner .p-reserved .c-input--checkbox:checked + label:after {
    top: 8px !important;
  }

  div.inner .p-reserved__ticket-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  div.inner .p-reserved__ticket-title {
    padding: 0.25rem 0rem 0.25rem 1.25rem;
  }

  div.inner .p-reserved__ticket-title__first {
    padding: 0.6rem 0rem 0.25rem 1.25rem;
  }

  div.inner .p-reserved__ticket-title__last {
    padding: 0.25rem 0rem 0.75rem 1.25rem;
  }

  div.inner .p-reserved__ticket-contents {
    padding: 0.25rem 1.25rem 0.25rem 0.25rem;
  }

  div.inner .p-reserved__ticket-contents__first {
    padding: 0.6rem 1.25rem 0.25rem 0.25rem;
  }

  div.inner .p-reserved__ticket-contents__last {
    padding: 0.25rem 1.25rem 0.75rem 0.25rem;
  }

  div.inner .p-reserved__settlement-note {
    width: 37rem;
  }

  div.inner .p-reserved__credit-list li div:first-of-type {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
  }

  div.inner .p-reserved #no-card_modal .c-modal__content {
    width: 25rem;
  }

  div.inner .p-reserved #confirm_modal .c-modal__content {
    width: 37rem;
  }

  div.inner .p-reserved #confirm_modal .c-modal__body p:first-of-type {
    font-size: 0.9rem;
  }

  div.inner .p-maintenance__text {
    width: 50%;
    margin: auto;
  }

  div.inner .p-maintenance--default__text {
    width: 50%;
    margin: auto;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > th {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div > table {
    border: 1px solid #eee;
    margin-bottom: 3rem;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr {
    border-bottom: 1px solid #eee;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > th {
    display: table-cell;
    border: 0;
    border-right: 1px solid #eee;
    width: 40%;
    text-align: left;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td {
    display: table-cell;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  div.inner .p-reservations__ticket-table > tbody > tr > td > div > table > tbody > tr > td > table > tbody > tr {
    border: 0;
  }

  div.inner .p-reservations__table-title {
    padding: 2rem;
  }

  div.inner .p-reservations__table .c-accordion--off {
    max-height: 100rem !important;
    opacity: 1;
  }

  div.inner .p-reservations__table td .passport-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: auto;
  }

  div.inner .p-reservations__table-place .fa-chevron-right {
    display: none;
  }

  div.inner .p-reservations .c-form__button {
    width: 500px;
  }

  div.inner .p-reservations--history table {
    width: 80%;
    margin: auto;
  }

  div.inner .p-reservations--usable_num {
    margin: 0 0 0 auto;
  }

  div.inner .p-receipts__content {
    margin: 13% auto 10%;
    width: 40%;
  }
}

/*

[クラス命名ルール]
・Utilityに限り、所在を明らかにするための接頭辞「u-」は不要 (手直ししない & 短い方が使いやすいため)
・単位は基本的にrem、その他の単位を使う場合はクラス名に含める (例) 10%->10p、1em->1e、100px->100px
・方向・数値が後に続く場合はハイフンで繋げない、それ以外はハイフンを使う。大文字は使わない。 (例) pal10、txtl、dis-b、pos-rel

*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.h0      -> height: 0rem ※~10remまで0.5rem刻み
.h0p     -> height: 0% ※~100%まで5%刻み
.h100v   -> height: 100vh
*/

.h0 {
  height: 0rem !important;
}

.h0_5 {
  height: 0.5rem !important;
}

.h1 {
  height: 1rem !important;
}

.h1_5 {
  height: 1.5rem !important;
}

.h2 {
  height: 2rem !important;
}

.h2_5 {
  height: 2.5rem !important;
}

.h3 {
  height: 3rem !important;
}

.h3_5 {
  height: 3.5rem !important;
}

.h4 {
  height: 4rem !important;
}

.h4_5 {
  height: 4.5rem !important;
}

.h5 {
  height: 5rem !important;
}

.h5_5 {
  height: 5.5rem !important;
}

.h6 {
  height: 6rem !important;
}

.h6_5 {
  height: 6.5rem !important;
}

.h7 {
  height: 7rem !important;
}

.h7_5 {
  height: 7.5rem !important;
}

.h8 {
  height: 8rem !important;
}

.h8_5 {
  height: 8.5rem !important;
}

.h9 {
  height: 9rem !important;
}

.h9_5 {
  height: 9.5rem !important;
}

.h10 {
  height: 10rem !important;
}

.h10_5 {
  height: 10.5rem !important;
}

.h0p {
  height: 0% !important;
}

.h5p {
  height: 5% !important;
}

.h10p {
  height: 10% !important;
}

.h15p {
  height: 15% !important;
}

.h20p {
  height: 20% !important;
}

.h25p {
  height: 25% !important;
}

.h30p {
  height: 30% !important;
}

.h35p {
  height: 35% !important;
}

.h40p {
  height: 40% !important;
}

.h45p {
  height: 45% !important;
}

.h50p {
  height: 50% !important;
}

.h55p {
  height: 55% !important;
}

.h60p {
  height: 60% !important;
}

.h65p {
  height: 65% !important;
}

.h70p {
  height: 70% !important;
}

.h75p {
  height: 75% !important;
}

.h80p {
  height: 80% !important;
}

.h85p {
  height: 85% !important;
}

.h90p {
  height: 90% !important;
}

.h95p {
  height: 95% !important;
}

.h100p {
  height: 100% !important;
}

.h100v {
  height: 100vh !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.w0      -> width: 0rem ※~10remまで0.5rem刻み
.w0p     -> width: 0% ※~100%まで5%刻み
.w100v   -> width: 100vw
*/

.w0 {
  width: 0rem !important;
}

.w0_5 {
  width: 0.5rem !important;
}

.w1 {
  width: 1rem !important;
}

.w1_5 {
  width: 1.5rem !important;
}

.w2 {
  width: 2rem !important;
}

.w2_5 {
  width: 2.5rem !important;
}

.w3 {
  width: 3rem !important;
}

.w3_5 {
  width: 3.5rem !important;
}

.w4 {
  width: 4rem !important;
}

.w4_5 {
  width: 4.5rem !important;
}

.w5 {
  width: 5rem !important;
}

.w5_5 {
  width: 5.5rem !important;
}

.w6 {
  width: 6rem !important;
}

.w6_5 {
  width: 6.5rem !important;
}

.w7 {
  width: 7rem !important;
}

.w7_5 {
  width: 7.5rem !important;
}

.w8 {
  width: 8rem !important;
}

.w8_5 {
  width: 8.5rem !important;
}

.w9 {
  width: 9rem !important;
}

.w9_5 {
  width: 9.5rem !important;
}

.w10 {
  width: 10rem !important;
}

.w10_5 {
  width: 10.5rem !important;
}

.w0p {
  width: 0% !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w100v {
  width: 100vw !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.ma0     -> margin: 0rem
.ma1_1   -> margin: 1.1rem
.mab10_9 -> margin-bottom: 10.9rem
*/

.ma0 {
  margin: 0rem;
}

.ma0_1 {
  margin: 0.1rem !important;
}

.ma0_2 {
  margin: 0.2rem !important;
}

.ma0_3 {
  margin: 0.3rem !important;
}

.ma0_4 {
  margin: 0.4rem !important;
}

.ma0_5 {
  margin: 0.5rem !important;
}

.ma0_6 {
  margin: 0.6rem !important;
}

.ma0_7 {
  margin: 0.7rem !important;
}

.ma0_8 {
  margin: 0.8rem !important;
}

.ma0_9 {
  margin: 0.9rem !important;
}

.mat0 {
  margin-top: 0rem !important;
}

.mat0_1 {
  margin-top: 0.1rem !important;
}

.mat0_2 {
  margin-top: 0.2rem !important;
}

.mat0_3 {
  margin-top: 0.3rem !important;
}

.mat0_4 {
  margin-top: 0.4rem !important;
}

.mat0_5 {
  margin-top: 0.5rem !important;
}

.mat0_6 {
  margin-top: 0.6rem !important;
}

.mat0_7 {
  margin-top: 0.7rem !important;
}

.mat0_8 {
  margin-top: 0.8rem !important;
}

.mat0_9 {
  margin-top: 0.9rem !important;
}

.mal0 {
  margin-left: 0rem !important;
}

.mal0_1 {
  margin-left: 0.1rem !important;
}

.mal0_2 {
  margin-left: 0.2rem !important;
}

.mal0_3 {
  margin-left: 0.3rem !important;
}

.mal0_4 {
  margin-left: 0.4rem !important;
}

.mal0_5 {
  margin-left: 0.5rem !important;
}

.mal0_6 {
  margin-left: 0.6rem !important;
}

.mal0_7 {
  margin-left: 0.7rem !important;
}

.mal0_8 {
  margin-left: 0.8rem !important;
}

.mal0_9 {
  margin-left: 0.9rem !important;
}

.mar0 {
  margin-right: 0rem !important;
}

.mar0_1 {
  margin-right: 0.1rem !important;
}

.mar0_2 {
  margin-right: 0.2rem !important;
}

.mar0_3 {
  margin-right: 0.3rem !important;
}

.mar0_4 {
  margin-right: 0.4rem !important;
}

.mar0_5 {
  margin-right: 0.5rem !important;
}

.mar0_6 {
  margin-right: 0.6rem !important;
}

.mar0_7 {
  margin-right: 0.7rem !important;
}

.mar0_8 {
  margin-right: 0.8rem !important;
}

.mar0_9 {
  margin-right: 0.9rem !important;
}

.mab0 {
  margin-bottom: 0rem !important;
}

.mab0_1 {
  margin-bottom: 0.1rem !important;
}

.mab0_2 {
  margin-bottom: 0.2rem !important;
}

.mab0_3 {
  margin-bottom: 0.3rem !important;
}

.mab0_4 {
  margin-bottom: 0.4rem !important;
}

.mab0_5 {
  margin-bottom: 0.5rem !important;
}

.mab0_6 {
  margin-bottom: 0.6rem !important;
}

.mab0_7 {
  margin-bottom: 0.7rem !important;
}

.mab0_8 {
  margin-bottom: 0.8rem !important;
}

.mab0_9 {
  margin-bottom: 0.9rem !important;
}

.ma1 {
  margin: 1rem;
}

.ma1_1 {
  margin: 1.1rem !important;
}

.ma1_2 {
  margin: 1.2rem !important;
}

.ma1_3 {
  margin: 1.3rem !important;
}

.ma1_4 {
  margin: 1.4rem !important;
}

.ma1_5 {
  margin: 1.5rem !important;
}

.ma1_6 {
  margin: 1.6rem !important;
}

.ma1_7 {
  margin: 1.7rem !important;
}

.ma1_8 {
  margin: 1.8rem !important;
}

.ma1_9 {
  margin: 1.9rem !important;
}

.mat1 {
  margin-top: 1rem !important;
}

.mat1_1 {
  margin-top: 1.1rem !important;
}

.mat1_2 {
  margin-top: 1.2rem !important;
}

.mat1_3 {
  margin-top: 1.3rem !important;
}

.mat1_4 {
  margin-top: 1.4rem !important;
}

.mat1_5 {
  margin-top: 1.5rem !important;
}

.mat1_6 {
  margin-top: 1.6rem !important;
}

.mat1_7 {
  margin-top: 1.7rem !important;
}

.mat1_8 {
  margin-top: 1.8rem !important;
}

.mat1_9 {
  margin-top: 1.9rem !important;
}

.mal1 {
  margin-left: 1rem !important;
}

.mal1_1 {
  margin-left: 1.1rem !important;
}

.mal1_2 {
  margin-left: 1.2rem !important;
}

.mal1_3 {
  margin-left: 1.3rem !important;
}

.mal1_4 {
  margin-left: 1.4rem !important;
}

.mal1_5 {
  margin-left: 1.5rem !important;
}

.mal1_6 {
  margin-left: 1.6rem !important;
}

.mal1_7 {
  margin-left: 1.7rem !important;
}

.mal1_8 {
  margin-left: 1.8rem !important;
}

.mal1_9 {
  margin-left: 1.9rem !important;
}

.mar1 {
  margin-right: 1rem !important;
}

.mar1_1 {
  margin-right: 1.1rem !important;
}

.mar1_2 {
  margin-right: 1.2rem !important;
}

.mar1_3 {
  margin-right: 1.3rem !important;
}

.mar1_4 {
  margin-right: 1.4rem !important;
}

.mar1_5 {
  margin-right: 1.5rem !important;
}

.mar1_6 {
  margin-right: 1.6rem !important;
}

.mar1_7 {
  margin-right: 1.7rem !important;
}

.mar1_8 {
  margin-right: 1.8rem !important;
}

.mar1_9 {
  margin-right: 1.9rem !important;
}

.mab1 {
  margin-bottom: 1rem !important;
}

.mab1_1 {
  margin-bottom: 1.1rem !important;
}

.mab1_2 {
  margin-bottom: 1.2rem !important;
}

.mab1_3 {
  margin-bottom: 1.3rem !important;
}

.mab1_4 {
  margin-bottom: 1.4rem !important;
}

.mab1_5 {
  margin-bottom: 1.5rem !important;
}

.mab1_6 {
  margin-bottom: 1.6rem !important;
}

.mab1_7 {
  margin-bottom: 1.7rem !important;
}

.mab1_8 {
  margin-bottom: 1.8rem !important;
}

.mab1_9 {
  margin-bottom: 1.9rem !important;
}

.ma2 {
  margin: 2rem;
}

.ma2_1 {
  margin: 2.1rem !important;
}

.ma2_2 {
  margin: 2.2rem !important;
}

.ma2_3 {
  margin: 2.3rem !important;
}

.ma2_4 {
  margin: 2.4rem !important;
}

.ma2_5 {
  margin: 2.5rem !important;
}

.ma2_6 {
  margin: 2.6rem !important;
}

.ma2_7 {
  margin: 2.7rem !important;
}

.ma2_8 {
  margin: 2.8rem !important;
}

.ma2_9 {
  margin: 2.9rem !important;
}

.mat2 {
  margin-top: 2rem !important;
}

.mat2_1 {
  margin-top: 2.1rem !important;
}

.mat2_2 {
  margin-top: 2.2rem !important;
}

.mat2_3 {
  margin-top: 2.3rem !important;
}

.mat2_4 {
  margin-top: 2.4rem !important;
}

.mat2_5 {
  margin-top: 2.5rem !important;
}

.mat2_6 {
  margin-top: 2.6rem !important;
}

.mat2_7 {
  margin-top: 2.7rem !important;
}

.mat2_8 {
  margin-top: 2.8rem !important;
}

.mat2_9 {
  margin-top: 2.9rem !important;
}

.mal2 {
  margin-left: 2rem !important;
}

.mal2_1 {
  margin-left: 2.1rem !important;
}

.mal2_2 {
  margin-left: 2.2rem !important;
}

.mal2_3 {
  margin-left: 2.3rem !important;
}

.mal2_4 {
  margin-left: 2.4rem !important;
}

.mal2_5 {
  margin-left: 2.5rem !important;
}

.mal2_6 {
  margin-left: 2.6rem !important;
}

.mal2_7 {
  margin-left: 2.7rem !important;
}

.mal2_8 {
  margin-left: 2.8rem !important;
}

.mal2_9 {
  margin-left: 2.9rem !important;
}

.mar2 {
  margin-right: 2rem !important;
}

.mar2_1 {
  margin-right: 2.1rem !important;
}

.mar2_2 {
  margin-right: 2.2rem !important;
}

.mar2_3 {
  margin-right: 2.3rem !important;
}

.mar2_4 {
  margin-right: 2.4rem !important;
}

.mar2_5 {
  margin-right: 2.5rem !important;
}

.mar2_6 {
  margin-right: 2.6rem !important;
}

.mar2_7 {
  margin-right: 2.7rem !important;
}

.mar2_8 {
  margin-right: 2.8rem !important;
}

.mar2_9 {
  margin-right: 2.9rem !important;
}

.mab2 {
  margin-bottom: 2rem !important;
}

.mab2_1 {
  margin-bottom: 2.1rem !important;
}

.mab2_2 {
  margin-bottom: 2.2rem !important;
}

.mab2_3 {
  margin-bottom: 2.3rem !important;
}

.mab2_4 {
  margin-bottom: 2.4rem !important;
}

.mab2_5 {
  margin-bottom: 2.5rem !important;
}

.mab2_6 {
  margin-bottom: 2.6rem !important;
}

.mab2_7 {
  margin-bottom: 2.7rem !important;
}

.mab2_8 {
  margin-bottom: 2.8rem !important;
}

.mab2_9 {
  margin-bottom: 2.9rem !important;
}

.ma3 {
  margin: 3rem;
}

.ma3_1 {
  margin: 3.1rem !important;
}

.ma3_2 {
  margin: 3.2rem !important;
}

.ma3_3 {
  margin: 3.3rem !important;
}

.ma3_4 {
  margin: 3.4rem !important;
}

.ma3_5 {
  margin: 3.5rem !important;
}

.ma3_6 {
  margin: 3.6rem !important;
}

.ma3_7 {
  margin: 3.7rem !important;
}

.ma3_8 {
  margin: 3.8rem !important;
}

.ma3_9 {
  margin: 3.9rem !important;
}

.mat3 {
  margin-top: 3rem !important;
}

.mat3_1 {
  margin-top: 3.1rem !important;
}

.mat3_2 {
  margin-top: 3.2rem !important;
}

.mat3_3 {
  margin-top: 3.3rem !important;
}

.mat3_4 {
  margin-top: 3.4rem !important;
}

.mat3_5 {
  margin-top: 3.5rem !important;
}

.mat3_6 {
  margin-top: 3.6rem !important;
}

.mat3_7 {
  margin-top: 3.7rem !important;
}

.mat3_8 {
  margin-top: 3.8rem !important;
}

.mat3_9 {
  margin-top: 3.9rem !important;
}

.mal3 {
  margin-left: 3rem !important;
}

.mal3_1 {
  margin-left: 3.1rem !important;
}

.mal3_2 {
  margin-left: 3.2rem !important;
}

.mal3_3 {
  margin-left: 3.3rem !important;
}

.mal3_4 {
  margin-left: 3.4rem !important;
}

.mal3_5 {
  margin-left: 3.5rem !important;
}

.mal3_6 {
  margin-left: 3.6rem !important;
}

.mal3_7 {
  margin-left: 3.7rem !important;
}

.mal3_8 {
  margin-left: 3.8rem !important;
}

.mal3_9 {
  margin-left: 3.9rem !important;
}

.mar3 {
  margin-right: 3rem !important;
}

.mar3_1 {
  margin-right: 3.1rem !important;
}

.mar3_2 {
  margin-right: 3.2rem !important;
}

.mar3_3 {
  margin-right: 3.3rem !important;
}

.mar3_4 {
  margin-right: 3.4rem !important;
}

.mar3_5 {
  margin-right: 3.5rem !important;
}

.mar3_6 {
  margin-right: 3.6rem !important;
}

.mar3_7 {
  margin-right: 3.7rem !important;
}

.mar3_8 {
  margin-right: 3.8rem !important;
}

.mar3_9 {
  margin-right: 3.9rem !important;
}

.mab3 {
  margin-bottom: 3rem !important;
}

.mab3_1 {
  margin-bottom: 3.1rem !important;
}

.mab3_2 {
  margin-bottom: 3.2rem !important;
}

.mab3_3 {
  margin-bottom: 3.3rem !important;
}

.mab3_4 {
  margin-bottom: 3.4rem !important;
}

.mab3_5 {
  margin-bottom: 3.5rem !important;
}

.mab3_6 {
  margin-bottom: 3.6rem !important;
}

.mab3_7 {
  margin-bottom: 3.7rem !important;
}

.mab3_8 {
  margin-bottom: 3.8rem !important;
}

.mab3_9 {
  margin-bottom: 3.9rem !important;
}

.ma4 {
  margin: 4rem;
}

.ma4_1 {
  margin: 4.1rem !important;
}

.ma4_2 {
  margin: 4.2rem !important;
}

.ma4_3 {
  margin: 4.3rem !important;
}

.ma4_4 {
  margin: 4.4rem !important;
}

.ma4_5 {
  margin: 4.5rem !important;
}

.ma4_6 {
  margin: 4.6rem !important;
}

.ma4_7 {
  margin: 4.7rem !important;
}

.ma4_8 {
  margin: 4.8rem !important;
}

.ma4_9 {
  margin: 4.9rem !important;
}

.mat4 {
  margin-top: 4rem !important;
}

.mat4_1 {
  margin-top: 4.1rem !important;
}

.mat4_2 {
  margin-top: 4.2rem !important;
}

.mat4_3 {
  margin-top: 4.3rem !important;
}

.mat4_4 {
  margin-top: 4.4rem !important;
}

.mat4_5 {
  margin-top: 4.5rem !important;
}

.mat4_6 {
  margin-top: 4.6rem !important;
}

.mat4_7 {
  margin-top: 4.7rem !important;
}

.mat4_8 {
  margin-top: 4.8rem !important;
}

.mat4_9 {
  margin-top: 4.9rem !important;
}

.mal4 {
  margin-left: 4rem !important;
}

.mal4_1 {
  margin-left: 4.1rem !important;
}

.mal4_2 {
  margin-left: 4.2rem !important;
}

.mal4_3 {
  margin-left: 4.3rem !important;
}

.mal4_4 {
  margin-left: 4.4rem !important;
}

.mal4_5 {
  margin-left: 4.5rem !important;
}

.mal4_6 {
  margin-left: 4.6rem !important;
}

.mal4_7 {
  margin-left: 4.7rem !important;
}

.mal4_8 {
  margin-left: 4.8rem !important;
}

.mal4_9 {
  margin-left: 4.9rem !important;
}

.mar4 {
  margin-right: 4rem !important;
}

.mar4_1 {
  margin-right: 4.1rem !important;
}

.mar4_2 {
  margin-right: 4.2rem !important;
}

.mar4_3 {
  margin-right: 4.3rem !important;
}

.mar4_4 {
  margin-right: 4.4rem !important;
}

.mar4_5 {
  margin-right: 4.5rem !important;
}

.mar4_6 {
  margin-right: 4.6rem !important;
}

.mar4_7 {
  margin-right: 4.7rem !important;
}

.mar4_8 {
  margin-right: 4.8rem !important;
}

.mar4_9 {
  margin-right: 4.9rem !important;
}

.mab4 {
  margin-bottom: 4rem !important;
}

.mab4_1 {
  margin-bottom: 4.1rem !important;
}

.mab4_2 {
  margin-bottom: 4.2rem !important;
}

.mab4_3 {
  margin-bottom: 4.3rem !important;
}

.mab4_4 {
  margin-bottom: 4.4rem !important;
}

.mab4_5 {
  margin-bottom: 4.5rem !important;
}

.mab4_6 {
  margin-bottom: 4.6rem !important;
}

.mab4_7 {
  margin-bottom: 4.7rem !important;
}

.mab4_8 {
  margin-bottom: 4.8rem !important;
}

.mab4_9 {
  margin-bottom: 4.9rem !important;
}

.ma5 {
  margin: 5rem;
}

.ma5_1 {
  margin: 5.1rem !important;
}

.ma5_2 {
  margin: 5.2rem !important;
}

.ma5_3 {
  margin: 5.3rem !important;
}

.ma5_4 {
  margin: 5.4rem !important;
}

.ma5_5 {
  margin: 5.5rem !important;
}

.ma5_6 {
  margin: 5.6rem !important;
}

.ma5_7 {
  margin: 5.7rem !important;
}

.ma5_8 {
  margin: 5.8rem !important;
}

.ma5_9 {
  margin: 5.9rem !important;
}

.mat5 {
  margin-top: 5rem !important;
}

.mat5_1 {
  margin-top: 5.1rem !important;
}

.mat5_2 {
  margin-top: 5.2rem !important;
}

.mat5_3 {
  margin-top: 5.3rem !important;
}

.mat5_4 {
  margin-top: 5.4rem !important;
}

.mat5_5 {
  margin-top: 5.5rem !important;
}

.mat5_6 {
  margin-top: 5.6rem !important;
}

.mat5_7 {
  margin-top: 5.7rem !important;
}

.mat5_8 {
  margin-top: 5.8rem !important;
}

.mat5_9 {
  margin-top: 5.9rem !important;
}

.mal5 {
  margin-left: 5rem !important;
}

.mal5_1 {
  margin-left: 5.1rem !important;
}

.mal5_2 {
  margin-left: 5.2rem !important;
}

.mal5_3 {
  margin-left: 5.3rem !important;
}

.mal5_4 {
  margin-left: 5.4rem !important;
}

.mal5_5 {
  margin-left: 5.5rem !important;
}

.mal5_6 {
  margin-left: 5.6rem !important;
}

.mal5_7 {
  margin-left: 5.7rem !important;
}

.mal5_8 {
  margin-left: 5.8rem !important;
}

.mal5_9 {
  margin-left: 5.9rem !important;
}

.mar5 {
  margin-right: 5rem !important;
}

.mar5_1 {
  margin-right: 5.1rem !important;
}

.mar5_2 {
  margin-right: 5.2rem !important;
}

.mar5_3 {
  margin-right: 5.3rem !important;
}

.mar5_4 {
  margin-right: 5.4rem !important;
}

.mar5_5 {
  margin-right: 5.5rem !important;
}

.mar5_6 {
  margin-right: 5.6rem !important;
}

.mar5_7 {
  margin-right: 5.7rem !important;
}

.mar5_8 {
  margin-right: 5.8rem !important;
}

.mar5_9 {
  margin-right: 5.9rem !important;
}

.mab5 {
  margin-bottom: 5rem !important;
}

.mab5_1 {
  margin-bottom: 5.1rem !important;
}

.mab5_2 {
  margin-bottom: 5.2rem !important;
}

.mab5_3 {
  margin-bottom: 5.3rem !important;
}

.mab5_4 {
  margin-bottom: 5.4rem !important;
}

.mab5_5 {
  margin-bottom: 5.5rem !important;
}

.mab5_6 {
  margin-bottom: 5.6rem !important;
}

.mab5_7 {
  margin-bottom: 5.7rem !important;
}

.mab5_8 {
  margin-bottom: 5.8rem !important;
}

.mab5_9 {
  margin-bottom: 5.9rem !important;
}

.ma6 {
  margin: 6rem;
}

.ma6_1 {
  margin: 6.1rem !important;
}

.ma6_2 {
  margin: 6.2rem !important;
}

.ma6_3 {
  margin: 6.3rem !important;
}

.ma6_4 {
  margin: 6.4rem !important;
}

.ma6_5 {
  margin: 6.5rem !important;
}

.ma6_6 {
  margin: 6.6rem !important;
}

.ma6_7 {
  margin: 6.7rem !important;
}

.ma6_8 {
  margin: 6.8rem !important;
}

.ma6_9 {
  margin: 6.9rem !important;
}

.mat6 {
  margin-top: 6rem !important;
}

.mat6_1 {
  margin-top: 6.1rem !important;
}

.mat6_2 {
  margin-top: 6.2rem !important;
}

.mat6_3 {
  margin-top: 6.3rem !important;
}

.mat6_4 {
  margin-top: 6.4rem !important;
}

.mat6_5 {
  margin-top: 6.5rem !important;
}

.mat6_6 {
  margin-top: 6.6rem !important;
}

.mat6_7 {
  margin-top: 6.7rem !important;
}

.mat6_8 {
  margin-top: 6.8rem !important;
}

.mat6_9 {
  margin-top: 6.9rem !important;
}

.mal6 {
  margin-left: 6rem !important;
}

.mal6_1 {
  margin-left: 6.1rem !important;
}

.mal6_2 {
  margin-left: 6.2rem !important;
}

.mal6_3 {
  margin-left: 6.3rem !important;
}

.mal6_4 {
  margin-left: 6.4rem !important;
}

.mal6_5 {
  margin-left: 6.5rem !important;
}

.mal6_6 {
  margin-left: 6.6rem !important;
}

.mal6_7 {
  margin-left: 6.7rem !important;
}

.mal6_8 {
  margin-left: 6.8rem !important;
}

.mal6_9 {
  margin-left: 6.9rem !important;
}

.mar6 {
  margin-right: 6rem !important;
}

.mar6_1 {
  margin-right: 6.1rem !important;
}

.mar6_2 {
  margin-right: 6.2rem !important;
}

.mar6_3 {
  margin-right: 6.3rem !important;
}

.mar6_4 {
  margin-right: 6.4rem !important;
}

.mar6_5 {
  margin-right: 6.5rem !important;
}

.mar6_6 {
  margin-right: 6.6rem !important;
}

.mar6_7 {
  margin-right: 6.7rem !important;
}

.mar6_8 {
  margin-right: 6.8rem !important;
}

.mar6_9 {
  margin-right: 6.9rem !important;
}

.mab6 {
  margin-bottom: 6rem !important;
}

.mab6_1 {
  margin-bottom: 6.1rem !important;
}

.mab6_2 {
  margin-bottom: 6.2rem !important;
}

.mab6_3 {
  margin-bottom: 6.3rem !important;
}

.mab6_4 {
  margin-bottom: 6.4rem !important;
}

.mab6_5 {
  margin-bottom: 6.5rem !important;
}

.mab6_6 {
  margin-bottom: 6.6rem !important;
}

.mab6_7 {
  margin-bottom: 6.7rem !important;
}

.mab6_8 {
  margin-bottom: 6.8rem !important;
}

.mab6_9 {
  margin-bottom: 6.9rem !important;
}

.ma7 {
  margin: 7rem;
}

.ma7_1 {
  margin: 7.1rem !important;
}

.ma7_2 {
  margin: 7.2rem !important;
}

.ma7_3 {
  margin: 7.3rem !important;
}

.ma7_4 {
  margin: 7.4rem !important;
}

.ma7_5 {
  margin: 7.5rem !important;
}

.ma7_6 {
  margin: 7.6rem !important;
}

.ma7_7 {
  margin: 7.7rem !important;
}

.ma7_8 {
  margin: 7.8rem !important;
}

.ma7_9 {
  margin: 7.9rem !important;
}

.mat7 {
  margin-top: 7rem !important;
}

.mat7_1 {
  margin-top: 7.1rem !important;
}

.mat7_2 {
  margin-top: 7.2rem !important;
}

.mat7_3 {
  margin-top: 7.3rem !important;
}

.mat7_4 {
  margin-top: 7.4rem !important;
}

.mat7_5 {
  margin-top: 7.5rem !important;
}

.mat7_6 {
  margin-top: 7.6rem !important;
}

.mat7_7 {
  margin-top: 7.7rem !important;
}

.mat7_8 {
  margin-top: 7.8rem !important;
}

.mat7_9 {
  margin-top: 7.9rem !important;
}

.mal7 {
  margin-left: 7rem !important;
}

.mal7_1 {
  margin-left: 7.1rem !important;
}

.mal7_2 {
  margin-left: 7.2rem !important;
}

.mal7_3 {
  margin-left: 7.3rem !important;
}

.mal7_4 {
  margin-left: 7.4rem !important;
}

.mal7_5 {
  margin-left: 7.5rem !important;
}

.mal7_6 {
  margin-left: 7.6rem !important;
}

.mal7_7 {
  margin-left: 7.7rem !important;
}

.mal7_8 {
  margin-left: 7.8rem !important;
}

.mal7_9 {
  margin-left: 7.9rem !important;
}

.mar7 {
  margin-right: 7rem !important;
}

.mar7_1 {
  margin-right: 7.1rem !important;
}

.mar7_2 {
  margin-right: 7.2rem !important;
}

.mar7_3 {
  margin-right: 7.3rem !important;
}

.mar7_4 {
  margin-right: 7.4rem !important;
}

.mar7_5 {
  margin-right: 7.5rem !important;
}

.mar7_6 {
  margin-right: 7.6rem !important;
}

.mar7_7 {
  margin-right: 7.7rem !important;
}

.mar7_8 {
  margin-right: 7.8rem !important;
}

.mar7_9 {
  margin-right: 7.9rem !important;
}

.mab7 {
  margin-bottom: 7rem !important;
}

.mab7_1 {
  margin-bottom: 7.1rem !important;
}

.mab7_2 {
  margin-bottom: 7.2rem !important;
}

.mab7_3 {
  margin-bottom: 7.3rem !important;
}

.mab7_4 {
  margin-bottom: 7.4rem !important;
}

.mab7_5 {
  margin-bottom: 7.5rem !important;
}

.mab7_6 {
  margin-bottom: 7.6rem !important;
}

.mab7_7 {
  margin-bottom: 7.7rem !important;
}

.mab7_8 {
  margin-bottom: 7.8rem !important;
}

.mab7_9 {
  margin-bottom: 7.9rem !important;
}

.ma8 {
  margin: 8rem;
}

.ma8_1 {
  margin: 8.1rem !important;
}

.ma8_2 {
  margin: 8.2rem !important;
}

.ma8_3 {
  margin: 8.3rem !important;
}

.ma8_4 {
  margin: 8.4rem !important;
}

.ma8_5 {
  margin: 8.5rem !important;
}

.ma8_6 {
  margin: 8.6rem !important;
}

.ma8_7 {
  margin: 8.7rem !important;
}

.ma8_8 {
  margin: 8.8rem !important;
}

.ma8_9 {
  margin: 8.9rem !important;
}

.mat8 {
  margin-top: 8rem !important;
}

.mat8_1 {
  margin-top: 8.1rem !important;
}

.mat8_2 {
  margin-top: 8.2rem !important;
}

.mat8_3 {
  margin-top: 8.3rem !important;
}

.mat8_4 {
  margin-top: 8.4rem !important;
}

.mat8_5 {
  margin-top: 8.5rem !important;
}

.mat8_6 {
  margin-top: 8.6rem !important;
}

.mat8_7 {
  margin-top: 8.7rem !important;
}

.mat8_8 {
  margin-top: 8.8rem !important;
}

.mat8_9 {
  margin-top: 8.9rem !important;
}

.mal8 {
  margin-left: 8rem !important;
}

.mal8_1 {
  margin-left: 8.1rem !important;
}

.mal8_2 {
  margin-left: 8.2rem !important;
}

.mal8_3 {
  margin-left: 8.3rem !important;
}

.mal8_4 {
  margin-left: 8.4rem !important;
}

.mal8_5 {
  margin-left: 8.5rem !important;
}

.mal8_6 {
  margin-left: 8.6rem !important;
}

.mal8_7 {
  margin-left: 8.7rem !important;
}

.mal8_8 {
  margin-left: 8.8rem !important;
}

.mal8_9 {
  margin-left: 8.9rem !important;
}

.mar8 {
  margin-right: 8rem !important;
}

.mar8_1 {
  margin-right: 8.1rem !important;
}

.mar8_2 {
  margin-right: 8.2rem !important;
}

.mar8_3 {
  margin-right: 8.3rem !important;
}

.mar8_4 {
  margin-right: 8.4rem !important;
}

.mar8_5 {
  margin-right: 8.5rem !important;
}

.mar8_6 {
  margin-right: 8.6rem !important;
}

.mar8_7 {
  margin-right: 8.7rem !important;
}

.mar8_8 {
  margin-right: 8.8rem !important;
}

.mar8_9 {
  margin-right: 8.9rem !important;
}

.mab8 {
  margin-bottom: 8rem !important;
}

.mab8_1 {
  margin-bottom: 8.1rem !important;
}

.mab8_2 {
  margin-bottom: 8.2rem !important;
}

.mab8_3 {
  margin-bottom: 8.3rem !important;
}

.mab8_4 {
  margin-bottom: 8.4rem !important;
}

.mab8_5 {
  margin-bottom: 8.5rem !important;
}

.mab8_6 {
  margin-bottom: 8.6rem !important;
}

.mab8_7 {
  margin-bottom: 8.7rem !important;
}

.mab8_8 {
  margin-bottom: 8.8rem !important;
}

.mab8_9 {
  margin-bottom: 8.9rem !important;
}

.ma9 {
  margin: 9rem;
}

.ma9_1 {
  margin: 9.1rem !important;
}

.ma9_2 {
  margin: 9.2rem !important;
}

.ma9_3 {
  margin: 9.3rem !important;
}

.ma9_4 {
  margin: 9.4rem !important;
}

.ma9_5 {
  margin: 9.5rem !important;
}

.ma9_6 {
  margin: 9.6rem !important;
}

.ma9_7 {
  margin: 9.7rem !important;
}

.ma9_8 {
  margin: 9.8rem !important;
}

.ma9_9 {
  margin: 9.9rem !important;
}

.mat9 {
  margin-top: 9rem !important;
}

.mat9_1 {
  margin-top: 9.1rem !important;
}

.mat9_2 {
  margin-top: 9.2rem !important;
}

.mat9_3 {
  margin-top: 9.3rem !important;
}

.mat9_4 {
  margin-top: 9.4rem !important;
}

.mat9_5 {
  margin-top: 9.5rem !important;
}

.mat9_6 {
  margin-top: 9.6rem !important;
}

.mat9_7 {
  margin-top: 9.7rem !important;
}

.mat9_8 {
  margin-top: 9.8rem !important;
}

.mat9_9 {
  margin-top: 9.9rem !important;
}

.mal9 {
  margin-left: 9rem !important;
}

.mal9_1 {
  margin-left: 9.1rem !important;
}

.mal9_2 {
  margin-left: 9.2rem !important;
}

.mal9_3 {
  margin-left: 9.3rem !important;
}

.mal9_4 {
  margin-left: 9.4rem !important;
}

.mal9_5 {
  margin-left: 9.5rem !important;
}

.mal9_6 {
  margin-left: 9.6rem !important;
}

.mal9_7 {
  margin-left: 9.7rem !important;
}

.mal9_8 {
  margin-left: 9.8rem !important;
}

.mal9_9 {
  margin-left: 9.9rem !important;
}

.mar9 {
  margin-right: 9rem !important;
}

.mar9_1 {
  margin-right: 9.1rem !important;
}

.mar9_2 {
  margin-right: 9.2rem !important;
}

.mar9_3 {
  margin-right: 9.3rem !important;
}

.mar9_4 {
  margin-right: 9.4rem !important;
}

.mar9_5 {
  margin-right: 9.5rem !important;
}

.mar9_6 {
  margin-right: 9.6rem !important;
}

.mar9_7 {
  margin-right: 9.7rem !important;
}

.mar9_8 {
  margin-right: 9.8rem !important;
}

.mar9_9 {
  margin-right: 9.9rem !important;
}

.mab9 {
  margin-bottom: 9rem !important;
}

.mab9_1 {
  margin-bottom: 9.1rem !important;
}

.mab9_2 {
  margin-bottom: 9.2rem !important;
}

.mab9_3 {
  margin-bottom: 9.3rem !important;
}

.mab9_4 {
  margin-bottom: 9.4rem !important;
}

.mab9_5 {
  margin-bottom: 9.5rem !important;
}

.mab9_6 {
  margin-bottom: 9.6rem !important;
}

.mab9_7 {
  margin-bottom: 9.7rem !important;
}

.mab9_8 {
  margin-bottom: 9.8rem !important;
}

.mab9_9 {
  margin-bottom: 9.9rem !important;
}

.ma10 {
  margin: 10rem;
}

.ma10_1 {
  margin: 10.1rem !important;
}

.ma10_2 {
  margin: 10.2rem !important;
}

.ma10_3 {
  margin: 10.3rem !important;
}

.ma10_4 {
  margin: 10.4rem !important;
}

.ma10_5 {
  margin: 10.5rem !important;
}

.ma10_6 {
  margin: 10.6rem !important;
}

.ma10_7 {
  margin: 10.7rem !important;
}

.ma10_8 {
  margin: 10.8rem !important;
}

.ma10_9 {
  margin: 10.9rem !important;
}

.mat10 {
  margin-top: 10rem !important;
}

.mat10_1 {
  margin-top: 10.1rem !important;
}

.mat10_2 {
  margin-top: 10.2rem !important;
}

.mat10_3 {
  margin-top: 10.3rem !important;
}

.mat10_4 {
  margin-top: 10.4rem !important;
}

.mat10_5 {
  margin-top: 10.5rem !important;
}

.mat10_6 {
  margin-top: 10.6rem !important;
}

.mat10_7 {
  margin-top: 10.7rem !important;
}

.mat10_8 {
  margin-top: 10.8rem !important;
}

.mat10_9 {
  margin-top: 10.9rem !important;
}

.mal10 {
  margin-left: 10rem !important;
}

.mal10_1 {
  margin-left: 10.1rem !important;
}

.mal10_2 {
  margin-left: 10.2rem !important;
}

.mal10_3 {
  margin-left: 10.3rem !important;
}

.mal10_4 {
  margin-left: 10.4rem !important;
}

.mal10_5 {
  margin-left: 10.5rem !important;
}

.mal10_6 {
  margin-left: 10.6rem !important;
}

.mal10_7 {
  margin-left: 10.7rem !important;
}

.mal10_8 {
  margin-left: 10.8rem !important;
}

.mal10_9 {
  margin-left: 10.9rem !important;
}

.mar10 {
  margin-right: 10rem !important;
}

.mar10_1 {
  margin-right: 10.1rem !important;
}

.mar10_2 {
  margin-right: 10.2rem !important;
}

.mar10_3 {
  margin-right: 10.3rem !important;
}

.mar10_4 {
  margin-right: 10.4rem !important;
}

.mar10_5 {
  margin-right: 10.5rem !important;
}

.mar10_6 {
  margin-right: 10.6rem !important;
}

.mar10_7 {
  margin-right: 10.7rem !important;
}

.mar10_8 {
  margin-right: 10.8rem !important;
}

.mar10_9 {
  margin-right: 10.9rem !important;
}

.mab10 {
  margin-bottom: 10rem !important;
}

.mab10_1 {
  margin-bottom: 10.1rem !important;
}

.mab10_2 {
  margin-bottom: 10.2rem !important;
}

.mab10_3 {
  margin-bottom: 10.3rem !important;
}

.mab10_4 {
  margin-bottom: 10.4rem !important;
}

.mab10_5 {
  margin-bottom: 10.5rem !important;
}

.mab10_6 {
  margin-bottom: 10.6rem !important;
}

.mab10_7 {
  margin-bottom: 10.7rem !important;
}

.mab10_8 {
  margin-bottom: 10.8rem !important;
}

.mab10_9 {
  margin-bottom: 10.9rem !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.pa0     -> padding: 0rem
.pa1_1   -> padding: 1.1rem
.pab10_9 -> padding-bottom: 10.9rem
*/

.pa0 {
  padding: 0rem;
}

.pa0_1 {
  padding: 0.1rem !important;
}

.pa0_2 {
  padding: 0.2rem !important;
}

.pa0_3 {
  padding: 0.3rem !important;
}

.pa0_4 {
  padding: 0.4rem !important;
}

.pa0_5 {
  padding: 0.5rem !important;
}

.pa0_6 {
  padding: 0.6rem !important;
}

.pa0_7 {
  padding: 0.7rem !important;
}

.pa0_8 {
  padding: 0.8rem !important;
}

.pa0_9 {
  padding: 0.9rem !important;
}

.pat0 {
  padding-top: 0rem !important;
}

.pat0_1 {
  padding-top: 0.1rem !important;
}

.pat0_2 {
  padding-top: 0.2rem !important;
}

.pat0_3 {
  padding-top: 0.3rem !important;
}

.pat0_4 {
  padding-top: 0.4rem !important;
}

.pat0_5 {
  padding-top: 0.5rem !important;
}

.pat0_6 {
  padding-top: 0.6rem !important;
}

.pat0_7 {
  padding-top: 0.7rem !important;
}

.pat0_8 {
  padding-top: 0.8rem !important;
}

.pat0_9 {
  padding-top: 0.9rem !important;
}

.pal0 {
  padding-left: 0rem !important;
}

.pal0_1 {
  padding-left: 0.1rem !important;
}

.pal0_2 {
  padding-left: 0.2rem !important;
}

.pal0_3 {
  padding-left: 0.3rem !important;
}

.pal0_4 {
  padding-left: 0.4rem !important;
}

.pal0_5 {
  padding-left: 0.5rem !important;
}

.pal0_6 {
  padding-left: 0.6rem !important;
}

.pal0_7 {
  padding-left: 0.7rem !important;
}

.pal0_8 {
  padding-left: 0.8rem !important;
}

.pal0_9 {
  padding-left: 0.9rem !important;
}

.par0 {
  padding-right: 0rem !important;
}

.par0_1 {
  padding-right: 0.1rem !important;
}

.par0_2 {
  padding-right: 0.2rem !important;
}

.par0_3 {
  padding-right: 0.3rem !important;
}

.par0_4 {
  padding-right: 0.4rem !important;
}

.par0_5 {
  padding-right: 0.5rem !important;
}

.par0_6 {
  padding-right: 0.6rem !important;
}

.par0_7 {
  padding-right: 0.7rem !important;
}

.par0_8 {
  padding-right: 0.8rem !important;
}

.par0_9 {
  padding-right: 0.9rem !important;
}

.pab0 {
  padding-bottom: 0rem !important;
}

.pab0_1 {
  padding-bottom: 0.1rem !important;
}

.pab0_2 {
  padding-bottom: 0.2rem !important;
}

.pab0_3 {
  padding-bottom: 0.3rem !important;
}

.pab0_4 {
  padding-bottom: 0.4rem !important;
}

.pab0_5 {
  padding-bottom: 0.5rem !important;
}

.pab0_6 {
  padding-bottom: 0.6rem !important;
}

.pab0_7 {
  padding-bottom: 0.7rem !important;
}

.pab0_8 {
  padding-bottom: 0.8rem !important;
}

.pab0_9 {
  padding-bottom: 0.9rem !important;
}

.pa1 {
  padding: 1rem;
}

.pa1_1 {
  padding: 1.1rem !important;
}

.pa1_2 {
  padding: 1.2rem !important;
}

.pa1_3 {
  padding: 1.3rem !important;
}

.pa1_4 {
  padding: 1.4rem !important;
}

.pa1_5 {
  padding: 1.5rem !important;
}

.pa1_6 {
  padding: 1.6rem !important;
}

.pa1_7 {
  padding: 1.7rem !important;
}

.pa1_8 {
  padding: 1.8rem !important;
}

.pa1_9 {
  padding: 1.9rem !important;
}

.pat1 {
  padding-top: 1rem !important;
}

.pat1_1 {
  padding-top: 1.1rem !important;
}

.pat1_2 {
  padding-top: 1.2rem !important;
}

.pat1_3 {
  padding-top: 1.3rem !important;
}

.pat1_4 {
  padding-top: 1.4rem !important;
}

.pat1_5 {
  padding-top: 1.5rem !important;
}

.pat1_6 {
  padding-top: 1.6rem !important;
}

.pat1_7 {
  padding-top: 1.7rem !important;
}

.pat1_8 {
  padding-top: 1.8rem !important;
}

.pat1_9 {
  padding-top: 1.9rem !important;
}

.pal1 {
  padding-left: 1rem !important;
}

.pal1_1 {
  padding-left: 1.1rem !important;
}

.pal1_2 {
  padding-left: 1.2rem !important;
}

.pal1_3 {
  padding-left: 1.3rem !important;
}

.pal1_4 {
  padding-left: 1.4rem !important;
}

.pal1_5 {
  padding-left: 1.5rem !important;
}

.pal1_6 {
  padding-left: 1.6rem !important;
}

.pal1_7 {
  padding-left: 1.7rem !important;
}

.pal1_8 {
  padding-left: 1.8rem !important;
}

.pal1_9 {
  padding-left: 1.9rem !important;
}

.par1 {
  padding-right: 1rem !important;
}

.par1_1 {
  padding-right: 1.1rem !important;
}

.par1_2 {
  padding-right: 1.2rem !important;
}

.par1_3 {
  padding-right: 1.3rem !important;
}

.par1_4 {
  padding-right: 1.4rem !important;
}

.par1_5 {
  padding-right: 1.5rem !important;
}

.par1_6 {
  padding-right: 1.6rem !important;
}

.par1_7 {
  padding-right: 1.7rem !important;
}

.par1_8 {
  padding-right: 1.8rem !important;
}

.par1_9 {
  padding-right: 1.9rem !important;
}

.pab1 {
  padding-bottom: 1rem !important;
}

.pab1_1 {
  padding-bottom: 1.1rem !important;
}

.pab1_2 {
  padding-bottom: 1.2rem !important;
}

.pab1_3 {
  padding-bottom: 1.3rem !important;
}

.pab1_4 {
  padding-bottom: 1.4rem !important;
}

.pab1_5 {
  padding-bottom: 1.5rem !important;
}

.pab1_6 {
  padding-bottom: 1.6rem !important;
}

.pab1_7 {
  padding-bottom: 1.7rem !important;
}

.pab1_8 {
  padding-bottom: 1.8rem !important;
}

.pab1_9 {
  padding-bottom: 1.9rem !important;
}

.pa2 {
  padding: 2rem;
}

.pa2_1 {
  padding: 2.1rem !important;
}

.pa2_2 {
  padding: 2.2rem !important;
}

.pa2_3 {
  padding: 2.3rem !important;
}

.pa2_4 {
  padding: 2.4rem !important;
}

.pa2_5 {
  padding: 2.5rem !important;
}

.pa2_6 {
  padding: 2.6rem !important;
}

.pa2_7 {
  padding: 2.7rem !important;
}

.pa2_8 {
  padding: 2.8rem !important;
}

.pa2_9 {
  padding: 2.9rem !important;
}

.pat2 {
  padding-top: 2rem !important;
}

.pat2_1 {
  padding-top: 2.1rem !important;
}

.pat2_2 {
  padding-top: 2.2rem !important;
}

.pat2_3 {
  padding-top: 2.3rem !important;
}

.pat2_4 {
  padding-top: 2.4rem !important;
}

.pat2_5 {
  padding-top: 2.5rem !important;
}

.pat2_6 {
  padding-top: 2.6rem !important;
}

.pat2_7 {
  padding-top: 2.7rem !important;
}

.pat2_8 {
  padding-top: 2.8rem !important;
}

.pat2_9 {
  padding-top: 2.9rem !important;
}

.pal2 {
  padding-left: 2rem !important;
}

.pal2_1 {
  padding-left: 2.1rem !important;
}

.pal2_2 {
  padding-left: 2.2rem !important;
}

.pal2_3 {
  padding-left: 2.3rem !important;
}

.pal2_4 {
  padding-left: 2.4rem !important;
}

.pal2_5 {
  padding-left: 2.5rem !important;
}

.pal2_6 {
  padding-left: 2.6rem !important;
}

.pal2_7 {
  padding-left: 2.7rem !important;
}

.pal2_8 {
  padding-left: 2.8rem !important;
}

.pal2_9 {
  padding-left: 2.9rem !important;
}

.par2 {
  padding-right: 2rem !important;
}

.par2_1 {
  padding-right: 2.1rem !important;
}

.par2_2 {
  padding-right: 2.2rem !important;
}

.par2_3 {
  padding-right: 2.3rem !important;
}

.par2_4 {
  padding-right: 2.4rem !important;
}

.par2_5 {
  padding-right: 2.5rem !important;
}

.par2_6 {
  padding-right: 2.6rem !important;
}

.par2_7 {
  padding-right: 2.7rem !important;
}

.par2_8 {
  padding-right: 2.8rem !important;
}

.par2_9 {
  padding-right: 2.9rem !important;
}

.pab2 {
  padding-bottom: 2rem !important;
}

.pab2_1 {
  padding-bottom: 2.1rem !important;
}

.pab2_2 {
  padding-bottom: 2.2rem !important;
}

.pab2_3 {
  padding-bottom: 2.3rem !important;
}

.pab2_4 {
  padding-bottom: 2.4rem !important;
}

.pab2_5 {
  padding-bottom: 2.5rem !important;
}

.pab2_6 {
  padding-bottom: 2.6rem !important;
}

.pab2_7 {
  padding-bottom: 2.7rem !important;
}

.pab2_8 {
  padding-bottom: 2.8rem !important;
}

.pab2_9 {
  padding-bottom: 2.9rem !important;
}

.pa3 {
  padding: 3rem;
}

.pa3_1 {
  padding: 3.1rem !important;
}

.pa3_2 {
  padding: 3.2rem !important;
}

.pa3_3 {
  padding: 3.3rem !important;
}

.pa3_4 {
  padding: 3.4rem !important;
}

.pa3_5 {
  padding: 3.5rem !important;
}

.pa3_6 {
  padding: 3.6rem !important;
}

.pa3_7 {
  padding: 3.7rem !important;
}

.pa3_8 {
  padding: 3.8rem !important;
}

.pa3_9 {
  padding: 3.9rem !important;
}

.pat3 {
  padding-top: 3rem !important;
}

.pat3_1 {
  padding-top: 3.1rem !important;
}

.pat3_2 {
  padding-top: 3.2rem !important;
}

.pat3_3 {
  padding-top: 3.3rem !important;
}

.pat3_4 {
  padding-top: 3.4rem !important;
}

.pat3_5 {
  padding-top: 3.5rem !important;
}

.pat3_6 {
  padding-top: 3.6rem !important;
}

.pat3_7 {
  padding-top: 3.7rem !important;
}

.pat3_8 {
  padding-top: 3.8rem !important;
}

.pat3_9 {
  padding-top: 3.9rem !important;
}

.pal3 {
  padding-left: 3rem !important;
}

.pal3_1 {
  padding-left: 3.1rem !important;
}

.pal3_2 {
  padding-left: 3.2rem !important;
}

.pal3_3 {
  padding-left: 3.3rem !important;
}

.pal3_4 {
  padding-left: 3.4rem !important;
}

.pal3_5 {
  padding-left: 3.5rem !important;
}

.pal3_6 {
  padding-left: 3.6rem !important;
}

.pal3_7 {
  padding-left: 3.7rem !important;
}

.pal3_8 {
  padding-left: 3.8rem !important;
}

.pal3_9 {
  padding-left: 3.9rem !important;
}

.par3 {
  padding-right: 3rem !important;
}

.par3_1 {
  padding-right: 3.1rem !important;
}

.par3_2 {
  padding-right: 3.2rem !important;
}

.par3_3 {
  padding-right: 3.3rem !important;
}

.par3_4 {
  padding-right: 3.4rem !important;
}

.par3_5 {
  padding-right: 3.5rem !important;
}

.par3_6 {
  padding-right: 3.6rem !important;
}

.par3_7 {
  padding-right: 3.7rem !important;
}

.par3_8 {
  padding-right: 3.8rem !important;
}

.par3_9 {
  padding-right: 3.9rem !important;
}

.pab3 {
  padding-bottom: 3rem !important;
}

.pab3_1 {
  padding-bottom: 3.1rem !important;
}

.pab3_2 {
  padding-bottom: 3.2rem !important;
}

.pab3_3 {
  padding-bottom: 3.3rem !important;
}

.pab3_4 {
  padding-bottom: 3.4rem !important;
}

.pab3_5 {
  padding-bottom: 3.5rem !important;
}

.pab3_6 {
  padding-bottom: 3.6rem !important;
}

.pab3_7 {
  padding-bottom: 3.7rem !important;
}

.pab3_8 {
  padding-bottom: 3.8rem !important;
}

.pab3_9 {
  padding-bottom: 3.9rem !important;
}

.pa4 {
  padding: 4rem;
}

.pa4_1 {
  padding: 4.1rem !important;
}

.pa4_2 {
  padding: 4.2rem !important;
}

.pa4_3 {
  padding: 4.3rem !important;
}

.pa4_4 {
  padding: 4.4rem !important;
}

.pa4_5 {
  padding: 4.5rem !important;
}

.pa4_6 {
  padding: 4.6rem !important;
}

.pa4_7 {
  padding: 4.7rem !important;
}

.pa4_8 {
  padding: 4.8rem !important;
}

.pa4_9 {
  padding: 4.9rem !important;
}

.pat4 {
  padding-top: 4rem !important;
}

.pat4_1 {
  padding-top: 4.1rem !important;
}

.pat4_2 {
  padding-top: 4.2rem !important;
}

.pat4_3 {
  padding-top: 4.3rem !important;
}

.pat4_4 {
  padding-top: 4.4rem !important;
}

.pat4_5 {
  padding-top: 4.5rem !important;
}

.pat4_6 {
  padding-top: 4.6rem !important;
}

.pat4_7 {
  padding-top: 4.7rem !important;
}

.pat4_8 {
  padding-top: 4.8rem !important;
}

.pat4_9 {
  padding-top: 4.9rem !important;
}

.pal4 {
  padding-left: 4rem !important;
}

.pal4_1 {
  padding-left: 4.1rem !important;
}

.pal4_2 {
  padding-left: 4.2rem !important;
}

.pal4_3 {
  padding-left: 4.3rem !important;
}

.pal4_4 {
  padding-left: 4.4rem !important;
}

.pal4_5 {
  padding-left: 4.5rem !important;
}

.pal4_6 {
  padding-left: 4.6rem !important;
}

.pal4_7 {
  padding-left: 4.7rem !important;
}

.pal4_8 {
  padding-left: 4.8rem !important;
}

.pal4_9 {
  padding-left: 4.9rem !important;
}

.par4 {
  padding-right: 4rem !important;
}

.par4_1 {
  padding-right: 4.1rem !important;
}

.par4_2 {
  padding-right: 4.2rem !important;
}

.par4_3 {
  padding-right: 4.3rem !important;
}

.par4_4 {
  padding-right: 4.4rem !important;
}

.par4_5 {
  padding-right: 4.5rem !important;
}

.par4_6 {
  padding-right: 4.6rem !important;
}

.par4_7 {
  padding-right: 4.7rem !important;
}

.par4_8 {
  padding-right: 4.8rem !important;
}

.par4_9 {
  padding-right: 4.9rem !important;
}

.pab4 {
  padding-bottom: 4rem !important;
}

.pab4_1 {
  padding-bottom: 4.1rem !important;
}

.pab4_2 {
  padding-bottom: 4.2rem !important;
}

.pab4_3 {
  padding-bottom: 4.3rem !important;
}

.pab4_4 {
  padding-bottom: 4.4rem !important;
}

.pab4_5 {
  padding-bottom: 4.5rem !important;
}

.pab4_6 {
  padding-bottom: 4.6rem !important;
}

.pab4_7 {
  padding-bottom: 4.7rem !important;
}

.pab4_8 {
  padding-bottom: 4.8rem !important;
}

.pab4_9 {
  padding-bottom: 4.9rem !important;
}

.pa5 {
  padding: 5rem;
}

.pa5_1 {
  padding: 5.1rem !important;
}

.pa5_2 {
  padding: 5.2rem !important;
}

.pa5_3 {
  padding: 5.3rem !important;
}

.pa5_4 {
  padding: 5.4rem !important;
}

.pa5_5 {
  padding: 5.5rem !important;
}

.pa5_6 {
  padding: 5.6rem !important;
}

.pa5_7 {
  padding: 5.7rem !important;
}

.pa5_8 {
  padding: 5.8rem !important;
}

.pa5_9 {
  padding: 5.9rem !important;
}

.pat5 {
  padding-top: 5rem !important;
}

.pat5_1 {
  padding-top: 5.1rem !important;
}

.pat5_2 {
  padding-top: 5.2rem !important;
}

.pat5_3 {
  padding-top: 5.3rem !important;
}

.pat5_4 {
  padding-top: 5.4rem !important;
}

.pat5_5 {
  padding-top: 5.5rem !important;
}

.pat5_6 {
  padding-top: 5.6rem !important;
}

.pat5_7 {
  padding-top: 5.7rem !important;
}

.pat5_8 {
  padding-top: 5.8rem !important;
}

.pat5_9 {
  padding-top: 5.9rem !important;
}

.pal5 {
  padding-left: 5rem !important;
}

.pal5_1 {
  padding-left: 5.1rem !important;
}

.pal5_2 {
  padding-left: 5.2rem !important;
}

.pal5_3 {
  padding-left: 5.3rem !important;
}

.pal5_4 {
  padding-left: 5.4rem !important;
}

.pal5_5 {
  padding-left: 5.5rem !important;
}

.pal5_6 {
  padding-left: 5.6rem !important;
}

.pal5_7 {
  padding-left: 5.7rem !important;
}

.pal5_8 {
  padding-left: 5.8rem !important;
}

.pal5_9 {
  padding-left: 5.9rem !important;
}

.par5 {
  padding-right: 5rem !important;
}

.par5_1 {
  padding-right: 5.1rem !important;
}

.par5_2 {
  padding-right: 5.2rem !important;
}

.par5_3 {
  padding-right: 5.3rem !important;
}

.par5_4 {
  padding-right: 5.4rem !important;
}

.par5_5 {
  padding-right: 5.5rem !important;
}

.par5_6 {
  padding-right: 5.6rem !important;
}

.par5_7 {
  padding-right: 5.7rem !important;
}

.par5_8 {
  padding-right: 5.8rem !important;
}

.par5_9 {
  padding-right: 5.9rem !important;
}

.pab5 {
  padding-bottom: 5rem !important;
}

.pab5_1 {
  padding-bottom: 5.1rem !important;
}

.pab5_2 {
  padding-bottom: 5.2rem !important;
}

.pab5_3 {
  padding-bottom: 5.3rem !important;
}

.pab5_4 {
  padding-bottom: 5.4rem !important;
}

.pab5_5 {
  padding-bottom: 5.5rem !important;
}

.pab5_6 {
  padding-bottom: 5.6rem !important;
}

.pab5_7 {
  padding-bottom: 5.7rem !important;
}

.pab5_8 {
  padding-bottom: 5.8rem !important;
}

.pab5_9 {
  padding-bottom: 5.9rem !important;
}

.pa6 {
  padding: 6rem;
}

.pa6_1 {
  padding: 6.1rem !important;
}

.pa6_2 {
  padding: 6.2rem !important;
}

.pa6_3 {
  padding: 6.3rem !important;
}

.pa6_4 {
  padding: 6.4rem !important;
}

.pa6_5 {
  padding: 6.5rem !important;
}

.pa6_6 {
  padding: 6.6rem !important;
}

.pa6_7 {
  padding: 6.7rem !important;
}

.pa6_8 {
  padding: 6.8rem !important;
}

.pa6_9 {
  padding: 6.9rem !important;
}

.pat6 {
  padding-top: 6rem !important;
}

.pat6_1 {
  padding-top: 6.1rem !important;
}

.pat6_2 {
  padding-top: 6.2rem !important;
}

.pat6_3 {
  padding-top: 6.3rem !important;
}

.pat6_4 {
  padding-top: 6.4rem !important;
}

.pat6_5 {
  padding-top: 6.5rem !important;
}

.pat6_6 {
  padding-top: 6.6rem !important;
}

.pat6_7 {
  padding-top: 6.7rem !important;
}

.pat6_8 {
  padding-top: 6.8rem !important;
}

.pat6_9 {
  padding-top: 6.9rem !important;
}

.pal6 {
  padding-left: 6rem !important;
}

.pal6_1 {
  padding-left: 6.1rem !important;
}

.pal6_2 {
  padding-left: 6.2rem !important;
}

.pal6_3 {
  padding-left: 6.3rem !important;
}

.pal6_4 {
  padding-left: 6.4rem !important;
}

.pal6_5 {
  padding-left: 6.5rem !important;
}

.pal6_6 {
  padding-left: 6.6rem !important;
}

.pal6_7 {
  padding-left: 6.7rem !important;
}

.pal6_8 {
  padding-left: 6.8rem !important;
}

.pal6_9 {
  padding-left: 6.9rem !important;
}

.par6 {
  padding-right: 6rem !important;
}

.par6_1 {
  padding-right: 6.1rem !important;
}

.par6_2 {
  padding-right: 6.2rem !important;
}

.par6_3 {
  padding-right: 6.3rem !important;
}

.par6_4 {
  padding-right: 6.4rem !important;
}

.par6_5 {
  padding-right: 6.5rem !important;
}

.par6_6 {
  padding-right: 6.6rem !important;
}

.par6_7 {
  padding-right: 6.7rem !important;
}

.par6_8 {
  padding-right: 6.8rem !important;
}

.par6_9 {
  padding-right: 6.9rem !important;
}

.pab6 {
  padding-bottom: 6rem !important;
}

.pab6_1 {
  padding-bottom: 6.1rem !important;
}

.pab6_2 {
  padding-bottom: 6.2rem !important;
}

.pab6_3 {
  padding-bottom: 6.3rem !important;
}

.pab6_4 {
  padding-bottom: 6.4rem !important;
}

.pab6_5 {
  padding-bottom: 6.5rem !important;
}

.pab6_6 {
  padding-bottom: 6.6rem !important;
}

.pab6_7 {
  padding-bottom: 6.7rem !important;
}

.pab6_8 {
  padding-bottom: 6.8rem !important;
}

.pab6_9 {
  padding-bottom: 6.9rem !important;
}

.pa7 {
  padding: 7rem;
}

.pa7_1 {
  padding: 7.1rem !important;
}

.pa7_2 {
  padding: 7.2rem !important;
}

.pa7_3 {
  padding: 7.3rem !important;
}

.pa7_4 {
  padding: 7.4rem !important;
}

.pa7_5 {
  padding: 7.5rem !important;
}

.pa7_6 {
  padding: 7.6rem !important;
}

.pa7_7 {
  padding: 7.7rem !important;
}

.pa7_8 {
  padding: 7.8rem !important;
}

.pa7_9 {
  padding: 7.9rem !important;
}

.pat7 {
  padding-top: 7rem !important;
}

.pat7_1 {
  padding-top: 7.1rem !important;
}

.pat7_2 {
  padding-top: 7.2rem !important;
}

.pat7_3 {
  padding-top: 7.3rem !important;
}

.pat7_4 {
  padding-top: 7.4rem !important;
}

.pat7_5 {
  padding-top: 7.5rem !important;
}

.pat7_6 {
  padding-top: 7.6rem !important;
}

.pat7_7 {
  padding-top: 7.7rem !important;
}

.pat7_8 {
  padding-top: 7.8rem !important;
}

.pat7_9 {
  padding-top: 7.9rem !important;
}

.pal7 {
  padding-left: 7rem !important;
}

.pal7_1 {
  padding-left: 7.1rem !important;
}

.pal7_2 {
  padding-left: 7.2rem !important;
}

.pal7_3 {
  padding-left: 7.3rem !important;
}

.pal7_4 {
  padding-left: 7.4rem !important;
}

.pal7_5 {
  padding-left: 7.5rem !important;
}

.pal7_6 {
  padding-left: 7.6rem !important;
}

.pal7_7 {
  padding-left: 7.7rem !important;
}

.pal7_8 {
  padding-left: 7.8rem !important;
}

.pal7_9 {
  padding-left: 7.9rem !important;
}

.par7 {
  padding-right: 7rem !important;
}

.par7_1 {
  padding-right: 7.1rem !important;
}

.par7_2 {
  padding-right: 7.2rem !important;
}

.par7_3 {
  padding-right: 7.3rem !important;
}

.par7_4 {
  padding-right: 7.4rem !important;
}

.par7_5 {
  padding-right: 7.5rem !important;
}

.par7_6 {
  padding-right: 7.6rem !important;
}

.par7_7 {
  padding-right: 7.7rem !important;
}

.par7_8 {
  padding-right: 7.8rem !important;
}

.par7_9 {
  padding-right: 7.9rem !important;
}

.pab7 {
  padding-bottom: 7rem !important;
}

.pab7_1 {
  padding-bottom: 7.1rem !important;
}

.pab7_2 {
  padding-bottom: 7.2rem !important;
}

.pab7_3 {
  padding-bottom: 7.3rem !important;
}

.pab7_4 {
  padding-bottom: 7.4rem !important;
}

.pab7_5 {
  padding-bottom: 7.5rem !important;
}

.pab7_6 {
  padding-bottom: 7.6rem !important;
}

.pab7_7 {
  padding-bottom: 7.7rem !important;
}

.pab7_8 {
  padding-bottom: 7.8rem !important;
}

.pab7_9 {
  padding-bottom: 7.9rem !important;
}

.pa8 {
  padding: 8rem;
}

.pa8_1 {
  padding: 8.1rem !important;
}

.pa8_2 {
  padding: 8.2rem !important;
}

.pa8_3 {
  padding: 8.3rem !important;
}

.pa8_4 {
  padding: 8.4rem !important;
}

.pa8_5 {
  padding: 8.5rem !important;
}

.pa8_6 {
  padding: 8.6rem !important;
}

.pa8_7 {
  padding: 8.7rem !important;
}

.pa8_8 {
  padding: 8.8rem !important;
}

.pa8_9 {
  padding: 8.9rem !important;
}

.pat8 {
  padding-top: 8rem !important;
}

.pat8_1 {
  padding-top: 8.1rem !important;
}

.pat8_2 {
  padding-top: 8.2rem !important;
}

.pat8_3 {
  padding-top: 8.3rem !important;
}

.pat8_4 {
  padding-top: 8.4rem !important;
}

.pat8_5 {
  padding-top: 8.5rem !important;
}

.pat8_6 {
  padding-top: 8.6rem !important;
}

.pat8_7 {
  padding-top: 8.7rem !important;
}

.pat8_8 {
  padding-top: 8.8rem !important;
}

.pat8_9 {
  padding-top: 8.9rem !important;
}

.pal8 {
  padding-left: 8rem !important;
}

.pal8_1 {
  padding-left: 8.1rem !important;
}

.pal8_2 {
  padding-left: 8.2rem !important;
}

.pal8_3 {
  padding-left: 8.3rem !important;
}

.pal8_4 {
  padding-left: 8.4rem !important;
}

.pal8_5 {
  padding-left: 8.5rem !important;
}

.pal8_6 {
  padding-left: 8.6rem !important;
}

.pal8_7 {
  padding-left: 8.7rem !important;
}

.pal8_8 {
  padding-left: 8.8rem !important;
}

.pal8_9 {
  padding-left: 8.9rem !important;
}

.par8 {
  padding-right: 8rem !important;
}

.par8_1 {
  padding-right: 8.1rem !important;
}

.par8_2 {
  padding-right: 8.2rem !important;
}

.par8_3 {
  padding-right: 8.3rem !important;
}

.par8_4 {
  padding-right: 8.4rem !important;
}

.par8_5 {
  padding-right: 8.5rem !important;
}

.par8_6 {
  padding-right: 8.6rem !important;
}

.par8_7 {
  padding-right: 8.7rem !important;
}

.par8_8 {
  padding-right: 8.8rem !important;
}

.par8_9 {
  padding-right: 8.9rem !important;
}

.pab8 {
  padding-bottom: 8rem !important;
}

.pab8_1 {
  padding-bottom: 8.1rem !important;
}

.pab8_2 {
  padding-bottom: 8.2rem !important;
}

.pab8_3 {
  padding-bottom: 8.3rem !important;
}

.pab8_4 {
  padding-bottom: 8.4rem !important;
}

.pab8_5 {
  padding-bottom: 8.5rem !important;
}

.pab8_6 {
  padding-bottom: 8.6rem !important;
}

.pab8_7 {
  padding-bottom: 8.7rem !important;
}

.pab8_8 {
  padding-bottom: 8.8rem !important;
}

.pab8_9 {
  padding-bottom: 8.9rem !important;
}

.pa9 {
  padding: 9rem;
}

.pa9_1 {
  padding: 9.1rem !important;
}

.pa9_2 {
  padding: 9.2rem !important;
}

.pa9_3 {
  padding: 9.3rem !important;
}

.pa9_4 {
  padding: 9.4rem !important;
}

.pa9_5 {
  padding: 9.5rem !important;
}

.pa9_6 {
  padding: 9.6rem !important;
}

.pa9_7 {
  padding: 9.7rem !important;
}

.pa9_8 {
  padding: 9.8rem !important;
}

.pa9_9 {
  padding: 9.9rem !important;
}

.pat9 {
  padding-top: 9rem !important;
}

.pat9_1 {
  padding-top: 9.1rem !important;
}

.pat9_2 {
  padding-top: 9.2rem !important;
}

.pat9_3 {
  padding-top: 9.3rem !important;
}

.pat9_4 {
  padding-top: 9.4rem !important;
}

.pat9_5 {
  padding-top: 9.5rem !important;
}

.pat9_6 {
  padding-top: 9.6rem !important;
}

.pat9_7 {
  padding-top: 9.7rem !important;
}

.pat9_8 {
  padding-top: 9.8rem !important;
}

.pat9_9 {
  padding-top: 9.9rem !important;
}

.pal9 {
  padding-left: 9rem !important;
}

.pal9_1 {
  padding-left: 9.1rem !important;
}

.pal9_2 {
  padding-left: 9.2rem !important;
}

.pal9_3 {
  padding-left: 9.3rem !important;
}

.pal9_4 {
  padding-left: 9.4rem !important;
}

.pal9_5 {
  padding-left: 9.5rem !important;
}

.pal9_6 {
  padding-left: 9.6rem !important;
}

.pal9_7 {
  padding-left: 9.7rem !important;
}

.pal9_8 {
  padding-left: 9.8rem !important;
}

.pal9_9 {
  padding-left: 9.9rem !important;
}

.par9 {
  padding-right: 9rem !important;
}

.par9_1 {
  padding-right: 9.1rem !important;
}

.par9_2 {
  padding-right: 9.2rem !important;
}

.par9_3 {
  padding-right: 9.3rem !important;
}

.par9_4 {
  padding-right: 9.4rem !important;
}

.par9_5 {
  padding-right: 9.5rem !important;
}

.par9_6 {
  padding-right: 9.6rem !important;
}

.par9_7 {
  padding-right: 9.7rem !important;
}

.par9_8 {
  padding-right: 9.8rem !important;
}

.par9_9 {
  padding-right: 9.9rem !important;
}

.pab9 {
  padding-bottom: 9rem !important;
}

.pab9_1 {
  padding-bottom: 9.1rem !important;
}

.pab9_2 {
  padding-bottom: 9.2rem !important;
}

.pab9_3 {
  padding-bottom: 9.3rem !important;
}

.pab9_4 {
  padding-bottom: 9.4rem !important;
}

.pab9_5 {
  padding-bottom: 9.5rem !important;
}

.pab9_6 {
  padding-bottom: 9.6rem !important;
}

.pab9_7 {
  padding-bottom: 9.7rem !important;
}

.pab9_8 {
  padding-bottom: 9.8rem !important;
}

.pab9_9 {
  padding-bottom: 9.9rem !important;
}

.pa10 {
  padding: 10rem;
}

.pa10_1 {
  padding: 10.1rem !important;
}

.pa10_2 {
  padding: 10.2rem !important;
}

.pa10_3 {
  padding: 10.3rem !important;
}

.pa10_4 {
  padding: 10.4rem !important;
}

.pa10_5 {
  padding: 10.5rem !important;
}

.pa10_6 {
  padding: 10.6rem !important;
}

.pa10_7 {
  padding: 10.7rem !important;
}

.pa10_8 {
  padding: 10.8rem !important;
}

.pa10_9 {
  padding: 10.9rem !important;
}

.pat10 {
  padding-top: 10rem !important;
}

.pat10_1 {
  padding-top: 10.1rem !important;
}

.pat10_2 {
  padding-top: 10.2rem !important;
}

.pat10_3 {
  padding-top: 10.3rem !important;
}

.pat10_4 {
  padding-top: 10.4rem !important;
}

.pat10_5 {
  padding-top: 10.5rem !important;
}

.pat10_6 {
  padding-top: 10.6rem !important;
}

.pat10_7 {
  padding-top: 10.7rem !important;
}

.pat10_8 {
  padding-top: 10.8rem !important;
}

.pat10_9 {
  padding-top: 10.9rem !important;
}

.pal10 {
  padding-left: 10rem !important;
}

.pal10_1 {
  padding-left: 10.1rem !important;
}

.pal10_2 {
  padding-left: 10.2rem !important;
}

.pal10_3 {
  padding-left: 10.3rem !important;
}

.pal10_4 {
  padding-left: 10.4rem !important;
}

.pal10_5 {
  padding-left: 10.5rem !important;
}

.pal10_6 {
  padding-left: 10.6rem !important;
}

.pal10_7 {
  padding-left: 10.7rem !important;
}

.pal10_8 {
  padding-left: 10.8rem !important;
}

.pal10_9 {
  padding-left: 10.9rem !important;
}

.par10 {
  padding-right: 10rem !important;
}

.par10_1 {
  padding-right: 10.1rem !important;
}

.par10_2 {
  padding-right: 10.2rem !important;
}

.par10_3 {
  padding-right: 10.3rem !important;
}

.par10_4 {
  padding-right: 10.4rem !important;
}

.par10_5 {
  padding-right: 10.5rem !important;
}

.par10_6 {
  padding-right: 10.6rem !important;
}

.par10_7 {
  padding-right: 10.7rem !important;
}

.par10_8 {
  padding-right: 10.8rem !important;
}

.par10_9 {
  padding-right: 10.9rem !important;
}

.pab10 {
  padding-bottom: 10rem !important;
}

.pab10_1 {
  padding-bottom: 10.1rem !important;
}

.pab10_2 {
  padding-bottom: 10.2rem !important;
}

.pab10_3 {
  padding-bottom: 10.3rem !important;
}

.pab10_4 {
  padding-bottom: 10.4rem !important;
}

.pab10_5 {
  padding-bottom: 10.5rem !important;
}

.pab10_6 {
  padding-bottom: 10.6rem !important;
}

.pab10_7 {
  padding-bottom: 10.7rem !important;
}

.pab10_8 {
  padding-bottom: 10.8rem !important;
}

.pab10_9 {
  padding-bottom: 10.9rem !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.pos-rel -> position: relative
.pos-abs -> position: absolute
.pos-fix -> position: fixed
*/

.pos-rel {
  position: relative !important;
}

.pos-abs {
  position: absolute !important;
}

.pos-fix {
  position: fixed !important;
}

@media screen and (max-width: 1023px) {
  .pos-fix--sp {
    position: fixed !important;
  }
}

@media screen and (min-width: 1024) {
  .pos-fix--pc {
    position: fixed !important;
  }
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.t0   -> top: 0rem ※~10remまで0.1rem刻み
.r0p  -> right: 0% ※~100%まで5%刻み
*/

.t0 {
  top: 0rem !important;
}

.t0_1 {
  top: 0.1rem !important;
}

.t0_2 {
  top: 0.2rem !important;
}

.t0_3 {
  top: 0.3rem !important;
}

.t0_4 {
  top: 0.4rem !important;
}

.t0_5 {
  top: 0.5rem !important;
}

.t0_6 {
  top: 0.6rem !important;
}

.t0_7 {
  top: 0.7rem !important;
}

.t0_8 {
  top: 0.8rem !important;
}

.t0_9 {
  top: 0.9rem !important;
}

.l0 {
  left: 0rem !important;
}

.l0_1 {
  left: 0.1rem !important;
}

.l0_2 {
  left: 0.2rem !important;
}

.l0_3 {
  left: 0.3rem !important;
}

.l0_4 {
  left: 0.4rem !important;
}

.l0_5 {
  left: 0.5rem !important;
}

.l0_6 {
  left: 0.6rem !important;
}

.l0_7 {
  left: 0.7rem !important;
}

.l0_8 {
  left: 0.8rem !important;
}

.l0_9 {
  left: 0.9rem !important;
}

.r0 {
  right: 0rem !important;
}

.r0_1 {
  right: 0.1rem !important;
}

.r0_2 {
  right: 0.2rem !important;
}

.r0_3 {
  right: 0.3rem !important;
}

.r0_4 {
  right: 0.4rem !important;
}

.r0_5 {
  right: 0.5rem !important;
}

.r0_6 {
  right: 0.6rem !important;
}

.r0_7 {
  right: 0.7rem !important;
}

.r0_8 {
  right: 0.8rem !important;
}

.r0_9 {
  right: 0.9rem !important;
}

.b0 {
  bottom: 0rem !important;
}

.b0_1 {
  bottom: 0.1rem !important;
}

.b0_2 {
  bottom: 0.2rem !important;
}

.b0_3 {
  bottom: 0.3rem !important;
}

.b0_4 {
  bottom: 0.4rem !important;
}

.b0_5 {
  bottom: 0.5rem !important;
}

.b0_6 {
  bottom: 0.6rem !important;
}

.b0_7 {
  bottom: 0.7rem !important;
}

.b0_8 {
  bottom: 0.8rem !important;
}

.b0_9 {
  bottom: 0.9rem !important;
}

.t1 {
  top: 1rem !important;
}

.t1_1 {
  top: 1.1rem !important;
}

.t1_2 {
  top: 1.2rem !important;
}

.t1_3 {
  top: 1.3rem !important;
}

.t1_4 {
  top: 1.4rem !important;
}

.t1_5 {
  top: 1.5rem !important;
}

.t1_6 {
  top: 1.6rem !important;
}

.t1_7 {
  top: 1.7rem !important;
}

.t1_8 {
  top: 1.8rem !important;
}

.t1_9 {
  top: 1.9rem !important;
}

.l1 {
  left: 1rem !important;
}

.l1_1 {
  left: 1.1rem !important;
}

.l1_2 {
  left: 1.2rem !important;
}

.l1_3 {
  left: 1.3rem !important;
}

.l1_4 {
  left: 1.4rem !important;
}

.l1_5 {
  left: 1.5rem !important;
}

.l1_6 {
  left: 1.6rem !important;
}

.l1_7 {
  left: 1.7rem !important;
}

.l1_8 {
  left: 1.8rem !important;
}

.l1_9 {
  left: 1.9rem !important;
}

.r1 {
  right: 1rem !important;
}

.r1_1 {
  right: 1.1rem !important;
}

.r1_2 {
  right: 1.2rem !important;
}

.r1_3 {
  right: 1.3rem !important;
}

.r1_4 {
  right: 1.4rem !important;
}

.r1_5 {
  right: 1.5rem !important;
}

.r1_6 {
  right: 1.6rem !important;
}

.r1_7 {
  right: 1.7rem !important;
}

.r1_8 {
  right: 1.8rem !important;
}

.r1_9 {
  right: 1.9rem !important;
}

.b1 {
  bottom: 1rem !important;
}

.b1_1 {
  bottom: 1.1rem !important;
}

.b1_2 {
  bottom: 1.2rem !important;
}

.b1_3 {
  bottom: 1.3rem !important;
}

.b1_4 {
  bottom: 1.4rem !important;
}

.b1_5 {
  bottom: 1.5rem !important;
}

.b1_6 {
  bottom: 1.6rem !important;
}

.b1_7 {
  bottom: 1.7rem !important;
}

.b1_8 {
  bottom: 1.8rem !important;
}

.b1_9 {
  bottom: 1.9rem !important;
}

.t2 {
  top: 2rem !important;
}

.t2_1 {
  top: 2.1rem !important;
}

.t2_2 {
  top: 2.2rem !important;
}

.t2_3 {
  top: 2.3rem !important;
}

.t2_4 {
  top: 2.4rem !important;
}

.t2_5 {
  top: 2.5rem !important;
}

.t2_6 {
  top: 2.6rem !important;
}

.t2_7 {
  top: 2.7rem !important;
}

.t2_8 {
  top: 2.8rem !important;
}

.t2_9 {
  top: 2.9rem !important;
}

.l2 {
  left: 2rem !important;
}

.l2_1 {
  left: 2.1rem !important;
}

.l2_2 {
  left: 2.2rem !important;
}

.l2_3 {
  left: 2.3rem !important;
}

.l2_4 {
  left: 2.4rem !important;
}

.l2_5 {
  left: 2.5rem !important;
}

.l2_6 {
  left: 2.6rem !important;
}

.l2_7 {
  left: 2.7rem !important;
}

.l2_8 {
  left: 2.8rem !important;
}

.l2_9 {
  left: 2.9rem !important;
}

.r2 {
  right: 2rem !important;
}

.r2_1 {
  right: 2.1rem !important;
}

.r2_2 {
  right: 2.2rem !important;
}

.r2_3 {
  right: 2.3rem !important;
}

.r2_4 {
  right: 2.4rem !important;
}

.r2_5 {
  right: 2.5rem !important;
}

.r2_6 {
  right: 2.6rem !important;
}

.r2_7 {
  right: 2.7rem !important;
}

.r2_8 {
  right: 2.8rem !important;
}

.r2_9 {
  right: 2.9rem !important;
}

.b2 {
  bottom: 2rem !important;
}

.b2_1 {
  bottom: 2.1rem !important;
}

.b2_2 {
  bottom: 2.2rem !important;
}

.b2_3 {
  bottom: 2.3rem !important;
}

.b2_4 {
  bottom: 2.4rem !important;
}

.b2_5 {
  bottom: 2.5rem !important;
}

.b2_6 {
  bottom: 2.6rem !important;
}

.b2_7 {
  bottom: 2.7rem !important;
}

.b2_8 {
  bottom: 2.8rem !important;
}

.b2_9 {
  bottom: 2.9rem !important;
}

.t3 {
  top: 3rem !important;
}

.t3_1 {
  top: 3.1rem !important;
}

.t3_2 {
  top: 3.2rem !important;
}

.t3_3 {
  top: 3.3rem !important;
}

.t3_4 {
  top: 3.4rem !important;
}

.t3_5 {
  top: 3.5rem !important;
}

.t3_6 {
  top: 3.6rem !important;
}

.t3_7 {
  top: 3.7rem !important;
}

.t3_8 {
  top: 3.8rem !important;
}

.t3_9 {
  top: 3.9rem !important;
}

.l3 {
  left: 3rem !important;
}

.l3_1 {
  left: 3.1rem !important;
}

.l3_2 {
  left: 3.2rem !important;
}

.l3_3 {
  left: 3.3rem !important;
}

.l3_4 {
  left: 3.4rem !important;
}

.l3_5 {
  left: 3.5rem !important;
}

.l3_6 {
  left: 3.6rem !important;
}

.l3_7 {
  left: 3.7rem !important;
}

.l3_8 {
  left: 3.8rem !important;
}

.l3_9 {
  left: 3.9rem !important;
}

.r3 {
  right: 3rem !important;
}

.r3_1 {
  right: 3.1rem !important;
}

.r3_2 {
  right: 3.2rem !important;
}

.r3_3 {
  right: 3.3rem !important;
}

.r3_4 {
  right: 3.4rem !important;
}

.r3_5 {
  right: 3.5rem !important;
}

.r3_6 {
  right: 3.6rem !important;
}

.r3_7 {
  right: 3.7rem !important;
}

.r3_8 {
  right: 3.8rem !important;
}

.r3_9 {
  right: 3.9rem !important;
}

.b3 {
  bottom: 3rem !important;
}

.b3_1 {
  bottom: 3.1rem !important;
}

.b3_2 {
  bottom: 3.2rem !important;
}

.b3_3 {
  bottom: 3.3rem !important;
}

.b3_4 {
  bottom: 3.4rem !important;
}

.b3_5 {
  bottom: 3.5rem !important;
}

.b3_6 {
  bottom: 3.6rem !important;
}

.b3_7 {
  bottom: 3.7rem !important;
}

.b3_8 {
  bottom: 3.8rem !important;
}

.b3_9 {
  bottom: 3.9rem !important;
}

.t4 {
  top: 4rem !important;
}

.t4_1 {
  top: 4.1rem !important;
}

.t4_2 {
  top: 4.2rem !important;
}

.t4_3 {
  top: 4.3rem !important;
}

.t4_4 {
  top: 4.4rem !important;
}

.t4_5 {
  top: 4.5rem !important;
}

.t4_6 {
  top: 4.6rem !important;
}

.t4_7 {
  top: 4.7rem !important;
}

.t4_8 {
  top: 4.8rem !important;
}

.t4_9 {
  top: 4.9rem !important;
}

.l4 {
  left: 4rem !important;
}

.l4_1 {
  left: 4.1rem !important;
}

.l4_2 {
  left: 4.2rem !important;
}

.l4_3 {
  left: 4.3rem !important;
}

.l4_4 {
  left: 4.4rem !important;
}

.l4_5 {
  left: 4.5rem !important;
}

.l4_6 {
  left: 4.6rem !important;
}

.l4_7 {
  left: 4.7rem !important;
}

.l4_8 {
  left: 4.8rem !important;
}

.l4_9 {
  left: 4.9rem !important;
}

.r4 {
  right: 4rem !important;
}

.r4_1 {
  right: 4.1rem !important;
}

.r4_2 {
  right: 4.2rem !important;
}

.r4_3 {
  right: 4.3rem !important;
}

.r4_4 {
  right: 4.4rem !important;
}

.r4_5 {
  right: 4.5rem !important;
}

.r4_6 {
  right: 4.6rem !important;
}

.r4_7 {
  right: 4.7rem !important;
}

.r4_8 {
  right: 4.8rem !important;
}

.r4_9 {
  right: 4.9rem !important;
}

.b4 {
  bottom: 4rem !important;
}

.b4_1 {
  bottom: 4.1rem !important;
}

.b4_2 {
  bottom: 4.2rem !important;
}

.b4_3 {
  bottom: 4.3rem !important;
}

.b4_4 {
  bottom: 4.4rem !important;
}

.b4_5 {
  bottom: 4.5rem !important;
}

.b4_6 {
  bottom: 4.6rem !important;
}

.b4_7 {
  bottom: 4.7rem !important;
}

.b4_8 {
  bottom: 4.8rem !important;
}

.b4_9 {
  bottom: 4.9rem !important;
}

.t5 {
  top: 5rem !important;
}

.t5_1 {
  top: 5.1rem !important;
}

.t5_2 {
  top: 5.2rem !important;
}

.t5_3 {
  top: 5.3rem !important;
}

.t5_4 {
  top: 5.4rem !important;
}

.t5_5 {
  top: 5.5rem !important;
}

.t5_6 {
  top: 5.6rem !important;
}

.t5_7 {
  top: 5.7rem !important;
}

.t5_8 {
  top: 5.8rem !important;
}

.t5_9 {
  top: 5.9rem !important;
}

.l5 {
  left: 5rem !important;
}

.l5_1 {
  left: 5.1rem !important;
}

.l5_2 {
  left: 5.2rem !important;
}

.l5_3 {
  left: 5.3rem !important;
}

.l5_4 {
  left: 5.4rem !important;
}

.l5_5 {
  left: 5.5rem !important;
}

.l5_6 {
  left: 5.6rem !important;
}

.l5_7 {
  left: 5.7rem !important;
}

.l5_8 {
  left: 5.8rem !important;
}

.l5_9 {
  left: 5.9rem !important;
}

.r5 {
  right: 5rem !important;
}

.r5_1 {
  right: 5.1rem !important;
}

.r5_2 {
  right: 5.2rem !important;
}

.r5_3 {
  right: 5.3rem !important;
}

.r5_4 {
  right: 5.4rem !important;
}

.r5_5 {
  right: 5.5rem !important;
}

.r5_6 {
  right: 5.6rem !important;
}

.r5_7 {
  right: 5.7rem !important;
}

.r5_8 {
  right: 5.8rem !important;
}

.r5_9 {
  right: 5.9rem !important;
}

.b5 {
  bottom: 5rem !important;
}

.b5_1 {
  bottom: 5.1rem !important;
}

.b5_2 {
  bottom: 5.2rem !important;
}

.b5_3 {
  bottom: 5.3rem !important;
}

.b5_4 {
  bottom: 5.4rem !important;
}

.b5_5 {
  bottom: 5.5rem !important;
}

.b5_6 {
  bottom: 5.6rem !important;
}

.b5_7 {
  bottom: 5.7rem !important;
}

.b5_8 {
  bottom: 5.8rem !important;
}

.b5_9 {
  bottom: 5.9rem !important;
}

.t6 {
  top: 6rem !important;
}

.t6_1 {
  top: 6.1rem !important;
}

.t6_2 {
  top: 6.2rem !important;
}

.t6_3 {
  top: 6.3rem !important;
}

.t6_4 {
  top: 6.4rem !important;
}

.t6_5 {
  top: 6.5rem !important;
}

.t6_6 {
  top: 6.6rem !important;
}

.t6_7 {
  top: 6.7rem !important;
}

.t6_8 {
  top: 6.8rem !important;
}

.t6_9 {
  top: 6.9rem !important;
}

.l6 {
  left: 6rem !important;
}

.l6_1 {
  left: 6.1rem !important;
}

.l6_2 {
  left: 6.2rem !important;
}

.l6_3 {
  left: 6.3rem !important;
}

.l6_4 {
  left: 6.4rem !important;
}

.l6_5 {
  left: 6.5rem !important;
}

.l6_6 {
  left: 6.6rem !important;
}

.l6_7 {
  left: 6.7rem !important;
}

.l6_8 {
  left: 6.8rem !important;
}

.l6_9 {
  left: 6.9rem !important;
}

.r6 {
  right: 6rem !important;
}

.r6_1 {
  right: 6.1rem !important;
}

.r6_2 {
  right: 6.2rem !important;
}

.r6_3 {
  right: 6.3rem !important;
}

.r6_4 {
  right: 6.4rem !important;
}

.r6_5 {
  right: 6.5rem !important;
}

.r6_6 {
  right: 6.6rem !important;
}

.r6_7 {
  right: 6.7rem !important;
}

.r6_8 {
  right: 6.8rem !important;
}

.r6_9 {
  right: 6.9rem !important;
}

.b6 {
  bottom: 6rem !important;
}

.b6_1 {
  bottom: 6.1rem !important;
}

.b6_2 {
  bottom: 6.2rem !important;
}

.b6_3 {
  bottom: 6.3rem !important;
}

.b6_4 {
  bottom: 6.4rem !important;
}

.b6_5 {
  bottom: 6.5rem !important;
}

.b6_6 {
  bottom: 6.6rem !important;
}

.b6_7 {
  bottom: 6.7rem !important;
}

.b6_8 {
  bottom: 6.8rem !important;
}

.b6_9 {
  bottom: 6.9rem !important;
}

.t7 {
  top: 7rem !important;
}

.t7_1 {
  top: 7.1rem !important;
}

.t7_2 {
  top: 7.2rem !important;
}

.t7_3 {
  top: 7.3rem !important;
}

.t7_4 {
  top: 7.4rem !important;
}

.t7_5 {
  top: 7.5rem !important;
}

.t7_6 {
  top: 7.6rem !important;
}

.t7_7 {
  top: 7.7rem !important;
}

.t7_8 {
  top: 7.8rem !important;
}

.t7_9 {
  top: 7.9rem !important;
}

.l7 {
  left: 7rem !important;
}

.l7_1 {
  left: 7.1rem !important;
}

.l7_2 {
  left: 7.2rem !important;
}

.l7_3 {
  left: 7.3rem !important;
}

.l7_4 {
  left: 7.4rem !important;
}

.l7_5 {
  left: 7.5rem !important;
}

.l7_6 {
  left: 7.6rem !important;
}

.l7_7 {
  left: 7.7rem !important;
}

.l7_8 {
  left: 7.8rem !important;
}

.l7_9 {
  left: 7.9rem !important;
}

.r7 {
  right: 7rem !important;
}

.r7_1 {
  right: 7.1rem !important;
}

.r7_2 {
  right: 7.2rem !important;
}

.r7_3 {
  right: 7.3rem !important;
}

.r7_4 {
  right: 7.4rem !important;
}

.r7_5 {
  right: 7.5rem !important;
}

.r7_6 {
  right: 7.6rem !important;
}

.r7_7 {
  right: 7.7rem !important;
}

.r7_8 {
  right: 7.8rem !important;
}

.r7_9 {
  right: 7.9rem !important;
}

.b7 {
  bottom: 7rem !important;
}

.b7_1 {
  bottom: 7.1rem !important;
}

.b7_2 {
  bottom: 7.2rem !important;
}

.b7_3 {
  bottom: 7.3rem !important;
}

.b7_4 {
  bottom: 7.4rem !important;
}

.b7_5 {
  bottom: 7.5rem !important;
}

.b7_6 {
  bottom: 7.6rem !important;
}

.b7_7 {
  bottom: 7.7rem !important;
}

.b7_8 {
  bottom: 7.8rem !important;
}

.b7_9 {
  bottom: 7.9rem !important;
}

.t8 {
  top: 8rem !important;
}

.t8_1 {
  top: 8.1rem !important;
}

.t8_2 {
  top: 8.2rem !important;
}

.t8_3 {
  top: 8.3rem !important;
}

.t8_4 {
  top: 8.4rem !important;
}

.t8_5 {
  top: 8.5rem !important;
}

.t8_6 {
  top: 8.6rem !important;
}

.t8_7 {
  top: 8.7rem !important;
}

.t8_8 {
  top: 8.8rem !important;
}

.t8_9 {
  top: 8.9rem !important;
}

.l8 {
  left: 8rem !important;
}

.l8_1 {
  left: 8.1rem !important;
}

.l8_2 {
  left: 8.2rem !important;
}

.l8_3 {
  left: 8.3rem !important;
}

.l8_4 {
  left: 8.4rem !important;
}

.l8_5 {
  left: 8.5rem !important;
}

.l8_6 {
  left: 8.6rem !important;
}

.l8_7 {
  left: 8.7rem !important;
}

.l8_8 {
  left: 8.8rem !important;
}

.l8_9 {
  left: 8.9rem !important;
}

.r8 {
  right: 8rem !important;
}

.r8_1 {
  right: 8.1rem !important;
}

.r8_2 {
  right: 8.2rem !important;
}

.r8_3 {
  right: 8.3rem !important;
}

.r8_4 {
  right: 8.4rem !important;
}

.r8_5 {
  right: 8.5rem !important;
}

.r8_6 {
  right: 8.6rem !important;
}

.r8_7 {
  right: 8.7rem !important;
}

.r8_8 {
  right: 8.8rem !important;
}

.r8_9 {
  right: 8.9rem !important;
}

.b8 {
  bottom: 8rem !important;
}

.b8_1 {
  bottom: 8.1rem !important;
}

.b8_2 {
  bottom: 8.2rem !important;
}

.b8_3 {
  bottom: 8.3rem !important;
}

.b8_4 {
  bottom: 8.4rem !important;
}

.b8_5 {
  bottom: 8.5rem !important;
}

.b8_6 {
  bottom: 8.6rem !important;
}

.b8_7 {
  bottom: 8.7rem !important;
}

.b8_8 {
  bottom: 8.8rem !important;
}

.b8_9 {
  bottom: 8.9rem !important;
}

.t9 {
  top: 9rem !important;
}

.t9_1 {
  top: 9.1rem !important;
}

.t9_2 {
  top: 9.2rem !important;
}

.t9_3 {
  top: 9.3rem !important;
}

.t9_4 {
  top: 9.4rem !important;
}

.t9_5 {
  top: 9.5rem !important;
}

.t9_6 {
  top: 9.6rem !important;
}

.t9_7 {
  top: 9.7rem !important;
}

.t9_8 {
  top: 9.8rem !important;
}

.t9_9 {
  top: 9.9rem !important;
}

.l9 {
  left: 9rem !important;
}

.l9_1 {
  left: 9.1rem !important;
}

.l9_2 {
  left: 9.2rem !important;
}

.l9_3 {
  left: 9.3rem !important;
}

.l9_4 {
  left: 9.4rem !important;
}

.l9_5 {
  left: 9.5rem !important;
}

.l9_6 {
  left: 9.6rem !important;
}

.l9_7 {
  left: 9.7rem !important;
}

.l9_8 {
  left: 9.8rem !important;
}

.l9_9 {
  left: 9.9rem !important;
}

.r9 {
  right: 9rem !important;
}

.r9_1 {
  right: 9.1rem !important;
}

.r9_2 {
  right: 9.2rem !important;
}

.r9_3 {
  right: 9.3rem !important;
}

.r9_4 {
  right: 9.4rem !important;
}

.r9_5 {
  right: 9.5rem !important;
}

.r9_6 {
  right: 9.6rem !important;
}

.r9_7 {
  right: 9.7rem !important;
}

.r9_8 {
  right: 9.8rem !important;
}

.r9_9 {
  right: 9.9rem !important;
}

.b9 {
  bottom: 9rem !important;
}

.b9_1 {
  bottom: 9.1rem !important;
}

.b9_2 {
  bottom: 9.2rem !important;
}

.b9_3 {
  bottom: 9.3rem !important;
}

.b9_4 {
  bottom: 9.4rem !important;
}

.b9_5 {
  bottom: 9.5rem !important;
}

.b9_6 {
  bottom: 9.6rem !important;
}

.b9_7 {
  bottom: 9.7rem !important;
}

.b9_8 {
  bottom: 9.8rem !important;
}

.b9_9 {
  bottom: 9.9rem !important;
}

.t10 {
  top: 10rem !important;
}

.t10_1 {
  top: 10.1rem !important;
}

.t10_2 {
  top: 10.2rem !important;
}

.t10_3 {
  top: 10.3rem !important;
}

.t10_4 {
  top: 10.4rem !important;
}

.t10_5 {
  top: 10.5rem !important;
}

.t10_6 {
  top: 10.6rem !important;
}

.t10_7 {
  top: 10.7rem !important;
}

.t10_8 {
  top: 10.8rem !important;
}

.t10_9 {
  top: 10.9rem !important;
}

.l10 {
  left: 10rem !important;
}

.l10_1 {
  left: 10.1rem !important;
}

.l10_2 {
  left: 10.2rem !important;
}

.l10_3 {
  left: 10.3rem !important;
}

.l10_4 {
  left: 10.4rem !important;
}

.l10_5 {
  left: 10.5rem !important;
}

.l10_6 {
  left: 10.6rem !important;
}

.l10_7 {
  left: 10.7rem !important;
}

.l10_8 {
  left: 10.8rem !important;
}

.l10_9 {
  left: 10.9rem !important;
}

.r10 {
  right: 10rem !important;
}

.r10_1 {
  right: 10.1rem !important;
}

.r10_2 {
  right: 10.2rem !important;
}

.r10_3 {
  right: 10.3rem !important;
}

.r10_4 {
  right: 10.4rem !important;
}

.r10_5 {
  right: 10.5rem !important;
}

.r10_6 {
  right: 10.6rem !important;
}

.r10_7 {
  right: 10.7rem !important;
}

.r10_8 {
  right: 10.8rem !important;
}

.r10_9 {
  right: 10.9rem !important;
}

.b10 {
  bottom: 10rem !important;
}

.b10_1 {
  bottom: 10.1rem !important;
}

.b10_2 {
  bottom: 10.2rem !important;
}

.b10_3 {
  bottom: 10.3rem !important;
}

.b10_4 {
  bottom: 10.4rem !important;
}

.b10_5 {
  bottom: 10.5rem !important;
}

.b10_6 {
  bottom: 10.6rem !important;
}

.b10_7 {
  bottom: 10.7rem !important;
}

.b10_8 {
  bottom: 10.8rem !important;
}

.b10_9 {
  bottom: 10.9rem !important;
}

.t0p {
  top: 0% !important;
}

.l0p {
  left: 0% !important;
}

.r0p {
  right: 0% !important;
}

.b0p {
  bottom: 0% !important;
}

.t5p {
  top: 5% !important;
}

.l5p {
  left: 5% !important;
}

.r5p {
  right: 5% !important;
}

.b5p {
  bottom: 5% !important;
}

.t10p {
  top: 10% !important;
}

.l10p {
  left: 10% !important;
}

.r10p {
  right: 10% !important;
}

.b10p {
  bottom: 10% !important;
}

.t15p {
  top: 15% !important;
}

.l15p {
  left: 15% !important;
}

.r15p {
  right: 15% !important;
}

.b15p {
  bottom: 15% !important;
}

.t20p {
  top: 20% !important;
}

.l20p {
  left: 20% !important;
}

.r20p {
  right: 20% !important;
}

.b20p {
  bottom: 20% !important;
}

.t25p {
  top: 25% !important;
}

.l25p {
  left: 25% !important;
}

.r25p {
  right: 25% !important;
}

.b25p {
  bottom: 25% !important;
}

.t30p {
  top: 30% !important;
}

.l30p {
  left: 30% !important;
}

.r30p {
  right: 30% !important;
}

.b30p {
  bottom: 30% !important;
}

.t35p {
  top: 35% !important;
}

.l35p {
  left: 35% !important;
}

.r35p {
  right: 35% !important;
}

.b35p {
  bottom: 35% !important;
}

.t40p {
  top: 40% !important;
}

.l40p {
  left: 40% !important;
}

.r40p {
  right: 40% !important;
}

.b40p {
  bottom: 40% !important;
}

.t45p {
  top: 45% !important;
}

.l45p {
  left: 45% !important;
}

.r45p {
  right: 45% !important;
}

.b45p {
  bottom: 45% !important;
}

.t50p {
  top: 50% !important;
}

.l50p {
  left: 50% !important;
}

.r50p {
  right: 50% !important;
}

.b50p {
  bottom: 50% !important;
}

.t55p {
  top: 55% !important;
}

.l55p {
  left: 55% !important;
}

.r55p {
  right: 55% !important;
}

.b55p {
  bottom: 55% !important;
}

.t60p {
  top: 60% !important;
}

.l60p {
  left: 60% !important;
}

.r60p {
  right: 60% !important;
}

.b60p {
  bottom: 60% !important;
}

.t65p {
  top: 65% !important;
}

.l65p {
  left: 65% !important;
}

.r65p {
  right: 65% !important;
}

.b65p {
  bottom: 65% !important;
}

.t70p {
  top: 70% !important;
}

.l70p {
  left: 70% !important;
}

.r70p {
  right: 70% !important;
}

.b70p {
  bottom: 70% !important;
}

.t75p {
  top: 75% !important;
}

.l75p {
  left: 75% !important;
}

.r75p {
  right: 75% !important;
}

.b75p {
  bottom: 75% !important;
}

.t80p {
  top: 80% !important;
}

.l80p {
  left: 80% !important;
}

.r80p {
  right: 80% !important;
}

.b80p {
  bottom: 80% !important;
}

.t85p {
  top: 85% !important;
}

.l85p {
  left: 85% !important;
}

.r85p {
  right: 85% !important;
}

.b85p {
  bottom: 85% !important;
}

.t90p {
  top: 90% !important;
}

.l90p {
  left: 90% !important;
}

.r90p {
  right: 90% !important;
}

.b90p {
  bottom: 90% !important;
}

.t95p {
  top: 95% !important;
}

.l95p {
  left: 95% !important;
}

.r95p {
  right: 95% !important;
}

.b95p {
  bottom: 95% !important;
}

.t100p {
  top: 100% !important;
}

.l100p {
  left: 100% !important;
}

.r100p {
  right: 100% !important;
}

.b100p {
  bottom: 100% !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.dis-in  -> display: inline
.dis-inb -> display: inline-block
.dis-b   -> display: block
.dis-n   -> display: none
*/

.dis-in {
  display: inline !important;
}

.dis-inb {
  display: inline-block !important;
}

.dis-b {
  display: block !important;
}

.dis-n {
  display: none !important;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.txtl -> text-align: left
.txtc -> text-align: center
.txtr -> text-align: right
.txti -> padding-left: 1em;
         text-indent: -1em;
         display: block;
*/

.txtl {
  text-align: left !important;
}

.txtc {
  text-align: center !important;
}

.txtr {
  text-align: right !important;
}

.txti {
  padding-left: 1em;
  text-indent: -1em;
  display: block;
}

/* ----------------------------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.bo0     -> border: 0
.bol0    -> border-left: 0
*/

.bo0 {
  border: 0 !important;
}

.bot0 {
  border-top: 0 !important;
}

.bot1 {
  border-top: 1px solid #f7f7f7 !important;
}

.bot2 {
  border-top: 2px solid #f7f7f7 !important;
}

.bol0 {
  border-left: 0 !important;
}

.bol1 {
  border-left: 1px solid #f7f7f7 !important;
}

.bol2 {
  border-left: 2px solid #f7f7f7 !important;
}

.bor0 {
  border-right: 0 !important;
}

.bor1 {
  border-right: 1px solid #f7f7f7 !important;
}

.bor2 {
  border-right: 2px solid #f7f7f7 !important;
}

.bob0 {
  border-bottom: 0 !important;
}

.bob1 {
  border-bottom: 1px solid #f7f7f7 !important;
}

.bob2 {
  border-bottom: 2px solid #f7f7f7 !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.fs-s  -> font-size: 0.8rem
.fs-m  -> font-size: 1rem
.fs-l  -> font-size: 1.2rem
.fw-n  -> font-weight: normal
.fw-b  -> font-weight: bold
*/

.fs-s {
  font-size: 0.8rem !important;
}

.fs-m {
  font-size: 1rem !important;
}

.fs-l {
  font-size: 1.2rem !important;
}

.fw-n {
  font-weight: normal !important;
}

.fw-b {
  font-weight: bold !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.c-black   -> color: $text-color
.c-white   -> color: #fff
.c-primary -> color: $brand-primary
*/

.c-black {
  color: #333 !important;
}

.c-white {
  color: #fff !important;
}

.c-primary {
  color: #231815 !important;
}

.c-danger {
  color: #dc3535 !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.bgc-black   -> color: $text-color
.bgc-white   -> color: #fff
.bgc-primary -> color: $brand-primary
.bgc-danger -> color: $brand-danger
*/

.bgc-black {
  background-color: #333 !important;
}

.bgc-white {
  background-color: #fff !important;
}

.bgc-primary {
  background-color: #231815 !important;
}

.bgc-danger {
  background-color: #dc3535 !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.opa0   -> opacity: 0
.opa5   -> opacity: 0.5
.opa10  -> opacity: 1
*/

.opa0 {
  opacity: 0 !important;
}

.opa5 {
  opacity: 0.5 !important;
}

.opa10 {
  opacity: 1 !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.z0 -> z-index:0
.z1 -> z-index:1
.z2 -> z-index:2
.z3 -> z-index:3
.z4 -> z-index:4
.z5 -> z-index:5

*/

.z0 {
  z-index: 0 !important;
}

.z1 {
  z-index: 1 !important;
}

.z2 {
  z-index: 2 !important;
}

.z3 {
  z-index: 3 !important;
}

.z4 {
  z-index: 4 !important;
}

.z5 {
  z-index: 5 !important;
}

/* ----------------------------------------------------------------------------------------------
[出力されるクラス]
.ws_n -> white-space:normal
.ws_nw -> white-space:nowrap

*/

.ws_n {
  white-space: normal !important;
}

.ws_nw {
  white-space: nowrap !important;
}

/* ----------------------------------------------------------------------------------------------
[アイコンクラスの使い方について]
欲しいアイコンがfont-awesomeでも見つからない場合、
商用利用可能なアイコンを https://www.flaticon.com から探し、images/svg配下に保存する。

保存したsvgファイルを開いてfillで色調整を行う。
(現状、動的に色を変える方法が無さそう・・・複数色必要になった場合はJSライブラリ利用を検討)

*/

i.student {
  width: 1.2rem;
  height: 1.7rem;
  background-size: contain;
  display: inline-block;
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-image: url("/images/svg/adult.svg");
}

i.children {
  width: 1rem;
  height: 1.5rem;
  background-size: contain;
  display: inline-block;
  background-position-x: center;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-image: url("/images/svg/children.svg");
}

i.adult {
  width: 1rem;
  height: 2rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: bottom;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/adult.svg");
}

i.data {
  width: 1rem;
  height: 2rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/data.svg");
}

i.bell {
  width: 1rem;
  height: 2rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/bell.svg");
}

i.marker {
  width: 1rem;
  height: 2rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/marker.svg");
}

i.cart {
  width: 1rem;
  height: 1.6rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/cart.svg");
}

i.cart-w {
  width: 1rem;
  height: 1.6rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/cart_w.svg");
}

i.coupon {
  width: 1rem;
  height: 1.6rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/coupon.svg");
}

i.coupon-g {
  width: 1rem;
  height: 1.6rem;
  background-size: contain;
  background-position-x: center;
  background-position-y: center;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url("/images/svg/coupon_g.svg");
}

