@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
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-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd {
  font-size: 16px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul,
li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address,
caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a,
li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #36c;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39f;
}

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

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #007184;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #007184;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #007184;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #007184;
  border-right: solid 2px #007184;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

.menu {
  width: 250px;
  overflow: hidden;
}
.menu li:last-child {
  border-bottom: none;
}
.menu li.has-sub {
  position: relative;
}
.menu li.has-sub input {
  display: none;
}
.menu li.has-sub label {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #007184;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-weight: 400;
  font-style: normal;
}
.menu li.has-sub label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #007184;
  border-right: solid 2px #007184;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu li.has-sub label::after {
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.menu li.has-sub ul {
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 15px;
  display: flex;
  flex-wrap: wrap;
  width: auto;
}
.menu li.has-sub ul li {
  width: 50%;
  border-bottom: solid 1px #007184;
  box-sizing: border-box;
  position: relative;
}
.menu li.has-sub ul li:last-child {
  border-bottom: none;
}
.menu li.has-sub ul li:nth-child(9) {
  border-bottom: none;
}
.menu li.has-sub ul li a {
  font-size: 14px;
  padding: 8px 15px;
}
.menu li.has-sub ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 2px #007184;
  border-right: solid 2px #007184;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
.menu li.has-sub input:checked + label::after {
  transform: translateY(-50%) rotate(180deg);
}
.menu li.has-sub input:checked ~ ul {
  max-height: 500px;
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 100px;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #007184;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-weight: 400;
  font-style: normal;
}

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

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

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

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #007184;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content p {
  font-size: 24px;
  line-height: 30px;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  background-color: #007184;
  color: #333;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #333;
}
.modal .close p:hover {
  color: #007184;
  background-color: #333;
  cursor: pointer;
  border: 1px solid #333;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 5px;
  left: 0;
  z-index: 1000;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
}
header .header__inner .header_logo {
  width: 110px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 800px;
  margin-left: 100px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}
header .header__inner .header_nav ul > li {
  position: relative;
  /* ▼ サブメニュー（初期は非表示） */
  /* ▼ hover時に表示 */
}
header .header__inner .header_nav ul > li > a {
  font-weight: 600;
}
header .header__inner .header_nav ul > li > ul {
  position: absolute;
  min-width: 180px;
  top: 15px;
  left: 0;
  background: #fafafa;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10;
  display: block;
}
header .header__inner .header_nav ul > li > ul li a {
  padding: 8px 15px;
  font-size: 14px;
  white-space: nowrap;
}
header .header__inner .header_nav ul > li > ul li a:hover {
  background: #eee;
}
header .header__inner .header_nav ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
header .header__inner .header_nav ul li a {
  color: #007184;
  font-size: 1em;
  text-decoration: none;
  line-height: 24px;
  font-weight: 400;
  font-style: normal;
}
header .header__inner .header_nav ul li a:hover {
  color: #ea586a;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  background-color: #007184;
  background-image: url(../img/bg__01.webp);
  background-attachment: fixed;
}
.mainvisual .mainvisual__inner {
  height: auto;
  margin: 0 auto;
  width: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.mainvisual .mainvisual__inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mainvisual .mainvisual__inner ul li {
  width: 20%;
  height: auto;
  overflow: hidden;
}
.mainvisual .mainvisual__inner ul li a {
  width: 100%;
  position: relative;
  display: block;
}
.mainvisual .mainvisual__inner ul li a img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner ul li a p {
  color: #fff;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-flow: column;
  font-size: 1em;
}
.mainvisual .mainvisual__inner ul li a p strong {
  display: inline;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5em;
}
.mainvisual .mainvisual__inner ul li a p span {
  margin-top: 15px;
  display: inline;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 15px;
}
.mainvisual .mainvisual__inner ul li a:hover p {
  opacity: 1;
  transition: all 0.3s ease;
}
.mainvisual .mainvisual__inner ul li a:hover img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.mainvisual .mainvisual__inner ul li .mainvisual__movie_title {
  display: none;
}
.mainvisual .mainvisual__inner ul li .mainvisual__movie_title:hover {
  display: block;
  position: absolute;
  bottom: -100px;
  width: 100%;
  text-align: center;
  z-index: 4;
}
.mainvisual .mainvisual__inner ul li .mainvisual__movie_title:hover p {
  font-size: 1.2em;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.mainvisual .mainvisual__inner ul li .image_link:hover:before {
  opacity: 0.5;
}
.mainvisual .mainvisual__inner ul li .image_link:hover:after {
  opacity: 1;
  margin-top: -0.5em;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: 70%;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  margin: 0 auto;
  margin-top: 15px;
}
.mainvisual .mainvisual__inner .mainvisual__title span {
  display: none;
}
.mainvisual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}

.section__title {
  background-image: url("../img/title_l.webp"), url("../img/title_r.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 30%, 30%;
  width: 300px;
  margin: 0 auto;
  padding: 10px 0;
}
.section__title h2 {
  font-size: 2.5em;
  line-height: 2em;
  color: #007184;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 auto;
  font-weight: 400;
  font-style: normal;
}
.section__title p {
  font-size: 1.2em;
  line-height: 20px;
  padding-bottom: 18px;
  color: #333;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.news__wrap {
  width: 100%;
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(../img/bg__02.webp), url(../img/line.webp);
  background-repeat: repeat-x, repeat-x;
  background-size: auto, 10%;
  background-position: bottom, top;
}
.news__wrap .news .section__title h2 {
  color: #007184;
}
.news__wrap .news .section__title p {
  color: #007184;
}
.news__wrap .news .news__feed {
  border: 1px solid #007184;
  background-color: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
.news__wrap .news .news__feed h3 {
  font-size: 1.5em;
  line-height: 100px;
  color: #007184;
  text-align: center;
}
.news__wrap .news .news__feed ul {
  padding: 30px;
  padding-top: 0;
  width: auto;
  margin: 0 auto;
  height: 300px;
  overflow: scroll;
}
.news__wrap .news .news__feed ul li {
  width: auto;
  padding: 30px 0 30px 0;
  border-bottom: 1px solid #007184;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__wrap .news .news__feed ul li a {
  text-decoration: none;
  width: 100%;
}
.news__wrap .news .news__feed ul li a dl {
  display: flex;
}
.news__wrap .news .news__feed ul li a dl dt {
  font-size: 0.8em;
  color: #fff;
  background-color: #007184;
  padding: 15px;
  margin-right: 15px;
  align-self: center;
  width: 85px;
}
.news__wrap .news .news__feed ul li a dl dd {
  font-size: 1em;
  color: #007184;
  text-decoration: none;
  align-self: center;
  width: 600px;
}
.news__wrap .news .news__feed ul li a dl:hover dt {
  background-color: #ea586a;
}
.news__wrap .news .news__feed ul li a dl:hover dd {
  color: #ea586a;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        youtube
----------------------------------------------------------------*
----------------------------------------------------------------*/
.youtube__wrap {
  padding-top: 100px;
  background-image: url(../img/line.webp), url(../img/bg__03.webp);
  background-attachment: scroll, fixed;
  background-repeat: repeat-x, repeat;
  background-size: 10%, auto;
  background-position: top, center;
  padding-bottom: 60px;
}
.youtube__wrap .youtube {
  padding: 15px;
  background-color: #fff;
  border-radius: 15px;
  width: 60%;
  width: 800px;
  height: 450px;
  margin: 0 auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 60px;
  background-image: url(../img/line.webp), url(../img/bg__01.webp);
  background-attachment: scroll, fixed;
  background-repeat: repeat-x, repeat;
  background-size: 10%, auto;
  background-position: top, center;
}
.ticket__wrap .ticket {
  padding-bottom: 60px;
}
.ticket__wrap .ticket .section__title h2 {
  color: #007184;
}
.ticket__wrap .ticket .section__title p {
  color: #007184;
  font-size: 20px;
}
.ticket__wrap .ticket table {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table tr {
  border-bottom: 1px solid #fff;
}
.ticket__wrap .ticket table tr:first-child {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table th {
  color: #007184;
  width: 30%;
  vertical-align: top;
}
.ticket__wrap .ticket table td {
  color: #007184;
}
.ticket__wrap .ticket table td .overview__text--red {
  color: #ea586a;
  font-weight: bold;
}
.ticket__wrap .ticket table td .overview__text--bald {
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  margin-bottom: 15px;
  display: block;
}
.ticket__wrap .ticket table td .overview__text--bald:first-child {
  margin-top: 0;
}
.ticket__wrap .ticket .overview__ticket--caption {
  border-radius: 15px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  padding: 0 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table {
  border: none;
  width: 100%;
}
.ticket__wrap .ticket .overview__ticket--caption table tr {
  border: none;
  width: 100%;
  border-top: 1px solid #333;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child {
  border-top: none;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child th,
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child td {
  padding-top: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:last-child th,
.ticket__wrap .ticket .overview__ticket--caption table tr:last-child td {
  padding-bottom: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr th {
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  padding: 15px 0;
  width: 20%;
  padding-left: 15px;
  font-weight: bold;
}
.ticket__wrap .ticket .overview__ticket--caption table tr td {
  padding: 15px 0;
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  width: 50%;
}

.overview__ticket h3 {
  font-size: 2em;
  color: #007184;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.overview__ticket .button-4_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 128px;
}
.overview__ticket .button-4_wrap p {
  text-align: center;
  font-size: 1.5em;
  color: #007184;
  margin-bottom: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.overview__ticket .button-4 {
  position: absolute;
  top: 10px;
  left: calc(50% - 348px);
  margin-bottom: 60px;
}
.overview__ticket .button-4 a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  padding: 0.9em 2em;
  border: none;
  border-bottom: solid 5px #83311d;
  border-radius: 5px;
  background-color: #ea586a;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  transition: 0.5s ease;
  margin-top: 30px;
}
.overview__ticket .button-4 a::after {
  transform: rotate(45deg);
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}
.overview__ticket .button-4 a:hover {
  transform: translateY(3px);
  border-bottom-width: 2px;
}
.overview__ticket .overview__ticket--text {
  margin: 0 auto;
  border-top: 1px solid #fff;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--text p {
  width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #007184;
  line-height: 30px;
  padding-top: 30px;
}

.access__wrap {
  width: 100%;
  height: 450px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer .copyright {
  width: 100%;
  background-color: #007184;
  padding: 10px 0;
}
.footer .copyright p {
  font-size: 0.8em;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}
.footer .ponsorship__wrap {
  background-color: #fff;
  padding: 30px;
}
.footer .ponsorship__wrap .section__wrap {
  margin: 0 auto;
  padding: 15px;
}
.footer .ponsorship__wrap .section__wrap .footer__title {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 15px;
}
.footer .ponsorship__wrap .section__wrap .footer__title img {
  width: 100%;
  height: auto;
}
.footer .ponsorship__wrap .section__wrap table {
  width: 600px;
  margin: 0 auto;
  margin-top: 15px;
}
.footer .ponsorship__wrap .section__wrap table tr {
  border-bottom: 1px solid #007184;
}
.footer .ponsorship__wrap .section__wrap table tr:first-child {
  border-top: 1px solid #007184;
}
.footer .ponsorship__wrap .section__wrap table tr th {
  font-size: 14px;
  font-weight: bold;
  color: #007184;
  padding: 15px;
  text-align: left;
  width: 150px;
  vertical-align: top;
}
.footer .ponsorship__wrap .section__wrap table tr td {
  font-size: 0.8em;
  color: #007184;
  padding: 15px;
  text-align: left;
  vertical-align: top;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        詳細ページ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.breadcrumb {
  width: 100%;
  background-color: #007184;
  padding: 10px 0;
  margin-top: 60px;
}
.breadcrumb ul {
  width: 1200px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline;
  font-size: 0.8em;
  color: #fff;
}
.breadcrumb ul li a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb ul li a:hover {
  color: #ea586a;
}
.breadcrumb ul li + li::before {
  content: ">";
  padding: 0 5px;
  color: #fff;
}

.detail__title {
  background-image: url(../img/line.webp), url(../img/line.webp);
  background-attachment: scroll, scroll;
  background-repeat: repeat-x, repeat-x;
  background-size: 10%, 10%;
  background-position: top, bottom;
}
.detail__title h1 {
  font-size: 3em;
  font-weight: bold;
  color: #007184;
  text-align: center;
  line-height: 1.5em;
  padding: 90px 0 90px 0;
}
.detail__title h1 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.5em;
  color: #007184;
}

.move_detail {
  background-image: url(../img/bg__01.webp);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.move_detail .section__title {
  width: 300px;
  background-size: 25%, 25%;
}
.move_detail .move__detail--inner {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.move_detail .move__detail--inner .move__detail--img {
  width: 40%;
}
.move_detail .move__detail--inner .move__detail--img img {
  width: 100%;
  height: auto;
}
.move_detail .move__detail--inner .move__detail--img p {
  font-size: 0.8em;
  line-height: 1.5em;
  text-align: left;
  margin-top: 5px;
  margin-left: 5px;
  color: #007184;
}
.move_detail .move__detail--inner .move__detail--text {
  width: 55%;
}
.move_detail .move__detail--inner .move__detail--text ul {
  width: auto;
}
.move_detail .move__detail--inner .move__detail--text ul li {
  width: 100%;
  margin-bottom: 30px;
}
.move_detail .move__detail--inner .move__detail--text ul li a {
  position: relative;
  display: block;
  width: auto;
  padding: 30px 0;
  background-color: #007184;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.move_detail .move__detail--inner .move__detail--text ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 9px solid #fff;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 0 solid transparent;
  transform: translateY(1px);
  box-sizing: border-box;
}
.move_detail .move__detail--inner .move__detail--text ul li a:hover {
  background-color: #ea586a;
  color: #fff;
}
.move_detail .move__detail--inner .move__detail--text table {
  width: 100%;
}
.move_detail .move__detail--inner .move__detail--text table tr {
  border-bottom: 1px solid #007184;
}
.move_detail .move__detail--inner .move__detail--text table tr:first-child {
  border-top: 1px solid #007184;
}
.move_detail .move__detail--inner .move__detail--text table tr th {
  font-size: 1.3em;
  text-align: left;
  color: #007184;
  margin-top: 15px;
  padding: 15px 0;
  width: 40%;
  padding-left: 15px;
  font-weight: bold;
  vertical-align: middle;
}
.move_detail .move__detail--inner .move__detail--text table tr td {
  font-size: 1em;
  color: #007184;
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}
.move_detail .move__detail--inner .move__detail--text table tr td:first-child {
  width: 60%;
  font-weight: bold;
}
.move_detail .move__detail--inner .move__detail--text table tr td:last-child {
  width: 70%;
}
.move_detail .move__detail--story {
  margin-top: 60px;
  margin-bottom: 60px;
}
.move_detail .move__detail--story h4 {
  font-size: 2em;
  color: #007184;
  font-weight: bold;
  text-align: center;
}
.move_detail .move__detail--story p {
  padding: 60px;
  background-color: #007184;
  border-radius: 15px;
  font-size: 1em;
  color: #fff;
  line-height: 30px;
  margin-top: 30px;
}
.move_detail .youtube {
  height: 600px;
  margin-bottom: 60px;
}
.move_detail .move__detail--info {
  margin-top: 30px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
}
.move_detail .move__detail--info table {
  width: 100%;
}
.move_detail .move__detail--info table tr {
  border-top: 1px solid #007184;
}
.move_detail .move__detail--info table tr:first-child {
  border-top: none;
}
.move_detail .move__detail--info table tr th {
  font-size: 1.3em;
  text-align: left;
  color: #007184;
  margin-top: 15px;
  padding: 15px 0;
  width: 40%;
  padding-left: 15px;
  font-weight: bold;
  vertical-align: middle;
}
.move_detail .move__detail--info table tr td {
  font-size: 1em;
  color: #007184;
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}
.move_detail .move__detail--info table tr td a {
  color: #007184;
}
.move_detail .move__detail--info table tr td a:hover {
  color: #ea586a;
}
.move_detail .move__detail--info table tr td:first-child {
  width: 60%;
  font-weight: bold;
}
.move_detail .move__detail--info table tr td:last-child {
  width: 70%;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        about
----------------------------------------------------------------*
----------------------------------------------------------------*/
.about__wrap table {
  width: 100%;
  margin-top: 60px;
}
.about__wrap table tr {
  border-bottom: 1px solid #007184;
}
.about__wrap table tr:first-child {
  border-top: 1px solid #007184;
}
.about__wrap table tr th {
  font-size: 1.3em;
  text-align: left;
  color: #007184;
  margin-top: 15px;
  padding: 15px 0;
  width: 40%;
  padding-left: 15px;
  font-weight: bold;
  vertical-align: middle;
}
.about__wrap table tr td {
  font-size: 1em;
  color: #007184;
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}
.about__wrap table tr td a {
  color: #007184;
}
.about__wrap table tr td a:hover {
  color: #ea586a;
}
.about__wrap table tr td:first-child {
  width: 60%;
  font-weight: bold;
}
.about__wrap table tr td:last-child {
  width: 70%;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        ニュース
----------------------------------------------------------------*
----------------------------------------------------------------*/
.nwse__content {
  padding-top: 60px;
  background-image: url(../img/bg__01.webp);
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
  padding-bottom: 60px;
}
.nwse__content p {
  font-size: 1em;
  color: #007184;
}
.nwse__content ul {
  width: 60%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 60px;
}
.nwse__content ul li {
  width: 48%;
}
.nwse__content ul li img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=common.css.map */