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


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-feature-settings: "palt";
}

body, html {
	width: 100%;
	height: 100%;

	
}

body {
	font-family: sans-serif;
	background-color:#ECE3D4;
}

/*header, main, footer {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}*/
header {
transition: all 0.5s ease-out;

	position:fixed;
	z-index:3;
	/* 隠しておく */
	top:-160px;
	width:100vw;
	background:rgba(200,200,200, 0.8);
	padding-top:60px;
	background:#fff;
	background-color:#ECE3D4;
}

header.isopen{
	top:0;
	
}


header h1{
	color:black;
	text-align:center;
	margin-top: 50px;

}

#btn_menu{
	position: fixed;
	z-index:3;
	display: block;
	width: 66px;
	height: 66px;
	right: 14px;
	top: 15px;
	border-radius:4px;
	background:#333;
	/* マウスに反応する */
	cursor: pointer;
	background-color: #D8C6A8;
}
	#btn_menu .icon{
		position:relative;
		width:58px;
		height:38px;
		left:4px;
		top:15px;
		transition: all 0.3s;
		transform: translateX(0px) translateY(0px);
		background-color: #D8C6A8;
	}
		#btn_menu span {
			position: relative;
			display: block;
			height: 2px;
			border-radius: 3px;
			background: rgba(255,255,255, 1);
			top: 14px;
			transition: all 0.3s;
			transform: rotate(0deg);
		}
		#btn_menu .top {
			transform: translateY(-8px) translateX(0px);
		}
		#btn_menu .bottom {
			transform: translateY(8px) translateX(0px);
		}

/* メニュー開いたとき */
#btn_menu.isopen{
}
	#btn_menu.isopen .icon{
		transform: translateX(2px) translateY(1px);
	}

	#btn_menu.isopen span.middle {
		background: rgba(255,255,255, 0);
	}
	#btn_menu.isopen .top {
		transform: rotate(-45deg) translateY(0px) translateX(-3px);
	}
	#btn_menu.isopen .bottom {
		transform: rotate(45deg) translateY(0px) translateX(-3px);
	}


article{
	text-align: center;
	padding-top: 100px;
}

ul li{
	display: inline-block;
	padding:8px;
	border-radius:6px;
	background:#fff;
}

.home{
	margin-top:0px;
	margin-bottom:0px;
}

.home img{
	margin: 0px;
}


.Listen {
	margin-left:500px;
    margin-right:auto;
}

.scroll-1{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-2{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-3{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-4{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-5{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-6{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-7{
	margin:250px 0 50px;
	/*width:3500px;*/
}
.scroll-8{
	margin:250px 0 300px;
	/*width:3500px;*/
}

.profile{
	margin-top:0px ;
	margin-bottom:0px;
}

.profile span img{
	width:500px;
	margin:0px 0 0px ;
}

.profile h2{
	padding-right:0px;
}
.profile .profiletext{
	padding-left:20px;
}

div{
	text-align:center;	
}

nav ul {
	list-style-type:none;
	max-width:100%;
	margin-left:auto;
	margin-right:auto;
}

nav a {
	display: block;
	text-decoration: none;
	color: black;
	font-size:14px;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:30px;
	padding-right:30px;
}
nav a:hover {
	background-color: #D8C6A8;
	color: red;
}

.menu{
	margin:0px auto;
	display:flex;
	
}
	.menu .piece{
		width:130px;
		flex-flow:row wrap;
		margin:0 2px;
	}
		.menu .piece a{
			display:block;
			padding:10px;
			font-size: 20px;
			font-weight:bold;
			font-family: 'Courier',sans-serif;
		}
.menu2{
	padding-top:20px;
	display:flex;
	
}
	.menu2 .piece{
		width:150px;
		flex-flow:row wrap;
		margin:0 2px;
	}
		.menu2 .piece a{
			display:block;
			padding:10px;
			font-size: 20px;
			font-weight:bold;
			font-family: 'Courier',sans-serif;
		}

footer {
	margin-top: 50px;
	margin-bottom:50px;
}

footer p{
	font-size: 12px;
	line-height: 175%;
	text-align: center;
	color:black;
	margin-bottom: 100px;
}


.note .piece{
	clear:both;
	display: inline-block;

}


.sns{
	margin-bottom:0px;
	background-color:#ECE3D4;
}

.sns h2{
	margin: 60px;
	background-color:#ECE3D4;
}



.contact p{
	font-size: 25px;
	font-weight:bold;
	font-family: 'Courier',sans-serif;
}

.piece1 {
	background-color:#ECE3D4;
}

.piece2 {
	background-color:#ECE3D4;
}













/*
@media only screen and (max-device-width: 450px) {
*/
@media only screen and (max-device-width: 600px) {
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-feature-settings: "palt";
}

body, html {
	width: 100%;
	height: 100%;
}

body {
	font-family: sans-serif;
	background-color:#ECE3D4;

}

/*header, main, footer {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}*/
header {
transition: all 0.5s ease-out;

	position:fixed;
	z-index:3;
	/* 隠しておく */
	top:-160px;
	width:100vw;
	background:rgba(200,200,200, 0.8);
	padding:50px 0 0;
	background:#fff;
	background-color:#ECE3D4;
}

header.isopen{
	top:0;
}


header h1{
	color:black;
	text-align:center;
	margin-top: 30px;
}

#btn_menu{
	position: fixed;
	z-index:3;
	display: block;
	width: 130px;
	height: 130px;
	right: 14px;
	top: 15px;
	border-radius:4px;
	background:#333;
	/* マウスに反応する */
	cursor: pointer;
	background-color: #D8C6A8;
}
	#btn_menu .icon{
		position:relative;
		width:120px;
		height:38px;
		left:4px;
		top:43px;
		transition: all 0.3s;
		transform: translateX(0px) translateY(0px);
		background-color: #D8C6A8;
	}
		#btn_menu span {
			position: relative;
			display: block;
			height: 4px;
			border-radius: 3px;
			background: rgba(255,255,255, 1);
			top: 14px;
			transition: all 0.3s;
			transform: rotate(0deg);
		}
		#btn_menu .top {
			transform: translateY(-18px) translateX(0px);
		}
		#btn_menu .bottom {
			transform: translateY(18px) translateX(0px);
		}

/* メニュー開いたとき */
#btn_menu.isopen{
}
	#btn_menu.isopen .icon{
		transform: translateX(4px) translateY(4px);
	}

	#btn_menu.isopen span.middle {
		background: rgba(255,255,255, 0);
	}
	#btn_menu.isopen .top {
		transform: rotate(-45deg) translateY(0px) translateX(-3px);
	}
	#btn_menu.isopen .bottom {
		transform: rotate(45deg) translateY(0px) translateX(-3px);
	}


article{
	text-align: center;
	padding-top: 100px;
}

ul li{
	display: inline-block;
	padding:8px;
	border-radius:6px;
	background:#fff;
}

.home{
	margin-top:-10px;
	margin-bottom:0px;
}

.home img{
	margin-bottom: 0px;
}
	
	
.scroll-1{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-2{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-3{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-4{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-5{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-6{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-7{
	margin:250px 0 0px;
	/*width:3500px;*/
}
.scroll-8{
	margin:250px 0 100px;
	/*width:3500px;*/
}
	
	
.profile{
	margin-top:0px;
	margin-bottom:0px;
}

.profile span img{
	width:500px;
	margin:0px 0 50px ;
}

.profile h2{
	margin:0;
}
.profile .profiletext{
	padding-left:20px;
}

div{
	text-align:center;	
}

nav ul {
	list-style-type:none;
	max-width:100%;
	margin-left:auto;
	margin-right:auto;
}

nav a {
	display: block;
	text-decoration: none;
	color: black;
	font-size:14px;
	text-align:center;
	padding-top:10px;
	padding-bottom:10px;
	padding-left:30px;
	padding-right:30px;
}
nav a:hover {
	background-color: white;
	color: red;
	background-color: #D8C6A8;
}

.menu{
	margin:0 0 40;
	display:flex;
	
}
	.menu .piece{
		width:115px;
		flex-flow:row wrap;
	}
		.menu .piece a{
			display:block;
			padding:0px;
			font-size: 25px;
			font-family: 'Courier',sans-serif;
	        overflow: auto; 
		}

.menu2{
	padding:40px 0 20px;
	display:flex;
	
}
	.menu2 .piece{
		width:120px;
		flex-flow:row wrap;
		margin:0 2px;
	}
		.menu2 .piece a{
			display:block;
			padding:10px;
			font-size: 25px;
			font-family: 'Courier',sans-serif;
		}



footer {
	margin-top: 50px;
	margin-bottom:50px;
}

footer p{
	font-size: 12px;
	line-height: 175%;
	text-align: center;
	color:black;
	margin-bottom:0px;
}


	
.contact p{
	font-size: 25px;
	font-weight:bold;
	font-family: 'Courier',sans-serif;
}

}
