@charset "UTF-8";
/**
 * reset
 */
body, div, main, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width:100%;
	height:auto;
	vertical-align:bottom;
}
strong {
	font-weight: bolder;
}
a {
	outline: none;
	color: #000;
	text-decoration: none;
	transition: opacity 0.3s;
}
a:hover {
	opacity: 0.5;
}

.dg.ac {
	z-index: 1000000 !important;
}


body {
	margin: 0;
	padding: 0;
	background-color: #F4F4F4;
	text-align: left;
	font-family: 'Noto Sans JP', 'Arial', sans-serif;
	font-weight: 400;
	font-size: 16px;
	font-style: normal;
	letter-spacing: 0.05em;
	line-height: 2;
	color:#000;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;

	user-select:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-khtml-user-select:none;
	-webkit-user-drag:none;
	-khtml-user-drag:none;
}
.an {
	font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP', 'Arial', sans-serif;
}
.jp,
input {
	font-family: 'Noto Sans JP', sans-serif;
}

/**
 * #contents
 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;

	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-touch-callout:none;
	-moz-user-select:none;
	touch-callout:none;
	user-select:none;
}
strong {
	font-weight: bolder;
}


@media only screen and (min-width:769px) {
	 .sp {
		display: none !important;
	}
}
@media only screen and (max-width:768px) {
	 .pc {
		display: none !important;
	}
}

.an {
	font-family: 'Helvetica Neue', 'Helvetica', sans-serif;
	letter-spacing: 0.1em;
} 

/* micro clearfix  */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }

.clear {
	clear: both;
}


/**
 * anime
 */
.ani_slideup {
	opacity:0;
	transform: translateY(15px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.ani_slideup.on {
	opacity:1;
	transform:translateY(0);
}
.ani_fade {
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
}
.ani_fade.on {
	opacity:1;
}
.ani_btn {
	transition: opacity 1.2s ease-out, transform 0.8s ease-in-out, background 0.3s !important;
	/*transform: scale(1.1);*/
	opacity: 0;
}
.ani_btn.on {
	/*transform: scale(1);*/
	opacity: 1;
}

/**
 * .loader
 */
.loader {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #000;
	background: linear-gradient(to right, #000 10%, rgba(0, 0, 0, 0) 42%);
	animation: loader 1.4s infinite linear;
}
.loader:before {
	width: 50%;
	height: 50%;
	background: #000;
	border-radius: 100% 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}
.loader:after {
	background: #F4F4F4;
	width: 75%;
	height: 75%;
	border-radius: 50%;
	content: '';
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
@media only screen and (max-width:768px) {
	.loader {
		width: 30px;
		height: 30px;
	}
}

/**
 * .btn
 */
.btn_link,
.btn_more {
	position: relative;
	box-sizing: border-box;
	display: inline-block;
	min-width: 200px;
	background-color: #000;
	padding: 14px 30px 14px 40px;
	color: #fff;
	font-size: 16px;
	font-weight: 200;
	font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP', 'Arial', sans-serif;
	letter-spacing: 0.2em;
	transition: all 0.3s;
}
.btn_more {
	min-width: 171px;
	padding: 11px 30px 11px 40px;
	font-size: 14px;
}
.btn_link::before,
.btn_link::after,
.btn_more::before,
.btn_more::after,
.single .btn_prev::before,
.single .btn_prev::after,
.single .btn_next::before,
.single .btn_next::after {
	display: block;
	position: absolute;
	top: 0;
	background-color: #000;
	content: '';
}
.btn_link::before,
.btn_more::before,
.single .btn_prev::before,
.single .btn_next::before  {
	left: 0;
	width: 0;
	height: 1px;
}
.btn_link::after,
.btn_more::after,
.single .btn_prev::after,
.single .btn_next::after {
	right: 0;
	width: 1px;
	height: 0;
}
a:hover .btn_link,
.btn_link:hover,
.btn_more:hover,
.single .btn_prev:hover,
.single .btn_next:hover {
	background-color: #fff;
	color: #000;
	opacity: 1;
}
a:hover .btn_link::before,
.btn_link:hover::before,
.btn_more:hover::before,
.single .btn_prev:hover::before,
.single .btn_next:hover::before {
	width: 100%;
	transition: width 0.2s 0.2s;
}
a:hover .btn_link::after,
.btn_link:hover::after,
.btn_more:hover::after,
.single .btn_prev:hover::after,
.single .btn_next:hover::after {
	height: 100%;
	transition: height 0.1s 0.4s;
}
a:hover .btn_link span:before,
.btn_link:hover span:before,
.btn_more:hover span:before,
.single .btn_prev:hover span:before,
.single .btn_next:hover span:before {
	width: 100%;
	transition: width 0.2s 0.5s;
}
a:hover .btn_link span:after,
.btn_link:hover span:after,
.btn_more:hover span:after,
.single .btn_prev:hover span:after,
.single .btn_next:hover span:after {
	height: 100%;
	transition: height 0.1s 0.7s;
}
.btn_link span:before,
.btn_link span:after,
.btn_more span:before,
.btn_more span:after,
.single .btn_prev span:before,
.single .btn_prev span:after,
.single .btn_next span:before,
.single .btn_next span:after {
	display: block;
	position: absolute;
	bottom: 0;
	background-color: #000;
	content: '';
}
.btn_link span:before,
.btn_more span:before,
.single .btn_prev span:before,
.single .btn_next span:before {
	right: 0;
	width: 0;
	height: 1px;
}
.btn_link span:after,
.btn_more span:after,
.single .btn_prev span:after,
.single .btn_next span:after {
	left: 0;
	width: 1px;
	height: 0;
}

.btn_link b,
.btn_more b {
	position: relative;
	display: inline-block;
	padding-right: 25px;
}
.btn_more b {
	padding-right: 20px;
}
.btn_link b::after,
.btn_more b::after {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	margin: auto;
	content: '';
}
.btn_link b::after {
	top: 1px;
	width: 15px;
	height: 10px;
	background: url('../img/icon_arrow0.svg') no-repeat center center / contain;
}
a:hover .btn_link b::after,
.btn_link:hover b::after {
	background-image: url('../img/icon_arrow0_b.svg');
}
.btn_more b::after {
	top: 2px;
	width: 10px;
	height: 15px;
	background: url('../img/icon_arrow2.svg') no-repeat center center / contain;
}
.btn_more:hover b::after {
	background-image: url('../img/icon_arrow2_b.svg');
}
.btn_link.inact {
	pointer-events: none;
	background-color: #fff;
	padding: 14px 10px;
	font-weight: 500;
	color: #e5e5e5;
}
.btn_link.inact b {
	padding: 0;
}
.btn_link.inact b::after {
	display: none;
}
@media only screen and (max-width:768px) {
	.btn_link,
	.btn_more {
		min-width: 0;
		width: 100%;
		padding: 10px 10px 10px 20px;
		font-size: 9px;
	}
	.btn_link.inact {
		padding: 10px;
	}
	.btn_link b {
		padding-right: 15px;
	}
	.btn_link b::after {
		top: 0;
		width: 9px;
		height: 6px;
	}
	.btn_more b {
		padding-right: 12px;
	}
	.btn_more b::after {
		top: 0;
		width: 6px;
		height: 9px;
	}
}

/**
 * header
 */
.header .logo {
	position: fixed;
	left: 0;
	width: 10vw;
	text-align: center;
	z-index: 9000;
}
.header .logo {
	top: 2.4vw;
}
.header .logo img {
	width: 8vw;
	margin-left: 1vw;
}
@media only screen and (max-width:768px) {
	.header .logo {
		top: 20px;
		left: 20px;
		margin: auto;
		width: 64px;
	}
	.header .logo img {
		width: 100%;
	}
}


/**
 * .footer
 */
.footer {
	font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP', 'Arial', sans-serif;
}
.footer .copy {
	padding: 55px 0;
	text-align: center;
	font-size: 12px;
	font-weight: 200;
}
.footer .copy .note {
	font-weight: 100;
}
.footer .copy h2 {
	padding: 60px 0 35px 0;
	text-align: center;
}
.footer .copy h2 img {
	width: 122px;
	cursor: pointer;
}
@media only screen and (max-width:768px) {
	.footer {
		padding-bottom: 60px;
	}
	.footer .copy {
		padding: 30px 0;
		font-size: 9px;
	}
	.footer .copy .note {
		font-size: 10px;
	}
	.footer .copy h2 {
		padding: 30px 0 40px 0;
	}
	.footer .copy h2 img {
		width: 83px;
	}
}


/**
 * .archive
 */
.archive {
	overflow: hidden;
}
.archive .header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}
.archive .header::before,
.archive .header::after {
	position: fixed;
	top: 0;
	width: 10vw;
	height: 100vh;
	background: rgba(244,244,244,0.5);
	content: '';
	z-index: 1000;
}
.archive .header::before {
	left: 0;
}
.archive .header::after {
	right: 0;
}

.archive .head {
	box-sizing: border-box;
	position: fixed;
	left: 0;
	width: 100%;
	padding: 0 12vw 30px 12vw;
	background: #F4F4F4;
}
.archive .head .cf {
	margin: 50px 0 0 0;
}
.archive .header .ttl {
	position: relative;
	margin-top: 1.7vw;
	line-height: 1.4;
	letter-spacing: 0.1em;
	font-size: 40px;
	font-weight: 700;
}
.archive .header .sort {
	position: relative;
	letter-spacing: 0.2em;
	float: left;
	font-weight: 13px;
	font-weight: bold;
}
.archive .header .sort h3 {
	padding: 2px 0;
	cursor: pointer;
}
.archive .header .sort h3.select {
	color: #8D8D8D;
}
.archive .header .sort > div {
	position: relative;
	width: 290px;
	border-bottom: solid 1px #333;
}
.archive .header .sort > div a {
	display: block;
	position: absolute;
	top: -5px;
	right: 0;
	width: 15px;
}
.archive .header .sort ul {
	display: none;
	position: absolute;
	min-width: 100%;
	left: -20px;
	background-color: rgba(255,255,255,0.95);
	padding: 10px 20px;
	z-index: 20000;
}
.archive .header .sort li {
	position: relative;
	white-space: nowrap;
}
.archive .header .sort li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 1px;
	background-color: #000;
	content: '';
}
.archive .header .sort li:first-child:before {
	display: none;
}

@media only screen and (min-width:769px) {
	.archive .head {
		transition: transform 0.3s ease-out;
		transform: translateY(0);
	}
	.archive .header.off .head {
		transition: transform 0.2s ease-in;
		transform: translateY(-100%);
	}
}
@media only screen and (max-width:768px) {
	.archive .header {
		position: fixed;
		width: 100%;
		background-color: #F4F4F4;
		z-index: 10000;
		transition: transform 0.3s ease-out;
		transform: translateY(0);
	}
	.archive .header.off {
		transition: transform 0.2s ease-in;
		transform: translateY(-100%);
	}
	.archive .head {
		position: static;
		width: 100%;
		padding: 75px 20px 5px 20px;
	}
	.archive .head .cf {
		margin:0;
	}
	.archive .header .logo {
		position: absolute;
		width: 64px;
		top: 20px;
		left: 20px;
	}
	.archive .header .logo img {
		width: 100%;
		height: auto;
	}
	.archive .header .ttl {
		position: fixed;
		top: 21px;
		left: 98px;
		letter-spacing: 0.3em;
		line-height: 1.4;
		font-weight: 700;
		font-size: 14px;
	}
	.archive .header .ttl span {
		font-size: 9px;
	}
	
	.archive .header::before,
	.archive .header::after {
		display: none;
	}
	.archive .header .sort > div {
		width: 240px;
		border: none;
	}
	.archive .header .sort h3 {
		font-size: 13px;
	}
	.archive .header .sort > div a {
		top: -10px;
		width: 12px;
	}
	.archive .header .sort ul {
		left: -10px;
	}
	.archive .header .sort li {
		font-size: 13px;
	}
}

/**
 * .archive main
 */
.archive main {
	box-sizing: border-box;
	position: static;
	width: 100%;
	padding: 0 12vw;
}
.archive .list {
	margin-top: 250px;
}
.archive .list .search_txt {
	font-size: 13px;
	font-weight: 700;
	color: #8d8d8d;
}
.archive .list .search_txt span {
	color: #000;
}
.archive .list .notfound {
	text-align: center;
	padding: 6em 0 2em 0;
	font-size: 26px;
	font-weight: 700;
	color: #8d8d8d;
}
.archive .list .notfound span {
	display: block;
	margin-bottom: 0.5em;
	font-size: 30px;
}
.archive .list ol > li {
	position: relative;
	margin: 140px 0;
}
.archive .list ol > li:first-child {
	margin-top: 260px;
}
.archive .list h2 {
	position: relative;
	margin-bottom: 65px;
	padding-right: 70px;
	font-size: 14px;
	font-weight: 100;
}
.archive .list h2 span {
	display: inline-block;
	white-space: nowrap;
}
.archive .list h2 span::before {
	font-weight: 100;
	font-family: 'Noto Sans JP', sans-serif;
	content: '　：　';
}
.archive .list h2 span:first-child::before {
	content: '';
}
.archive .list h2 .an {
	font-weight: 200;
}
.archive .list h2 .name {
	font-weight: 400;
}
.archive .scroll {
	position: relative;
}
.archive .bar {
	position: relative;
	margin-top: 70px;
}
.archive .bar::before {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	margin: auto;
	background-color: #C1C1C1;
	content: '';
}
.archive .bar div {
	position: relative;
	top: 0;
	left: 0;
	height: 10px;
	border-radius: 1000px;
	background-color: #7c7c7c;
	transition: background 0.2s;
	cursor: pointer;
}
.archive .bar div:hover {
	background-color: #9D9D9D;
}
.archive .photo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 100000px;
}
.archive .photo li {
	padding: 0 40px 0 0;
	cursor: pointer;
}
.archive .photo li img {
	width: 0;
	height: 0;
	opacity: 0;
	transition: opacity 0.8s ease-out;
	pointer-events: none;
}
.archive .photo li img.loaded {
	display: inline-block;
	max-width: none;
	opacity: 1;
}
.archive .photo li img.land{
	width: auto;
	height: 200px;
}
.archive .photo li img.square {
	width: auto;
	height: 250px;
}
.archive .photo li img.port {
	width: 200px;
	height: auto;
}
.archive .photo.small li img.land {
	height: 150px;
}
.archive .photo.small li img.square {
	height: 188px;
}
.archive .photo.small li img.port {
	width: 150px;
}
.archive .list li .btn_view {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	font-family: 'Helvetica Neue', 'Helvetica', 'Noto Sans JP', 'Arial', sans-serif;
	font-weight: 700;
	font-size: 14px;
}
.archive .list li .btn_view span {
	display: block;
	position: relative;
	padding-right: 18px;
	background: url('../img/icon_view.svg') no-repeat right center / 11px auto;
}
.archive .list li .btn_view span::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #707070;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}
.archive .list li .btn_view:hover span::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
.archive .list > .btns {
	margin: 110px 0 80px 0;
	text-align: center;
}
@media only screen and (max-width:768px) {
	.archive main {
		padding: 0 20px;
	}
	.archive .list .notfound {
		padding: 8em 0 5em 0;
		margin-top: -50px;
		font-size: 18px;
	}
	.archive .list .notfound span {
		font-size: 20px;
	}
	.archive .list ol > li {
		position: relative;
		margin: 50px 0;
	}
	.archive .list ol > li:first-child {
		margin-top: 0;
		padding-top: 20px;
	}
	.archive .list h2 {
		margin-bottom: 15px;
		padding-right: 0;
		font-size: 12px;
	}
	.archive .list h2 span {
		display: inline;
		white-space: normal;
	}
	.archive .bar {
		display: none !important;
	}
	.archive .photo li {
		padding: 0 30px 0 0;
	}
	.archive .photo li img.land {
		height: 140px;
	}
	.archive .photo li img.square {
		height: 175px;
	}
	.archive .photo li img.port {
		width: 140px;
	}
	.archive .photo.small li img.land {
		height: 100px;
	}
	.archive .photo.small li img.square {
		height: 125px;
	}
	.archive .photo.small li img.port {
		width: 100px;
	}
	.archive .list li .btns {
		margin-top: 8px;
		text-align: right;
	}
	.archive .list li .btn_view {
		position: static;
	}

	.archive .list > .btns {
		margin: 80px 0 35px 0;
		text-align: center;
	}
}

.single .footer .btn_close,
.single .btn_prev,
.single .btn_next {
	display: none;
}
.single_container .single .footer .btn_close,
.single_container .single .btn_prev,
.single_container .single .btn_next {
	display: block;
}


/**
 * .single
 */
.single {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #F4F4F4;
	overflow: hidden;
	color: #1F1F1F;
	z-index: 10000;
}
.single .header {
	display: block;
	position: absolute;
	top: 0;
}
.single .header .logo {
	width: auto;
	top: 3.2vh;
	left: 3vw;
	text-align: left;
}
.single .header .logo img {
	width: auto;
	max-width: none;
	height: 6vh;
}
.single .header .ttl {
	position: fixed;
	top: 4vh;
	left: calc(5vw + 14vh);
	letter-spacing: 0.3em;
	line-height: 1.4;
	font-size: 25px;
	font-weight: 700;
}
.single .header .ttl span {
	display: block;
	letter-spacing: 0.3em;
	font-size: 12px;
}

.single h1 {
	position: absolute;
	width: 100%;
	bottom: 6vh;
	line-height: 1.2;
	font-size: 20px;
	text-align: center;
}
.single h1 span {
	display: block;
	margin-top: 1em;
	font-weight: 300;
	font-size: 14px;
}

.single .btn_close {
	box-sizing: border-box;
	position: fixed;
	bottom: 5vh;
	left: 3vw;
	width: 6vh;
	height: 6vh;
	border: solid 1px #5C5C5C;
	border-radius: 1000px;
	cursor: pointer;
	z-index: 10000;
	transition: border 0.4s ease-in-out;
}
.single .btn_close:hover {
	border: solid 1px #ccc;
}
.single .btn_close span {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 20%;
	height: 0;
	margin: auto;
}
.single .btn_close span::before,
.single .btn_close span::after {
	width: 100%;
	height: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: #4D4D4D;
	content: '';
}
.single .btn_close span::before {
	transform: rotate(45deg);
}
.single .btn_close span::after {
	transform: rotate(-45deg);
}

.single .btn_profile {
	box-sizing: border-box;
	position: fixed;
	bottom: 5vh;
	right: 3vw;
	width: 10vh;
	height: 10vh;
	border: solid 1px #5C5C5C;
	border-radius: 1000px;
	z-index: 10000;
	cursor: pointer;
	transition: border 0.4s ease-in-out;
}
.single .btn_profile:hover {
	border: solid 1px #ccc;
}
.single .btn_profile > div {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 1000px;
	text-align: center;
	overflow: hidden;
}
.single .btn_profile > div > span {
	box-sizing: border-box;
	display: block;
	padding-top: 4.2vh;
	letter-spacing: 0.2em;
	line-height: 1.2;
	font-size: 1.3vh;
	color: #4D4D4D;
}
.single .btn_profile::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -2.6vh;
	margin: auto;
	width: 5vh;
	height: 10px;
	background: url('../img/icon_arrow1.svg') no-repeat center center / contain;
	content: '';
	z-index: 100;
}

.single .btn_prev,
.single .btn_next {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-color: #000;
	cursor: pointer;
	z-index: 10000;
	transition: all 0.3s ease-out;
}
.single .btn_prev {
	left: -40px;
}
.single .btn_next {
	right: -40px;
}
.single .btn_prev.act {
	left: 0;
	opacity: 1;
}
.single .btn_next.act {
	right: 0;
	opacity: 1;
}
.single .btn_prev b,
.single .btn_next b {
	width: 9px;
	height: 9px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transition: border 0.3s;
	content: '';
}
.single .btn_prev:hover b,
.single .btn_next:hover b {
	border-color: #000;
}
.single .btn_prev b {
	transform: rotate(-135deg);
	left: 4px;
}
.single .btn_next b {
	transform: rotate(45deg);
	right: 4px;
}
@media only screen and (max-width:768px) {
	.single {
		width: 100vw;
		height: auto;
		position: static;
		overflow: auto;
	}
	.single .header {
		display: block;
		width: 100%;
		height: 75px;
		position: fixed;
		top: 0;
		left: 0;
		background-color: #F4F4F4;
		content: '';
		z-index: 10000;
		transition: transform 0.3s ease-out;
		transform: translateY(0);
	}
	.single .header.off {
		transition: transform 0.2s ease-in;
		transform: translateY(-100%);
	}

	.single .header .logo {
		width: 64px;
		top: 20px;
		left: 20px;
	}
	.single .header .logo img {
		width: 100%;
		height: auto;
	}

	.single .header .ttl {
		top: 28px;
		left: 98px;
		font-size: 14px;
	}
	.single .header .ttl span {
		font-size: 9px;
	}

	.single .footer {
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		padding-bottom: 0;
		background-color: #F4F4F4;
		z-index: 10000;
		transition: transform 0.3s ease-out;
		transform: translateY(0);
	}
	.single .footer.off {
		transition: transform 0.2s ease-in;
		transform: translateY(100%);
	}
	.single h1 {
		position: static;
		box-sizing: border-box;
		height: auto;
		width: 100%;
		bottom: 0;
		padding: 20px 10px 40px 10px;
		font-size: 16px;
	}
	.single h1 span {
		margin-top: 0.4em;
		font-size: 12px;
	}
	.single .btn_close {
		position: absolute;
		left: 20px;
		width: auto;
		height: auto;
		border: none;
		border-radius: 0;
		background: none;
		padding-left: 12px;
		transition: none;
	}
	.single .btn_close:hover {
		border: none;
	}
	.single .btn_close::before,
	.single .btn_close::after {
		position: static;
		width: auto;
		height: auto;
		background: none;
		border: none;
		border-radius: 0;
		transform: none;
	}
	.single .btn_close::after {
		font-size: 10px;
		content: 'CLOSE';
	}
	.single .btn_close div {
		position: static;
		width: auto;
		height: auto;
		background: none;
		border: none;
		border-radius: 0;
		transform: none;
	}
	.single .btn_close span {
		top: 4px;
		right: auto;
		width: 7px;
	}

	.single .btn_prev,
	.single .btn_next,
	.single .btn_prev.act,
	.single .btn_next.act {
		position: absolute;
		width: auto;
		height: auto;
		top: auto;
		left: auto;
		bottom: 2px;
		background: none !important;
		opacity: 1;
		padding: 10px 0;
	}
	.single .btn_prev,
	.single .btn_prev.act {
		right: 95px;
	}
	.single .btn_next,
	.single .btn_next.act {
		right: 20px;
	}
	.single .btn_prev::before,
	.single .btn_next::before {
		width: auto;
		height: auto;
		position: static;
		border: none;
		background: none;
		transform: none;
		left: 0;
	}
	.single .btn_prev::before {
		font-size: 10px;
		content: 'BACK';
	}
	.single .btn_next::before {
		font-size: 10px;
		content: 'NEXT';
	}
	.single .btn_prev::after {
		display: block;
		width: 1px;
		height: 10px !important;
		position: absolute;
		top: 2px;
		bottom: 0;
		right: -23px;
		margin: auto;
		background-color: #707070 !important;
		content: '';
	}
	.single .btn_next::after {
		display: none;
	}
	.single .btn_prev span,
	.single .btn_next span,
	.single .btn_prev b,
	.single .btn_next b {
		display: none;
	}

	.single .btn_profile {
		position: absolute;
		bottom: 35px;
		right: 20px;
		width: 52px;
		height: 52px;
	}
	.single .btn_profile::after {
		display: none;
	}
	.single .btn_profile div span {
		font-size: 9px;
		letter-spacing: 0.1em;
		padding-top: 20px;
	}
}


/**
 * .single .photo
 */
.single .photo {
	height: 60vh;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	padding: 0 1vw;
}
.single .photo > li {
	float: left;
	height: 100%;
	text-align: center;
	padding: 0 2vw;
	cursor: pointer;
}
.single .photo > li.staff {
	opacity: 0;
	cursor: default;
}
.single .photo.loaded > li.staff {
	opacity: 1;
}
.single .photo > li > img {
	position: relative;
	width: 0;
	height: 0;
	max-width: none;
	opacity: 0;
	pointer-events: none;
}
.single .photo li img.loaded {
	transition: opacity 0.8s ease-in-out;
	opacity: 1;
}
.single .photo .cap {
	margin-top: 0.5em;
	text-align: center;
	font-size: 0.8em;
	font-weight: 300;
}
.single .photo table:first-child {
	max-width: 530px;
}
.single .photo table:first-child .an {
	display: block;
}
.single .photo table:first-child .name .an {
	display: inline-block;
}
.single .photo li th,
.single .photo li td {
	padding-bottom: 0.8em;
	font-size: 12px;
	font-weight: 300;
	vertical-align: top;
	text-align: left;
}
.single .photo li th {
	color: #4D4D4D;
	padding-right: 30px;
	width: 10em;
}
.single .photo li td {
	padding-right: 60px;
}
.single .photo table + table {
	margin-top: 3em;
}
.single .photo li .an {
	font-size: 11px;
}
.single .photo .links li {
	float: left;
	padding: 5px 30px 10px 0;
}
/*@media only screen and (max-height:1000px) {}*/
.single .photo > li.staff > div {
	display: flex;
	align-items: flex-start;
}
.single .photo table + table {
	margin-top: 0;
}
@media only screen and (max-width:768px) {
	.single .photo {
		height: auto;
		position: static;
		padding: 70px 0 100px 0;
	}
	.single .photo > li {
		box-sizing: border-box;
		float: none;
		width: 100%;
		height: auto;
		padding: 15px 20px;
	}
	.single .photo li img.loaded {
		width: 100%;
		height: auto;
		max-width: 100%;
	}
	.single .photo > li.staff > div {
		display: block !important;
	}
	.single .photo table + table {
		margin-top: 2em !important;
	}
	.single .photo li th,
	.single .photo li td {
		display: block;
		padding-bottom: 0.8em;
		white-space: normal;
		font-size: 12px;
	}
	.single .photo li th {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
	.single .photo li td {
		padding-right: 0;
	}
	.single .photo li .an {
		font-size: 11px;
	}
	.single .photo .links li {
		padding: 5px 10px 0 0;
	}
}

@media only screen and (max-width:768px) {
	.single .photo table.ph {
		width: 100%;
	}
	.single .photo table.ph td {
		text-align: center;
	}
	.single .photo table.ph img {
		max-width: 150px;
	}
}

.single .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000000;
	background: #F4F4F4 no-repeat center center / contain;
}
.single .modal .btn_close {
	position: absolute;
	top: 3.2vh;
	right: 3vw;
	bottom: auto;
	left: auto;
}
.single .modal .btn_close div {
	background-color: #fff;
}
@media only screen and (max-width:768px) {
	.single .modal .btn_close {
		top: 2vh;
	}
}