@charset "utf-8";

/*=====================================================
COMMON-LAYOUT
======================================================*/


body {
	position: relative;
	overflow: hidden;
	pointer-events: none;
}
.end {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999999999999;
}

.end .txt {
	max-width: 90%;
	max-height: 90%;
}


h1{
	display: none;
}

/*header*/
header{
	width:100%;
	position: absolute;
	z-index: 10000;
	top: 0;
	left: 0;
	right: 0;
}

div.header{
	margin:0 auto;
	position:relative;
	padding:0 10px;
	height:60px;
	box-sizing: content-box;
}


div.header h2{
	position:absolute;
	top:5px;
	left:10px;
	line-height:0;
	font-size:0;
}
@media screen and (max-width: 600px){
	div.header h2{
		width: 150px;
	}
}
/*header*/


/*container*/
/*
div.container{
	max-width:960px;
	margin:0 auto;
	padding:30px 10px 50px;
	box-sizing: content-box;
}
.contents_wrap{
	height: 200vh;
	background-color: #333;
}
*/
/*container*/


/*footer*/
footer{
	background-color: #222222;
	width:100%;
	color: #fff;
}

div.footer{
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 45px 20px 45px;
	position: relative;
}
div.footer .f_inner{
	text-align: center;
}
div.footer .f_inner p{
    line-height: 1.2;
	font-size: 36px;
    font-family: "Arial", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
    font-weight: normal;
	margin-bottom: 12px;
}
div.footer .f_inner ul.nomal_list{
	text-align: center;
	letter-spacing: -.4em;
}
div.footer .f_inner .nomal_list li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
	font-size: 12px;
}
div.footer .f_inner .nomal_list li:first-child::after{
    content: "|";
    display: inline-block;
    padding: 0 0.5em;
}
div.footer .sns_wrap{
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
div.footer .sns_wrap ul{
	letter-spacing: -.4em;
}
div.footer .sns_wrap li{
	display: inline-block;
	letter-spacing: normal;
	vertical-align: middle;
	margin-right: 8px;
	font-size: 16px;
	line-height: 1;
}
div.footer .sns_wrap li:last-child{
	margin-right: 0;
}
div.footer .copyright{
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	font-size: 12px;
}
@media screen and (max-width: 600px){
	div.footer{
		padding: 0;
	}
	div.footer .f_inner{
		padding: 30px 10px;
	}
	div.footer .sns_wrap{
		position: static;
	}
	
	div.footer .copyright{
		transform: none;
		position: static;
		line-height: 20px;
		padding: 15px;
		padding-right: 50px;
		font-size: 12px;
		height: 50px;
		text-align: center;
		background-color: #000;
	}
}
/*footer*/


/*page_top*/
.page_top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 990;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
}
.page_top a{
    background-color: #b69e84;
	display: block;
	height: 100%;
	width: 100%;
	transition: opacity 0.3s ease-in-out;
}
body:not(.mobile) .page_top a:hover{
	opacity: 0.5;
}
.page_top a span{
	display: none;
}
.page_top a::after{
	width: 10px;
	height: 10px;
	display: block;
	content: '';
	border-top: solid #fff 1px;
	border-right: solid #fff 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width: 600px){
	.page_top{
		position: absolute!important;
		bottom: 0!important;
		right: 0!important;
		margin: 0!important;
		border-radius: 0;
		height: 50px;
		width: 50px;
	}
}
/*page_top*/

@media screen and (max-width: 767px){}
@media screen and (max-width: 600px){}