/* CSS Document */

/* ALL_setting
================================================== */
*{
	margin:0;
	padding:0;
	font-family: noto-sans-cjk-jp, sans-serif, monospace;
	font-size: 16px;
}

.wrapper{
	background-color: white;
}

img{vertical-align: top;}

.pc{ display: inherit; }
.sp{ display: none; }
@media screen and (max-width: 699px){
.pc{ display: none; }
.sp{ display: inherit; }
}

/* font_setting
================================================== */

.dnp-shuei-mgothic-std{font-family: dnp-shuei-mgothic-std, sans-serif;}
.noto-sans-cjk-jp{font-family: noto-sans-cjk-jp, sans-serif;}
.ab-tombo-bold{font-family: ab-tombo-bold, sans-serif;}

/* loading_setting
================================================== */
#loader {
	width: 100%;
	height: 100vh;
	display: table;
	position: fixed;
	_position: absolute;
	z-index: 9999;
}

.loader_box{
	width: 20%;
	margin: auto;
	height: 100vh;
	display: table;
}

.loader_table_cell{
	display: table-cell;
	vertical-align: middle;
}

#fade {
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size:cover;
	-webkit-background-size:cover;
	-o-background-size:cover;
	-ms-background-size:cover;
	width:100%;
	height:100%;
	display: none;
	
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 9998;
}

.fade_normal{
	background-color: white!important;
	background-image: url("../image/fes2024_white_bg.jpg");
	background-size: cover;
}

@media screen and (max-width: 1299px){
	.loader_box{
		width: 50%;
		margin: auto;
		height: 100vh;
		display: table;
	}
}

/* scroll_animation_setting
================================================== */

.scroll_fade{
	opacity: 0;
}

.scroll_fade_up{
	opacity: 0;
}

.scroll_fade_down{
	opacity: 0;
	position: relative;
	z-index: 1;
}

.scroll_fade_left{
	opacity: 0;
}

.scroll_fade_right{
	opacity: 0;
}

.slick-active{
    animation-name: fadeanime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.main_slide_slick .slick-list .slick-track .slick-active{
    animation-name: none;
    animation-duration:3s;
    animation-fill-mode:forwards;
    opacity: 0;
}

.fade {
    animation-name: fadeanime;
    animation-duration:0s;
    animation-fill-mode:forwards;
    opacity: 0;
}

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


.fadeup{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

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

.fadedown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-50px);
  }

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

.fadeleft{
animation-name:fadeLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

.faderight{
animation-name:fadeRightAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/* menu_wrapper
================================================== */

.menu_wrapper{
	width: 100%;
	position: fixed;
	z-index: 9;
}

.menu_box{
	width: 80%;
	padding: 0.5% 1.5% 0.5%;
	border-radius: 50px;
	margin: 10px auto 0;
	display:flex;
	justify-content:space-between;
	background-color: #0097e6;
	box-sizing: border-box;
}

.menu_title{
}

.menu_title_img{
	float: left;
	width: 180px;
	line-height: 1em;
}

.menu_title_text{
	float: left;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	padding-left: 15px;
	font-weight: 600;
	color: white;
}

.menu_text{
	clear: both;
    white-space: nowrap;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-size: 1em;
	line-height: 1.6em;
	color: white;
	letter-spacing: 0.05em;
}

.menu_text a{
	font-family: dnp-shuei-mgothic-std, sans-serif;
	text-decoration: none;
	font-size: 1em;
	line-height: 1em;
	color: white;
}

@media screen and (max-width: 1599px){
	.menu_box{
		width: 90%;
		padding: 0.5% 1.5% 0.5%;
		border-radius: 50px;
		margin: 20px auto 0;
		display:flex;
		justify-content:space-between;
		background-color: #0097e6;
		box-sizing: border-box;
	}
	.menu_title_text{
		float: left;
		font-family: dnp-shuei-mgothic-std, sans-serif;
		font-size: 0.8em;
		line-height: 2.2em;
		padding-left: 15px;
		font-weight: 600;
		color: white;
	}

	.menu_text{
		clear: both;
		white-space: nowrap;
		font-family: dnp-shuei-mgothic-std, sans-serif;
		font-size: 0.8em;
		line-height: 2.2em;
		color: white;
		letter-spacing: 0.05em;
	}
}

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

/* particles_setting
================================================== */

.particles_box{
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: absolute;
	pointer-events: none;
}

#particles-js{ 
	position:absolute;
	z-index:6;
	width: 100%;
	height: 100%;
	display: block;
}

@media screen and (max-width: 699px){
	#particles-js{ 
		position:absolute;
		z-index:6;
		width: 300%;
		height: 80%;
		display: block;
	}
}

/* UNITY_setting
================================================== */
.unity_box{
	margin: auto ;
	padding-top: 2%;
	padding-bottom: 0%;
	position: relative;
	display: table;
}

#unity-container{
	height: 40vw;
	width: calc(40vw * 0.75);
	margin: auto;
	min-width: 600px;
	min-height: 800px;
}

@media screen and (max-width: 699px){
	.booth_wrapper{
		padding-top: 4%;
	}
	
	#unity-container{
		height: 110vw;
		width: calc(110vw * 0.75);
		margin: auto;
		min-width: 100%;
		min-height: 100%;
	}
	
	.banner_style1{
		width: 75%;
		margin: auto;
		padding-bottom: 4%;
	}

}

/* twitter_setting
================================================== */

.twitter_box{
	width: 800px;
	margin: auto;
	padding-bottom: 50px;
	text-align: right;
}

.twitter_text_area{
	width: 100%;
	padding: 10px 0;
}

.twitter_text_style1{
	font-size: 20px;
	text-align: left;
	user-select: none;
	color: #fff;
  text-shadow: 
     3px  3px 10px #0497fe,
     3px  0px 10px #0497fe,
     0px  3px 10px #0497fe,
     3px -3px 10px #0497fe,
    -3px  3px 10px #0497fe,
    -3px -3px 10px #0497fe,
    -3px -0px 10px #0497fe,
    -0px -3px 10px #0497fe;
}

#shareTextArea{
	resize: none;
	width: 100%;
	min-height: 88px;
	padding: 4px 8px;
	border-radius: 0.67em;
	background-color: white;
	border: 2px solid #29a3e7;
	user-select: none;
}
#shareTextArea::selection{ background:none; } 


#twitter{
	border-radius: 2em;
	background-color: #1da1f2;
	border: 0;
	padding: 8px 14px;
	color: white;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
}

#twitter:hover{
	opacity: 0.8;
}

@media screen and (max-width: 699px){
	.twitter_box{
		width: 80%;
		margin: auto;
		padding-bottom: 50px;
		text-align: right;
	}
	.twitter_text_style1{
		font-size: 16px;
		text-align: left;
		user-select: none;
		color: #fff;
	  text-shadow: 
		 3px  3px 10px #0497fe,
		 3px  0px 10px #0497fe,
		 0px  3px 10px #0497fe,
		 3px -3px 10px #0497fe,
		-3px  3px 10px #0497fe,
		-3px -3px 10px #0497fe,
		-3px -0px 10px #0497fe,
		-0px -3px 10px #0497fe;
	}
}

/* first_view_setting
================================================== */

.first_view_wrapper{
	width: 100%;
}

.first_view_img_box{
	width: 100%;
	margin: auto;
	position: relative;
	overflow: hidden;
	z-index: 5;
}

.first_view_img{
	width: 140%;
	margin: auto;
	position: relative;	
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
	overflow: hidden;
    top:0%;
    left:50%;
    transform: translate(-50%,-0%);
	border-bottom: 8px solid #dfdfdf;
}

.first_view_img{
	content: "";
	display: block;
	padding-top: 47%;
}

.first_view_img_sp{
	display: none;
}

.first_view_img img{
	position: absolute;
	top: 0;
	width: 72%;
	height: 100%;
    left:50%;
    transform: translate(-50%,-0%);
	object-fit: cover;
}

.first_view_logo{
	position: absolute;
	top: 30%;
	right: 8%;
	z-index: 8;
	width: 39%;
}

.first_view_logo_text{
	text-align: center;
	background-color: white;
	font-size: 1.2em;
	font-weight: 800;
	width: 80%;
	margin: 14px auto 0;
	color: #0097e6;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	border: 2px solid #0097e6;
	border-radius: 40px;	
}

.first_view_logo_sp{
	display: none;
}

@media screen and (max-width: 1199px){
	.first_view_logo{
		position: absolute;
		top: 15%;
		right: 8%;
		z-index: 8;
		width: 39%;
	}
	.first_view_logo_text{
		text-align: center;
		background-color: white;
		font-size: 1em;
		line-height: 1.4em;
		padding: 8px 15px;
		font-weight: 800;
		width: 100%;
		margin: 14px auto 0;
		color: #0097e6;
		font-family: dnp-shuei-mgothic-std, sans-serif;
		border: 2px solid #0097e6;
		border-radius: 40px;	
	}

}

@media screen and (max-width: 699px){
	.first_view_img{display: none;}
	.first_view_img_sp{
		width: 140%;
		margin: auto;
		position: relative;	
		border-bottom-left-radius: 50%;
		border-bottom-right-radius: 50%;
		overflow: hidden;
		top:0%;
		left:50%;
		transform: translate(-50%,-0%);
		border-bottom: 8px solid #dfdfdf;
		display: block;
		content: "";
		text-align: center;
	}
	.first_view_img_sp img{width: 72%; margin: auto;}
	.first_view_logo{
		position: absolute;
		top: 300px;
		right: auto;
		left: 50%;
		transform: translate(-50%,-0%);
		z-index: 8;
		width: 90%;
	}
	.first_view_logo_text{
		text-align: center;
		background-color: white;
		font-size: 1em;
		line-height: 1.6em;
		font-weight: 800;
		width: 100%;
		padding:1% 4%;
		box-sizing: border-box;
		margin: 14px auto 0;
		color: #0097e6;
		font-family: dnp-shuei-mgothic-std, sans-serif;
		border: 2px solid #0097e6;
		border-radius: 40px;
		display: none;
	}
	.first_view_logo_sp{
		display: block;
		position: fixed;
		z-index: 9;
		width: 60%;
		left: 50%;
		transform: translate(-50%,-0%);
		padding-top: 2%;
		transition: all 0.5s ease 0s;
	}
	.menu_logo_fixed{
		width: 25%!important;
	}
}

/* circle_back_setting
================================================== */

.main_contents_1_wrapper{
	width: 100%;
	margin-top: -10%;
	position: relative;
	overflow: hidden;
	z-index: 4;
}

.main_contents_1_box{
	width: 300%;
	margin: auto;
	background-image:url("../image/fes2024_white_bg.jpg");
	background-size: 42%;
	background-repeat: no-repeat;
	background-color: white;
	background-position: center top;
	position: relative;	
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
    top:0%;
    left:50%;
    transform: translate(-50%,-0%);
	border-bottom: 0px solid #dfdfdf;
	padding-top: 13%;
	padding-bottom: 10%;
}

.main_contents_1{
	width: 24%;
	margin: auto;
}

.main_contents_2_wrapper{
	width: 100%;
	margin-top: -10%;
	position: relative;
	overflow: hidden;
	z-index: 3;
}

.main_contents_2_box{
	width: 350%;
	margin: auto;
	background-image:url("../image/fes2024_red_bg.jpg");
	background-size: 72%;
	background-repeat: no-repeat;
	background-color: #dc1948;
	background-position: center top;
	background-attachment: fixed;
	position: relative;	
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
	overflow: hidden;
    top:0%;
    left:50%;
    transform: translate(-50%,-0%);
	border-bottom: 0px solid #dfdfdf;
	padding-top: 13%;
	padding-bottom: 12%;
}

.main_contents_2{
	width: 24%;
	margin: auto;
}

.main_contents_3_wrapper{
	width: 100%;
	margin-top: -10%;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.main_contents_3_box{
	width: 400%;
	margin: auto;
	background-image:url("../image/fes2024_black_bg.jpg");
	background-size: 25%;
	background-repeat: no-repeat;
	background-color: #28353c;
	background-position: center top;
	background-attachment: fixed;
	position: relative;	
	border-bottom-left-radius: 50%;
	border-bottom-right-radius: 50%;
	overflow: hidden;
    top:0%;
    left:50%;
    transform: translate(-50%,-0%);
	border-bottom: 0px solid #dfdfdf;
	padding-top: 13%;
	padding-bottom: 6%;
}

.main_contents_3{
	width: 24%;
	margin: auto;
}

.main_contents_4_wrapper{
	width: 100%;
	margin-top: -10%;
	position: relative;
	overflow: hidden;
	z-index: 1;
	padding-top: 13%;
	background-image: url("../image/fes2024_white_bg.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;
}

@media screen and (max-width: 1199px){
	.main_contents_1_box{
		width: 350%;
		margin: auto;
		background-image:url("../image/fes2024_white_bg.jpg");
		background-size: 42%;
		background-repeat: no-repeat;
		background-color: white;
		background-position: center top;
		position: relative;	
		border-bottom-left-radius: 50%;
		border-bottom-right-radius: 50%;
		top:0%;
		left:50%;
		transform: translate(-50%,-0%);
		border-bottom: 0px solid #dfdfdf;
		padding-top: 13%;
		padding-bottom: 10%;
	}
	.main_contents_1{
		width: 28%;
		margin: auto;
	}
	.main_contents_2_box{
		width: 300%;
		margin: auto;
		background-image:url("../image/fes2024_red_bg.jpg");
		background-size: 72%;
		background-repeat: no-repeat;
		background-color: #dc1948;
		background-position: center top;
		background-attachment: fixed;
		position: relative;	
		border-bottom-left-radius: 50%;
		border-bottom-right-radius: 50%;
		overflow: hidden;
		top:0%;
		left:50%;
		transform: translate(-50%,-0%);
		border-bottom: 0px solid #dfdfdf;
		padding-top: 13%;
		padding-bottom: 12%;
	}
}

@media screen and (max-width: 699px){
	.main_contents_1_wrapper{
		width: 100%;
		margin-top: -20%;
		position: relative;
		overflow: hidden;
		z-index: 4;
	}

	.main_contents_1_box{
		width: 100%;
		margin: auto;
		background-image:url("../image/fes2024_white_bg.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-color: white;
		background-position: center top;
		position: relative;	
		border-bottom-left-radius: 0%;
		border-bottom-right-radius: 0%;
		top:0%;
		left:0%;
		transform: translate(0%,-0%);
		border-bottom: 0px solid #dfdfdf;
		padding-top: 25%;
		padding-bottom: 0%;
	}

	.main_contents_1{
		width: 90%;
		margin: auto;
	}
	.main_contents_2_wrapper{
		width: 100%;
		margin-top: 0%;
		position: relative;
		overflow: hidden;
		z-index: 3;
	}

	.main_contents_2_box{
		width: 100%;
		margin: auto;
		background-image:url("../image/fes2024_red_bg.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-color: #dc1948;
		background-position: center top;
		background-attachment: fixed;
		position: relative;	
		border-bottom-left-radius: 0%;
		border-bottom-right-radius: 0%;
		overflow: hidden;
		top:0%;
		left:0%;
		transform: translate(0%,-0%);
		border-bottom: 0px solid #dfdfdf;
		padding-top: 12%;
		padding-bottom: 4%;
	}

	.main_contents_2{
		width: 100%;
		margin: auto;
	}
	.main_contents_3_wrapper{
		width: 100%;
		margin-top: 0%;
		position: relative;
		overflow: hidden;
		z-index: 2;
	}

	.main_contents_3_box{
		width: 100%;
		margin: auto;
		background-image:url("../image/fes2024_black_bg.jpg");
		background-size: 100%;
		background-repeat: no-repeat;
		background-color: #28353c;
		background-position: center top;
		background-attachment: fixed;
		position: relative;	
		border-bottom-left-radius: 0%;
		border-bottom-right-radius: 0%;
		overflow: hidden;
		top:0%;
		left:0%;
		transform: translate(-0%,-0%);
		border-bottom: 0px solid #dfdfdf;
		padding-top: 13%;
		padding-bottom: 6%;
	}

	.main_contents_3{
		width: 100%;
		margin: auto;
	}
}

/* contents_setting
================================================== */

.top_goods_bt_box{
	width: 100%;
	margin: auto;
	margin: 4% auto;
}

.main_title_style1{
	font-family: ab-tombo-bold, sans-serif;
	font-weight: 400;
	font-size: 3em;
	color: #28353c;
	position: relative;
	text-align: center;
	display: table;
	margin: auto;
}

.main_title_icon_1{
	display: table-cell;
	content: '';
	width: 2px;
	height: 2px;
	background-color: #28353c;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

.main_title_icon_2{
	display: table-cell;
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	padding: 0 40px;
}

.main_title_icon_3{
	display: table-cell;
	content: '';
	width: 2px;
	height: 2px;
	background-color: #28353c;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}

.main_title_style2{
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 400;
	font-size: 0.9em;
	text-align: center;
	color: #28353c;
}

.main_title_style1_white{
	font-family: ab-tombo-bold, sans-serif;
	font-weight: 400;
	font-size: 3em;
	color: #fff;
	position: relative;
	text-align: center;
	display: table;
	margin: auto;
}

.main_title_icon_1_white{
	display: table-cell;
	content: '';
	width: 2px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

.main_title_icon_2_white{
	display: table-cell;
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	padding: 0 40px;
}

.main_title_icon_3_white{
	display: table-cell;
	content: '';
	width: 2px;
	height: 2px;
	background-color: #fff;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}

.main_title_style2_white{
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 400;
	font-size: 0.9em;
	text-align: center;
	color: #fff;
}

.title_color_1{
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	color: #e65900;
}

.title_color_2{
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	color: #0097e6;
}

.title_color_3{
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	color: #e60012;
}

.title_color_4{
	font-size: 1em;
	font-family: ab-tombo-bold, sans-serif;
	color: #DBCF18;
}

.pickup_wrapper{
	letter-spacing: -1em;
	margin: 1.5% 0;
	padding-bottom: 4%;
}

.pickup_box{
	width: 23%;
	position: relative;
	margin-bottom: 2%;
	z-index: 1;
	background-color: white;
	border-bottom: solid 1px #d2d2d2;
	border-left: solid 1px #d2d2d2;
	border-right: solid 1px #d2d2d2;
	border-top: solid 1px #d2d2d2;
	display: inline-block;
	padding: 0 0.5%;
	margin: 0 1%;
	vertical-align: top;
	text-align: left;
	border-radius: 20px;
	box-sizing: border-box;
	letter-spacing: normal;
}

.pickup_box:hover{
	opacity: 0.8;
}

.pickup_box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2;
}

.pickup_title{font-size: 0.9em; line-height: 1.5em;}

.pickup_text_box{
	padding-top: 15px;
	padding-bottom: 30px;
	padding-left: 15px;
	padding-right: 15px;
	
}

.pickup_img{
	margin-top: 6px;
}

.pickup_img img{
	border-radius: 14px;
}

.top_about_wrapper{
	padding-bottom: 0px;
}

.top_about_logo{
	width: 80%;
	margin: auto;
}

.top_about_text_box{
	text-align: center;
	padding-top: 2%;
	padding-bottom: 2%;
	line-height: 34px;
	font-size: 16px;
	color: #000;
	width: 90%;
	margin: auto;
}

.top_info_wrapper{
	padding-bottom: 0px;
}

.info_box_wrapper{
	width: 90%;
	margin: auto;
	letter-spacing: -1em;
}

.info_box_style1{
	width: 50%;
	padding: 0 2%;
	display: inline-block;
	box-sizing: border-box;
	letter-spacing: normal;
}

.info_box_title{
	text-align: center;
	border: 1px solid #000;
	color: #000;
	font-weight: bold;
	padding: 6px;
	border-radius: 20px;
}

.info_box_table{
	display: table;
	border-collapse:separate;
    border-spacing: 0px 20px;
}

.info_box_row{
	display: table-row;
	
}

.info_box_table_style1{
	display: table-cell;
	white-space: nowrap;
	background-color: #d70c18;
	padding: 10px;
	vertical-align: middle;
	color: white;
	font-weight: bold;
	font-size: 0.8em;
	border-radius: 10px;
	text-align: center;
}

.info_box_table_style1_2{
	display: table-cell;
	white-space: nowrap;
	background-color: #0097e6;
	padding: 10px;
	vertical-align: middle;
	color: white;
	font-weight: bold;
	font-size: 0.8em;
	border-radius: 10px;
	text-align: center;
}

.info_box_table_style2{
	display: table-cell;
	padding-left: 20px;
	vertical-align: middle;
	line-height: 30px;
}

.attention_wrapper{
	width: 90%;
	margin: auto;
}

.attention_box{
	padding: 1% 2%;
	box-sizing: border-box;
}

.attention_title{
	text-align: center;
	border: 1px solid #000;
	color: #000;
	font-weight: bold;
	padding: 6px;
	border-radius: 20px;
}

.attention_text{
	padding: 2% 0;
}

.attention_text p{
	font-size: 1.2em;
	font-weight: bold;
}

.attention_text span{

}

.attention_image{
	padding: 1% 0 2% 0;
}

.link_btn03{
	border-radius: 20px;
    width: 50%;
	text-align: center;
	margin: auto;
	padding: 1%;
	border:1px solid #000;
	font-size: 140%;
	font-weight: bold;
    color: #000;
    background-size: 200% 100%;	
	position: relative;
	z-index: 1;
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(230, 0, 18, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(230, 0, 18, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

.link_btn03:hover {
    background-color: #000;
    background-position: -100% 100%;
	color: white;
}

.link_btn03 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2;
}


.link_btn_red{
	border-radius: 20px;
    width: 96%;
	text-align: center;
	margin: auto;
	padding: 2%;
	border:1px solid #e60012;
	font-size: 140%;
	font-weight: bold;
    color: #e60012;
    background-size: 200% 100%;	
	position: relative;
	z-index: 1;
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(230, 0, 18, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(230, 0, 18, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
}

.link_btn_red:hover {
    background-color: #e60012;
    background-position: -100% 100%;
	color: white;
}

.link_btn_red a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2;
}

.game_box_wrapper{
	padding-top: 60px;
	padding-bottom: 60px;
}

.top_game_img{
	width: 30%;
	margin: auto;
}

.top_attention_text_box{
	width: 80%;
	padding: 2%;
	font-size: 20px;
	line-height: 36px;
	background-color: white;
	border-radius: 20px;
	margin:1% auto;
	
}

.top_attention_bt_box{
	width: 50%;
	margin: auto;
}

.top_attention_text_title_style1{
	text-align: center;
	color: #fff;
	font-size: 28px;
	width: 78%;
	margin: auto;
	padding: 1% 0% 0%;
	font-weight: bold;
}

.top_attention_text_title_style2{
	text-align: center;
	color: #000;
	font-size: 1.4rem;
	font-size: clamp(1rem, 3vw, 1.4rem);
	margin: auto;
	padding: 1% 0%;
	font-weight: bold;
}

.event_border{
	margin-top: 30px;
}

.brand_box{
	padding: 20px 0;
}


.brand_list_box{
	width: 94%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
}

.brand_list_box2{
	width: 50%;
	margin: 0;
	letter-spacing: -1em;
	text-align: left;
	padding-bottom: 14px;
}

.brand_list_box3{
	width: 40%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
	font-size: 22px;
}

.brand_list_icon_1{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #cd0505;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_2{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #0ECCAF;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_1_2{
	width: 96%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 90%;
	background-color: #cd0505;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_2_2{
	width: 96%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 90%;
	background-color: #0097e6;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}



.top_goods_footer_box{
	background-image: url("../image/2020_c_red_bg2.jpg");
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
	padding: 4% 0%;
}

.brand_list_box{
	width: 94%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
}


.brand_list_box3{
	width: 40%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
	font-size: 22px;
}

.brand_list_icon_1{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #cd0505;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_2{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #0ECCAF;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}



.campaign_text_style1{
	font-size: 1.6em;
	line-height: 1.6em;
	font-weight: bold;
	text-align: center;
}

.campaign_text_style2{
	font-size: 1.2em;
	line-height: 2em;
	letter-spacing: normal;
}

.campaign_goods_img_box{
	width: 80%;
	margin: auto;
	letter-spacing: -1em;
}

.campaign_goods_img{
	width: 50%;
	margin: auto;
	display: inline-block;
}

.event_image{
	width: 50%;
	margin: auto;
	padding: 3% 0 1%;
}

.event_image2{
	width: 80%;
	margin: auto;
	padding: 3% 0 1%;
}

.news_box_wrapper{
	width: 100%;
	margin: 0 auto 30px;
	padding: 20px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}

.news_box{
	font-size: 1em;
}

.news_text_style1{
	font-size: 1.2em;
	font-weight: bold;
	margin: 0 0 10px 0;
}

@media screen and (max-width: 1199px){
	.top_attention_text_box{
		width: 82%;
		padding: 4%;
		font-size: 20px;
		line-height: 36px;
		background-color: white;
		border-radius: 20px;
		margin:1% auto;

	}
	.news_box{
		font-size: 0.8em;
	}
}

@media screen and (max-width: 699px){
	.link_btn03{
		border-radius: 20px;
		width: 90%;
		text-align: center;
		margin: auto;
		padding: 1%;
		border:1px solid #000;
		font-size: 100%;
		font-weight: bold;
		color: #000;
		background-size: 200% 100%;	
		position: relative;
		z-index: 1;
		background-image: -webkit-linear-gradient(left, transparent 50%, rgba(230, 0, 18, 1) 50%);	
		background-image: linear-gradient(to right, transparent 50%, rgba(230, 0, 18, 1) 50%);
		-webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
		transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
	}
	.main_title_style1{
		font-family: ab-tombo-bold, sans-serif;
		font-weight: 400;
		font-size: 2em;
		color: #28353c;
		position: relative;
		text-align: center;
		display: table;
		margin: auto;
	}

	.main_title_icon_1{
		display: table-cell;
		content: '';
		width: 2px;
		height: 2px;
		background-color: #28353c;
		-webkit-transform: rotate(-30deg);
		transform: rotate(-30deg);
	}

	.main_title_icon_2{
		display: table-cell;
		font-size: 1em;
		font-family: ab-tombo-bold, sans-serif;
		padding: 0 25px;
	}

	.main_title_icon_3{
		display: table-cell;
		content: '';
		width: 2px;
		height: 2px;
		background-color: #28353c;
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
	}

	.main_title_style2{
		font-family: dnp-shuei-mgothic-std, sans-serif;
		font-weight: 400;
		font-size: 0.8em;
		text-align: center;
		color: #28353c;
	}

	.main_title_style1_white{
		font-family: ab-tombo-bold, sans-serif;
		font-weight: 400;
		font-size: 2em;
		color: #fff;
		position: relative;
		text-align: center;
		display: table;
		margin: auto;
	}

	.main_title_icon_1_white{
		display: table-cell;
		content: '';
		width: 2px;
		height: 2px;
		background-color: #fff;
		-webkit-transform: rotate(-30deg);
		transform: rotate(-30deg);
	}

	.main_title_icon_2_white{
		display: table-cell;
		font-size: 1em;
		font-family: ab-tombo-bold, sans-serif;
		padding: 0 40px;
	}

	.main_title_icon_3_white{
		display: table-cell;
		content: '';
		width: 2px;
		height: 2px;
		background-color: #fff;
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
	}

	.main_title_style2_white{
		font-family: dnp-shuei-mgothic-std, sans-serif;
		font-weight: 400;
		font-size: 0.8em;
		text-align: center;
		color: #fff;
	}
	.pickup_box{
		width: 100%;
		position: relative;
		z-index: 1;
		background-color: white;
		border-bottom: solid 6px #e80037;
		border-left: solid 1px #d2d2d2;
		border-right: solid 1px #d2d2d2;
		border-top: solid 1px #d2d2d2;
		display: inline-block;
		margin-left:1%;
		margin-right: 1%;
		margin-bottom: 6%;
		vertical-align: top;
		text-align: left;
	}
	.pickup_wrapper{
		width: auto;
		text-align: center;
		padding:15px 0;
	}
	.top_about_wrapper{
		padding-bottom: 0px;
		padding-top: 15px;
	}
	.top_about_text_box{
		text-align: left;
		padding-top: 2%;
		padding-bottom: 2%;
		line-height: 2.2em;
		font-size: 0.8em;
		color: #000;
		width: 90%;
		margin: auto;
	}
	.top_about_text_box a{
		font-size: 1em;
	}
	
	.info_box_table{
		display: block;
		border-collapse:separate;
		border-spacing: 0px 20px;
	}

	.info_box_row{
		display: block;
		margin: 20px 0;
	}
	
	.info_box_style1{
		width: 100%;
		padding: 2%;
		display: inline-block;
		box-sizing: border-box;
		letter-spacing: normal;
	}

	.info_box_wrapper{
		width: 90%;
		margin: auto;
		letter-spacing: -1em;
	}
	.info_box_table_style1{
		display: block;
		white-space: nowrap;
		background-color: #d70c18;
		padding: 10px;
		vertical-align: middle;
		color: white;
		font-weight: bold;
		font-size: 0.8em;
		border-radius: 10px;
		text-align: center;
	}

	.info_box_table_style1_2{
		display: block;
		white-space: nowrap;
		background-color: #0097e6;
		padding: 10px;
		vertical-align: middle;
		color: white;
		font-weight: bold;
		font-size: 0.8em;
		border-radius: 10px;
		text-align: center;
	}
	.info_box_table_style2{
		display: block;
		padding-left: 0px;
		vertical-align: middle;
		line-height: 30px;
		margin-top: 10px;
	}
	.attention_text{
		padding: 4% 0;
	}
	.attention_text p{
		font-size: 1em;
		font-weight: bold;
	}
	.brand_box{
		padding: 10px 0;
	}

}

/* goods_setting
================================================== */

.goods_about_wrapper{
	background-image: url("../image/2021_c_red_bg.jpg");
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
	padding: 2% 0;
}

.goods_wrapper{
	background-image: url("../image/2021_c_black_bg.jpg");
	background-position: top center;
	background-size: cover;
	background-attachment: fixed;
	padding: 2% 0;
}

.goods_wrapper2{

	padding-top: 20px;
	padding-bottom: 100px;
}

.goods_main_img{
	margin-bottom: 0px;
	margin-top: 0px;
	padding: 0px;
	width: 100%;
	height: auto;
	letter-spacing: -1px;
}

.goods_main_img img{
	vertical-align:top;
}

.goods_title{
	text-align: center;
	padding: 36px 0px 10px 0px;
	font-size: 46px;
	font-weight: bold;
	line-height: 36px;
	color: #e9003b;
}

.goods_title p{
	font-size: 14px;
	font-weight: normal;
	
}

.goods_title2{
	text-align: center;
	padding: 36px 0px 10px 0px;
	font-size: 46px;
	font-weight: bold;
	line-height: 36px;
	color: #fff;
}

.goods_title2 p{
	font-size: 14px;
	font-weight: normal;
	
}

.brand_title_box{
	width: 100%;
	background-color: white;
	padding-top: 1%;
	padding-bottom: 1%;
	margin-bottom: 1%
}

.brand_title_main{
	width: 20%;
	margin: auto;
}

.brand_wrapper{
	padding-top: 20px;
	padding-right: 5%;
	padding-bottom: 30px;
	padding-left: 5%;
	letter-spacing: -1em;
}

.grid-item{
	display: inline-block;
	padding:0 0.5% 0 0.5%;
	vertical-align: top;
	border-radius: 20px;
	width: 16.6%;
	box-sizing: border-box;
}

.grid {
   margin: 0 auto;
}

.brand_item_box {

	border: 1px solid #000;
	background-color: #FFF;
	background-image: url("../image/goods_list_arrow.jpg");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	padding-bottom: 30px;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
	border-radius: 20px;
	letter-spacing: normal;
}

.brand_item_box:hover {
	background-image: url("../image/goods_list_arrow_a.jpg");
}

.brand_item_box a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
    z-index: 2;
}


.brand_item_space_box {
	height: 360px;
}

.brand_title {
	font-size: 24px;
	font-weight: bold;
	color: #cd0505;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #cd0505;
	padding-left: 6px;
	padding-bottom: 3px;
	margin-left: 10px;
	margin-top: 12px;
	margin-bottom: 2%;
	line-height: 24px;
	text-align: left;
	border-radius: 6px;
}

.brand_title2 {
	font-size: 20px;
	font-weight: bold;
	color: #cd0505;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #cd0505;
	padding-left: 6px;
	padding-bottom: 3px;
	margin-left: 10px;
	margin-top: 12px;
	margin-bottom: 2%;
	line-height: 24px;
	text-align: left;
	border-radius: 6px;
}

.brand_title_text{
	font-size: 24px;
	font-weight: bold;
	color: #cd0505;
	text-decoration: none;
}

.brand_title_text_sub{
	font-size: 12px;
	font-weight: bold;
	color: #cd0505;
	text-decoration: none;
}

.brand_image {
	width: 90%;
	margin: 10px auto 0;
	border: 1px solid #333;
	border-radius: 20px;
}

.brand_image img{
	width: 100%;
	vertical-align:top;
	letter-spacing: -1px;
	border-radius: 20px;
}

.brand_goods_text1 {
	font-size: 16px;
	line-height:21px;
	text-align: center;
	padding-top: 6%;
	padding-bottom: 3%;
	padding-left: 4%;
	padding-right: 4%;
	font-weight: bold;
}

.brand_goods_text2 {
	font-size: 20px;
	line-height:28px;
	text-align: center;
	padding-top: 6%;
	padding-bottom: 2%;
	padding-left: 4%;
	padding-right: 4%;
	font-weight: bold;
}

.brand_goods_text3 {
	font-size: 14px;
	line-height:20px;
	text-align: center;
	padding-top: 6%;
	padding-bottom: 2%;
	padding-left: 4%;
	padding-right: 4%;
	font-weight: bold;
}


.brand_border {
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	background-color: #cd0505;
	height: 1px;
	margin-top: 6px;
	margin-bottom: 1%;
}

.brand_item_price {
	font-size: 18px;
	text-align: right;
	padding-right: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
}

.brand_title_text2{
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	color:black;
	line-height: 26px;
}

.brand_title_text3{
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	color:black;
	line-height: 18px;
}


.brand_title_text4{
	font-size: 20px;
	font-weight: bold;
	color: #1baae9;
	text-decoration: none;
}

.brand_title_text5{
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	color:black;
	line-height: 28px;
}

.brand_title_text6{
	font-size: 20px;
	font-weight: bold;
	color: #cd0505;
	text-decoration: none;
}

.brand_title_text7{
	font-size: 10px;
	font-weight: bold;
	color: #cd0505;
	text-decoration: none;
}

.brand_bottom_link {
	height: 22px;
	width: 230px;
	background: url("../image/c95_goods_list_arrow_a.png") no-repeat;
}

.brand_bottom_link a{
	display: inline-block;
}

.brand_bottom_link a:hover {
	background-color: transparent; /* IE6対応 */
}
 
.brand_bottom_link a:hover img {
    visibility: hidden;
}

.goods_title_box{
	width: 100%;
	background-color: white;
	padding-top: 1%;
	padding-bottom: 1%;
	margin-bottom: 1%
}

.goods_title_main{
	width: 20%;
	margin: auto;
}

.item_box_title{
	width:100%;
	height: 50px;
	background-color: #126599;
}

.item_box_image{
	width:262px;
	margin: auto;
	padding-top: 13px;
}

.item_box_arrow{
	width: 89px;
	margin: auto;
}


.lineup_title {
	height: 49px;
	width: 540px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
}

.lineup_box {
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 40px;
	margin-bottom: 25px;
	
}

.lineup_top {
	width: 100%;
	padding-top: 30px;
	padding-bottom: 10px;
}

.lineup_item_title {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	background-color: #e60012;
	font-size: 22px;
	font-weight: bold;
	color: #FFF;
	padding: 1% 2%;
	border-radius: 20px;
}

.lineup_item_box {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 2%;
	letter-spacing: -1px;
}

.lineup_border{
	width: 94%;
	margin: auto;
	height: 10px;
	background-color: #e60012;
	margin-top: 4%;
	margin-bottom: 4%;
}

.goods_image_left {
	width: 40%;
	display: inline-block;
	padding-right: 4%;
	vertical-align: top;
}

.goods_image_left img{
	width: 100%;
	border-radius: 20px;
	margin-bottom: 20px;
}

.goods_text_right {
	width: 54%;
	display: inline-block;
	vertical-align: top;
}


.item_title {
	font-size: 28px;
	font-weight: bold;
	color: #000;
}

.item_price {
	font-size: 22px;
	padding-bottom: 2%;
	color: #e60012;
	text-align: right;
	font-weight: bold;
}


.item_right_text {
	text-align: right;
}

.item_right_text a{
	color: orange;
	text-decoration: none;
}



.brand_goods_title{
	border: 1px solid white;
	width: 60%;
	padding: 1%;
	margin: 1% auto;
	color: white;
	text-align: center;
	font-size: 24px;
	border-radius: 20px;
}

.brand_goods_title2{
	border: 1px solid black;
	width: 58%;
	padding: 1%;
	margin: 1% auto;
	color: black;
	text-align: center;
	font-size: 24px;
	border-radius: 20px;
}

.brand_goods_text_style1{
	font-size: 0.6em;
	font-weight: 100;
	line-height: 1.6em;
	padding-top: 10px;
}

.top_goods_footer_box{
	background-image: url("../image/2020_c_red_bg2.jpg");
	background-position: center top;
	background-size: cover;
	background-attachment: fixed;
	padding: 4% 0%;
}

.brand_list_box{
	width: 94%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
	line-height: 1em;
}

.brand_list_box3{
	width: 40%;
	margin: auto;
	letter-spacing: -1em;
	text-align: left;
	font-size: 22px;
}

.brand_list_icon_1{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #cd0505;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_2{
	width: 46%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 65%;
	background-color: #0097e6;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_1_2{
	width: 96%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 90%;
	background-color: #cd0505;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.brand_list_icon_2_2{
	width: 96%;
	margin-left: 1%;
	margin-right: 1%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	font-size: 90%;
	background-color: #0097e6;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	text-align: center;
}

.campaign_text_style1{
	font-size: 1.6em;
	line-height: 1.6em;
	font-weight: bold;
	text-align: center;
}

.campaign_text_style2{
	font-size: 1.2em;
	line-height: 2em;
	letter-spacing: normal;
}

.campaign_goods_img_box{
	width: 80%;
	margin: auto;
	letter-spacing: -1em;
}

.campaign_goods_img{
	width: 50%;
	margin: auto;
	display: inline-block;
}

.event_image{
	width: 50%;
	margin: auto;
	padding: 3% 0 1%;
}

.event_image2{
	width: 80%;
	margin: auto;
	padding: 3% 0 1%;
}

.coming_soon{
	margin-bottom: 20px;
	text-align: center;
}

.coming_soon span{
	font-size: 2em;
	font-weight: bold;
}

.movie_wrapper{
	margin: 30px 0 60px;
}

.og_image{
	width: 25%;
	margin: 0 auto 20px;
}

.movie_img{
	width: 70%;
	margin: auto;
}

.event_box2{
	width: 80%;
	margin: auto;
}

.text_red{
	background-color: #e60012;
	color: white;
	font-weight: bold;
	line-height: 2em;
	padding: 2px 20px 4px;
	font-size: 0.9em;
}


@media screen and (max-width: 1199px){
	.grid-item{
		display: inline-block;
		padding:0 0.5% 0 0.5%;
		vertical-align: top;
		border-radius: 20px;
		width: 25%;
		box-sizing: border-box;
	}
}

@media screen and (max-width: 699px){
	.event_box2{
		width: 100%;
		margin: auto;
	}
	.link_btn_red{
		width: 96%;
		text-align: center;
		margin: auto;
		padding: 2%;
		border:1px solid #e60012;
		font-size: 100%;
		font-weight: bold;
		color: #e60012;
		background-size: 200% 100%;	
		position: relative;
		z-index: 1;
		background-image: -webkit-linear-gradient(left, transparent 50%, rgba(230, 0, 18, 1) 50%);	
		background-image: linear-gradient(to right, transparent 50%, rgba(230, 0, 18, 1) 50%);
		-webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
		transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
	}

	.event_image{
		width: 80%;
		margin: auto;
		padding: 6% 0 1%;
	}

	.brand_list_box{
		width: 94%;
		margin: auto;
		letter-spacing: -1em;
		text-align: left;
		padding-bottom: 2%;
	}

	.brand_list_box2{
		width: 100%;
		margin: 0;
		letter-spacing: -1em;
		text-align: left;
		padding-bottom: 14px;
	}

	.brand_list_box3{
		width: 80%;
		margin: auto;
		letter-spacing: -1em;
		text-align: left;
		font-size: 22px;
	}

	.campaign_goods_img{
		width: 100%;
		margin: auto;
	}

	.goods_wrapper2{
		background-image: url("../image/2020_c_white_bg_sp.jpg");
		background-position: top center;
		background-size:cover;
		background-attachment: fixed;
		padding-top: 20px;
		padding-bottom: 50px;
	}

	.brand_item_price {
		font-size: 14px;
		text-align: right;
		padding-right: 10px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	.brand_list_icon_1{
		width: 44%;
		margin-left: 1%;
		margin-right: 1%;
		padding: 2%;
		display: inline-block;
		letter-spacing: normal;
		font-size: 50%;
		background-color: #cd0505;
		border-radius: 10px;
		color: white;
		font-weight: bold;
		text-align: center;
	}

	.brand_list_icon_2{
		width: 44%;
		margin-left: 1%;
		margin-right: 1%;
		padding: 2%;
		display: inline-block;
		letter-spacing: normal;
		font-size: 50%;
		background-color: #0ECCAF;
		border-radius: 10px;
		color: white;
		font-weight: bold;
		text-align: center;
	}

	.brand_list_icon_1_2{
		width: 96%;
		margin-left: 1%;
		margin-right: 1%;
		padding: 1%;
		display: inline-block;
		letter-spacing: normal;
		font-size: 80%;
		background-color: #cd0505;
		border-radius: 10px;
		color: white;
		font-weight: bold;
		text-align: center;
	}

	.brand_list_icon_2_2{
		width: 96%;
		margin-left: 1%;
		margin-right: 1%;
		padding: 1%;
		display: inline-block;
		letter-spacing: normal;
		font-size: 80%;
		background-color: #0ECCAF;
		border-radius: 10px;
		color: white;
		font-weight: bold;
		text-align: center;
	}

	.brand_goods_text_style1{
		font-size: 0.7em;
		font-weight: 100;
		line-height: 1.6em;
		padding-top: 4px;
	}

	.goods_title2{
		text-align: center;
		padding: 14px 0px 12px 0px;
		font-size: 26px;
		font-weight: bold;
		line-height: 26px;
		color: #fff;
	}
	
	.goods_title2 p{
		font-size: 10px;
		font-weight: normal;
		padding: 0% 5% 0;

	}
	
	.goods_title{
		text-align: center;
		padding: 14px 0px 12px 0px;
		font-size: 26px;
		font-weight: bold;
		line-height: 26px;
		color: #e9003b;
	}
	.brand_item_1 {
		width: 92%;
		border: 1px solid #999;
		background-color: #FFF;
		margin-bottom: 25px;
		padding: 0% 4% 2%;
	}
	.brand_image {
		width: 90%;
		height: auto;
		border: 1px solid #333;
		margin-left: auto;
		margin-right: auto;
		margin-top: 2%;
	}
	.brand_border {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		background-color: #cd0505;
		height: 1px;
		margin-top: 6px;
	}
	.brand_bottom_link {
		height: 0px;
		width: 100%;
		background: none;
		display: none;
	}
	.grid-item{
		width: 50%;
		padding:0 2% 0 2%;
		display: inline-block;
		vertical-align: top;
	}
	.brand_item_space_box {
		height: auto;
	}
	.brand_wrapper{
		padding-top: 0px;
		padding-right: 5%;
		padding-bottom: 50px;
		padding-left: 5%;
	}
	.brand_title {
		font-size: 14px;
		font-weight: bold;
		color: #cd0505;
		border-left-width: 6px;
		border-left-style: solid;
		border-left-color: #cd0505;
		padding-left: 6px;
		padding-right: 6px;
		margin-left: 6px;
		margin-top: 12px;
		margin-bottom: 2px;
		line-height: 24px;
		overflow-wrap:  break-word;
	}
	
	.brand_title2 {
		font-size: 14px;
		font-weight: bold;
		color: #cd0505;
		border-left-width: 6px;
		border-left-style: solid;
		border-left-color: #cd0505;
		padding-left: 6px;
		margin-left: 10px;
		margin-top: 12px;
		margin-bottom: 1%;
		line-height: 24px;
		text-align: left;
		overflow-wrap:  break-word;
	}
	
	.brand_title_text{
		font-size: 20px;
		font-weight: bold;
		color: #cd0505;
		text-decoration: none;
	}
	.brand_title_text6{
		font-size: 18px;
		font-weight: bold;
		color: #cd0505;
		text-decoration: none;
	}
	.brand_goods_text2 {
		font-size: 2vh;
		line-height:2.6vh;
		text-align: center;
		padding-top: 16px;
		padding-left: 4px;
		padding-right: 4px;
		padding-bottom: 8px;
		font-weight: bold;
	}
	
	.brand_goods_text3 {
		font-size: 12px;
		line-height:16px;
		text-align: center;
		padding-top: 6%;
		padding-bottom: 2%;
		padding-left: 4%;
		padding-right: 4%;
		font-weight: bold;
	}
	
	.lineup_box {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
		padding-bottom: 40px;
		margin-bottom: 25px;

	}
	.lineup_item_title {
		width: 90%;
		margin-right: auto;
		margin-left: auto;
		background-color: #e60012;
		font-size: 0.8em;
		font-weight: bold;
		color: #FFF;
		padding: 6px 5%;
	}
	.goods_image_left {
		width: 100%;
		display: block;
		padding-right: 0%;
		vertical-align: top;
	}
	.lineup_item_box {
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		margin-top: 5px;
		letter-spacing: -1px;
	}
	.goods_text_right {
		width: 100%;
		display: block;
		vertical-align: top;
		padding-top: 6%;
	}
	.goods_main_img{
		margin-bottom: 0px;
		margin-top: 0px;
		padding: 0px;
		width: 100%;
		height: auto;
		letter-spacing: -1px;
	}

	.brand_goods_title{
		border: 1px solid white;
		width: 80%;
		padding: 2% 2% 2% 2%;
		margin: 1% auto 4%;
		color: white;
		text-align: center;
		font-size: 0.8em;
		line-height: 2em;
	}

	.brand_item_box {
		width: 100%;
		border: 1px solid #000;
		background-color: #FFF;
		background-image: url("../image/goods_list_arrow.jpg");
		background-repeat: no-repeat;
		background-position: bottom;
		padding-bottom: 30px;
		margin-bottom: 14%;
		position: relative;
		z-index: 1;
	}

	.brand_goods_text1 {
		font-size: 0.8em;
		line-height:1.4em;
		text-align: center;
		padding-top: 8%;
		padding-bottom: 3%;
		padding-left: 4%;
		padding-right: 4%;
		font-weight: bold;
	}

	.brand_goods_title2{
		border: 1px solid black;
		width: 90%;
		padding: 1%;
		margin: 1% auto 4%;
		color: black;
		text-align: center;
		font-size: 0.8em;
	}

	.item_title {
		font-size: 1.2em;
		line-height: 1.6em;
		font-weight: bold;
		color: #000;
		letter-spacing: normal;
	}

	.item_price {
		font-size: 1em;
		line-height: 1.6em;
		padding-bottom: 2%;
		color: #e60012;
		text-align: right;
		font-weight: bold;
	}

	.top_goods_footer_box{
		background-image: url("../image/2020_c_red_bg2.jpg");
		background-position: center top;
		background-size: cover;
		background-attachment: fixed;
		padding: 4% 0% 10%;
	}

	.special_goods_text_box{
		padding: 4% 2%;
		border: 1px solid yellow;
		color: white;
		width: 90%;
		margin: 6% auto 6%;
		text-align: left;
	}

	.campaign_text_style1{
		font-size: 1.2em;
		line-height: 1.2em;
		font-weight: bold;
		text-align: left;
	}

	.campaign_text_style2{
		font-size: 1.2em;
		line-height: 2em;
		padding: 4px 16px;
		letter-spacing: normal;
	}

	.coming_soon{
		margin-top: 20px;
		margin-bottom: 20px;
		text-align: center;
	}
	.og_image{
		width: 80%;
		margin: 0 auto 20px;
	}
}

/* goods_text_setting
================================================== */

.goods_icon_wrapper{
	width: 50%;
	margin: auto;
	padding-top: 0%;
	letter-spacing: -1em;
	text-align: left;
}

.goods_icon_box{
	width: 20%;
	padding-right: 2%;
	display: inline-block;
	letter-spacing: normal;
}

.goods_icon_text{
	width: 25%;
	font-size: 0.8em;
	display: inline-block;
	letter-spacing: normal;
	color: white;
	text-align: left;
}

.item_contents_text_box {
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0px;
	color: #000;
}

.goods_text_style1{
	font-size: 20px;
	line-height: 36px;
	font-weight: bold;
	
}

.goods_text_style_small{
	font-size: 12px;
	line-height: 12px;
}

.goods_text_style2{
	font-size: 20px;
	line-height: 38px;
	text-align: center;
	color: white;
	font-weight: bold;
}

.goods_addition_box{
	width: 64%;
	margin: auto;
	display: table;
}

.goods_addition_box2{
	width: 32%;
	margin: auto;
	display: table;
}

.goods_addition_img{
	display: table-cell;
	width: 50%;
}

.vs_logo{
	width: 25%;
	margin: auto;
	padding: 20px 0 30px;
}

@media screen and (max-width: 699px){

	.vs_logo{
		width: 70%;
		margin: auto;
	}

	.goods_addition_box{
		width: 100%;
		margin: auto;
		display: table;
	}

	.goods_addition_box2{
		width: 50%;
		margin: auto;
		display: table;
	}

	.goods_text_style1{
		font-size: 16px;
		line-height: 30px;
		font-weight: bold;

	}

	.goods_icon_box{
		width: 100%;
		padding-right: 0%;
		padding-top: 3%;
		padding-bottom: 3%;
		display: block;
		letter-spacing: normal;
	}

	.goods_icon_text{
		width: 100%;
		padding-top: 0%;
		padding-bottom: 3%;
		display: block;
		letter-spacing: normal;
		color: white;
		text-align: center;
	}

	.goods_text_style2{
		width: 90%;
		margin: auto;
		font-size: 2vh;
		line-height: 3vh;
		text-align: left;
		color: white;
		font-weight: bold;
	}
	.goods_icon_wrapper{
		width: 80%;
		margin: auto;
		padding-top: 0%;
		letter-spacing: -1em;
		text-align: left;
	}
}


/* footer_setting
================================================== */

.c99_info_wrapper{
	background-image: url("../image/2021_c_black_bg.jpg");
	padding: 3% 0 2%;
}

.c99_info_title{
	width: 60%;
	margin: auto;
	text-align: center;
	border: 3px dashed #fff;
	color: #fff;
	padding: 1rem 2rem;
	font-size: 120%;
	font-weight: bold;
}

.c99_info_box{
	width: 60%;
	margin: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	color: white;
}

.c99_info_text_style1{
	font-size: 120%;
	text-align: center;
	font-weight: bold;
	color: #fff;
	padding: 1% 0 0 0;
}

.c99_info_text_style2{
	font-size: 120%;
	text-align: center;
	padding:1% 0 0 0;
	color: #fff;
}

.c99_info_text_style3{
	width: 59%;
	margin: 1% auto 1%;
	padding: 0.5%;
	letter-spacing: normal;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 140%;
}

.c99_info_text_style4{
	font-size: 150%;
	text-align: center;
	font-weight: bold;
	color: white;
	background-color:#d70c18;
	padding: 1%;
	margin: 1% 0;
}

.c99_info_text_style5{
	font-size: 100%;
	text-align: center;
	font-weight: bold;
	color: #fff;
	padding-top: 1%;
}

.c99_info_table_wrapper{
	width: 60%;
	margin: 1% auto 0%;
	letter-spacing: -1em;
}

.c99_info_table_wrapper2{
	width: 100%;
	margin: 1% auto 0%;
	letter-spacing: -1em;
}

.c99_info_table_style1{
	width: 20%;
	padding: 1%;
	border: 1px solid #d70c18;
	display: inline-block;
	letter-spacing: normal;
	background-color:#d70c18;
	color: white;
	text-align: right;
}

.c99_info_table_style2{
	width: 74%;
	padding: 1%;
	border: 1px solid #d70c18;
	display: inline-block;
	letter-spacing: normal;
	color: white;
}

.c99_info_table_style3{
	width: 27%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
}

.c99_info_table_style4{
	width: 67%;
	padding: 1%;
	display: inline-block;
	letter-spacing: normal;
	vertical-align: top;
	font-size: 120%;
}

.c99_info_zero_wrapper{
	width: 58%;
	margin: 2% auto;
	padding: 0.5% 1%;
	border: 1px solid #d70c18;
}

.access_box{
	width: 60%;
	margin: auto;
	display: table;
	padding-bottom: 40px;
}

footer{

	position: relative;
	z-index: 99;
}

.footer_fixed{

	position: relative;
	bottom: 0;
	z-index: 99;
}

.foot-wrap .menu {
    display: inline-block;
    width: 10%;
    margin: 20px auto;
	margin-left: 1%;
	margin-right: 1%;
	vertical-align: top;
}

.foot-wrap ul {
    list-style: none;
    padding: 0;
    line-height:30px;
}

.foot-wrap {
    background-color: #333;
    color: #fff;
    text-align: center;
}

.foot-wrap h3 {
    border-bottom: 2px solid #d70c18;
    padding: 6px;
	margin-bottom: 6px;
	font-size: 0.6em;
}

.foot-wrap a {
    text-decoration: none;
    color: #fff;
}
.foot-wrap a:hover {
    color: #d70c18;
}

.foot-wrap .cmark {
    display: block;
    padding: 10px;
    border-top: 1px solid gray;
    width: 80%;
    margin: 0 auto;
    color: gray;
}

.foot_text_style1{
	font-size: 14px;
}

.even_box{
	display: flex;
	margin-top: 10px;
}

.event_img_left{
	margin-right: 20px;
	width: 42%;	
}

.event_img_vs{
	width: 60%;
	padding: 10% 0 0 20%;
}


.event_text_right{
	width: 58%;
}

.event_text_right span{
	background-color: #e60012;
	color: white;
	font-weight: bold;
	line-height: 2em;
	padding: 2px 20px 4px;
	font-size: 0.9em;
}

.event_logo{
	width: 36%;
	margin: 20px auto;
}

.event_logo2{
	width: 24%;
	margin: 20px auto;
}

.game_title{
	text-align: center;
	font-size: 2em;
	font-weight: bold;
}

.game_contents_box_wrapper{
	width: 100%;
	min-height: 100vh;
	background-image: url("../image/fes2024_white_bg.jpg");
	background-repeat: no-repeat;
}

.game_contents_box{
	padding-top: 100px;
	padding-bottom: 50px;
}

.game_back_bt{
	width: 50%;
	margin: auto;
	padding-bottom: 50px;
}


@media screen and (max-width: 699px){
	
	.game_title{
		text-align: center;
		font-size: 1.2em;
		font-weight: bold;
	}
	
	.game_contents_box{
		padding-top: 150px;
		padding-bottom: 50px;
	}


	footer{
		min-width: 100%;
	}
	.foot-wrap {
		background-color: #333;
		color: #fff;
		text-align: center;
		padding-top: 4%;
	}
    .foot-wrap .menu {
        display: inline-block;
        flex-direction: column;
        width: 42%;
		margin: auto;
		padding-left: 1%;
		padding-right: 1%;
		padding-bottom: 4%;
    }
	.foot-wrap h3 {
		
		padding: 6px;
		margin-bottom: 6px;
		font-size: 80%;
	}
	.foot-wrap a {
		text-decoration: none;
		color: #fff;
		font-size: 90%;
	}
    .foot-wrap .cpr {
        display: inline;
    }
	.c99_info_title{
		width: 80%;
		margin: 0 auto 3%;
		text-align: center;

		padding: 1rem 1rem;
		font-size: 0.8em;
		font-weight: bold;
	}
	.c99_info_text_style1{
		font-size: 0.8em;
		text-align: center;
		font-weight: bold;
		padding: 2% 5% 0 5%;
	}

	.c99_info_text_style2{
		font-size: 80%;
		text-align: center;
		padding:1% 0 0 0;
	}

	.c99_info_table_wrapper{
		width: 90%;
		margin: 4% auto 3%;
		letter-spacing: -1em;
	}

	.c99_info_table_style1{
		width: 92%;
		padding: 4%;
		border: 1px solid #d70c18;
		display: inline-block;
		letter-spacing: normal;
		background-color:#d70c18;
		color: white;
		text-align: center;
		margin: auto;
	}

	.c99_info_table_style2{
		width: 92%;
		padding: 4%;
		border: 1px solid #d70c18;
		display: inline-block;
		letter-spacing: normal;
		margin: auto;
		text-align: center;
		line-height: 160%;
	}

	.c99_info_table_style4{
		width: 67%;
		padding: 1%;
		display: inline-block;
		letter-spacing: normal;
		vertical-align: top;
		font-size: 80%;
	}
	
	.c99_info_text_style5{
		font-size: 1em;
		text-align: center;
		font-weight: bold;
		color: #fff;
		padding-top: 1%;
	}

	.c99_info_zero_wrapper{
		width: 90%;
		margin: 2% auto 10%;
		padding: 0.5% 1%;
		border: 1px solid #d70c18;
	}
	.c99_info_wrapper{
		background-image: url("../image/2021_c_black_bg.jpg");
		padding: 8% 0 2%;
	}
	.c99_info_text_style3{
		width: 59%;
		margin: 1% auto 1%;
		padding: 0.5%;
		letter-spacing: normal;
		border: 1px solid #fff;
		text-align: center;
		color: #fff;
		font-weight: bold;
		font-size: 1em;
	}
	.c99_info_box{
		width: 90%;
		margin: auto;
		padding-top: 30px;
		padding-bottom: 30px;
		color: white;
		font-size: 0.8em;
	}
	.even_box{
		display: flex;
		flex-flow: column;
		margin-top: 10px;
	}

	.event_img_left{
		margin-right: 0px;
		width: 100%;	
	}

	.event_text_right{
		width: 100%;
	}

	.event_text_right span{
		background-color: #e60012;
		color: white;
		font-weight: bold;
		line-height: 2em;
		padding: 2px 20px 4px;
		font-size: 0.9em;
	}

	.event_logo{
		width: 70%;
		margin: 20px auto;
	}

	.event_logo2{
		width: 60%;
		margin: 20px auto;
	}
}




/* humberger_menu_setting
================================================== */

#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background-color:rgba(255,255,255,0.8);
	transition: all 0.3s;
}

#g-nav.panelactive{
	opacity: 1;
	z-index:998;
}

#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 80%;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
	color: black;
	line-height: 150%;
}

#g-nav li a{
	color: black;
	text-decoration: none;
	padding:14px;
	display: block;
	letter-spacing: 0.1em;
	font-size: 100%;
}

#g-nav li span{
	color: black;
	text-decoration: none;
	padding:14px;
	display: block;
	letter-spacing: 0.1em;
	font-size: 100%;
}

.openbtn{
	display: none;
}
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.active2 span{
	background-color: #000!important;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active2 span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active2 span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active2 span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.g-nav_logo{
	width: 50%;
	margin: auto;
}

@media screen and (max-width: 1199px){
	.openbtn{
		position:fixed;
		z-index: 999;
		top:0px;
		right: 0px;
		cursor: pointer;
		width: 50px;
		height:50px;
		display: block;
	}
}
