@charset "utf-8";
/* CSS Document */
body{
	color: #493D37;
	background-color: #FCFAF7;
	font-size: 14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
img{
	width: 100%;
}
a{
	text-decoration: none;
	color: #493D37;
}
h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: inherit;
}

/*ヘッダー*/
header{
	position: fixed;
	width: 100%;
	z-index: 100;
}
.header_container{
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 0 20px;
	background: rgb(230,226,217,0.5);
}
.menu_button{
	position: relative;
	z-index: 200;
	width: 30px;
	height: 21px;
}
.bar{
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 5px;
	background-color: #493D37;
}
.bar1{
	top: 0;
}
.bar2{
	top: 10px;
}
.bar3{
	bottom: 0px;
}
.menu_button.active .bar1{
	background-color: #FCFAF7;
	transform: translateY(9.5px) rotate(-45deg);
}
.menu_button.active .bar2{
	opacity: 0;
}
.menu_button.active .bar3{
	background-color: #FCFAF7;
	transform: translateY(-9.5px) rotate(45deg);
}
.nav_wrapper{
	width: 100%;
	height: 100vh;
	transition: all 0.5s;
	transform: translate(-100%);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: #493D37;
	overflow-y: scroll;
	scrollbar-width: none;
}
.nav_wrapper.open{
	transform: translate(0);
}
.nav{
	position: absolute;
	top: 10%;
	left: 30%;
}
.nav li{
	list-style: none;
	font-family: "Zen Old Mincho", serif;
	font-size: 30px;
	padding-top: 15px;
}
.nav li a{
	display: inline-block;
	width: 100%;
	color: #FCFAF7;
}
.accordion{
	position: relative;
	cursor: pointer;
	transition: all .5s ease;
	color: #FCFAF7;
	font-size: 30px;
}
.accordion::before{
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-bottom: solid 2px #FCFAF7;
	border-right: solid 2px #FCFAF7;
	transform: rotate(45deg);
	position: absolute;
	top: 43%;
	left: 110%;
	transition: all 0.4s;
}
.accordion.close::before{
	transform: rotate(225deg);
}
.box{
	display: none;
}
.box-list{
	display: flex;
	flex-direction: column;
	padding-left: 20px;
}
.box-list a{
	font-size: 20px;
	padding-top: 5px;
}
.box.open {
  transform: translate(0);
}
h1{
	position: absolute;
	transform: translate(-50%, 0%);
	left: 50%;
}
.icon img{
	height: 25px;
	width: auto;
}
.icon{
	display: flex;
	justify-content: space-between;
	width: 90px;
}
.icon a{
	color: #493D37;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5px 0;
}
.icon span{
	font-size: 0.7rem;
	padding-top: 5px;
}

/*main*/
.login{
	padding: 100px 0;
}
.container{
	margin: 0 20px;
}
h2{
	font-size: 25px;
	font-weight: 800;
	padding-bottom: 50px;
	text-align: center;
}
.login_box{
	padding:0 15px;
	max-width: 500px;
	margin: auto;
}
.form{
	padding-bottom: 25px;
}
.form_title label{
	font-size: 18px;
}
.form input{
	border: 1px solid #493D37;
	border-radius: 5px;
	width: 100%;
	padding: 5px 150px 5px 5px;
	margin-top: 5px;
}

/*ボタン*/
.button{
	text-align: center;
	padding: 60px 0 50px;
}
.button a{
	color: #FCFAF7;
	font-size: 16px;
	background-color: #B68C5C;
	padding: 10px 40px;
	border-radius: 5px;
	display: inline-block;
	transition: 0.3s;
}
.button a:hover{
	background-color: #D6B48E;
}

/*フッター*/
.footer_fixed{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
footer{
	background-color: #E6E2D9;
	padding: 10px 40px;
	margin-top: auto;
}
.footer_icon{
	display: flex;
	justify-content: space-between;
	max-width: 500px;
	margin: 10px auto;
	align-items: center;
}
.footer_logo{
	display: flex;
	align-items: center;
}
.shop_name{
	padding-left: 10px;
	text-align: center;
}
.shop_name p{
	font-size: 10px;
	padding-bottom: 5px;
}
.footer_logoimg{
	width: 50px;
}
.footer_logofont{
	width: 80px;
}

.sns{
	display: flex;
}
.sns img{
	width: 30px;
	height: auto;
	margin: 0 10px;
}

.copy{
	text-align: center;
	padding-top: 20px;
}
.copy small{
	color: #493D37;
}




@media(min-width:768px){
	body{
		font-size: 18px;
	}
	.header_container{
		padding: 0 30px;
	}
	.logo img{
		width: 100px;
		height: auto;
	}
	.icon{
		width: 130px;
	}
	.icon img{
		height: 35px;
		width: auto;
	}
	.container{
		margin: 0 50px;
	}
	.login_box{
		padding: 0 30px;
	}
}

@media(min-width:1024px){
	.header_container{
		padding: 0 50px;
	}
	.menu_button{
		width: 40px;
		height: 31px;
	}
	.bar2{
		top: 15px;
	}
	.menu_button.active .bar1{
		transform: translateY(15px) rotate(-45deg);
	}
	.menu_button.active .bar3{
		transform: translateY(-15px) rotate(45deg);
	}
	.nav_wrapper{
		width: 40%;
	}
	.logo img{
		width: 120px;
	}
	.icon{
		width: 150px;
	}
	.icon img{
		height: 40px;
		width: auto;
	}
	.icon span{
		font-size: 0.83rem;
	}
	.login{
		padding: 140px 0;
	}
	
	
	
	footer{
		padding: 30px 40px;
	}
	.shop_name{
		padding-left: 20px;
	}
	.shop_name p{
		font-size: 15px;
	}
	.footer_logoimg{
		width: 80px;
	}
	.footer_logofont{
		width: 120px;
	}
}

@media(min-width:1280px){
	.sns img{
		margin: 0 20px;
	}
}

@media(min-width:1440px){
	body{
		font-size: 23px;
	}
	.nav li{
		font-size: 40px;
	}
	.accordion{
		font-size: 40px;
	}
	.box-list{
		padding-left: 30px;
	}
	.box-list a{
		font-size: 30px;
		padding-top: 10px;
	}
	.logo img{
		width: 140px;
	}
	.icon{
		width: 255px;
		padding: 15px 0;
	}
	.icon img{
		padding-right: 15px;
	}
	.icon a{
		flex-direction: row;
	}
	.container{
		margin: 0 100px;
	}
}

@media(min-width:1920px){
	body{
		font-size: 25px;
	}
	.menu_button{
		width: 50px;
		height: 41px;
	}
	.bar2{
		top: 20px;
	}
	.menu_button.active .bar1{
		transform: translateY(18px) rotate(-45deg);
	}
	.menu_button.active .bar3{
		transform: translateY(-18px) rotate(45deg);
	}
	.nav li{
		font-size: 50px;
	}
	.accordion{
		font-size: 50px;
	}
	.accordion::before{
		width: 20px;
		height: 20px;
		top: 40%;
	}
	.box-list{
		padding-left: 30px;
	}
	.box-list a{
		font-size: 40px;
	}
	.logo img{
		width: 160px;
	}
	.icon{
		width: 400px;
		padding: 20px 0;
	}
	.icon img{
		height: 60px;
	}
	.icon span{
		font-size: 1.44rem;
	}
	.container{
		margin: 0 150px;
	}
	
	.footer_icon{
		max-width: 800px;
	}
	.shop_name{
		padding-left: 30px;
	}
	.shop_name p{
		font-size: 18px;
	}
	.footer_logoimg{
		width: 100px;
	}
	.footer_logofont{
		width: 180px;
	}
	.sns img{
		width: 50px;
	}
}













