@charset "utf-8";

/* 共通（リセット）
-------------------------------------------------- */
*{
	margin: 0;
	padding: 0;
	line-height: 1.6em;
}

body{
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #333333;
}

body.fixed{
	height: 100vh;
	overflow: hidden;
}

img{
	vertical-align: bottom;
}

li{
	list-style-type: none;
}

/* PC
-------------------------------------------------- */
@media screen and (min-width:1000px){
#wrapper{
	width: 100%;
	max-width: 1200px;
	margin: 60px auto 0;
	position: relative;
	z-index: 1;
}

.bg_01{
	background: linear-gradient(to bottom, #1f0605, #58411c);
	padding-bottom: 60px;
}

/* PC > ヘッダー
-------------------------------------------------- */
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.h_inner{
	box-sizing: border-box;
	padding: 10px 0;
	height: 60px;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.h_inner .logo a{
	display: block;
}

.h_inner .logo img{
	height: 100%;
	max-height: 40px;
	width: auto;
}

/* ドロワーメニュー > ボタン
------------------------------ */
.open-btn1{
	position: relative;
	cursor: pointer;
	width: 30px;
	height: 40px;
	z-index: 10;
}

.open-btn1 span{
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 0;
	height: 5px;
	transform: scaleY(0.5) translateY(1px);
	background: #333333;
	width: 100%;
}

.open-btn1 span:nth-of-type(1){top: 8px;}
.open-btn1 span:nth-of-type(2){top: 18px;}
.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

.open-btn1.active span:nth-of-type(1){
	top: 13px;
	right: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 120%;
	height: 3px;
}

.open-btn1.active span:nth-of-type(2){
	opacity: 0;
}

.open-btn1.active span:nth-of-type(3){
	top: 25px;
	right: 0px;
	transform: translateY(-6px) rotate(45deg);
	width: 120%;
	height: 3px;
}

/* ドロワーメニュー > 背景
------------------------------ */
.nav-bg{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	transition: all 0.3s;
}

.nav-bg.bg-active{
	display: block;
	transition: all 0.3s;
}

#sp-g-nav{display: none;}

.navWrap{
	display: block;
	box-sizing: border-box;
	position: fixed;
	z-index: 999;
	background-color: #f1f1f1;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	width: 100%;
	top: 0;
	right: -100%;
	transition: all 0.3s;
	padding: 80px 0 0;
}

.navWrap.panel-active{
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	transition: all 0.3s;
	padding: 80px 0 0;
}

/* ドロワーメニュー > 内部
------------------------------ */
.navInner{
	display: block;
	box-sizing: border-box;
	padding: 40px;
	background: #ffffff;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.navInner h2{
	display: block;
	box-sizing: border-box;
	padding: 15px 0;
	font-weight: 600;
	font-size: 18px;
	position: relative;
	z-index: 1;
	text-align: left;
	color: #333333;
	cursor: pointer;
}

.navInner h2::before{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 7px;
	width: 2px;
	height: 14px;
	margin-top: -7px;
	background-color: #cc0000;
	transition: 0.2s;
}

.navInner h2.open::before{
	transform: rotate(90deg);
	opacity: 0;
}

.navInner h2::after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0px;
	width: 14px;
	height: 2px;
	margin-top: -1px;
	background-color: #cc0000;
}

.navInner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	text-decoration: none;
	margin-top: 20px;
}

.navInner li a:hover{
	text-decoration: underline;
}

.navInner li a i{
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -8px;
}

#head_nav{
	box-sizing: border-box;
	background: #ffffff;
}

#head_nav h2.line{
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #cccccc;
}

.mT20{
	margin-top: 20px;
}

.linkFlex{
	display: flex;
	justify-content: center;
	border-top: 1px solid #cccccc;
	margin-top: 30px;
	padding-top: 30px;
}

.linkFlex a.item,
.linkFlex a.shop{
	display: block;
	width: 35%;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	padding: 15px 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin: 10px 20px;
}

.linkFlex a.item{background: #cc0000;}
.linkFlex a.shop{background: #065fd4;}

.linkFlex a.item:hover,
.linkFlex a.shop:hover{
	margin: 13px 20px 7px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
}

.linkFlex a i{
	position: absolute;
	top: 50%;
	right: 20px;
}

.linkFlex a.item i{
	font-size: 20px;
	margin-top: -10px;
}

.linkFlex a.shop i{
	font-size: 16px;
	margin-top: -8px;
}

/* PC > コンテンツ
-------------------------------------------------- */
#contents{
	box-sizing: border-box;
	width: 100%;
	background: #ffffff;
	padding: 40px 0;
	margin-left: auto;
}

.pd4{
	padding: 0 40px;
}

.pcFlex{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.soldout{
	display: flex;
	box-sizing: border-box;
	align-items: center;
	border: 2px solid #cc0000;
	border-radius: 10px;
	padding: 10px 20px;
	margin-right: 20px;
}

.soldout i{
	font-size: 23px;
	color: #cc0000;
	margin-right: 10px;
}

.soldout p{
	font-size: 14px;
}

.soldout p span{
	color: #cc0000;
	font-weight: 700;
}

.soldout p a{
	color: #0057d2;
	font-weight: 700;
	text-decoration: underline;
}

.ttl_at{
	box-sizing: border-box;
	background: #ffffff;
	padding: 20px 40px;
}

.mainTitle{
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	line-height: 1.3em;
}

.collaboration_at{
	display: flex;
	justify-content: center;
	box-sizing: border-box;
	align-items: center;
	border: 2px solid #cccccc;
	border-radius: 10px;
	padding: 10px 0;
	background: #ffffff;
	width: 270px;
}

.navInner .collaboration_at{
	margin-bottom: 40px;
}

.collaboration_at i{
	font-size: 23px;
	color: #cc0000;
	margin-right: 10px;
}

.collaboration_at p a{
	color: #0057d2;
	font-weight: 700;
	text-decoration: underline;
	font-size: 14px;
}

.mainVisual span:nth-child(1){display: block;}
.mainVisual span:nth-child(2){display: none;}

.mainVisual img{
	width: 100%;
}

.linkWrap{
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 30px 0;
	background: #000000;
}

.linkWrap a{
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	width: 47%;
	max-width: 380px;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin: 10px 25px;
}
.linkWrap a:nth-child(1){background: #c31d14;}
.linkWrap a:nth-child(2){background: #2f5dd2;}

.linkWrap a i{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 2;
	font-size: 20px;
}
.linkWrap a:nth-child(1) i{font-size: 20px; margin-top: -10px;}
.linkWrap a:nth-child(2) i{font-size: 16px; margin-top: -8px;}

.linkWrap a:hover{
	transform: translateY(3px);
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
}

.linkBlock{
	box-sizing: border-box;
	padding: 20px 40px 0;
}

.linkBlock a{
	display: block;
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	padding: 20px 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}

.linkBlock a.item{
	background: #cc0000;
	margin: 20px auto 0;
}

.linkBlock a.shop{
	background: #065fd4;
	margin: 20px auto 0;
}

.linkBlock a:hover{
	margin: 23px auto -3px;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
}

.linkBlock a i{
	position: absolute;
	top: 50%;
	right: 20px;
}
.linkBlock a.item i{
	font-size: 24px;
	margin-top: -12px;
}

.linkBlock a.shop i{
	font-size: 20px;
	margin-top: -10px;
}

.overview{
	font-size: 16px;
	line-height: 1.8em;
	margin-top: 40px;
}

h2{
	display: block;
	color: #dbc780;
	font-size: 32px;
	line-height: 1em;
	font-weight: 800;
	text-align: center;
}

h2 span{
	display: block;
	font-size: 18px;
	color: #ffffff;
	line-height: 1em;
	font-weight: 600;
	margin-top: 10px;
}

#campaign{
	padding: 50px 0;
}

#campaign h2{
	text-align: center;
	font-size: 35px;
	line-height: 35px;
	font-weight: 600;
	color: #dbc780;
}

#campaign h2 span{
	display: block;
	color: #eee8d2;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	margin-top: 10px;
}

.campaign_inner{
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 50px auto 0;
	border: 2px solid #dbc780;
	border-radius: 10px;
	background: #ffffff;
	padding: 40px;
}

.cpImg{
	width: 50%;
	max-width: 540px;
}

.cpImg img{
	width: 100%;
}

.cpTxt{
	width: 50%;
	max-width: 538px;
}

.cpTxt h3{
	font-size: 26px;
	line-height: 1.3em;
}

.cpTxt p{
	font-size: 16px;
	line-height: 1.8em;
	margin-top: 20px;
}

.cpTxt a{
	display: block;
	box-sizing: border-box;
	background: #333333;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
	border-radius: 5px;
	margin: 20px auto 0;
	padding: 15px 0;
	text-decoration: none;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 #ccc;
}

.cpTxt a i{
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 20px;
	transition: 0.3s;
}

.cpTxt a:hover{
	margin: 23px auto -3px;
	box-shadow: 0 2px 5px 0 #ccc;
}

/* PC > ダーツライブカード
-------------------------------------------------- */
.obi{
	box-sizing: border-box;
	background: #000000;
	padding: 100px 0;
}

.obi h2{
	color: #ffffff;
	text-align: center;
}

.obi h2+span{
	display: block;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	margin-top: 10px;
}

.card_back{
	background: url("../img/pattern_mhx_hunt_b.png") top center, #16276c;
	background-size: auto 30px;
	padding-bottom: 60px;
}

.flex_wrap{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.item_block{
	box-sizing: border-box;
	width: 48%;
	margin-top: 60px;
	padding: 60px 30px;
	border: 2px solid #dbc780;
	border-radius: 15px;
	background: url("../img/pattern_mhx_subjugation_b.png") top left repeat-x, url("../img/pattern_mhx_subjugation_b.png") bottom left repeat-x, #ffffff;
	background-size: auto 20px;
	box-shadow: inset 0 0 20px 0 #d2c3a4; 
}

.slick-prev{
	height: 30px;
	left: -35px;
	top: 44.5%;
	z-index: 100;
}

.slick-next{
	height: 30px;
	right: -35px;
	top: 44.5%;
	z-index: 100;
}

.slick-prev::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 5px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(25%) rotate(-135deg);
	opacity: 1;
}

.slick-next::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 5px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
	opacity: 1;
}

.kanbai .slick-list{
	position: relative;
	z-index: 1;
}
.kanbai .slick-list::after{
	content: "好評につき完売";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	color: #ffffff;
	font-size: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.slider{
	width: 90%;
	margin: 0 auto !important;
}

.slider img{
	height: 20rem;
	width: 25rem;
	object-fit: contain;
	margin: auto;
}

.slick-dotted.slick-slider{
	margin: 0;
}

.slick-dots{
	margin-top: 15px;
	position: static;
}

.slick-dots li{
	width: 10px;
	height: 10px;
	margin: 0 8px;
}

.slick-dots li button{
	width: 10px;
	height: 10px;
	background: #000000;
	border-radius: 100%;
}

.slick-dots li button:before{
	display: none;
}

.slick-active button{
	background: #cc0000 !important;
}

.itemName{
	margin-top: 20px;
}

.price{
	display: block;
	color: #cc0000;
	font-size: 16px;
	font-weight: 600;
	margin-top: 20px;
}

.schedule{
	margin-top: 20px;
	padding-top: 20px;
	padding-bottom: 10px;
	border-top: 1px solid #cccccc;
}

.schedule li{
	font-size: 16px;
	line-height: 2em;
}

.schedule li span{
	font-weight: 600;
}

.itemLink{
	display: flex;
	justify-content: space-between;
}

.itemPage{
	display: block;
	background: #cc0000;
	color: #ffffff;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	width: 75%;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin-top: 20px;
}

.itemPage i{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 2;
	font-size: 20px;
	margin-top: -10px;
}

.itemPage:hover{
	margin: 22px 0 -2px;
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
}

.movie{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #333333;
	color: #ffffff;
	text-align: center;
	font-size: 30px;
	text-decoration: none;
	width: 20%;
	border-radius: 5px;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	border: none;
	margin-top: 20px;
	cursor: pointer;
}

.movie:hover{
	margin: 22px 0 -2px;
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.2);
}

.modal{
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
}

.modal-box{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	margin: auto;
	animation-name: modalopen;
	animation-duration: 1s;
	position: relative;
	animation: show 0.3s linear 0s;
	padding: 80px 0 0;
	background: #f1f1f1;
}

.modal-box ul{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #ffffff;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	height: 90%;
	margin: 0 auto;
	padding: 40px;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}

.modal-box li{
		position: relative;
		aspect-ratio: 16 / 9;
		width: 48%;
		height: fit-content;
		margin: 0 1%;
}

/*#modal-06 .modal-box ul{
	height: max-content;
}

#modal-06 .modal-box li{
	width: 100%;
	margin: 0;
}*/

/*.modal-box li:last-child{
	margin-top: 2%;
}*/

.modal-box iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

@keyframes show{
	from{opacity: 0;}
	to{opacity: 1;}
}

.modalClose{
	display: block;
	box-sizing: border-box;
	border: 0;
	font-size: 30px;
	font-weight: normal;
	line-height: 40px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #333333;
	color: #ffffff;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

/* PC > ダーツセット
-------------------------------------------------- */
.darts_wrap{
	background: url("../img/dartsset_bgi_zinogre_pc.png") calc(50% - 150px) bottom no-repeat,
					url("../img/pattern_zinogre.png") top center repeat-x,
					url("../img/pattern_zinogre.png") bottom center repeat-x,
					url("../img/dartsset_bgi_thunder_pc.png") center top no-repeat,
					url("../img/bgi_zinogre.png");
	background-size: auto 68%, auto 30px, auto 30px, auto, cover;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 100px 0;
}

.monster.pcNone{display: none;}
.monster.spNone{display: block;}

.dartsInner{
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.dartsInner .item_block{
	margin-top: 0;
}

.dartsInner h3,
.dartsInner .price,
.dartsInner .schedule li{
	text-align: left;
}

.dartsR{
	width: 48%;
}

.dartsR span{
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.dartsR span img{
	width: 100%;
}

.dartsR span:nth-child(1) img{
	width: 80%;
}

/* PC > フッター
-------------------------------------------------- */
footer{
	display: none;
}

.copyright{
	background: #000000;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	padding: 10px 0;
}
}

/* SP
-------------------------------------------------- */
@media screen and (max-width:999px){
.bg_01{
	background: linear-gradient(to bottom, #ffffff 50%, #58411c 50%);
	padding-bottom: 60px;
}

/* SP > ヘッダー
-------------------------------------------------- */
header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
	background: #ffffff;
}

.h_inner{
	box-sizing: border-box;
	padding: 10px 20px;
	height: 60px;
	width: 100%;
	max-width: 1300px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.h_inner .logo a{
	display: block;
}

.h_inner .logo img{
	height: 100%;
	max-height: 40px;
	width: auto;
}

/* ドロワーメニュー > ボタン
------------------------------ */
.open-btn1{
	position: relative;
	cursor: pointer;
	width: 30px;
	height: 40px;
	z-index: 10;
}

.open-btn1 span{
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 0;
	height: 5px;
	transform: scaleY(0.5) translateY(1px);
	background: #333333;
	width: 100%;
}

.open-btn1 span:nth-of-type(1){top: 8px;}
.open-btn1 span:nth-of-type(2){top: 18px;}
.open-btn1 span:nth-of-type(3){top: 28px; width: 70%;}

.open-btn1.active span:nth-of-type(1){
	top: 13px;
	right: 0;
	transform: translateY(6px) rotate(-45deg);
	width: 120%;
	height: 3px;
}

.open-btn1.active span:nth-of-type(2){
	opacity: 0;
}

.open-btn1.active span:nth-of-type(3){
	top: 25px;
	right: 0px;
	transform: translateY(-6px) rotate(45deg);
	width: 120%;
	height: 3px;
}

/* ドロワーメニュー > 背景
------------------------------ */
.nav-bg{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	transition: all 0.3s;
}

.nav-bg.bg-active{
	display: block;
	transition: all 0.3s;
}

#sp-g-nav{display: none;}

.navWrap{
	display: block;
	box-sizing: border-box;
	position: fixed;
	z-index: 999;
	background-color: #f1f1f1;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	width: 100%;
	top: 0;
	right: -100%;
	transition: all 0.3s;
	padding: 80px 0 0;
}

.navWrap.panel-active{
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	transition: all 0.3s;
	padding: 80px 0 0;
	overflow-y: scroll;
}

/* ドロワーメニュー > 内部
------------------------------ */
#head_nav{
	box-sizing: border-box;
	padding: 10px 20px;
	background: #ffffff;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}

.navInner{
	padding: 0 20px;
}

.navInner h2{
	display: block;
	box-sizing: border-box;
	padding: 15px 0;
	font-weight: 600;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

.navInner h2::before{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 6px;
	width: 2px;
	height: 14px;
	margin-top: -7px;
	background-color: #cc0000;
	transition: 0.2s;
}
.navInner h2.open::before{
	transform: rotate(90deg);
	opacity: 0;
}

.navInner h2::after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0px;
	width: 14px;
	height: 2px;
	margin-top: -1px;
	background-color: #cc0000;
}

.navInner ul{
	display: none;
	margin-bottom: 15px;
}

.navInner li a{
	display: block;
	box-sizing: border-box;
	position: relative;
	padding: 15px 15px 15px 0 !important;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #cccccc;
	color: #333333;
	text-decoration: none;
}

.navInner li i{
	position: absolute;
	right: 0;
	top: 50%;
	font-size: 14px;
	margin-top: -7px;
}

.navInner li span{
	font-size: 13px;
	margin-left: 5px;
}

.linkFlex{
	margin-top: 30px;
}

.linkFlex a.item,
.linkFlex a.shop{
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	padding: 15px 0;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin-bottom: 20px;
}

.linkFlex a.item{background: #cc0000;}
.linkFlex a.shop{background: #065fd4;}

.linkFlex a i{
	position: absolute;
	top: 50%;
	right: 20px;
}

.linkFlex a.item i{
	font-size: 18px;
	margin-top: -9px;
}

.linkFlex a.shop i{
	font-size: 14px;
	margin-top: -7px;
}

/* SP > コンテンツ
-------------------------------------------------- */
#contents{
	box-sizing: border-box;
	width: 100%;
	background: #ffffff;
	padding: 80px 0 0;
	margin-left: auto;
}

.mainTitle{
	font-size: 20px;
	font-weight: 600;
	padding: 80px 20px 20px;
	background: #ffffff;
	line-height: 1.3em;
}

.soldout{
	display: flex;
	box-sizing: border-box;
	align-items: center;
	border: 2px solid #cc0000;
	border-radius: 10px;
	padding: 10px 15px;
	margin: 0 auto 20px;
	width: 90%;
}

.soldout i{
	font-size: 23px;
	color: #cc0000;
	margin-right: 10px;
}

.soldout p{
	font-size: 14px;
}

.soldout p span{
	color: #cc0000;
	font-weight: 700;
}

.soldout p a{
	color: #0057d2;
	font-weight: 700;
	text-decoration: underline;
}

.collaboration_at{
	display: flex;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	border: 2px solid #cccccc;
	border-radius: 10px;
	padding: 10px 0;
	margin: 0 auto 20px;
	background: #ffffff;
	width: 75%;
}

.navInner .collaboration_at{
	margin-bottom: 40px;
}

.collaboration_at i{
	font-size: 23px;
	color: #cc0000;
	margin-right: 10px;
}

.collaboration_at p a{
	display: block;
	color: #0057d2;
	font-weight: 700;
	text-decoration: underline;
	font-size: 14px;
}

.mainVisual span:nth-child(1){display: none;}
.mainVisual span:nth-child(2){display: block;}

.mainVisual img{
	width: 100%;
}

.linkWrap{
	width: 100%;
	margin: 0 auto;
	background: #080808;
	padding: 20px 0;
}

.linkWrap a{
	display: block;
	color: #ffffff;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	width: 90%;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
}
.linkWrap a:nth-child(1){background: #c31d14; margin: 0 auto 20px;}
.linkWrap a:nth-child(2){background: #2f5dd2; margin: 0 auto 20px;}

.linkWrap a i{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 2;
	font-size: 20px;
}
.linkWrap a:nth-child(1) i{font-size: 20px; margin-top: -10px;}
.linkWrap a:nth-child(2) i{font-size: 16px; margin-top: -8px;}

#campaign{
	background: linear-gradient(to bottom, #1f0605, #58411c);
	padding: 40px 0;
}

#campaign h2{
	text-align: center;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
	color: #dbc780;
}

#campaign h2 span{
	display: block;
	color: #eee8d2;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	margin-top: 10px;
}

.campaign_inner{
	box-sizing: border-box;
	width: 90%;
	margin: 40px auto 0;
	border: 2px solid #dbc780;
	border-radius: 10px;
	background: #ffffff;
	padding: 5%;
}

.cpImg img{
	width: 100%;
}

.cpTxt h3{
	font-size: 20px;
	margin-top: 20px;
	line-height: 1.3em;
}

.cpTxt p{
	font-size: 14px;
	line-height: 1.8em;
	margin-top: 20px;
}

.cpTxt a{
	display: block;
	box-sizing: border-box;
	background: #333333;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
	border-radius: 5px;
	margin: 20px auto 0;
	padding: 10px 0;
	text-decoration: none;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 #ccc;
}

.cpTxt a i{
	position: absolute;
	top: 50%;
	margin-top: -8px;
	right: 20px;
}

/* SP > ダーツライブカード
-------------------------------------------------- */
.obi{
	box-sizing: border-box;
	background: #000000;
	padding: 50px 0;
}

.obi h2{
	color: #ffffff;
	text-align: center;
	font-size: 26px;
}

.obi h2+span{
	display: block;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	margin-top: 5px;
}

.card_back{
	background: url("../img/pattern_mhx_hunt_b.png") top center, #16276c;
	background-size: auto 20px;
	padding-bottom: 60px;
}

.flex_wrap{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.item_block{
	box-sizing: border-box;
	width: 90%;
	margin-top: 60px;
	padding: 30px 20px;
	border: 2px solid #dbc780;
	border-radius: 15px;
	background: url("../img/pattern_mhx_subjugation_b.png") top left repeat-x, url("../img/pattern_mhx_subjugation_b.png") bottom left repeat-x, #ffffff;
	background-size: auto 15px;
	box-shadow: inset 0 0 20px 0 #d2c3a4;
	margin: 20px auto 0;
}

.slick-prev{
	height: 30px;
	left: -25px;
	top: 44.5%;
	z-index: 100;
}

.slick-next{
	height: 30px;
	right: -25px;
	top: 44.5%;
	z-index: 100;
}

.slick-prev::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 3px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(25%) rotate(-135deg);
	opacity: 1;
}

.slick-next::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 3px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
	opacity: 1;
}

.kanbai .slick-list{
	position: relative;
	z-index: 1;
}
.kanbai .slick-list::after{
	content: "好評につき完売";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	color: #ffffff;
	font-size: 18px;
	position: absolute;
	top: 0;
	left: 0;
}

.slider{
	width: 90%;
	margin: 0 auto !important;
}

.slider img{
	height: 15rem;
	width: 15rem;
	object-fit: contain;
	margin: auto;
}

.slick-dotted.slick-slider{
	margin: 0;
}

.slick-dots{
	margin-top: 10px;
	position: static;
}

.slick-dots li{
	width: 10px;
	height: 10px;
	margin: 0 6px;
}

.slick-dots li button{
	width: 10px;
	height: 10px;
	background: #000000;
	border-radius: 100%;
}

.slick-dots li button:before{
	display: none;
}

.slick-active button{
	background: #cc0000 !important;
}

.itemName{
	font-size: 18px;
	margin-top: 10px;
}

.price{
	display: block;
	color: #cc0000;
	font-size: 16px;
	font-weight: 600;
	margin-top: 10px;
}

.schedule{
	margin-top: 20px;
	padding-top: 15px;
	padding-bottom: 10px;
	border-top: 1px solid #cccccc;
}

.schedule li{
	font-size: 14px;
	line-height: 2em;
}

.schedule li span{
	font-weight: 600;
}

.itemLink{
	display: flex;
	justify-content: space-between;
}

.itemPage{
	display: block;
	background: #cc0000;
	color: #ffffff;
	text-align: center;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	text-decoration: none;
	width: 70%;
	position: relative;
	z-index: 1;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	margin-top: 20px;
}

.itemPage i{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 2;
	font-size: 20px;
	margin-top: -10px;
}

.movie{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #333333;
	color: #ffffff;
	text-align: center;
	font-size: 22px;
	text-decoration: none;
	width: 25%;
	border-radius: 5px;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	border: none;
	margin-top: 20px;
	cursor: pointer;
}

.modal{
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}

.modal-box{
	box-sizing: border-box;
	width: 100%;
	max-width: 600px;
	height: 100%;
	margin: auto;
	animation-name: modalopen;
	animation-duration: 1s;
	position: relative;
	animation: show 0.3s linear 0s;
	padding: 60px 0 0;
	background: #f1f1f1;
}

.modal-box ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: #ffffff;
	box-sizing: border-box;
	width: 90%;
	/*height: 90%;*/
	margin: 0 auto;
	padding: 20px;
	overflow-y: scroll;
	box-shadow: 0 5px 5px 0 rgba(0,0,0,0.2);
	position: absolute;
	left: 50%;
	margin-left: -45%;
}

.modal-box li{
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56%;
}

.modal-box li:not(:last-child){
	margin-bottom: 20px;
}

.modal-box iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/*#modal-06 .modal-box ul{
	margin: auto;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: max-content;
}*/

@keyframes show{
	from{opacity: 0;}
	to{opacity: 1;}
}

.modalClose{
	display: block;
	box-sizing: border-box;
	border: 0;
	font-size: 30px;
	font-weight: normal;
	line-height: 40px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #333333;
	color: #ffffff;
	position: absolute;
	top: 10px;
	right: 20px;
}

/* SP > ダーツセット
-------------------------------------------------- */
.darts_wrap{
	background: url("../img/dartsset_bgi_zinogre_sp.png") center top 200px no-repeat, url("../img/dartsset_bgi_thunder_sp.png") center top no-repeat, url("../img/bgi_zinogre.png");
	background-size: contain, auto, cover;
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 60px 0;
}

.darts_wrap::before,
.darts_wrap::after{
	display: block;
	content: "";
	width: 100%;
	height: 30px;
	background: url("../img/pattern_zinogre.png") top center repeat-x;
	background-size: auto 30px;
	position: absolute;
	left: 0;
	z-index: 10;
}

.darts_wrap::before{top: 0;}
.darts_wrap::after{bottom: 0;}

.monster.pcNone{display: none;}
.monster.spNone{display: block;}

.dartsInner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column-reverse;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.dartsInner .item_block{
	margin-top: 350px;
}

.dartsInner h3,
.dartsInner .price,
.dartsInner .schedule li{
	text-align: left;
}

.dartsR{
	width: 90%;
	margin: 0 auto;
}

.dartsR span{
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.dartsR span img{
	width: 100%;
}

.dartsR span:nth-child(1) img{
	width: 80%;
}

/* SP > フッター
-------------------------------------------------- */
footer{
	padding: 40px 20px;
	background: #000000;
}

footer > a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	background: #ffffff;
	border-radius: 5px;
	margin-bottom: 20px;
	padding: 15px 20px;
	text-decoration: none;
	font-size: clamp(16px, 1.5vw, 18px);
	color: #333333;
	font-weight: 600;
}

footer > a i{
	font-size: 24px;
}

.sns{
	display: flex;
	box-sizing: border-box;
	justify-content: space-between;
	padding: 0 20px;
	margin-top: 40px;
}

.sns li{
	width: 18%;
}

.sns li a{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-radius: 100%;
	background: #333333;
	aspect-ratio: 1;
}

.sns li a img{height: 60%;}
.sns li:nth-child(1) a img{height: 50%;}

.official_app{
	font-size: clamp(16px, 1.5vw, 18px);
	color: #ffffff;
	font-weight: 600;
	margin-top: 40px;
	text-align: center;
}

.download{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.download a{
	display: block;
	margin: 0 10px;
}

.download img{
	width: 100%;
	height: 80px;
	object-fit: contain;
}

.copyright{
	background: #333333;
	color: #ffffff;
	font-size: clamp(14px, 1.3vw, 16px);
	text-align: center;
	padding: 10px 0;
}
}