@charset "UTF-8";
/* CSS Document */

html,body{
	margin: 0;
	padding: 0;
}
body{
	font-size: 12pt;
	font-family: source-han-sans-japanese, sans-serif; 
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
}
h1,h2,h3,h4,h5,p{
	margin: 0;
	padding: 0;
}
a{
	color: #000;
	text-decoration: none;
}
a:hover{
	color:darkgrey;
}
.skima{
	color: rgba(255,104,50,1)
}

.wrap{
	min-height: 100vh; /* カスタムプロパティ未対応ブラウザ用のフォールバック */
	min-height: calc(var(--vh, 1vh) * 100);
}

footer{
	width: 100%;
	height: 40px;
	background-color: #000;
	color: #fff;
	font-family: futura-pt, sans-serif; 
	display: flex;
	align-items: center;
	justify-content:center;
	
	position: sticky;
	top: 100vh;
	width: 100%;
}



.none{
	display: none;
}



h2{
	font-family: futura-pt, sans-serif, source-han-sans-japanese, sans-serif; 
	font-size: 1.8em;
	line-height: 2em;
	margin-bottom: 8vh;
	text-align: center;
	letter-spacing: 0.15em;
}



/*トップ*/
.main-inner{
	width: calc(100vw - 6vw) ;
	height: calc(100vh - 40px) ;
	padding: 0 3vw;
	margin: 0 auto;
	
	display: flex;
	align-items: center;
	justify-content:space-between;
}
nav{
	margin: 0 0 0 auto;
	font-size: 2.6vw;
	font-family: futura-pt, sans-serif; 
	font-weight: 600;
}
nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
nav ul li{
	margin-left: 1vw;
	display: inline-block;
}
.title{
	width: calc(50vw - 6vw) ;
}

.sec-top{
	padding-top: 70px;
}

.sec-inner{
	max-width: calc(1800px - 10vw) ;
	width: calc(100vw - 10vw) ;
	padding: 9vh 5vw;
	margin: 0 auto;
}



.poem{
	text-align: center;
	line-height: 2em;
}
.poem p{
	margin: 30px 0;
}



.button{
	display: block;
	margin: 6vh auto 0 auto;
	text-align: center;
	
	max-width: 300px;
	width: 80%;
	padding: 1em;
	border: 1px solid #000;
	border-radius:50px;
	
	color: #000;
	background-color: #fff;
}
.button:hover{
	color: #000;
	background-color: #eee;
}



@media screen and (max-width: 900px) {
	.main-inner{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.title{
		width: 90vw;
		margin-bottom: 2em;
	}
	nav{
		margin: 0 auto;
		font-size: 5vw;
	}
	
}
@media screen and (max-width: 450px) {
	body{
		font-size: 0.8em;
		letter-spacing: 0em;
	}
	h2{
		font-size: 2em;
		letter-spacing: 0.1em;
		line-height: 1.8em;
		margin-bottom: 8vh;
	}
	.none{
		display: block;
	}
	.sec-inner{
		padding: 5vh 5vw;
		margin: 0 auto;
	}

	
	.poem{
		text-align: left;
		line-height: 2em;
	}
}