@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
html {
  scroll-padding-top: 100px;
 }
body {
 font-size: 18px; font-size: 1.8rem;
 line-height: 28px; line-height: 2.8rem;
 font-family: "mizolet", sans-serif;
 color: #2d2d2d;
 word-break: break-all;
 background-color: #ffffff;
}
h1 {
 font-size: 32px; font-size: 3.2rem;
 line-height: 42px; line-height: 4.2rem;
 font-weight: bold;
}
h2 {
 font-size: 28px; font-size: 2.8rem;
 line-height: 38px; line-height: 3.8rem;
}
h3{
 font-size: 24px; font-size: 2.4rem;
 line-height: 34px; line-height: 3.4rem;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #a80000;
 transition: all 0.1s;
}
img {
 width: 100%;
 vertical-align: middle;
}

/*ページ内リンクのヘッダー高さ調整*/
 @media screen and (max-width: 600px) {
  html {
   scroll-padding-top: 50px;
  }
 }
 /*ページ内リンクのヘッダー高さ調整*/

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 20px;
 z-index: 88;
 display: none;
}
.backtotop a {
 display: block;
 content: url("../img/back_top.png");
 padding: 10px; 
 margin: 0;
 background-color: #ffffff;
 border: 3px solid #0168b7;
 border-radius: 10px;
 text-decoration: none;
 font-weight: bold;
 transition: all 0.2s;
}
.backtotop a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .backtotop {
  right: 10px;
  bottom: 90px;
 }
 .backtotop a {
  padding: 5px;
  background-color: rgba(255,255,255,0.70);
 }
}

/*よくある質問　サイドボタン*/
.ex25_faq_button {
 position: fixed;
 right: 0;
 bottom: 100px;
 z-index: 88;
}
.ex25_faq_button a {
 display: flex;
 justify-content: flex-end;
 align-items: center;
 width: 250px;
 height: 100px;
 margin: 0;
 padding: 5px 20px 5px 5px;
 color: #ffffff;
 background-color: #e70012;
 border: 3px solid #e70012;
 border-bottom-left-radius: 20px;
 border-top-left-radius: 20px;
 background-image: url("../img/faq.png");
 background-repeat: no-repeat;
 background-position: 5px center;
 background-size: 50px;
 text-decoration: none;
 font-size: 22px;
 line-height: 120%;
 font-weight: bold;
 box-sizing: border-box;
 transition: all 0.2s;
}
.ex25_faq_button a:hover {
 transform: scale(1.1);
 color: #e70012;
 background-color: #ffffff;
 background-image: url("../img/faq2.png");
 transition: all 0.2s;
}
.ex25_faq_img {
 display: none;
 width: 50px;
 margin-right: 10px;
}
.ex25_faq_img img {
 width: 100%;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_faq_button {
  width: 100%;
  bottom: 0;
 }
 .ex25_faq_button a {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: auto;
  padding: 5px;
  border: none;
  border-radius: 0;
  background-color: rgba(231,0,18,0.80);
  background-image: none;
 }
 .ex25_faq_button a:hover {
  color: #ffffff;
  background-color: rgba(231,0,18,0.80);
  background-image: none;
 }
 .ex25_faq_img {
  display: block;
 }
}

/*ヘッダー*/
#ex25_hed {
 position: sticky;
 top: 0;
 width: 100%;
 padding: 0 20px 20px;
 background-color: #ffffff;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
 box-sizing: border-box;
 z-index: 88;
}
.ex25_hed_tit {
 float: left;
 width: 100%;
 max-width: 700px;
 padding-top: 10px;
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
 box-sizing: border-box;
}
.ex25_logo {
 width: 65px;
}
.ex25_tit_txt {
 margin-left: 20px;
 font-size: 25px;
 font-weight: bold;
}
.ex25_hed_nav {
 float: right;
 width: 100%;
 max-width: 900px;
 display: flex;
 flex-direction: row;
 justify-content: flex-end;
}
.ex25_hed_nav li {
 width: 150px;
 text-align: center;
}
.ex25_hed_nav li:last-child {
 width: 100px;
}
.ex25_hed_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 95%;
 height: 50px;
 background-color: #0168b7;
 /*background-image: url("../img/button_icon.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 background-size: 10px;*/
 border-bottom-left-radius: 20px;
 border-bottom-right-radius: 20px;
 font-size: 14px;
 line-height: 20px;
 /*font-weight: bold;*/
 color: #ffffff;
 text-decoration: none;
 box-sizing: border-box;
 transition: all 0.2s;
}
.ex25_hed_nav li .ex25_lang {
 background-color: #00a59e;
 border: 3px solid #00a59e;
}
.ex25_hed_nav li a:hover {
 transform: scale(1.1);
 background-color: #00a59e;
 transition: all 0.2s;
}
.ex25_hed_nav li a.ex25_lang:hover {
 background-color: #ffffff;
 color: #00a59e;
 transition: all 0.2s;
}

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: sticky;
 z-index: 88;
 top: 0;
 width: 100%;
 height: 50px;
 color: #2d2d2d;
 background-color: #ffffff;
 box-sizing: border-box;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
}
.hun_txt_area {
 height: 50px;
 background-image: url("../img/logo_jtb_sp.jpg");
 background-repeat: no-repeat;
 background-position: left center;
 background-size: contain;
}
.hun_txt_area img {
 width: 70px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hun_txt_area img:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #0168b7; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 height: 100%;
 padding-left: 10px;
 font-size: 16px;
 line-height: 18px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 88;
 top: 50px;
 left: 0;
 background-color: #0168b7;
 color: #ffffff;
}
.sample-menu li {
 border-top: 1px solid #ffffff;
 box-sizing: border-box;
 font-size: 16px;
 line-height: 18px;
}
.sample-menu .info {
 background-color: #e70012;
}
.sample-menu .ex25_lang {
 background-color: #00a59e;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #ffffff;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 #ex25_hed {
  display: none;
 }
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}


/*TOP*/
.wrapper {
 background-color: #cce0f0;
}
.ex25_top {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 100px;
 background-color: #ffffff;
 background-image: url("../img/top_l.png"), url("../img/top_r.png"), url("../img/logo_jtb.jpg");
 background-repeat: no-repeat;
 background-position: left center, right center, 120px center;
 background-size: contain;
}
.ex25_top_tit {
 font-size: 35px;
 line-height: 45px;
 text-align: center;
 color: #0168b7;
 text-shadow: 1px 1px #ffffff, -1px -1px #ffffff;
 box-sizing: border-box;
}
.ex25_top_subtxt {
 color: #0168b7;
 font-size: 15px;
 line-height: 120%;
 text-align: center;
 margin-top: 5px;
}
/* デバイス幅が1250px以下 */
@media only screen and (max-width: 1250px) {
 .ex25_top_tit {
  padding-left: 50px;
 }
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width: 1200px) {
 .ex25_top {
  background-position: left center, right center, 100px center;
 }
 .ex25_top_tit {
  font-size: 22px;
  line-height: 32px;
 }
 .ex25_top_subtxt {
  font-size: 14px;
  padding-left: 190px;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_top {
  height: 150px;
  background-image: url("../img/top_l.png"), url("../img/top_r.png");
  background-position: left center, right center;
 }
 .ex25_top_tit {
  padding-left: 0;
 }
 .ex25_top_subtxt {
  font-size: 15px;
  padding-left: 0;
 }
}

/*ナビ*/
.ex25_main_nav {
 position: sticky;
 top: 0;
 width: 100%;
 max-width: 1000px;
 display: flex;
 flex-direction: row;
 justify-content: center;
 margin: 0 auto;
}
.ex25_main_nav li {
 width: calc(100% / 7);
 text-align: center;
}
.ex25_main_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 95%;
 height: 50px;
 background-color: #0168b7;
 /*background-image: url("../img/button_icon.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 background-size: 10px;*/
 border-bottom-left-radius: 20px;
 border-bottom-right-radius: 20px;
 font-size: 15px;
 line-height: 20px;
 color: #ffffff;
 text-decoration: none;
 box-shadow: 3px 3px 3px rgba(0,0,0,0.20);
 box-sizing: border-box;
 transition: all 0.2s;
}
.ex25_main_nav li .info {
 background-color: #e70012;
 background-image: url("../img/faq.png");
 background-repeat: no-repeat;
 background-position: 20% 5px;
 background-size: 22px;
 border: 3px solid #e70012;
}
.ex25_main_nav li .ex25_lang {
 background-color: #00a59e;
 border: 3px solid #00a59e;
}
.ex25_main_nav li a:hover {
 transform: scale(1.1);
 background-color: #00a59e;
 transition: all 0.2s;
}
.ex25_main_nav li a.info:hover {
 background-color: #ffffff;
 background-image: url("../img/faq2.png");
 color: #e70012;
 transition: all 0.2s;
}
.ex25_main_nav li a.ex25_lang:hover {
 background-color: #ffffff;
 color: #00a59e;
 transition: all 0.2s;
}
/* デバイス幅が900px以下 */
@media only screen and (max-width: 900px) {
 .ex25_main_nav li a {
  font-size: 13px;
 }
}
/* デバイス幅が750px以下 */
@media only screen and (max-width: 750px) {
 .ex25_main_nav li .info {
  background-position: 10% 5px;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_main_nav {
  display: none;
 }
}

.ex25_topnews {
 width: 100%;
 padding: 10px;
 background-color: #e70012;
 box-sizing: border-box;
}
.ex25_topnews h2 {
 font-size: 20px;
 line-height: 120%;
 font-weight: bold;
 color: #ffffff;
 text-align: center;
}

/*メイン*/
.ex25_main {
 padding: 50px 10px 100px;
 box-sizing: border-box;
 background-color: #cce0f0;
 background-image: url("../img/wave3.png");
 background-repeat: no-repeat;
 background-position: center bottom;
 background-size: contain;
}
.ex25_main:nth-child(even) {
 background-color: #f6f7f8;
 background-image: url("../img/wave2.png");
}
.ex25_main_last {
 background-image: none!important;
}
.ex25_main_tit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 20px;
 font-weight: bold;
 text-align: center;
}
.ex25_subtit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 20px;
 font-weight: bold;
}
.ex25_subtit::before {
 content: "●";
 color: #0068b7;
 margin-right: 10px;
}
.ex25_summary_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 50px;
 padding: 20px;
 background-color: #ffffff;
 border-radius: 20px;
 box-sizing: border-box;
}
.ex25_txt_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 50px;
 padding: 20px;
 background-color: #ffffff;
 border: 3px solid #0068b7;
 box-shadow: 5px 5px #0068b7;
 box-sizing: border-box;
}
.ex25_main:nth-child(even) .ex25_txt_area {
 border: 3px solid #d4d9dd;
 box-shadow: 5px 5px #d4d9dd;
}
.ex25_red_area {
 padding: 20px;
 border: 1px solid #e70012;
 box-sizing: border-box;
}
.ex25_red_tit {
 padding: 10px;
 color: #ffffff;
 text-align: center;
 background-color: #e70012;
 box-sizing: border-box;
}
.ex25_button {
 width: 100%;
 max-width: 550px;
 font-weight: bold;
 margin: 30px auto;
 text-align: center;
 line-height: 22px;
}
.ex25_button a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 70px;
 background-color: #e70012;
 /*background-image: url("../img/button_icon2.png");
 background-repeat: no-repeat;
 background-position: 95% center;*/
 color: #ffffff;
 text-decoration: none;
 border-radius: 35px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.ex25_bt_red a {
 background-color: #e70012;
 border: 3px solid #e70012;
}
.ex25_bt_green a {
 background-color: #00a59e;
 border: 3px solid #00a59e;
}
.ex25_bt_blue a {
 background-color: #0068b7;
 border: 3px solid #0068b7;
}
.ex25_button a:hover {
 transform: scale(1.1);
 background-color: #00a59e;
 transition: all 0.2s;
}
.ex25_bt_red a:hover {
 color: #e70012;
 background-color: #ffffff;
}
.ex25_bt_green a:hover {
 color: #00a59e;
 background-color: #ffffff;
}
.ex25_bt_blue a:hover {
 color: #0068b7;
 background-color: #ffffff;
}
.ex25_bt_large {
 font-size: 1.5em;
}
.ex25_button_null {
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 width: 100%;
 max-width: 550px;
 height: 70px;
 margin: 30px auto;
 background-color: #eeeeee;
 font-weight: bold;
 color: #999999;
 text-decoration: none;
 border: 3px solid #999999;
 border-radius: 35px;
 box-sizing: border-box;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_button {
  max-width: 100%;
 }
 .ex25_button a {
  background-size: 10px;
  background-position: 98% center;
 }
 .ex25_button .large3,
 .ex25_button_null .large3 {
  font-size: 1em;
 }
}

.ex25_main_bottom {
 padding: 50px 10px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.ex25_chara {
 width: 100%;
 max-width: 300px;
 margin: 0 auto;
}

/*サービスチケット画像*/
.ex25_ticket {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: flex-end;
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 30px;
}
.ex25_ticket_img {
 width: 100%;
 max-width: 400px;
 margin: 20px;
 text-align: center;
 font-weight: bold;
}
.ex25_ticket_img img {
 box-shadow: 5px 5px 5px rgba(0,0,0,0.20);
 box-sizing: border-box;
 margin-bottom: 10px;
}
.ex25_ticket_solo {
 float: right;
 width: 100%;
 max-width: 100px;
 margin: 20px;
 text-align: center;
 font-size: 14px;
 line-height: 20px;
 font-weight: bold;
}
.ex25_ticket_solo img {
 /*box-shadow: 5px 5px 5px rgba(0,0,0,0.20);
 box-sizing: border-box;*/
 margin-bottom: 10px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_ticket_img {
  font-size: 15px;
 }
 .ex25_ticket_solo {
  float: none;
  margin: 0 auto;
 }
}

/*チケットについてのご案内*/
.ex25_ticket_flow {
 width: 50px;
}
.ex25_ticket_smooth {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 margin: 0 auto;
}
.ex25_ticket_smooth figure {
 width: 250px;
 font-size: 15px;
 line-height: 20px;
 font-weight: bold;
 text-align: center;
 margin: 10px;
}
.ex25_ticket_smooth figure img {
 max-width: 200px;
 box-shadow: 3px 3px 3px rgba(0,0,0,0.20);
 box-sizing: border-box;
 margin-bottom: 10px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_ticket_smooth {
  flex-direction: column;
 }
 .ex25_ticket_smooth figure {
  margin: 20px;
 }
}

/*会場マップ*/
.ex25_map {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 50px;
 box-shadow: 5px 5px #d4d9dd;
 box-sizing: border-box;
}

/*予約不可日*/
.ex25_notre_tit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 20px;
 font-weight: bold;
}
.ex25_notre_tit::before {
 content: "●";
 color: #00a59e;
 margin-right: 10px;
}
.ex25_notre_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 border: 3px solid #00a59e;
 border-radius: 20px;
 box-sizing: border-box;
}

/*発売終了ポップアップ*/
.ex25_modal {
 position: fixed;
 padding: 180px 20px 20px;
 z-index: 9999;
 top: 0;
 width: 100%;
 height: 100%;
 overflow: auto;
 background-color: rgba(0,0,0,0.4);
 box-sizing: border-box;
 transition: all 0.2s;
}
.ex25_modal_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.ex25_popup_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 border: 3px solid #e70012;
 border-radius: 20px;
 box-sizing: border-box;
}
.close-button {
 color: #aaaaaa;
 float: right;
 font-size: 28px;
 font-weight: bold;
}
.close-button:hover,
.close-button:focus {
 color: black;
 text-decoration: none;
 cursor: pointer;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_modal {
  padding: 210px 10px 10px;
 }
}

/*よくあるお問い合わせ*/
.ex25_faq {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto 30px;
}
.ex25_faq dt {
 position: relative;
 display: flex;
 align-items: center;
 padding: 20px;
 height: 100px;
 color: #ffffff;
 background-color: #0068b7;
 border-radius: 20px;
 box-sizing: border-box;
}
.ex25_faq dt::before {
 content: "Q";
 font-size: 30px;
 font-weight: bold;
 margin-right: 20px;
}
.ex25_faq dd {
 position: relative;
 padding: 20px;
 padding-left: 70px;
 margin-top: 10px;
 background-color: #ffffff;
 border: 3px solid #0068b7;
 border-radius: 20px;
 box-sizing: border-box;
}
.ex25_faq dd::before {
 position: absolute;
 left: 20px;
 top: 20px;
 content: "A";
 font-weight: bold;
 color: #0068b7;
 font-size: 30px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .ex25_faq dt {
  display: block;
  height: auto;
  padding-left: 70px;
 }
 .ex25_faq dt::before {
  position: absolute;
  left: 20px;
  top: 20px;
  margin: 0;
 }
}

/*フッター*/
#ex25_foot {
 text-align: center;
}
.ex25_foot_top {
 padding: 20px;
 background-color: #2d2d2d;
 color: #ffffff;
}
.ex25_foot_bottom {
 padding: 10px;
 background-color: #ffffff;
}

/*英語改行用*/
.ex25_en {
 word-break: keep-all;
}

/*文字装飾等*/
/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width:1200px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

.red {
 color: #e70012;
}
.blue {
 color: #0068b7;
}
.bold {
 font-weight: bold;
}
.line {
 text-decoration: underline;
}
.line_red {
 border-bottom: 3px solid #e70012;
}
.yellow_mark {
 background: linear-gradient(transparent 60%, #ffff00 60%);
}
.large {
 font-size: 1.1em;
}
.large2 {
 font-size: 1.2em;
}
.large3 {
 font-size: 1.3em;
 line-height: 150%;
}
.large5 {
 font-size: 1.5em;
}
.large7 {
 font-size: 1.7em;
}
.small {
 font-size: 0.8em;
}
.cen {
 text-align: center;
}
.clear {
 clear: both;
}
.kai {
 display: block;
 text-indent: -1em;
 padding-left: 1em;
}
.kai2 {
 display: block;
 text-indent: -2em;
 padding-left: 2em;
}
.kai3 {
 display: block;
 text-indent: -3em;
 padding-left: 3em;
}
.kai4 {
 display: block;
 text-indent: -4em;
 padding-left: 4em;
}
.kai6 {
 display: block;
 text-indent: -6em;
 padding-left: 6em;
}
.kai12 {
 display: block;
 text-indent: -12em;
 padding-left: 12em;
}

/*アコーディオン用*/
.submenu_title {
 cursor:pointer;
 transition: all 0.2s;
}
.submenu_title:hover {
 background-color: #00a59e;
 transition: all 0.2s;
}
.submenu {
 display: none;
}

/*モーダル*/
.hide-area{
  display: none;
}
.modaal-close:after, 
.modaal-close:before{
  background:#ccc;  
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}
#modaal-title{
  font-size:1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}
.modaal-video .modaal-inner-wrapper{
  padding:0;
}