@charset "utf-8";

* {
	padding:0;
	margin:0px;
	outline:none;
	}

html, body {
	-webkit-text-size-adjust:100%;
}
html {
	font-family: 'Noto Sans JP', sans-serif;
	overflow: auto;
	font-size: 62.5%;
	font-weight: 300;
	}
bold {
	font-weight: 700;
}
@supports (-ms-ime-align: auto){ /* for Edge(Legacy) */
}
	
body {
	overflow: hidden;
	text-align:center;
	font-style: normal;
	line-height: 1.9;
	color: #000;
	}
img {
	vertical-align:top;
	border:0;
	width: 100%;
	height: auto;
	}
p, li, div {
	max-height: 100%;
}
li {
	list-style-type: none;
}
a {
	color: #000;
	text-decoration: none;
}

/* --- class and other set --- */
.clearfix:after {
    content:" ";
    display:block;
    clear:both;
}
.shadow {
	box-shadow:rgba(0, 0, 0, 0.2) 2px 2px 3px 3px;
}
.just {
	text-align: justify;
	text-justify: inter-ideograph;
}
@media only screen and (max-width: 767px) {
.pc {
	display:none;
	}
}
@media only screen and (min-width: 768px) {
.sp {
	display:none;
	}
}


	
#header {
	width: 100%;
	overflow: hidden;
}
#wrap {
	width: 100%;
}

#headline {
	background-repeat: no-repeat;
	background-position: center top;
}
#headline p {
	background-repeat: no-repeat;
	background-image: url("../images/icon.svg");
}
section h2 {
	display: inline-block;
	padding: 0 0.5em;
	margin: 0 auto;
	font-weight: 700;
	line-height: 1;
	border-bottom: 2px solid #000;
}
p.link a {
	display: block;
	background-color: #000;
	color: #fff;
}
footer {
	color: #fff;
	background-color: #000;
}
footer a {
	color: #fff;
}

@media only screen and (min-width: 768px) {
	#wrap {
		min-width: 768px;
		margin: 0 auto;
	}
	#header {
		width: 100%;
		height: 100px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 700;
	}
	#header h1 {
		width: 146px;
		height: 17px;
		overflow: visible;
		margin-left: 52px;
	}
	#header .menu {
		margin-right: 52px;
	}
	.menu ul {
		vertical-algin: middle;
	}
	.menu li {
		display: inline-block;
		font-size: 13px;
		margin: 0 1em;
		line-height: 22px;
	}
	.menu img {
		width: 22px;
		vertical-algin: middle;
	}
	
	#headline {
		background-image: url("../images/top_pc.jpg");
		background-size: 100% auto;
		padding-top: 42.6%;
	}
	#headline p {
		padding-top: 230px;
		background-size: 32px auto;
		background-position: center top 120px;
		font-size: 13px;
		line-height: 2em;
	}
	#headline p strong {
		display: block;
		line-height: 1;
		margin-bottom: 1em;
		font-size: 14px;
	}
	
	section {
		margin-top: 200px;
	}
	section h2 {
		font-size: 16px;
		padding-bottom: 6px;
		margin-bottom: 36px;
	}
	
	section#works .unit {
		float: left;
		width: calc((100% - 60px)/5);
		margin-top: 10px;
		margin-left: 10px;
		overflow: hidden;
	}
	section#works .unit.former {
		clear: both;
	}
	section#works .unit img {
		transition: all .5s;
		transform: scale(1);
	}
	section#works .unit:hover img {
	transform: scale(1.25);
	}
	
	section#store {
		padding-bottom: 100px;
	}
	section#store .flexbox {
		width: 72.5%;
		min-width: 768px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}
	section#store .flexbox .unit {
		width: 30%;
	}
	section#store p.sub {
		font-size: 13px;
		line-height: 30px;
		padding-bottom: 50px;
	}
	section#store p.sub img {
		width: 84px;
		vertical-align: middle;
		line-height: 30px;
		margin: 0 0.5em;
	}
	section#store p.link a {
		font-size: 13px;
		width: 260px;
		line-height: 44px;
		margin: 60px auto 0;
	}
	
	footer {
		padding: 40px 0 30px;
	}
	footer .menu ul {
		padding: 0 0 200px;
	}
	footer .copyright {
		font-size: 10px;
	}
}
@media only screen and (max-width: 767px) {
	body {
		padding-top: 70px;
		}
	#header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 700;
		background-color: #fff;
	}
	#header h1 {
		width: 120px;
		height: 14px;
		overflow: visible;
		margin-left: 5%;
	}
	#header .menubtn {
		margin-right: 5%;
		width: 20px;
		height: 20px;
		position: relative;
		transition: all .5s;
	}
	#header .menubtn::before,
	#header .menubtn::after {
		display: block;
		content: "";
		background-color: #000;
		height: 2px;
		border-radius: 1px;
		position: absolute;
		transform-origin: center center;
		transform: rotate(0);
		transition: all .3s ease;
	}
	#header.close .menubtn::before {
		width: 20px;
		left: 0;
		top: 4px;
	}
	#header.close .menubtn::after {
		width: 20px;
		left: 0;
		top: 14px;
	}
	#header.opn .menubtn::before,
	#header.opn .menubtn::after {
		width: 30px;
		left: -5;
		top: 10px;
	}
	#header.opn .menubtn::before {
		transform: rotate(45deg);
	}
	#header.opn .menubtn::after {
		transform: rotate(-45deg);
	}
	#header .menu {
		width: 100%;
		height: 100vh;
		background-color: #fff;
		position: fixed;
		left: 100%;
		top: 70px;
		transition: all .5s;
	}
	#header.opn .menu {
		left: 0;
	}
	#header .menu ul {
		margin: calc((100vh - 418px) / 2) 0;
	}
	#header .menu li {
		margin-left: 5%;
		text-align: left;
	}
	.menu li a {
		font-size: 16px;
		line-height: 60px;
	}
	.menu img {
		width: 24px;
		vertical-algin: middle;
	}
	#header .sp {
		margin-left: 5%;
		text-align: left;
	}
	p.insta {
		font-size: 16px;
		line-height: 3em;
	}
	p.copyright {
		font-size: 12px;
		line-height: 1.5em;
		font-weight: 400;
	}
	
	#headline {
		background-image: url("../images/top_sp.jpg");
		background-size: 100% auto;
		padding-top: 170%;
		padding-bottom: 50px;
	}
	#headline p {
		padding-top: 166px;
		background-size: 28px auto;
		background-position: center top 103px;
		font-size: 14px;
		line-height: 2;
	}
	#headline p strong {
		display: block;
		margin-bottom: 0.5em;
		font-size: 16px;
	}
	
	section {
		margin-top: 80px;
	}
	section h2 {
		font-size: 16px;
		padding-bottom: 6px;
		margin-bottom: 30px;
	}
	section .shelf {
		margin: 0 16px;
	}
	section#works .shelf .unit {
		width: calc(50% - 5px);
		padding-bottom: 10px;
	}
	section#works .shelf .unit:nth-child(odd) {
		float: left;
		clear: both;
	}
	section#works .shelf .unit:nth-child(even) {
		float: right;
	}
	
	section#store {
		padding-bottom: 100px;
	}
	section#store .unit {
		margin-bottom: 12px;
	}
	section#store p.sub {
		font-size: 14px;
		line-height: 30px;
		padding: 0 0 50px;
	}
	section#store p.sub img {
		width: 84px;
		vertical-align: middle;
		line-height: 30px;
		margin: 0 0.5em;
	}
	section#store p.link a {
		font-size: 16px;
		width: 260px;
		line-height: 44px;
		margin: 50px auto 0;
	}
	
	footer {
		padding: 20px 30px;
		text-align: left;
	}
	footer .insta {
		margin-top: 150px;
	}
}
/*
.section
*/


@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}