@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Rokkitt:400,800&display=swap');
body {
	margin: 0;
	padding: 0;
}
h1, h2 {
	font-weight: 800;
}
#menu {
	position: fixed;
	width: 100%;
	text-align: center;
	list-style-type: none;
	z-index: 100;
	padding: 0;
	margin-top: 20px;
}
#menu li {
	display: inline-block;
	border: thin solid #ed6b03;
}
#menu li a {
	display: block;
	color: #ed6b03;
	transition: .5s;
	padding-left: 6px;
	padding-right: 6px;
}
#menu li a:hover {
	background: #ed6b03;
	color: #fff;
	text-decoration: none;
}
.section {
	width: 100%;
	height: 100vh;
}
#page1, #page2, #page3 {
	position: relative;
}
#page1 {
	background: url("../img/fuji.jpg");
	background-size: cover;
}
#page2 {
	background: url("../img/kiyomizu.jpg");
	background-size: cover;
	background-attachment: fixed;
}
#page3 {
	background: url("../img/itsukushima.jpg");
	background-size: cover;
}
.logo {
	display: block;
	position: fixed;
	width: 50px;
	top: 20px;
	left: 20px;
}
.box1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
h1 {
	text-align: center;
	color: red;
	font-size: 42px;
	margin-top: 1em;
}
.img1 {
	width: 150px;
}
.box2 {
	position: absolute;
	bottom: 2.5em;
	left: 50%;
	transform: translateX(-50%);
}
.img2 {
	height: 30px;
}
h2 {
	text-align: center;
	padding-top: 80px;
	margin-bottom: 60px;
}
.box3 h2, .box3 p {
	color: #fff;
}
.img3 {
	width: 300px;
}
.box4 a {
	color: red;
	transition: .5s;
}
.box4 a:hover {
	color: #ed6b03;
	text-decoration: none;
}
.box5 {
	position: absolute;
	bottom: 5em;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
	h1, h2 {
		font-size: 24px;
	}
	.img1 {
		width: 100px;
	}
}
