@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;500;600;800&family=Noto+Sans+JP:wght@400;700&family=Open+Sans:wght@400;600;700;800&display=swap');

/****** reset ******/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video{margin:0; padding:0; border:0; outline:0; font-size:100%; font:inherit; vertical-align:baseline;}
a{margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display:block;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content: '';	content: none;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse; border-spacing:0;}
button{ border:none; background:none; margin:0; padding:0;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,var{font-weight:normal; font-style:normal;}
caption,th{text-align:left;}
abbr,acronym{border:0;}

/****** /reset ******/


/****** common ******/

* {
	box-sizing: border-box;
}

html, body{  
    overflow-x: hidden;  
}  

html {
	height: 100%;
}

body {
	color: #333333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 3px;
	line-height: 200%;
	width: 100%;
	min-width: 350px;
	height: auto;
	margin: 0 auto;
}

::selection {
	background: rgba(141,133,99,0.8); color: #fff;
}

::-moz-selection {
	background: rgba(141,133,99,0.8); color: #fff;
}

a {
	color: #cfcfcf;
	text-decoration: none;
	transition: all .3s ease;
	cursor: pointer;
}

a:hover {
	color: #a19b82;
}

img {
	pointer-events: none;
}

header {
	height: 50px;
	width: 100%;
	position: absolute;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

header h1 {
	width: 80%;
	max-width: 438px;
	height: 24px;
}

header h1 svg path {
	fill: #8D8563;
}

#cover{
    width: 100%;
    height: 100vh;
    margin: 0px auto;
    position: fixed;
    overflow: hidden;
}

#cover img {
	height: 94%;
	margin-top: 5%;
	margin-left: calc(50% - 140px);
	position: relative;
	z-index: 1;
}

#cover::before {
	content: "";
	background-color: #ebf5ed;
	width: calc(100% - 100px);
	height: calc(100% - 100px);
	position: absolute;
	top: 50px;
	left: 50px;
	z-index: -1;
}

#cover::after {
	content: "";
	background: url(../images/cover_after.png) no-repeat;
	background-size: contain;
	background-position: 0 80%;
	width: calc(100% - 140px);
	height: 100%;
	position: absolute;
	bottom: 70px;
	left: 70px;
	z-index: 0;
}

@media screen and (max-width: 1100px) {
	#cover::after {
		content: "";
		height: calc(100% - 120px);
		background: url(../images/cover_afterTB.png) no-repeat;
		background-size: contain;
		background-position: 0 80%;
	}
}

@media screen and (max-width: 580px) {
	header h1 {
		width: 64%;
	}

	#cover::before {
		content: "";
		width: calc(100% - 80px);
		height: calc(100% - 80px);
		top: 40px;
		left: 40px;
	}

	#cover img {
		height: 100%;
		margin-left: calc(50% - 200px);
	}

	#cover::after {
		content: "";
		height: calc(100% - 110px);
		background: url(../images/cover_afterSP.png) no-repeat;
		background-size: contain;
		background-position: 0 10%;
		bottom: 70px;
		left: 50px;
	}
}

main {
	position: relative;
	z-index: 1;
}

h2 {
	font-family: 'Jost', sans-serif;
	font-size: 2.4em;
	font-weight: 200;
	letter-spacing: .25em;
	text-align: center;
	color: #adadad;
	margin: 30px auto 50px;
}

#profile {
	width: 100%;
	background-color: rgba(250,255,250,0.97);
	padding: 50px 0 50px;
	margin-top: 100vh;
}

#profile article {
	width: 90%;
	max-width: 1080px;
	margin: 0px auto;
}

#profile article dl {
	display: flex;
	flex-wrap: wrap;
}

#profile article dl dt {
	color: #a19b82;
	border-bottom: 1px solid #cfcfcf;
	width: 240px;
	padding: 40px 10px;
	margin-right: 4px;
}

#profile article dl dd {
	border-bottom: 1px solid #cfcfcf;
	width: calc(100% - 244px);
	padding: 40px 10px;
}

#profile article dl dt:first-of-type,
#profile article dl dd:first-of-type {
	border-top: 1px solid #cfcfcf;
}


@media screen and (max-width : 961px ){
	#profile article dl {
		display: block;
	}
	#profile article dl dt,
	#profile article dl dd {
		width: 100%;
		margin-bottom: 10px;
		padding: 20px 10px 28px;
	}
	#profile article dl dd:first-of-type {
		border-top: none;
	}
}

#works {
	width: 100%;
	background-color: rgba(250,255,250,0.97);
	padding: 50px 0 50px;
}

#works > ul#submenu {
	text-align: center;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#works > ul#submenu span {
	margin-right: 18px;
}

#works > ul#submenu li {
	height: 34px;
	margin: 0 8px;
}

#works > ul#submenu li a {
	padding: 4px 10px;
}

#works > ul#submenu li a.active {
	color: #a19b82;
	border-bottom: 1px solid #cfcfcf;
}

@keyframes zoom-in {
	0% {
		transform: scale(.8);
		opacity: 0;
	}
	100% {
		transform: none;
		opacity: 1;
	}
}
@keyframes rotate-right {
	0% {
		transform: translate(-100%) rotate(-100deg);
	}
	100% {
		transform: none;
	}
}
.is-animated {
	animation: 1.5s zoom-in;
}

@media screen and (max-width : 961px ){
	#works > ul#submenu span {
		width: 100%;
	}
}

#works > ul#filterlist {
	width: 100%;
	margin: 30px auto 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#works > ul#filterlist > li {
	width: 25%;
	height: 100%;
	margin: 0;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 1400px){
	#works > ul#filterlist > li {
		width: calc(100% / 3);
	}
}
@media screen and (max-width : 961px ){
	#works > ul#filterlist > li {
		width: 50%;
	}
}

@media screen and (max-width : 480px ){
	#works > ul#filterlist > li {
		width: 100%;
	}
}

#works > ul#filterlist > li a {
	width: 100%;
	height: calc(100% - 8px);
	display: block;
	overflow: hidden;
}

#works > ul#filterlist > li img {
	vertical-align: top;
	width: 100%;
	transition: 1s all;
}

#works > ul#filterlist > li:hover img {
	transform: scale(1.1, 1.1);
	transition: 1s all;
    -webkit-filter: blur(2.5px);
    -moz-filter: blur(2.5px);
    -ms-filter: blur(2.5px);
    -o-filter: blur(2.5px);
    filter: blur(2.5px);
}

#works > ul#filterlist > li a figure {
	width: 100%;
	height: calc(100% - 8px);
	position: relative;
	display: block;
	overflow: hidden;
}

#works > ul#filterlist > li figcaption::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    background: -o-linear-gradient(top, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    background: -moz-linear-gradient(bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,0.5)));
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(0,0,0,0.8)', endColorstr='rgba(0,0,0,0.5)', GradientType=0)";
	bottom: 0;
	z-index: 0;
	opacity: 0;
	transition: all .3s ease;
}

#works > ul#filterlist > li figcaption {
	opacity: 0;
	transition: all .6s ease;
}

#works > ul#filterlist > li:hover figcaption,
#works > ul#filterlist > li:hover figcaption::after {
	opacity: 1;
}

#works > ul#filterlist > li figcaption dl {
    text-align: center;
	width: 100%;
    height: 100%;
	color: #fff;
	padding: 0 10px 12px;
	margin-top: 8%;
	display: flex;
	flex-wrap: wrap;
	position: absolute;
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: all .8s ease;
	transition-delay: 0.2s;
}

#works > ul#filterlist > li:hover figcaption dl {
	margin-top: 0;
	opacity: 1;
}

#works > ul#filterlist > li figcaption dl dt {
	font-weight: 700;
	width: 100%;
	margin-top: auto;
}

#works > ul#filterlist > li figcaption dl dd {
	font-size: 12px;
	line-height: 18px;
	width: 100%;
	margin-top: 3%;
	opacity: 0;
	transition: all 0.8s ease;
	transition-delay: 0.6s;
}

#works > ul#filterlist > li:hover figcaption dl dd {
	opacity: 1;
}

p#andmore {
	text-align: center;
}

#overview {
	background-color: rgba(255,255,255,0.85);
	padding: 100px 0;
}

#overview #overview-box {
	background-color: rgba(245,250,245,0.45);
	width: 96%;
	max-width: 1080px;
	margin: 0 auto;
	font-size: .9em;
	padding: 50px;
}

@media screen and (max-width : 961px ){
	#overview #overview-box {
		padding: 30px;
	}
}

#overview #overview-box h3 {
	color: #a29664;
	font-weight: normal;
	font-size: 1.2em;
	padding: 2em 0 1em;
}

#overview #overview-box div .slash {
	color: #c9c3a9;
}

#overview #overview-box ul li {
	overflow: hidden;
	margin-bottom: .8em;
}

#overview #overview-box ul li:before {
	content: "";
	background-color: #c9c3a9;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	display: block;
	position: relative;
	float: left;
	line-height: 200%;
	top: 1em;
}

#overview #overview-box ul li span {
	margin-left: 12px;
}

#overview #overview-box ul .no:before {
	display: none;
}

#contact {
	background-color: rgba(255,255,255,0.85);
	width: 100%;
	padding: 0 0 100px;
}

#contact div {
	background: rgba(245,250,245,0.45);
	width: 96%;
	height: 300px;
	max-width: 1080px;
	margin: 0 auto;
	transition: 1s;
}

#contact div a {
	font-family: 'Jost', sans-serif;
	font-size: 4em;
	font-weight: 300;
	letter-spacing: 6px;
	color: #a19b82;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 1.2s;
}

#contact div:hover {
	background: rgba(250,255,250,0.85);
	box-shadow: 10px 4px 20px rgba(150,150,150,0.05);
}

#contact div:hover a {
	opacity: 0.3;
}

#contact div a svg {
	width: 60px;
	height: 60px;
	margin-right: 20px;
}

@media screen and (max-width : 480px ){
	#contact div {
		height: 200px;
	}
	#contact div a {
		font-size: 3.6em;
	}
	#contact div a svg {
		width: 50px;
	}
}

#contact div a svg path{
	fill: #a19b82;
}

footer {
	font-size: 1em;
	text-align: center;
	letter-spacing: .2em;
	background-color: rgba(255,255,255,0.96);
	color: #8D8563;
	padding: .5em 0;
	position: relative;
	z-index: 10;
}

