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



<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, user-scalable=yes">



@media screen and (max-width: 959px) {}
@media screen and (max-width : 519px ){}





html{font-size: 62.5%;}
@media screen and (max-width: 959px) {html{font-size: 50%;}}


body {
	margin: 0px;
	padding: 0px;
	color: black;
	line-height: 1.75;
	font-family: a-otf-gothic-bbb-pr6n, sans-serif;
	font-style: normal;
	font-weight: 400;
	background-color: white;
	font-size: 1.6rem;
	color: #231815;
}




.title{
	display: block;
	width:130px;
	margin: 20px auto 50px;
}




/*　ハンバーガーボタン */
.hamburger {
	display : block;
	position: fixed;
	z-index : 10;
	right : 32px;
	top   : 20px;
	width : 42px;
	height: 42px;
	margin-top: 10px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: relative;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : #555;
	transition        : 0.5s all;
}
.hamburger span:nth-child(1) {	top: 10px;}
.hamburger span:nth-child(2) {	top: 20px;}
.hamburger span:nth-child(3) {	top: 30px;}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 18px;
	left: 6px;
	width: 24px;
	transform : rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
	left: 60%;
	opacity: 0;
	animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
	100% {height: 0;}
}
@keyframes active-hamburger-bar02 {
	100% {height: 0;}
}
.hamburger.active span:nth-child(3) {
	top: 17px;
	width: 24px;
	transform : rotate(45deg);
	}
.hamburger::after {
	position: relative;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 52px;
	height: 52px;
	margin: -32px 0 0 -32px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0);
	transition: all .75s;
}
.hamburger.active::after {	border: 2px solid #555;}







nav{
	width: 100%;
	max-width: 300px;
	height: 100vh;
	position: fixed;
	display: block;
	top:0;
	right: 0;
	background-color: white;
	padding: 50px;
	transition: 1s;
	transform: translateX(100%);
	z-index: 9;
}
nav.active{transform: translateX(0%);}
nav img{
	width: 150px;
	margin-bottom: 20px;
}
nav li{
	margin-top: 15px;
}
nav li a{
	color: black;
	text-decoration: none;
}
nav li::before{
}

.filter{
	width: 100%;
	height: 100vh;
	position: fixed;
	top:0;
	left: 0;
	background-color: #333;
	opacity: 0.6;
	z-index: 8;
	display: none;
}


address{
	width: 100%;
	background-color: #6F635C;
}

address p{
	font-style: normal;
	padding: 30px 0;;
	width: calc( 100% - 20px );
	max-width: 1000px;
	margin: auto;
	color: white;
	font-size: 1.2rem;
}
address span.name{	font-size: 2rem;}

footer  p.copyright{
	padding: 5px;
	color: white;
	text-align: center;
	font-size: 1.2rem;
}

