@charset "utf-8";

/*PCSP共通設定*/
html {
	scroll-behavior: smooth;/*smooth scroll*/
	scroll-padding-top: 90px;
}

.txtRed{color:#e70011;}
.txtBlue{color:#0068b7;}
.txtRight{text-align: right;}
.txtCenter{text-align: center;}

/*モーダルウィンドウ設定*/
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index:999;
  background: rgba(0,0,0,0.8);
}
.modal__bg{
  height: 100vh;
  position: relative;
  width: 100%;
}
.modal_scroll,
.modal__content{
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 10px;
}

/*プランボタン表示*/
main p.pack_notice {
	content: "";
	color: #FFF;
	background: #333;
	display: block;
	padding:5px 0;
	position: fixed;
	bottom: -50px;
	left: 0;
	width: 100%;
	text-align: center;
	transition: .5s;
	opacity: 0;
	z-index: 51;
}
main#pack_notice .pack_notice {
	position: fixed;
	bottom: 0;
	left: 0;
	transition: .5s;
	opacity: 1;
}
main p.pack_notice {font-size: 12px;}
@media screen and (min-width: 760px),print {main p.pack_notice {font-size: 16px;}}

/* ========================================== SP */
@media screen and (max-width: 969px) {
#wrapper {line-height: 1.4;}
.spno{display:none;}

/* CSS */
#dirPathBlock,
#anchorLinkBlock {
	font-size: 10px;
	margin: 1% 1% 0 1%;
}
#dirPathBlock p,
#anchorLinkBlock a{font-size: 12px;}
h1 {
	font-size: 12px;
	margin: 0 1%;
}

.special_plan {
    font-weight: bold;
    margin: 10% auto 0;
    text-align: center;
    font-size: 15px;
}

#ticket_expo{
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
}
#ticket_expo a{
  opacity: 1;
  transition: .3s;
  word-break: break-all;
}
#ticket_expo img{
  width: 100%;
  height: auto;
}
#ticket_expo strong{
  font-weight: 600;
}

.inner{
	width: 96%;
	margin: 0 2%;
	padding: 50px 0;
	box-sizing: border-box;
}
h2.tit_head{
  margin-bottom: 40px;
  text-align: center;
}
h2.tit_head span{
  position: relative;
  margin: 0 auto;
  padding: 0 5px 14px 5px;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}
h2.tit_head span::before{
  content: '';
	position: absolute;
	bottom: -5px;
	right: 20%;
	width: 30%;
	height: 5px;
	background-color: #e70011;
}
h2.tit_head span::after{
  content: '';
	position: absolute;
	bottom: -5px;
	left: 20%;
	width: 30%;
	height: 5px;
	background-color: #0068b7;
}

/*リンクボタン*/
.bt_link a {
  position: relative;
  display: block;
  margin: 10px auto;
  padding: 10px 0;
  width: 80%;
  color: #fff;
  font-weight: 600;
  background: #666;
  transition: 0.3s;
  border-radius: 5px;
  text-align: center;
}
.bt_link a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 20px;
}

/*赤ボタン*/
.bt_link.red_ver a {
  background: #e70011;
}

/*青ボタン*/
.bt_link.blue_ver a {
  background: #fff;
  border:solid 2px #0068b7;
  color: #0068b7;
}
.bt_link.blue_ver a::after {
  border-top: none;
  border-right: none;
}
/*開始前リンクボタン（グレー）*/
.bt_link.close_ver {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: 80%;
  color: #fff;
  font-weight: 600;
  background: #666;
  transition: 0.3s;
  border-radius: 5px;
  text-align: center;
}
/*coming soon*/
.bt_link.comingsoon{
  position: relative;
}
.comingsoon::after{
  content: 'coming soon';
  color: #0068b7;
  font-weight: 600;
  font-size: 1.2em;
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}


/*テキストリンク*/
.txtlink a{
  display: inline-block;
  text-decoration: underline;
  font-weight: 600;
}

/*ジャンプリンク・テキスト*/
.jump_txtlink a{
  display: inline-block;
  margin: 0 5px 0 1.6em;
  padding: 0;
  text-decoration: underline;
  position: relative;
  font-weight: 600;
}
.jump_txtlink a::before{
  content: '';
  width: 1em;
  height: 1em;
  background: url(../images/ico_jump.png);
  background-size: 1em;
  position: absolute;
  top: 0.4em;
  left: -1.4em;
}


/*モーダルウィンドウ内*/
.modal__content{
  width: 90vw;
  height: 60vh;
}
.modal_scroll{
  overflow-y: scroll;
  text-align: left;
  line-height: 1.5;
  width: calc(90vw - 40px);
  height: calc(60vh - 60px);
  padding-left: 10px;
  padding-right: 10px;
}
::-webkit-scrollbar {
  border-radius: 10px;
  width:6px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}

.modal_name{
  font-size:1.4em;
  font-weight: 600;
  padding-bottom: 20px;
  color: #0068b7;
}

.modal_close a{
  display: block;
  margin: 30px auto 0 auto;
  padding: 7px 15px;
  width: 5em;
  color: #0068b7;
  background: #fff;
  border:solid 1px #0068b7;
  border-radius: 5px;
  text-align: center;
}
.modal_close a:visited{
  color: #0068b7;
}

/*youtube*/
#The-Nighttime-at-EXPO_2025 {margin-bottom:5%;}
#The-Nighttime-at-EXPO_2025 iframe {
	width:100%;
	height: auto;
	aspect-ratio: 970 / 546;
}
#The-Nighttime-at-EXPO_2025 p {
	line-height: 1;
	text-align: right;
	padding-right: 5px;
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {
.pcno{display:none;}
/* CSS */
#wrapper {line-height: 1.231;}
#dirPathBlock,
h1,
.iframe_end-content_gadget,
#anchorLinkBlock{
	width: 100%;
	max-width:970px;
	min-width:760px;
	margin: auto;
}

/*panlist&back*/
#dirPathBlock,
#anchorLinkBlock {
	width: 100%;
	margin: 0 auto;
	display: block;
	font-size: 12px;
}
#dirPathBlock p,
#anchorLinkBlock a{font-size: 12px;}
h1 {
	font-size: 14px;
  width: auto;
	max-width:970px;
	min-width:760px;
  margin: 0 auto 5px;
}

.special_plan {
    font-weight: bold;
    margin: 5% auto 0;
    text-align: center;
    font-size: 20px;
}

#ticket_expo{
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}
#ticket_expo a{
  transition: .3s;
  word-break: break-all;
}
#ticket_expo img{
  width: 100%;
  height: auto;
}
#ticket_expo strong{
  font-weight: 600;
}

.bg{
  margin: 0 auto;
  width: 1200px;
  background: #ccc;
}
.bg img{
  width: 100%;
  height:auto;
}

.inner{
	width:970px;
	margin: 0 auto;
	padding:50px 0;
	display: block;
}

h2.tit_head{
  margin-bottom: 60px;
  text-align: center;
}
h2.tit_head span{
  position: relative;
  margin: 0 auto;
  padding: 0 5px 15px 5px;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-right: 0.1em;
  border-bottom: 5px solid #e70011;
}
h2.tit_head span::after{
  content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50%;
	height: 5px;
	background-color: #0068b7;
}

/*リンクボタン*/
.bt_link a {
  position: relative;
  display: block;
  margin: 15px auto;
  padding: 15px 0;
  width: 460px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #666;
  transition: 0.3s;
  border-radius: 5px;
  text-align: center;
}
.bt_link a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  left: 92%;
}
.bt_link a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/*赤ボタン*/
.bt_link.red_ver a {
  background: #e70011;
}

/*青ボタン*/
.bt_link.blue_ver a {
  background: #fff;
  border:solid 2px #0068b7;
  color: #0068b7;
}
.bt_link.blue_ver a::after {
  border-top: none;
  border-right: none;
}
.bt_link.blue_ver a:hover{
background:#cbddef;
}
/*開始前リンクボタン（グレー）*/
.bt_link.close_ver {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
  width: 460px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: #666;
  transition: 0.3s;
  border-radius: 5px;
  text-align: center;
}

/*coming soon*/
.bt_link.comingsoon{
  position: relative;
  background: #666;
}
.comingsoon::after{
  content: 'coming soon';
  font-weight: 600;
  color: #0068b7;
  font-size: 1.1em;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}



/*テキストリンク*/
.txtlink a{
  display: inline-block;
  text-decoration: underline;
  font-weight: 600;
}

/*ジャンプリンク・テキスト*/
.jump_txtlink a{
  display: inline-block;
  margin: 0 0.5em 0 1.8em;
  padding: 0;
  text-decoration: underline;
  position: relative;
  font-weight: 600;
}
.jump_txtlink a::before{
  content: '';
  width: 1em;
  height: 1em;
  background: url(../images/ico_jump.png);
  background-size: 1em;
  position: absolute;
  top: 0.4em;
  left: -1.4em;
}


/*モーダルウィンドウ内*/
.modal__content{
  width: 70vw;
  max-width: 780px;
  height: 60vh;
}
.modal_scroll{
  overflow-y: scroll;
  text-align: left;
  line-height: 1.5;
  width: calc(70vw - 60px);
  max-width: 720px;
  height: calc(60vh - 60px);
  padding-right: 20px;
}
::-webkit-scrollbar {
  border-radius: 10px;
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #b6b6b6;
  border-radius: 10px;
}
.modal_name{
  font-size:1.8em;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 30px;
  color: #0068b7;
  text-align: center;
}

.modal_close a{
  display: block;
  margin: 40px auto 0 auto;
  padding: 7px 15px;
  width: 5em;
  color: #0068b7;
  background: #fff;
  border:solid 1px #0068b7;
  border-radius: 5px;
  text-align: center;
}
.modal_close a:visited{
  color: #0068b7;
}
.modal_close a:hover{
  color: #fff;
  background: #0068b7;
  border:solid 1px #0068b7;
  cursor: pointer;
}

/*youtube*/
#The-Nighttime-at-EXPO_2025 {margin-bottom:50px;}
#The-Nighttime-at-EXPO_2025 iframe {
	width:970px;
	height:546px;
}
#The-Nighttime-at-EXPO_2025 p {
	line-height: 1;
	text-align: right;
}

}
/* ========================================== PC */






/* -------------------------

  #gnav = ナビゲーション

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

#gnav{
  width:100%;
  text-align: center;
  padding:0;
  background: #fff;
}
#gnav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
  z-index: 99;
}

#gnav ul.navlist{
  display:flex;
  box-sizing: border-box;
  flex-wrap:wrap;
  justify-content: center;
  gap:1px;
}
#gnav ul.navlist li{
  background: #0068b7;
  width: calc(1 / 2 * 100% - 1px);
}
/*#gnav ul.navlist li:nth-of-type(1) {
    width: calc(100% - 1px);
    background: #e70011
}*/
#gnav ul.navlist li a{
  display: block;
  position: relative;
  padding:10px 1em 10px 0;
  color: #fff;
}
#gnav ul.navlist li a::after{
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 6px);
  right: 1em;
  transition: 0.3s;
}


}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

#gnav {
  margin:0;
}
#gnav ul.navlist{
  margin: 0 auto;
  width: 970px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  z-index: 99;
}
#gnav ul.navlist li{
  width: calc(1 / 4 * 100%);
  background: #0068b7;
}
/*#gnav ul.navlist li:nth-of-type(1) {
	background: #e70011
}*/
#gnav ul.navlist li a{
  display: block;
  position: relative;
  margin: 10px 0;
  padding: 2px 0 16px 0;
  text-align: center;
  color: #fff;
  transition: .3s;
  font-size: 18px;
  font-weight: 600;
  border-right: solid 1px #fff;
}
#gnav ul.navlist li a::after{
  content: '';
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg) translateX(-50%);
  position: absolute;
  bottom: 5px;
  left: calc(50% - 3px);
  transition: 0.3s;
}
#gnav ul.navlist li:first-child {
  border-bottom-left-radius: 10px;
}
#gnav ul.navlist li:last-child {
  border-bottom-right-radius: 10px;
}
#gnav ul.navlist li:last-child a{
  border-right: none;
}
#gnav ul.navlist li a:hover::after{
  bottom:0;
}

/*m_fixed 上部固定に*/
#gnav.m_fixed {
  width: 970px;
  margin: 0 auto;
}
#gnav.m_fixed ul.navlist{
  position: fixed;
  top:0;
}


}
/* ========================================== PC */








/* -------------------------

  #header = メインビジュアル周辺

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

#ticket_expo #header{
  background: #fff;
}
.header_top{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_nta{
  width: 20%;
}
.bt_mypage a{
  display: block;
  padding: 6px 6px 6px 10px;
  border-radius: 5px;
  color: #1622a3;
  border:solid 1px #1622a3;
}

.titlebox{
  background: url(../images/title_bg.png);
  background-size: 100vw;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.371;
  position: relative;
}
.title_txt{
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 62%;
  max-width: 440px;
}
.copy_expo{
  padding: 2px 5px 0 0;
  text-align: right;
  font-size: 0.8em;
}
.copy_expo span{
  font-size: 1.5em;
  vertical-align: middle;
}

.img_expoticket{
  margin: -10px auto 0 auto;
  width: 20%;
  max-width: 122px;
}

.ticket_link{
  margin: 1em auto 50px;
  display: flex;
  flex-direction: column;
  gap:30px;
}
.ticket_link li{
  text-align: center;
  position: relative;
}
.ticket_link li a{
  margin-top: 3px;
}
.ticket_link li span{
  padding-top: 5px;
  font-size: 90%;
  display: block;
  font-weight: bold;
}
.txt_wester::before{
  content: '＼　WESTER会員なら　／';
  width: 100%;
  font-weight: 600;
  text-align: center;
  color: #0068b7;
  font-size: 1.2em;
  position: absolute;
  left: 50%;
  top: -2em;
  transform: translateX(-50%);
}


}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

#ticket_expo #header{
  background: #fff;
  width: 970px;
  margin: 0 auto;
}
.header_top{
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_nta{
  width: 90px;
}
.bt_mypage a{
  display: block;
  padding: 10px 16px 10px 20px;
  border-radius: 5px;
  color: #1622a3;
  border:solid 1px #1622a3;
  line-height: 1;
}
.bt_mypage a:hover{
  background: #1622a3;
  color: #fff;
}
.titlebox{
  background: url(../images/title_bg.png);
  background-size: 970px;
  width: 970px;
  height: auto;
  aspect-ratio: 1 / 0.371;
  position: relative;
}
.title_txt{
  text-align: center;
  position: absolute;
  left: 50%;
  top: calc(50% + 4px);
  transform: translate(-50%,-50%);
  width: 536px;
}
.copy_expo{
  width: 970px;
  margin: 0 auto;
  padding: 2px 0 0 0;
  text-align: right;
  font-size: 0.8em;
}
.copy_expo span{
  font-size: 1.5em;
  vertical-align: middle;
}

.img_expoticket{
  margin: -1em auto 20px auto;
  width: 122px;
}

.ticket_link{
  margin: 20px auto 70px auto;
  display: flex;
  /*justify-content: space-between;*/
  box-sizing: border-box;
  align-items: center;
  width: 970px;
}

.ticket_link.oneLink{
  margin: 3.4em auto 50px auto;
  display: flex;
  flex-direction: column;
  gap:30px;
  justify-content: center;
}
.ticket_link li{
width: calc(100% / 2);
  text-align: center;
  position: relative;
  margin-right: 20px;
}
.ticket_link li:last-child{
  margin-right: 0;
}
.ticket_link li a,
.ticket_link li.close_ver{
  width: 310px;
  margin-top: 5px;
  height: 4em;
  line-height: 1.2;
  padding: 10px 0 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.ticket_link li span{
  font-size: 14px;
  display: block;
  font-weight: bold;
  padding-top: 5px;
}

.txt_wester::before{
  content: '＼　WESTER会員なら　／';
  width: 100%;
  padding: 3px;
  font-weight: 600;
  color: #0068b7;
  position: absolute;
  left: 50%;
  top: -2em;
  transform: translateX(-50%);
}


}
/* ========================================== PC */








/* -------------------------

  #ax03 = 大阪・関西万博の開催概要

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

#ax03{
  background: #0068b7;
  padding: 5px 0;
}
#ax03 .inner{
  background: #fff;
  border-radius: 50px 0 50px 0;
  margin: 0;
  width: 100%;
}
.infobox{
  width: 90%;
  margin: 0 auto;
}
.img_expo{
  width: 100%;
  margin: 0 auto 20px auto;
}
.expo_info{
  width: 100%;
}
.expo_info dl{
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}
.expo_info dl dt{
  color: #0068b7;
}
.expo_info dl dt::before{
  content:'●';
  color: #0068b7;
  padding-right: 5px;
}
.expo_info dl dd{
  padding: 0 0 1em 1em;
}
.expo_info .jump_txtlink{
  margin-left: 10px;
  font-size: 0.9em;
}
.expo_info .bt_link a{
  width: 90%;
  padding-left: 1em;
}
.expo_info .bt_link span{
  position: relative;
}
.expo_info .bt_link a span::before{
  content: '';
  width: 1em;
  height: 1em;
  background: url(../images/ico_jump.png);
  background-size: 1em;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform:translateY(-50%);
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

#ax03{
  background: #0068b7;
}
#ax03 .inner{
  background: #fff;
  border-radius: 80px 0 80px 0;
}
.infobox{
  display:flex;
  justify-content: space-between;
  width: 850px;
  margin: 0 auto;
}
.img_expo{
  width: 220px;
}
.expo_info{
  width: 580px;
}
.expo_info dl{
  font-size: 20px;
  font-weight: 600;
  display:flex;
  flex-wrap: wrap;
  gap:45px 0;
  margin-bottom: 45px;
}
.expo_info dl dt{
  color: #0068b7;
  width:6em;
}
.expo_info dl dt::before{
  content:'●';
  color: #0068b7;
  padding-right: 5px;
}
.expo_info dl dd{
  width:calc(100% - 6em);
}
.expo_info .bt_link a{
  width: 100%;
}
.expo_info .jump_txtlink{
  margin-left: 20px;
  font-size: 0.8em;
}
.expo_info .bt_link span{
  position: relative;
}
.expo_info .bt_link a span::before{
  content: '';
  width: 1em;
  height: 1em;
  background: url(../images/ico_jump.png);
  background-size: 1em;
  position: absolute;
  top: 50%;
  left: -1.4em;
  transform:translateY(-50%);
}

}
/* ========================================== PC */








/* -------------------------

  #ax04 = 入場チケット購入についてのご案内

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

ul.ticket_anchorlink{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap:10px;
  width: 100%;
  margin: 0 auto;
}
ul.ticket_anchorlink li.bt_link{
  width: calc(100% / 2 - 9px);
  display: flex;
}
ul.ticket_anchorlink li.bt_link:first-child a{
  display: flex;
  align-items: center;
}
ul.ticket_anchorlink li.bt_link a{
  width: calc(100% - 20px);
  background: #fff;
  border:solid 2px #e70011;
  color: #e70011;
  padding: 10px;
  text-align: left;
}
ul.ticket_anchorlink li.bt_link:nth-child(3){
  width: calc(100% - 8px);
}
ul.ticket_anchorlink li.bt_link a::after{
  border-top: 2px solid #e70011;
  border-right: 2px solid #e70011;
  right: 1em;
  transform: rotate(135deg) translate(-50%,-50%);
}

ul.ticket_info{
  width: 100%;
  margin: 30px auto 0 auto;
}
ul.ticket_info li{
  position: relative;
  padding: 0 0 1em 1em;
}
ul.ticket_info li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}
ul.ticket_anchorlink li.bt_link a span{
  font-size: 90%;
}


}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

ul.ticket_anchorlink{
  display: flex;
  /*justify-content: space-between; 2つ以上の時 */
  justify-content: center;
  box-sizing: border-box;
  gap:20px;
  width: 910px;
  margin: 0 auto;
}
ul.ticket_anchorlink li.bt_link{
  width: calc(100% / 3 - (20px /2));
}
ul.ticket_anchorlink li.bt_link a{
  width: 100%;
  background: #fff;
  border:solid 2px #e70011;
  color: #e70011;
  height: 3em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
ul.ticket_anchorlink li.bt_link a::after{
  border-top: 2px solid #e70011;
  border-right: 2px solid #e70011;
  transform: rotate(135deg) translate(-50%,-50%);
}
ul.ticket_anchorlink li.bt_link a:hover{
  background:#f2c1c4;
}
ul.ticket_anchorlink li.bt_link a span{
  display: block;
  font-size: 14px;
}

ul.ticket_info{
  width: 910px;
  margin: 50px auto 0 auto;
}
ul.ticket_info li{
  position: relative;
  padding: 0 0 1em 1em;
}
ul.ticket_info li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}

}
/* ========================================== PC */








/* -------------------------

  #ax01 = 入場チケット

---------------------------------------------------------------------------------------------------- */

/*PC/SP共通*/
#ax01 .inner{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ========================================== SP */
@media screen and (max-width: 969px) {

#ax01 h3{
  margin: 40px 0;
  padding: 8px 0 8px 10px;
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  background: #0068b7;
  border-left: solid 5px #e70011;
  line-height: 1;
}
.ticketbox{
  margin-bottom: 40px;
}
.ticketbox dl{
  margin: 0 10px 20px 5px;
  border-left: solid 5px #0068b7;
  padding-left: 10px;
}
.ticketbox dl dt{
  color: #0068b7;
  font-size: 1.5em;
  font-weight: 600;
}
.ticketbox ul{
  margin-bottom: 20px;
  padding: 10px;
  background: #d4d9dd;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  box-sizing: border-box;
  gap: 10px;
  align-items: stretch;
}
.ticketbox ul li{
  width:calc(100% / 2 - 5px);
  margin: 0 auto;
  padding: 5px 0 7px 0;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.ticketbox ul li > span{
  margin: 0 auto;
}
.ticketbox ul li .price{
  display: inline-block;
  padding:0 3px 0 3px;
  font-size: 1.6em;
  color: #e70011;
}
.ticketbox ul li .yen{
  display: inline-block;
  font-size: 0.6em;
  color: #e70011;
}
.ticketbox ul li .terms{
  font-size: 0.6em;
  font-weight: 300;
}

/*入場ゲートについてボタン*/
.bt_entrance .bt_link a{
  width:11em;
  font-size: 14px;
  margin: 0 auto 20px auto;
}

/*モーダルウィンドウ内*/
.gatebox{
  padding-bottom:10px;
  margin-bottom: 20px;
}
.gatebox .gate{
  padding:2px 0 1px 10px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 600;
  border-left: solid 7px #0068b7;
  border-bottom: solid 1px #0068b7;
}
.gatebox dl{
  padding-left: 5px;
}
.gatebox dl dt{
  font-weight: 600;
}
.gatebox dl dd{
  padding-bottom: 15px;
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

#ax01 {
  background: #e9edf1;
}
#ax01 .innerbox{
  background: #fff;
  border-radius: 80px 0 80px 0;
  width: 910px;
  padding: 50px 30px;
  margin:0 auto;
}
#ax01 h3{
  margin: 80px 0 30px 0;
  padding: 8px 0 8px 15px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  background: #0068b7;
  border-left: solid 10px #e70011;
  line-height: 1;
}
#ax01 h3:first-child{
  margin-top: 0;
}
.ticketbox{
  margin-bottom:50px;
}
.ticketbox dl{
  margin-bottom: 20px;
  border-left: solid 5px #0068b7;
  padding-left: 20px;
}
.ticketbox dl dt{
  color: #0068b7;
  font-size: 26px;
  font-weight: 600;
}
.ticketbox ul{
  margin-bottom: 30px;
  padding: 10px;
  background: #d4d9dd;
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
  gap: 10px;
  align-items:stretch;
}
.ticketbox ul li{
  width:calc(100% / 4);
  padding: 20px 0;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}
.ticketbox ul li > span{
  margin: 0 auto;
}
.ticketbox ul li .price{
  display: inline-block;
  padding:0 3px 0 10px;
  font-size: 30px;
  color: #e70011;
}
.ticketbox ul li .yen{
  display: inline-block;
  font-size: 14px;
  color: #e70011;
}
.ticketbox ul li .terms{
  font-size: 14px;
  font-weight: 300;
}

/*入場ゲートについてボタン*/
.bt_entrance{
  position: absolute;
  top:110px;
  left:50%;
  transform:translateX(-50%);
  width: 910px;
  text-align: right;
}
.bt_entrance .bt_link{
  position: absolute;
  right:0;
}
.bt_entrance .bt_link a{
  width:11em;
  font-size: 16px;
  margin: 0;
}

/*モーダルウィンドウ内*/
.gatebox{
  padding-bottom:10px;
  margin-bottom: 20px;
}
.gatebox .gate{
  padding:0 0 4px 10px;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: 600;
  border-left: solid 7px #0068b7;
  border-bottom: solid 1px #0068b7;
}
.gatebox dl{
  padding-left: 15px;
}
.gatebox dl dt{
  font-weight: 600;
}
.gatebox dl dd{
  padding-bottom: 15px;
}

}
/* ========================================== PC */







/* -------------------------

  #ax06 = チケット購入から入場までの流れ

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

.flow_scroll{
  width:100%;
  overflow-x: scroll;
  padding-bottom:20px;
  margin-bottom: 30px;
}
.flow_img{
  display: flex;
  align-items: center;
  gap:26px;
}
.flow_img li{
  position: relative;
  flex-shrink: 0;
  width:30%;
}
.flow_img li::after {
  content: '';
  width: 14px;
  height: 17px;
  background: url(../images/arrow_triangle.png);
  background-size: 14px;
  position: absolute;
  right: -21px;
  top: calc(50% + 15px);
  transform: translateY(-50%);
}
.flow_img li:last-child::after {
  width: 0;
  height: 0;
}

.flow_stepbox{
  margin-bottom: 60px;
}
.stepNo{
  font-family: 'Noto Sans JP', sans-serif;
  color: #0068b7;
  font-size: 2.4em;
  font-weight: 600;
  padding: 5px 0 0 10px;
  width: 50%;
  min-height: 40px;
  line-height: 1;
  border-bottom: solid 3px #0068b7;
}
.stepNo span{
  font-size: 0.6em;
  vertical-align:3px;
}
#step1 .stepNo{
  background: url(../images/step1_sp.png) no-repeat right top;
  background-size: 55px;
}
#step2 .stepNo{
  background: url(../images/step2_sp.png) no-repeat right top;
  background-size: 55px;
}
#step3 .stepNo{
  background: url(../images/step3_sp.png) no-repeat right top;
  background-size: 55px;
}
#step4 .stepNo{
  background: url(../images/step4_sp.png) no-repeat right top;
  background-size: 55px;
}
#step5 .stepNo{
  background: url(../images/step5_sp.png) no-repeat right top;
  background-size: 55px;
}
#step6 .stepNo{
  background: url(../images/step6_sp.png) no-repeat right top;
  background-size: 55px;
}
.flow_txt_wrap{
  padding-left: 10px;
}
.flow_txt h3{
  font-size: 1.2em;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.5;
}
.flow_txt p,
.flow_txt dl,
.flow_txt ol,
.flow_txt ul{
  padding: 0.5em 0;
}
.flow_txt ul li{
  position: relative;
  padding: 0 0 1em 1em;
}
.flow_txt ul li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}
.flow_txt ol li{
  position: relative;
  padding: 0 0 1.8em 0;
}
.flow_txt ol li:last-child{
  position: relative;
  padding-bottom: 0;
}
.flow_txt ol li::after{
  content: '▼';
  color: #0068b7;
  position: absolute;
  left:2em;
  bottom:0;
}
.flow_txt ol li:last-child::after{
  content: '';
}
.flow_txt ol.txtRed li::after{
  color: #e70011;
}



/*続きを読む*/
.accordion {
  position: relative;
}
/* ボタン */
.accordion-btn {
  color: #0068b7;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin: auto;
  padding: 3px 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom:-1em;
  text-align: center;
  transition: all .2s;
  width: 90%;
  z-index: 1;
  background: #fff;
}
.accordion-btn::after {
  content: "＋ 続きを読む";
  padding: 5px;
  border:solid 1px #ccc;
  border-radius: 5px;
}
.accordion-text {
  overflow: hidden; /* テキストを隠す */
  position: relative;
}
/* 最初に見えてるテキストエリアの高さ */
.accordion-text.is-hide {
  height: 10em;
}
.accordion-text::before {
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  background:         linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 50%, rgba(255,255,255,.9) 50%, #fff 100%);
  bottom: 0;
  content: "";
  height: 100px; /* グラデーションで隠す高さ */
  position: absolute;
  width: 100%;
}
.accordion-btn.is-show {
  bottom: -2.5em;
}
.accordion-btn.is-show::after {
  content: "✕ 閉じる";
}
/* 続きを見るボタンをクリックしたらテキストを隠しているグラデーションを消す */
.accordion-btn.is-show + .accordion-text::before {
  display: none;
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

.flow_img{
  display: flex;
  align-items: center;
  gap:26px;
}
.flow_img img{
  width:140px;
}
.flow_img li{
  position: relative;
}
.flow_img li::after {
  content: '';
  width: 14px;
  height: 17px;
  background: url(../images/arrow_triangle.png);
  background-size: 14px;
  position: absolute;
  right: -21px;
  top: calc(50% + 15px);
  transform: translateY(-50%);
}
.flow_img li:last-child::after {
  width: 0;
  height: 0;
}
.flow_stepbox{
  display: flex;
  align-items: flex-start;
  border-left: solid 5px #0068b7;
  margin-top: 60px;
}
.stepNo{
  font-family: 'Noto Sans JP', sans-serif;
  color: #0068b7;
  font-size: 46px;
  font-weight: 600;
  padding-left: 10px;
  width: 150px;
  line-height: 1;
}
.stepNo span{
  font-size: 20px;
  vertical-align:5px;
}

.flow_txt_wrap{
  width: calc(100% - 150px);
}
.flow_txt h3{
  font-size: 24px;
  font-weight: 600;
  padding: 5px 0 15px 0;
}
.flow_txt p,
.flow_txt dl,
.flow_txt ol,
.flow_txt ul{
  padding: 0.5em 0;
}
.flow_txt ul li{
  position: relative;
  padding-left: 1em;
}
.flow_txt ul li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}
.flow_txt ol li{
  position: relative;
  padding: 0 0 1.8em 1em;
}
.flow_txt ol li:last-child{
  position: relative;
  padding-bottom: 0;
}
.flow_txt ol li::after{
  content: '▼';
  color: #0068b7;
  position: absolute;
  left:2em;
  bottom:0;
}
.flow_txt ol li:last-child::after{
  content: '';
}
.flow_txt ol.txtRed li::after{
  color: #e70011;
}

}
/* ========================================== PC */




/*おすすめプラン*/
/* ========================================== SP */
@media screen and (max-width: 969px) {
.special .special_wrapper li {
	border: 1px solid #e9edf1;
	padding: 15px;
}
.special .special_wrapper li dl{
	display: flex;
	gap: 2%;
}
.special .special_wrapper li dt{width: 40%;}
.special .special_wrapper li dd{
	width: 58%;
	color: #000;
	line-height: 1.4;
}
}
/* ========================================== SP */

/* ========================================== PC */
@media screen and (min-width: 970px),print {
.special .special_wrapper li {
	border: 1px solid #e9edf1;
	padding: 25px;
}
.special .special_wrapper li dl{
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.special .special_wrapper li dt{max-width: 300px;}
.special .special_wrapper li dd{
	width: calc(98% - 300px);
	color: #000;
	font-size: 1.2em;
}
}
/* ========================================== PC */

/* ========================================== TB */
@media (min-width: 768px) and (max-width: 969px),print {
.special .special_wrapper li {
	border: 1px solid #e9edf1;
	padding: 25px;
}
.special .special_wrapper li dl{
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.special .special_wrapper li dt{max-width: 300px;}
.special .special_wrapper li dd{
	width: calc(98% - 300px);
	color: #000;
	font-size: 1.2em;
}
}
/* ========================================== TB */





/* -------------------------

  #ax07 = よくある質問（FAQ）

---------------------------------------------------------------------------------------------------- */

/* ========================================== SP */
@media screen and (max-width: 969px) {

.qa_actab{
  padding: 0;
}
.qa_actab h3{
  margin: 50px 0 10px 0;
  padding-left: 5px;
  font-size: 1.4em;
  font-weight: 600;
  border-left: solid 5px #0068b7;
}

.accordion-container dl{
  padding-bottom:10px; 
  border-bottom:solid 1px #ccc;
}
.accordion-container .accordion-title {
  position: relative;
  margin: 10px 0 0 0;
  padding: 14px 3em 10px 4em;
  color: #000;
  cursor: pointer;
  transition: all .3s ease-in-out;
  background: #fff;
  border-top:solid 1px #ccc;
}
.accordion-container .accordion-title:first-child {
  border-top:none;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { 
}
.accordion-container .accordion-title::after {
  content: "＋";
  position: absolute;
  top: 27px;
  right: 0;
  transform: translateY(-50%);
  width: 2em;
  transition: all .3s ease-in-out;
  display: block;
  text-align: center;
  color: #666;
  font-size: 1.4em;
}
.accordion-container .accordion-title.open::after {
  content: "＋";
  color: #666;
  top: 10px;
  right: 0;
	-webkit-transform: rotate(45deg);
	        transform:rotate(45deg);
}
.accordion-content {
  position: relative;
  padding: 4px 2.5em 10px 4em;
  margin: 0 0 10px 0;
  background: #fff;
}
.accordion-container .accordion-title::before {
  content: "Q";
  position: absolute;
  top: 15px;
  left: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  background: #0068b7;
  width: 1.4em;
  height: calc(1.4em - 4px);
  text-align: center;
  padding-top: 4px;
}
.accordion-container .accordion-content::before {
  content: "A";
  position: absolute;
  top: 5px;
  left: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  background: #e70011;
  width: 1.4em;
  height: calc(1.4em - 4px);
  text-align: center;
  padding-top: 4px;
}

.accordion-content p,
.accordion-content ul{
  padding-bottom: 10px;
}
.accordion-content ul li{
  position: relative;
  padding-left:1em;
}
.accordion-content ul li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

#ax07{
  background: #e9edf1;
}
.qa_actab{
  padding: 0;
}
.qa_actab h3{
  margin: 50px 0 10px 0;
  padding-left: 20px;
  font-size: 26px;
  font-weight: 600;
  border-left: solid 5px #0068b7;
}

.accordion-container .accordion-title {
  position: relative;
  margin: 15px 0 0 0;
  padding: 20px 3.5em 20px 6em;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease-in-out;
  background: #fff;
}
.accordion-container .accordion-title:hover,
.accordion-container .accordion-title:active,
.accordion-title.open { 
}
.accordion-container .accordion-title::after {
  content: "＋";
  position: absolute;
  top: 34px;
  right: 5px;
  transform: translateY(-50%);
  width: 2em;
  transition: all .3s ease-in-out;
  display: block;
  text-align: center;
  color: #000;
  font-size: 1.4em;
}
.accordion-container .accordion-title.open::after {
  content: "＋";
  color: #000;
  top: 17px;
  right: 5px;
	-webkit-transform: rotate(45deg);
	        transform:rotate(45deg);
}
.accordion-content {
  position: relative;
  padding: 8px 3.5em 20px 6em;
  margin: 0 0 10px 0;
  background: #fff;
}
.accordion-container .accordion-title::before {
  content: "Q";
  position: absolute;
  top: 15px;
  left: 20px;
  font-weight: 600;
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  background: #0068b7;
  width: 1.4em;
  height: calc(1.4em - 4px);
  text-align: center;
  padding-top: 4px;
}
.accordion-container .accordion-content::before {
  content: "A";
  position: absolute;
  top: 5px;
  left: 20px;
  font-weight: 600;
  color: #fff;
  font-size: 1.4em;
  line-height: 1;
  background: #e70011;
  width: 1.4em;
  height: calc(1.4em - 4px);
  text-align: center;
  padding-top: 4px;
}

.accordion-content p,
.accordion-content ul{
  padding-bottom: 10px;
}
.accordion-content ul li{
  position: relative;
  padding-left:1em;
}
.accordion-content ul li::before{
  content: '・';
  position: absolute;
  left:0;
  top:0;
}

}
/* ========================================== PC */






/* -------------------------

  #ax08 = お問い合わせ

---------------------------------------------------------------------------------------------------- */

/*PC/SP共通*/
#ax08 .inner{
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* ========================================== SP */
@media screen and (max-width: 969px) {

.info_ntabox{
  margin: 0 15px 50px 15px;
  padding: 0;
}
.info_ntabox .info_nta{
  padding: 0 0 5px 5px;
}
.info_ntabox h3{
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 5px;
}
.info_ntabox dl{
  padding: 0 10px;
  margin-top: 20px;
  display: flex;
  flex-wrap:wrap;
  box-sizing: border-box;
}
.info_ntabox dl dt{
  width: 6em;
  padding: 5px 0;
}
.info_ntabox dl dd{
  width: calc(100% - 6em);
  padding: 5px 0;
}
.info_nta_link{
}
.info_nta_link .bt_link a{
width:80%;
margin: 0 auto 15px auto;
}

/*モーダルウィンドウ内*/
#modal_transaction .modal__content dl dt{
  font-weight: 600;
}
#modal_transaction .modal__content dl dd{
  padding-bottom: 15px;
}

}
/* ========================================== SP */



/* ========================================== PC */
@media screen and (min-width: 970px),print {

.info_ntabox{
  width: 910px;
  margin: 0 auto 50px auto;
  padding: 0;
  display: flex;
  flex-wrap:wrap;
  box-sizing: border-box;
  align-items: center;
}
.info_ntabox .info_nta,
.info_ntabox dl{
  text-align: left;
  background: #fff;
  width: 50%;
}
.info_ntabox h3{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 1em;
}
.info_ntabox dl{
  border-left: solid 1px #000;
  padding: 0 0 0 15px;
  display: flex;
  flex-wrap:wrap;
  box-sizing: border-box;
}
.info_ntabox dl dt{
  width: 90px;
  padding: 5px 0;
}
.info_ntabox dl dd{
  width: calc(100% - 90px);
  padding: 5px 0;
}
.info_nta_link{
  width: 910px;
  margin: 0 auto;
  display: flex;
  flex-wrap:wrap;
  box-sizing: border-box;
  justify-content: space-between;
}
.info_nta_link .bt_link {
  width: 400px;
}
.info_nta_link .bt_link a{
  width:100%;
}
/*モーダルウィンドウ内*/
#modal_transaction .modal__content dl{
display:flex;
flex-wrap: wrap;
}
#modal_transaction .modal__content dl dt{
  width: 30%;
  padding: 15px 0;
  font-weight: 600;
  border-bottom: dotted 1px #d4d9dd;
}
#modal_transaction .modal__content dl dd{
  width: 70%;
  padding: 15px 0;
  border-bottom: dotted 1px #d4d9dd;
}


}
/* ========================================== PC */



/* ========================================== TB */
@media (min-width: 768px) and (max-width: 969px),print {

.logo_nta{
  max-width: 90px;
}
.ticket_link br.spnone{
  display: none;
}

.flow_img li{
  width: 20%;
}

.info_ntabox{
  width: 95%;
  margin: 0 auto 50px auto;
  padding: 0;
  display: flex;
  flex-wrap:wrap;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
.info_ntabox dl{
  border-left: solid 1px #000;
  width: 50%;
}

}
/* ========================================== TB */

/*------------------------------
banner640
------------------------------*/
@media screen and (max-width: 969px) {
ul.banner640 {margin: 5% 0;}
ul.banner640 li {
	width: 98%;
	margin: 0 1%;
}
ul.banner640 li p{
	text-align: center;
	font-size: 0.85em;
}
ul.banner640 .slick-prev,
ul.banner640 .slick-next {
    position: absolute;
    top: 30%;
}
}
/* ========================================== SP */

/* ========================================== PC */
@media screen and (min-width: 970px),print {
ul.banner640 {
	display: flex;
	flex-wrap: wrap;
	margin: 5% 0;
}
ul.banner640 li {
	width: 49.5%;
	margin: 0.25%;
}
ul.banner640 li p{
	text-align: center;
	font-size: 0.85em;
}
}
/*------------------------------
scroll item
------------------------------*/
/* ========================================== SP */
@media screen and (max-width: 969px) {
.scrollbox_wraper {
	margin-bottom: 25px;
	position: relative;
}
.scrollbox_wraper .scroll_left_btn,
.scrollbox_wraper .scroll_right_btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 32px);
    display: block;
    z-index: 1;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #888;
}
.scrollbox_wraper .scroll_left_btn {left: 0;}
.scrollbox_wraper .scroll_right_btn {right: 0;}
.scrollbox_wraper .scroll_left_btn:after,
.scrollbox_wraper .scroll_right_btn:after,
.scrollbox_wraper .scroll_left_btn:before,
.scrollbox_wraper .scroll_right_btn:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
}
.scrollbox_wraper .scroll_left_btn:after {
	position: absolute;
	top: 16px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_right_btn:after {
	position: absolute;
	top: 16px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_left_btn:before {
	position: absolute;
	top: 7px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_right_btn:before {
	position: absolute;
	top: 7px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_left_btn.non_scloll,
.scrollbox_wraper .scroll_right_btn.non_scloll {
	transition: 0.1s;
	display:none!important;
}
.scrollbox_wraper .scrollbox {overflow-x: scroll!important;}
.scrollbox_wraper .scrollbox > ul {
    width: fit-content !important;
    display: flex !important;
    margin: 0 auto 15px !important;
	padding: 0 calc(calc(100% - calc(1040px / 4)) / 2);
}
.scrollbox_wraper .scrollbox > ul > li.sliderBox {
	width: calc(1038px / 4) !important;
	margin: 0 5px !important;
	padding: 15px;
	box-sizing: border-box;
    background-color: #FFF;
    border: solid 1px #999;
}
.scrollbox_wraper .scrollbox > ul > li h3 {
	display: grid;
	flex-direction: column;
	text-align: center;
	line-height: 1.2;
	padding: 10px 0;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
}
.scrollbox_wraper .scrollbox > ul > li .osusume_place {
	text-align: right;
	margin-bottom: 10px;
	font-size: 12px;
}
.scrollbox_wraper .scrollbox > ul > li .txt_rank {
	text-align: justify;
	font-size: 12px;
	line-height: 1.4;
}
.scrollbox_wraper .scrollbox > ul > li .icon {
	font-size: 12px;
    background: #0068b7;
    display: inline-block;
    padding: 0 10px;
    color: #FFF;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price {
	padding: 10px 0;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: -0.005rem;
	line-height: 1;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price strong {
	font-weight: bold;
	color: #c22a39;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price small {font-size: 0.7rem;}
.scrollbox_wraper .scrollbox > ul > li .txt {font-size: 14px;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 5px!important;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
	margin: 0 5px !important;
	background: #eee !important;
	border-radius: 5px !important;
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
	border-radius: 5px !important;
	background: #999 !important;
}

}

/* ========================================== PC */
@media screen and (min-width: 970px),print {
.scrollbox_wraper {
	margin-bottom: 50px;
	position: relative;
}
.scrollbox_wraper .scroll_left_btn,
.scrollbox_wraper .scroll_right_btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 32px);
    display: block;
    z-index: 1;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #888;
}
.scrollbox_wraper .scroll_left_btn {left: -40px;}
.scrollbox_wraper .scroll_right_btn {right: -40px;}
.scrollbox_wraper .scroll_left_btn:after,
.scrollbox_wraper .scroll_right_btn:after,
.scrollbox_wraper .scroll_left_btn:before,
.scrollbox_wraper .scroll_right_btn:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
}
.scrollbox_wraper .scroll_left_btn:after {
	position: absolute;
	top: 16px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_right_btn:after {
	position: absolute;
	top: 16px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_left_btn:before {
	position: absolute;
	top: 7px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_right_btn:before {
	position: absolute;
	top: 7px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_left_btn.non_scloll,
.scrollbox_wraper .scroll_right_btn.non_scloll {
	transition: 0.1s;
	display:none!important;
}
.scrollbox_wraper .scrollbox {overflow-x: scroll!important;}
.scrollbox_wraper .scrollbox > ul {
    width: fit-content !important;
    display: flex !important;
    margin: 0 auto 15px !important;
}
.scrollbox_wraper .scrollbox > ul > li.sliderBox {
	width: calc(930px / 4) !important;
	margin: 0 5px !important;
	padding: 15px;
	box-sizing: border-box;
    background-color: #FFF;
    border: solid 1px #999;
}
.scrollbox_wraper .scrollbox > ul > li h3 {
	display: grid;
	flex-direction: column;
	text-align: center;
	line-height: 1.2;
	padding: 10px 0;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
}
.scrollbox_wraper .scrollbox > ul > li .osusume_place {
	text-align: right;
	margin-bottom: 10px;
	font-size: 12px;
}
.scrollbox_wraper .scrollbox > ul > li .txt_rank {
	text-align: justify;
	font-size: 12px;
	line-height: 1.4;
}
.scrollbox_wraper .scrollbox > ul > li .icon {
	font-size: 12px;
    background: #0068b7;
    display: inline-block;
    padding: 0 10px;
    color: #FFF;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price {
	padding: 10px 0;
	font-size: 1.2rem;
	text-align: center;
	letter-spacing: -0.005rem;
	line-height: 1;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price strong {
	font-weight: bold;
	color: #c22a39;
}
.scrollbox_wraper .scrollbox > ul > li .txt_price small {font-size: 0.7rem;}
.scrollbox_wraper .scrollbox > ul > li .txt {font-size: 14px;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 5px!important;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
	margin: 0 5px !important;
	background: #eee !important;
	border-radius: 5px !important;
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
	border-radius: 5px !important;
	background: #999 !important;
}
@media (min-width: 760px) and (max-width: 900px){
	/*------------------------------
	for Tablet
	------------------------------*/
	.scrollbox_wraper .scrollbox {
		overflow-x: scroll!important;
		padding: 0;
	}
	.scrollbox_wraper .scrollbox > ul > li {
		width: 270px !important;
	    margin: 0 5px;
		background: #fff;
	}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 5px!important;}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
		margin: 0 5px!important;
		background: #eee!important;
		border-radius: 5px!important;
	}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
		border-radius: 5px!important;
		background: #999!important;
	}
}

/*スクロールなし*/
.scrollbox_wraper.pc_no_slider .scroll_left_btn,
.scrollbox_wraper.pc_no_slider .scroll_right_btn,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-track,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-thumb {display:none!important;}
}