@charset "UTF-8";
/* CSS Document */
/*----------all----------*/
html,body{
	background-color: #28292b;
	color: #f4f4f4;
	font-family: 'Marcellus', 'Noto Serif JP', serif;
}
.number{
	font-family: 'Open Sans', sans-serif;
}
.cs{
	font-size: 1.2rem;
	margin-left: 8px;
}
img {
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  touch-callout:none;
  user-select:none;
}
.page_title{
	font-size: 2.2rem;
	letter-spacing: 0.1em;
	margin: 0 auto 30px;
	text-align: center;
	display: inline-block;
}
.border {
    display: block;
    background-color: #f4f4f4;
    position: absolute;
    bottom: auto;
    left: 50%;
    width: 1px;
    height: 39px;
    margin-top: -20px;
}
/*scroll-fade-------------------------------------*/
/*flame-out*/
.fadein {
    opacity : 0.1;
    transform : translate(0, 50px);
    transition : all 500ms;
    }

/*flame-in*/
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }
/*----------opening----------*/
.start {
	background: #28292b;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999999;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 100vw;
	text-align: center;
}
.start p img{
	width: 60%;
	height: auto;
}
/*-----------page-move----------*/
.wrap {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}
/*-----------button-----------*/
.btn{
	width: 130px;
}
.more{
	width: 130px;
	background-color: #f4f4f4;
	color: #28292b;
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: 0.1em;
	margin: 0 10px;
    right: 0;
	position: absolute;
	-webkit-transition: all .3s;
    transition: all 1s;
	text-align: center;
}
.more:hover{
	 background-color: #28292b;
    color: #f4f4f4;
    cursor: pointer;
}
/*-----------header----------*/
header{
	width: 89.3333%;
	margin: 30px auto;
}
h1{
	text-align: center;
}
/*-----------nav----------*/
header nav{
	width: 80%;
	background-color: rgba(244,244,244,.9);
/*	padding: 160px 0 0 80px;*/
	position: fixed;
	top: 0;
	bottom: 0;
	right: -80%;
	transition: right 500ms, opacity 500ms;
	overflow: scroll;
	z-index: 99;
	opacity: 1;
}
#nav_trigger:checked + nav{
	right: 0;
}
.nav_menu{
	margin: 100px 0 0 30px;
}
.nav_menu li{
	line-height: 70px;
	font-size: 2rem;
	letter-spacing: 0.1em;
	color: #28292b;
}
header nav ul li a{
	color: #28292b;
}
#nav_trigger{
	display: none;
}
.nav_btn{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 55px;
	right: 15px;
	z-index: 9999;
	cursor: pointer;
}
.nav_btn span{
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #f4f4f4;
	transition: transform 500ms,opacity 500ms;
}
.nav_btn:hover span{
	width: 38px;
	height: 38px;
	transition: all 200ms;
	z-index: 99999;
}
#nav_trigger:checked + nav + .nav_btn span{
	background-color: #28292b;
	transition: all 500ms;
}
.nav_sns{
	display: flex;
	margin: 50px 0 0 30px;
}
.nav_sns li{
	font-size: 2rem;
	margin: 0 20px 0 0;
}
/*----------footer----------*/
.footer_wrapper{
	width: 87.2vw;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	padding: 40px 0 40px;
}
.info{
	line-height: 1.5;
	font-size: 1.1rem;
}
.info adress{
	margin: 0 0 10px 0;
}
.footer_wrapper div p a{
	color: #f4f4f4;
}
.access_station{
	padding: 20px 0 0 ;
}
.map{
	margin: 0 auto;
	width: 95vw;
	padding-bottom: 60px;
	text-align: center;
}
.copyright{
	margin: 0 auto 20px;
	font-size: 0.8rem;
	text-align: center;
}

@media screen and (min-width:1024px){
	.start p{
		width: 60vw;
	}
	.page_title {
    font-size: 2.8rem;
	}
	.vertical{
		font-size: 3rem;
	}
	.nav_menu{
		margin: 100px 0px 60px 30px;
	}
	.nav_menu li{
		font-size: 2.6rem;
		line-height: 60px;
	}
	.nav_sns li{
		font-size: 2.8rem;
	}
	.nav_btn span{
		width: 50px;
		height: 50px;
	}
	.nav_btn:hover span{
		width: 54px;
		height: 54px;
	}
	.footer_map_wrapper{
		display: flex;
		justify-content: center;
		align-items: flex-start;
		width: 50vw;
		margin: 0 auto;
	}
	.footer_wrapper{
		display: block;
		width: inherit;
		padding: 60px 0 40px;
	}
	.footer_wrapper h2{
		margin-bottom: 20px;
	}
	.info{
		font-size: 1.4rem;
	}
	.map{
		width: 70vw;
	}
	.btn_bottom{
		margin: 0 50px 0 0;
	}

}