/*---------Common---------------*/
* {
	box-sizing: border-box;
	position: relative;
}

.aplha {
	-ms-filter: "alpha( opacity=0 )";
	filter: alpha(opacity=0);
	opacity: 0.0;
}

.onalpha {
	-ms-filter: "alpha( opacity=100 )";
	filter: alpha(opacity=100);
	opacity: 1.0;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	cursor: default;
}

.onalpha:hover {
	-ms-filter: "alpha( opacity=80 )";
	filter: alpha(opacity=80);
	opacity: 0.8;
	transition: 0.2s;
	-webkit-transition: 0.2s;
	-moz-transition: 0.2s;
	cursor: pointer;
}


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

a:focus,
*:focus {
	outline: none;
}


.sp,
.sp_b {
	display: none;
}

.pc {
	display: inline-block;
}

.pc_b {
	display: block;
}

/*-----Loading-------*/
#loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 999;
	background: #000;
	text-align: center;
	color: #fff;
	display: none;
}

#loading_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*-----Surface Menu-------*/
#openbtn_box {
	width: 50px;
	height: 50px;
	position: fixed;
	top: 10px;
	right: 21px;
	/*	background-color: #000;*/
	z-index: 150;

}

.openbtn1 {
	position: relative;
/*	background: #57a2c7;*/
	cursor: pointer;
	width: 50px;
	height: 50px;
}

.openbtn1 span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	height: 2px;
	background: #fff;
	width: 100%;
}

.openbtn1 span:nth-of-type(1) {
	top: 10px;
}

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

.openbtn1 span:nth-of-type(3) {
	top: 36px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn1.active span:nth-of-type(1) {
	top: 18px;
/*	left: 18px;*/
	transform: translateY(6px) rotate(-45deg);
	width: 100%;
	background: #dfbf50;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
	/*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
	top: 30px;
/*	left: 18px;*/
	transform: translateY(-6px) rotate(45deg);
	width: 100%;
	background: #dfbf50;
}


#surf_menu{
	z-index: 120;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    display:none;
	background: rgb(255,248,221);
	background: -moz-linear-gradient(0deg, rgba(255,248,221,1) 0%, rgba(223,191,80,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,248,221,1) 0%, rgba(223,191,80,1) 100%);
	background: linear-gradient(0deg, rgba(255,248,221,1) 0%, rgba(223,191,80,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff8dd",endColorstr="#dfbf50",GradientType=1);
}

#surf_inmenu{
	z-index: 120;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	display: flex;
	background-image: url(../images/menu_bg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}


@media screen and (max-width: 1400px) {
	#surf_inmenu{
		background-size: auto;
		background-position: left bottom;
	}
}


#menu_inbox{
	display: flex;
    width: 90%;
    max-width: 600px;
    max-height: 100%;
    margin: auto;
/*    overflow: hidden scroll;*/
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu_nav{
	width: 100%;
}

.menu_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(208px, 1fr));
    gap: 60px 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	margin: 0;
}

ul li {
    list-style: none;
	font-family: 'Roboto', sans-serif;
	font-size: 18pt;
	font-weight: 700;
}

.menu_item a{
	display: block;
	text-align: center;
	transition: 0.4s;
	color: #AA1518;
	
}



#nav_sns_box {
	margin-top: 100px;
	height: 45px;
	display: flex;
	justify-content: center;
}

#nav_sns_box .menu_btn {
	width: 40px;
	height: 40px;
	font-size: 20pt;
	font-weight: 700;
	color: #AA1518;
	border: 0;
	cursor: default;
	overflow: hidden;
	position: relative;
	padding: 0;
	transition: 0.4s;
	text-align: center;
}

#nav_sns_box .menu_btn:hover,
.menu_item a:hover{
	cursor: pointer;
	color: #fff;
	text-shadow: 0px 0px 7px #aa1518;
	background-color: rgba(0, 0, 0, 0);
	transition: 0.7s;
}




/*-----Main-------*/
#top_box {
	min-width: 1300px;
	padding-left: 600px;
	height: 100vh;
	min-height: 800px;
}




#header {
	width: 600px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	height: 100vh;
	min-height: 800px;
	z-index: 100;
}

#header_L {
	width: 300px;
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 1) 416px, rgba(187, 23, 25, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 1) 416px, rgba(187, 23, 25, 1) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 416px, rgba(187, 23, 25, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#bb1719", GradientType=1);
}

#header_R {
	width: 300px;
	background: rgb(255, 248, 221);
	background: -moz-linear-gradient(0deg, rgba(255, 248, 221, 1) 0%, rgba(223, 191, 80, 1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255, 248, 221, 1) 0%, rgba(223, 191, 80, 1) 100%);
	background: linear-gradient(0deg, rgba(255, 248, 221, 1) 0%, rgba(223, 191, 80, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff8dd", endColorstr="#dfbf50", GradientType=1);
	text-align: center;
	padding: 20px 10px 0;
}

.menu_btn {
	width: 100%;
	height: 50px;
	font-family: 'Roboto', sans-serif;
	font-size: 12pt;
	font-weight: 700;
	font-size: 16pt;
	text-align: left;
	color: #f1cd07;
	padding-left: 15px;
	;
	border: 0;
	cursor: default;
	overflow: hidden;
	transition: 0.7s;
	background-color: rgba(0, 0, 0, 0);
}

.menu_btn:hover {
	cursor: pointer;
	background-color: #000;
	color: #FFFFFF;
}


#menu_sns_box {
	margin-top: 20px;
	height: 45px;
	display: flex;
	justify-content: center;
}

#menu_sns_box .menu_btn {
	width: 40px;
	height: 40px;
	font-size: 13pt;
	font-weight: 700;
	color: #f1cd07;
	border: 0;
	cursor: default;
	overflow: hidden;
	position: relative;
	padding: 0;
	transition: 0.7s;
	text-align: center;
}

#menu_sns_box .menu_btn:hover {
	cursor: pointer;
	color: #fff;
	background-color: #000;
	transition: 0.7s;
}

.btn_fb,
.btn_tw {
	width: 40px;
	padding: 0;
	z-index: 10;
}

.top_logo{
	width: 100%;
	max-width: 300px;
	height: auto;
}

.top_copy {
	margin-top: 20px;
	width: 100%;
	max-width: 300px;
	height: auto;
}

.twt_box{
	width: 100%;
	color: #aa1518;
}

.txt_lead{
	margin-bottom: 0px;
}




.twt_box iframe{
  width: 100% !important;
}

@media screen and (max-width: 1280px) {
	#top_box{
		padding-left: 400px;
	}
	#header{
		width: 400px;
	}
	#header_L{
		width: 200px;
	}
	#header_R{
		width: 200px;
	}
}


/*-----share_box-------*/
#share_box {
	position: absolute;
	margin-top: 40px;
	margin-left: 0%;
	width: 300px;
	text-align: center;
	z-index: 1;
	transition: 0.7s;
	padding-left: 6px;
}

#share_box .sns {
	margin: 0 1px;
	padding: 0px;
	text-align: right;
	display: inline-block;
}

#share_box .sns.fb {
	margin-top: -4px;
}

.is_hide {
	filter: alpha(opacity=0);
	opacity: 0.0;
}


#header_R img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

#header_R img.mvtk{
	width: 90%;
	height: auto;
	margin: 0 auto 10px;
}

#header_R img.top_tw_h3{
	margin-bottom: 0;
}



/*-----BG Movie-------*/
#top_content {
	width: 100%;
	min-height: 800px;
}

#top_menubnr{
	position: absolute;
	margin-top: 1%;
	margin-left: 1%;
	z-index: 20;
	width: 148px;
}

#top_menubnr img{
	width: 100%;
	height: auto;
	margin-bottom: 5%;
}

.bnr_MAZZEL{
	position: absolute;
	right: 2%;
	bottom: 2%;
	z-index: 20;
	width: 200px;
	height: auto;
}



#bg_movie {
	/*	position: absolute;*/
	margin-top: 0%;
	margin-left: 0%;
	width: 100%;
	height: 100vh;
	min-height: 800px;
	z-index: 1;
	overflow: hidden;
}

#bg_movie::before {
	z-index: 2;
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url(../images/bgpatternb.png) center top/2px 2px;
}

#video_box {
	width: 100%;
	height: 100vh;
	min-height: 800px;
	/*    top: 50%;*/
	/*    left: 50%;*/
	/*    transform: translate(-50%,-50%);*/
}


#bg_movie video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}














/*------- SNS ----------------*/

#top_tw {
	position: relative;
	display: none;
	z-index: 500;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
	height: 25px;
}

#top_sp_tw {
	position: relative;
	display: inline-block;
	z-index: 500;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
	height: 25px;
}


.fb {
	margin: 2px 2px 0px 2px;
	padding: 0px;
	display: inline;
	float: left;
}

.tw {
	margin: 2px 0px 0px 0px;
	padding: 0px;
	display: inline;
	float: left;
}

.line {
	margin-top: 2px;
	margin-right: 0px;
	margin-left: 13px;
	margin-bottom: 0px;
	padding: 0px;
	display: inline;
	float: left;
}


.eigacom {
	margin: 2px 0px 0px 10px;
	padding: 0px;
	display: inline;
	float: left;
}


/*------- TOP FOOTER ----------------*/
#top_footer{
	width: 100%;
	min-width: 1300px;
	background-color: #000;
	padding-bottom: 50px;
}

#top_footer_bnr{
	padding-top: 20px;
	text-align: center;
}

#top_footer_bnr img{
	border: 1px #fff solid;
	margin: 0 5px;
}



/*-----mvtk-------*/

#mvtk_box{
	text-align: center;
	padding-top: 20px;
}

#mvtk_box img{
	margin: 0 5px 0px;
}


#mvtk_box #mvtk-widgets-container {
    margin: 30px auto 10px;
}

















