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

/*ページ全体の設定----------------------------------------*/
body{
	margin: 0;
	padding: 0;
	height: 100%;
	
	color: #7D79AA;
	background-color: #EFDDD3;
	font-size: 14pt;
	font-family: 'Kiwi Maru', serif;
}

main{
	/*main内の背景色を指定（なくてもOK）*/
	background-color: #EFDDD3;

	/*横幅を600pxに指定（なくてもOK）*/
	width: 800px;
	
	/*main内の内側に50pxの余白を設定（なくてもOK）*/
	padding: 50px;
	
	/*ここからFlexboxの設定*/
	/*↓これが超超超超超超超重要！この1行を消すと縦並びになる*/
	display: flex;
	
	/*エリア内のdivを等間隔に配置（なくてもOK）*/
	justify-content:space-around;
	/*エリア内で上下中央揃え（なくてもOK）*/
	align-items: center;
	
}

.wrapper{
	     width: 100%;
	     position: relative;
	     min-height: 100%;
}

.innter{
	padding-bottom: 400px;
}

.footer{
	width: 100%;
	height: 400px;
	background-color: #B1CEC8;
	background-size: auto;
	bottom: 0px;
	position: absolute;
}

h1{
	margin:10 auto;
	text-align: center;
}

h3{
	font-family: 'Kiwi Maru', serif;
	color: white;
	text-align: center;
	font-size: 20px;
	margin:10 auto;
	
}

h5{
	font-family: 'Kiwi Maru', serif;
	color: white;
	text-align: center;
	font-size: 14px;
	margin:10 auto;
	
}

.icon{
	  margin: 30px;
	 
}


p{
	font-family: 'Kiwi Maru', serif;
	color: #7D79AA;
	text-align: center;
	font-size: 14px;
	}

.mokuji {
	margin:10 auto;
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
}

.mokuji img{
	wifth:100%;
}


/*ヘッダー*/
.rogo{
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 0 15px 30px;
	width: 270px;;
}
.rogo img{
	width: 100%;
	height: auto;
	background-color:#EFDDD3;
}
.fix_menu{
	position: fixed;
	width: 100%;
	max-width: 1200px;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	padding: 30px 0;
}
#navwrap{
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 30px 15px 0;
}
.header_menu{
	display: flex;
}
ul,li{
	list-style: none;
	color: #EFDDD3;
	margin: 0;
}
.header_menu li a{
	cursor: pointer;
	padding: 0 10px;
	text-decoration: none;
	color: #7FADAF;
}
#switch{
	display: none;
}
.main p{
	padding: 500px 0;
	text-align: center;
}
@media screen and (max-width:768px) {
	#switch ~ label {
		padding: 12px 12px;
		width: 60px;
		height: 60px;
		background: #B1CEC8;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		right: 0;
		z-index: 999;
		cursor: pointer;
	}
	#switch ~ label span{
		display: block;
		width:22px;
		height:2px;
		top: 50%;
		left: 0;
		right: 0;
		margin:auto;
		background: #fff;
		position: absolute;
		-webkit-transition: 0.2s transform;
		transition: 0.2s transform;
	}
	#switch ~ label span:before,
	#switch ~ label span:after{
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		width:22px;
		height:2px;
		left: 0;
		right: 0;
		margin: auto;
	}
	#switch ~ label span:before{
		top: -9px;
	}
	#switch ~ label span:after{
		top: 9px;
	}
	#navwrap{
		padding-top: 0;
		position: fixed;
		top: -100%;
		left: 0;
		width: calc(100% - 60px);
		height: 100%;
		background: rgba(0,0,0,0.8);
		transition: all 0.4s;
		padding: 60px;
		box-sizing: border-box;
	}
	#switch:checked ~ #navwrap { 
		display: block; 
		top: 0;
	}
	.header_menu{
		display: flex;
		flex-direction: column;
	}
	.header_menu li{
		margin: 0 auto 30px;
	}
	.header_menu li a{
		color: #EFDDD3;
	}
	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
}

	