/* ------------------------------ visual ------------------------------ */
.visual-group {
	/*position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin-top: 260px;*/
	position: relative;
	background-color: #a00;
	z-index: -1;
}
.visual {
	background: #eee;
	height: 670px;
	overflow: hidden;
	position: relative;
	
	background-color: #000;
	/*background-image: url('visual-cover.jpg');*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
iframe {
	box-sizing: border-box;
	height: 56.25vw;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	width: 177.77777778vh;
}
.visual-headline {
	width: 100%;
	height: 670px;
	background-color: rgba(255, 255, 255, 0);

	-webkit-transform-origin:	50% 50%;
	-ms-transform-origin:		50% 50%;
	transform-origin:			50% 50%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.visual-headline > hgroup {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);

	animation-name: visual-headline-txt;
	animation-duration: 0.5s;
	animation-timing-function: ease-in;
	animation-delay: 1s;
	animation-fill-mode: both;
}
.visual-headline > hgroup > h2 {
	font-family: 'Arvo';
	text-align: center;
	font-size: 10px;
	color: #fff;
	line-height: 2em;
}
/* ------------------------------ keyframes ------------------------------ */
@-webkit-keyframes visual-headline-txt {
	from {
		-webkit-transform: translate(-50%, -50%) scale( 0, 0 );
		opacity: 0;
	} 90% {
		-webkit-transform: translate(-50%, -50%)  scale( 3, 3 );
		opacity: 1;
	} to {
		-webkit-transform: translate(-50%, -50%)  scale( 2, 2 );
	}
}

.visual-image {
	display: none;
	margin-top: 30px;
	position: relative;
}
.visual-image > img {
	width: 100%;
}
.visual-image > hgroup {
	width: 100%;
	position: absolute; top: 25%; left: 50%;
	-webkit-transform:	translate(-50%, 0);
	-moz-transform:		translate(-50%, 0);
	-ms-transform:		translate(-50%, 0);
	-o-transform:		translate(-50%, 0);
	transform:			translate(-50%, 0);
}
.visual-image > hgroup > h2 {
	font-family: 'Arvo';
	text-align: center;
	font-size: 17px;
	color: #fff;
	line-height: 2em;
}

.banner {
	margin: 50px auto; height: 130px;
	padding: 10px;
	background-color: #b39965;
	position: relative;
}
.banner > section {
	height: 110px;
	border: 2px solid #fff;
}
.banner > section > h2 {
	margin: 20px 0 17px; padding: 0;
	text-align: center; color: #fff;
	font-family: 'Arvo';
	text-transform: uppercase;
	font-weight: 700;
	font-size: 22px;
}
.banner > section > h3 {
	margin: 0; padding: 0;
	text-align: center;
	font-family: 'Lato';
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 700;
}
.banner > section > h3 span {
	border-top: 2px solid #fff; color: #fff;
	padding-top: 10px;
	font-weight: 800;
}
.banner > .three-days {
	width: 144px; height: 144px;
	background-color: #403624;
	border-radius: 50%;
	position: absolute; top: -10px; right: 30px;
	text-align: center;
}
.banner > .three-days > section {
	margin-top: 40px;
	font-size: 13px;
	color: #fff;
	font-weight: 600;
}
.banner > .three-days > section span {
	color: #fff;
	font-weight: 800;
}

/* ------------------------------ article ------------------------------ */
article {
	margin-top: 0; margin-bottom: 50px;
	background-color: #fff;
}
.prd-list {
	/*background-color: powderblue;*/
	border-top: 1px solid #ccc; margin-top: 20px;
}
.prd-list > h2 {
	padding: 0 15px; margin: 2rem 0 1rem;
	text-transform: uppercase; /* uppercase|lowercase|capitalize */
	font-size: 13px;
	font-family: 'Arvo';
	font-weight: 800;
}
.prd-list > h2:after {
	content: '';
	display: block;
	background: none;
	height: 30px;
	border-bottom: 2px solid;
	clear: both;
	width: 60px;
}
.item > img, .item > h3, .item > h4, .item > p { cursor: pointer; }
.item > img {
	-webkit-transition: all .2s ease;
	-moz-transition:	all .2s ease;
	-o-transition:		all .2s ease;
	transition:			all .2s ease;
}
.item > .prd-img {
	height: 243px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 243px;
}
/*
.item > img:hover {
	-webkit-transform:	scale(1.05, 1.05);
	-moz-transform:		scale(1.05, 1.05);
	-o-transform:		scale(1.05, 1.05);
}
*/
.item > h3 {
	font-size: 13px;
	margin: 10px 0 5px;
}
.item > h3 > a {
	font-weight: 700;
	color: #b39964;
	font-weight: bold;
	text-transform: uppercase;
}
.item > h4 {
	font-family: 'Nanum Gothic';
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}
.item > p {
	color: #000;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.visual-group { display: none; }
	.visual-image { display: block; }
	article { margin-top: 0; }
	.prd-list { border-top: 0; }
	.banner .three-days { display: none; }
}

@media screen and (max-width: 550px) {
	.banner section h2 {
		font-size: 17px;
	}
	.banner section h3 {
		font-size: 10px;
	}
}

@media screen and (max-width: 420px) {
	.banner section h2 {
		margin: 45px 0 0 0;
		font-size: 13px;
	}
	.banner section h3 {
		display: none;
	}
}


/* visual text */
@media screen and (max-width: 600px) {
	.visual-image > hgroup {
		top: 20%;
	}
	.visual-image > hgroup > h2 {
		font-size: 15px;
	}
}
@media screen and (max-width: 535px) {
	.visual-image > hgroup {
		top: 20%;
	}
	.visual-image > hgroup > h2 {
		font-size: 13px;
	}
}
@media screen and (max-width: 465px) {
	.visual-image > hgroup {
		top: 20%;
	}
	.visual-image > hgroup > h2 {
		font-size: 10px;
	}
}
@media screen and (max-width: 360px) {
	.visual-image > hgroup {
		top: 10%;
	}
	.visual-image > hgroup > h2 {
		font-size: 8px;
	}
}

/* ---------- 3d rotation ---------- 
.figure {
	cursor: pointer;
	width: 190px; height: 243px;
	-webkit-perspective:1000;
	-moz-perspective:	1000;
	-o-perspective:		1000;
}

.img-group {
	height: 243px;
	-webkit-transition: all .5s ease;
	-moz-transition:	all .5s ease;
	-o-transition:		all .5s ease;
	transition:			all .5s ease;
	-webkit-transform-style: preserve-3d;
}

.img-group img {
	position: absolute;
	-webkit-backface-visibility: hidden;
}

.img-group .back {
	-webkit-transform:	rotateY(-180deg);
	-moz-transform:		rotateY(-180deg);
	-o-transform:		rotateY(-180deg);
	transform:			rotateY(-180deg);
}

.figure:hover .img-group {
	-webkit-transform:	rotateY(-180deg);
	-moz-transform:		rotateY(-180deg);
	-o-transform:		rotateY(-180deg);
	transform:			rotateY(-180deg);
}*/