/*=============================================================
  common.css
---------------------------------------------------------------
1. common layout
2. header
3. footer
4. home
5. about
6. info
7. service
8. access
9. q and a
10. voice
11. staff
12. recruit
13. privacy policy
14. site map
15. helper

===============================================================
1. common layout
=============================================================*/
#html,
#body {
	width: 100%;
}
#load-layer-top,
#load-layer {
	width: 100%;
	height: 100%;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
}
#wrapper {
	width: 100%;
	min-width: 720px;
	padding-top: 150px;
}
#home #wrapper {
	padding: 0;
}
#bg,
#bg-pin {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
}
#bg {
	z-index: 0;
}
#bg-pin {
	z-index: 1;
}
.inner {
	width: 90%;
	max-width: 1200px;
	min-width: 700px;
	padding: 0 15px;
	margin: 0 auto;
	margin-bottom: 100px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-transform:perspective(0);
}
.inner > section > h1,
.inner > article > h1 {
	margin-bottom: 70px;
	text-align: center;
}
.btn {
	display: inline-block;
	padding: 10px 40px;
	font-size:17px;
	text-decoration: none;
	letter-spacing: 1px;
	color: #fff;
	background: #6d3c30;
	transition: all ease 450ms;
}
.btn:hover {
	color: #600;
	background: #fff;
}

@media only screen
    and (orientation:portrait) {
		#wrapper {
			padding-top: 185px;
		}
}

/*
* for animation
*/
.elem-motion {
	opacity: 0;
	transition: all ease 700ms;
	-ms-transition: all ease 700ms;
	-webkit-transition: all ease 700ms;
	-moz-transition: all ease 700ms;
	transition-delay: 1000ms;
	-webkit-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	transform: translateY( 70px );
	-webkit-transform: translateY( 70px );
	-ms-transform: translateY( 70px );
	-moz-transform: translateY( 70px );
}
.elem-motion.action {
	opacity: 1;
	transform: translateY( 0 );
	-webkit-transform: translateY( 0 );
	-ms-transform: translateY( 0 );
	-moz-transform: translateY( 0 );
}

/*
* element
*/
p {
	font-size: 16px;
	color: #fff;
	line-height: 1.9;
	margin-bottom: 15px;
}
.footnote {
	margin-bottom: 0;
	font-size: 13px;
	text-align: right;
}

/*=============================================================
2. header
=============================================================*/
header {
	width: 100%;
	height: 136px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#logo,
#icon-menu,
#nav-close {
	position: fixed;
	z-index: 1;
}
#logo{
	position: absolute;
	top: 30px;
	left: 35px;
}
#icon-menu,
#nav-close {
	top: 30px;
	right: 35px;
	transition: all ease 250ms;
	-webkit-transition: all ease 250ms;
	-ms-transition: all ease 250ms;
	-moz-transition: all ease 250ms;
	cursor: pointer;
}
#icon-menu:hover {
	transform: scale(0.85);
	-webkit-transform: scale(0.85);
	-ms-transform: scale(0.85);
	-moz-transform: scale(0.85);
}
.nav-open #icon-menu {
	transform: scale(0.5);
	-webkit-transform: scale(0.5);
	-ms-transform: scale(0.5);
	-moz-transform: scale(0.5);
	opacity: 0;
}
#nav-close {
	transform: scale(0.85);
	-webkit-transform: scale(0.85);
	-ms-transform: scale(0.85);
	-moz-transform: scale(0.85);
}
#fill {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
}

/*
* global nav
*/
header nav {
	width: 100%;
	height: 100%;
	background: rgba( 255,255,255,0.83 );
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	overflow: none;
	display: none;
	opacity: 0;
}
.nav-open header nav {
	display: block;
	opacity: 1;
	animation: navAction ease 1200ms;
	-webkit-animation: navAction ease 1200ms;
	-ms-animation: navAction ease 1200ms;
	-moz-animation: navAction ease 1200ms;
}
@keyframes navAction {
	0% {
		display: none;
		opacity: 0;
		}
	
	1% {
		display: block;
		opacity: 0;
	}
	
	100% {
		display: block;
		opacity: 1;
	}
}
header nav .inner {
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
}
.nav-open header .inner {
	opacity: 1;
}
header nav .inner ul {
	margin-bottom: 30px;
}
header nav .inner ul:nth-of-type(2) {
	margin-bottom: 0;
}
header nav .inner ul li {
	width: 20%;
	padding: 0 15px;
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	transition: all ease 300ms;
	display: block;
	animation: navActionLi ease 800ms;
	-webkit-animation: navActionLi ease 800ms;
	-ms-animation: navActionLi ease 800ms;
	-moz-animation: navActionLi ease 800ms;
}
header nav .inner ul li a {
	display: block;
}
@keyframes navActionLi {
	0% {
		transform: scale(0.1) translateY(500px);
		-webkit-transform: scale(0.1) translateY(500px);
		-ms-transform: scale(0.1) translateY(500px);
		-moz-transform: scale(0.1) translateY(500px);
		}
	100% {
		transform: scale(1) translateY(0);
		-webkit-transform: scale(1) translateY(0);
		-ms-transform: scale(1) translateY(0);
		-moz-transform: scale(1) translateY(0);
	}
}
.nav-open header nav ul li:hover {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
header nav .inner ul li img {
	width: 100%;
}
header nav .inner ul li img:nth-of-type(1) {
	margin-bottom: 10px;
}


/*=============================================================
3. footer
=============================================================*/
footer {
	width: 100%;
	height: 40px;
	/* background: #6d3c30; */
	background: rgba( 109,60,48,0.55 );
	position: relative;
	z-index: 1;
	-webkit-transform:perspective(0);
}
#home footer,
#sitemap footer {
	position: fixed;
	bottom: 0;
	left: 0;
}
footer #footer-inner {
	width: 90%;
	max-width: 1200px;
	min-width: 700px;
	padding: 0 15px;
	margin: 0 auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#home footer #footer-inner,
#sitemap footer #footer-inner {
	width: 95%;
	max-width: none;
}
footer nav {
	width: 60%;
	float: left;
}
footer nav ul li,
footer nav ul li a,
footer p {
	color: #c4b19c;
	font-size: 12px;
	text-decoration: none;
	letter-spacing: 1px;
	line-height: 40px;
	vertical-align: bottom;
}
footer nav ul li {
	float: left;
	line-height: 40px;
	margin-right: 30px;
}
footer nav ul li img {
	width: 26px;
	position: relative;
	top: -7px;
}
footer nav ul li a {
	transition: all ease 500ms;
}
footer nav ul li a:hover {
	color: #fff;
}
footer p {
	width: 40%;
	margin-bottom: 0;
	float: right;
	text-align: right;
}

/*=============================================================
4. home
=============================================================*/
#video-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: -1;
}
#video {
	display: block;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 0;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	background-color: #000;
	background-size: cover;
}
#video-wrapper.no-video {
	background: url(/common/img/home/bg-no-video.jpg?v1) center center no-repeat;
	background-size: cover;

}
#video-wrapper .no-video-inner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/common/img/home/bg-no-video-dark.jpg?v1) center center no-repeat;
	background-size: cover;
}
#home .layer {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba( 255,255,255,0.1 );
}
#home .elem-motion {
	transition-delay: 2600ms;
	-webkit-transition-delay: 2600ms;
	-ms-transition-delay: 2600ms;
	-moz-transition-delay: 2600ms;
}
#home #welcome {
	width: 500px;
	margin-top: -160px;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 4%;
}
#home #welcome section {
	position: relative;
}
#home #welcome img {
	width: 100%;
}
#home #welcome h1 {
	width: 330px;
	position: relative;
	top: 30px;
	left: 40px;
	z-index: 1;
}
#home #welcome .flowers {
	position: absolute;
	animation: rotate ease infinite 10000ms;
	-webkit-animation: rotate ease infinite 10000ms;
	transition: all ease 1000ms;
	-webkit-transition: all ease 1000ms;
	transition-delay: 3000ms;
	-webkit-transition-delay: 3000ms;
	opacity: 0;
}
#home .w-action #welcome .flowers {
	opacity: 1;
}
@keyframes rotate {
	0%{ transform: rotate(0deg) scale(1);}
	50%{ transform: rotate(180deg) scale(1.5);}
	100%{ transform: rotate(360deg) scale(1);}
}
@-webkit-keyframes rotate {
	0%{ -webkit-transform: rotate(0deg) scale(1);}
	50%{ -webkit-transform: rotate(180deg) scale(1.5);}
	100%{ -webkit-transform: rotate(360deg) scale(1);}
}
#home #welcome .flowers:nth-of-type(1) {
	width: 20px;
	top: 10px;
	left: 10px;
}
#home #welcome .flowers:nth-of-type(2) {
	width: 50px;
	top: 20px;
	left: 27px;
}
#home #welcome .flowers:nth-of-type(3) {
	width: 30px;
	top: 160px;
	left: 400px;
}
#home #welcome .flowers:nth-of-type(4) {
	width: 60px;
	top: 180px;
	left: 420px;
}
#home #welcome .flowers:nth-of-type(5) {
	width: 20px;
	top: 200px;
	left: 490px;
}

#home #banner {
	margin-bottom: 0;
	position: relative;
	top: 0;
	left: 0;
	overflow: hidden;
}
#home #banner a {
	display: block;
	width: 100%;
	height: 140px;
	background: rgba( 109,60,48,0.001 );
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#home #banner a img {
	background: rgba( 109,60,48,0.001 );
	display: block;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
#home #banner a img:nth-of-type(1) {
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
}
#home #banner a img:nth-of-type(2),
#home #banner a img:nth-of-type(3) {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all ease 500ms;
}
#home #banner a img:nth-of-type(2) {
	opacity: 1;
	transform: translateX( 0 );
}
/*#home #banner a:hover img:nth-of-type(2) {
	opacity: 0;
	transform: translateX( 170px );
}
/*#home #banner a img:nth-of-type(3) {
	opacity: 0;
	transform: scale( 0.5 ) translateX( -170px );
}
#home #banner a:hover img:nth-of-type(3) {
	opacity: 1;
	transform: scale( 1 ) translateX( 0 );
}*/

/*=============================================================
5. about
=============================================================*/
#about #bg {
	background-image: url(/common/img/about/bg.jpg?v8);
}
#about #bg-pin {
	background-image: url(/common/img/about/bg-pin.jpg?v6);
}
#about #sect-01 {
	margin-bottom: 80px;
}
#about ul#board {
	width: 45%;
	height: 620px;
	position: relative;
	overflow: hidden;
	float: left;
}
#about ul#board li {
	position: absolute;
	top: 0;
	left: 0;
}
#about ul#board li:nth-of-type(1) {
	z-index: 0;
}
#about ul#board li:nth-of-type(2) {
	z-index: 1;
}
#about ul#board li:nth-of-type(4) {
	z-index: 0;
}
#about ul#board li img {
	width: 100%;
}
#about #desc-box {
	width: 55%;
	padding-left: 35px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: right;
	transition: all ease 700ms;
	-webkit-transition: all ease 700ms;
	-ms-transition: all ease 700ms;
	-moz-transition: all ease 700ms;
	transition-delay: 1000ms;
	-webkit-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	transform: translateY(70px);
	-webkit-transform: translateY(70px);
	-ms-transform: translateY(70px);
	-moz-transform: translateY(70px);
	opacity: 0;
}
#about .w-action #desc-box {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-moz-transform: translateY(0);
	opacity: 1;
}
#about .w-action #desc-box p {
	opacity: 0.99;
}
#about #desc-box article {
	margin-bottom: 15px;
	color: #fff;
	font-size: 16px;
	line-height: 1.9;
}
#about #desc-box article h1 {
	font-size: 24px;
	font-weight: normal;
}
#about #desc-box article ul {
	list-style: inside circle;
}
#about #sect-02 {
	margin-bottom: 200px;
}
#about #sect-02 > div {
	width: 100%;
	height: 510px;
	background: url(/common/img/about/counsering.jpg?v1) top center;
	background-size: cover;
	position: relative;
}
.inner > section#sect-02 > h1 {
	/* margin-bottom: 0;
	position: relative;
	top: 35px;
	z-index: 1; */
}
#about #sect-02 > div p {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -130px;
}
#about #sect-02 > div p img {
	width: 80%;
	max-width: 760px;
}

/*=============================================================
6. info
=============================================================*/
#info #bg {
	background-image: url(/common/img/info/bg.jpg?v8);
}
#info #bg-pin {
	background-image: url(/common/img/info/bg-pin.jpg?v6);
}
#info #sect-01 article {
	border: 3px solid #fff;
	padding: 60px 70px;
	margin-bottom: 40px;
	background: rgba( 255,255,255,0.7 );
}
#info article h1,
#info article p,
#info article a.text-link,
#info article ul li {
	color: #6d3c30;
}
#info .bb-contents {
	padding-bottom: 30px;
	border-bottom: dotted 1px #6d3c30;
	margin-bottom: 30px;
}
#info .bb-contents p:last-of-type {
	margin-bottom: 0;
}
#info section article > h1,
#info section article > .bb-contents > h1 {
	padding-bottom: 40px;
	margin-bottom: 25px;
	background: url(/common/img/info/dots.png?v1) left bottom no-repeat;
	font-size: 26px;
}
#info article h1 span {
	font-size: 12px;
	font-weight: normal;
	line-height: 2.2;
}
#info article p {
	font-size: 17px;
}
#info article p.mb-plus {
	margin-bottom: 35px;
}
#info article ul {
	list-style: circle inside;
	margin-bottom: 15px;
	font-size: 17px;
	line-height: 2;
}
#info .btn {
	margin-top: 7px;
}

#info section article section h1 {
	margin-bottom: 20px;
	font-size: 26px;
}
#info section article section h1.mb-plus {
	margin-bottom: 30px;
}
#info .w100per {
	width: 100%;
}

#info article .img-ta-c {
	display: block;
	text-align: center
}

/*=============================================================
7. service
=============================================================*/
#service #bg {
	background-image: url(/common/img/service/bg.jpg?v8);
}
#service #bg-pin {
	background-image: url(/common/img/service/bg-pin.jpg?v6);
}
#service .inner {
	margin-bottom: 40px;
}
#service #sect-01 ul {
	margin-bottom: 40px;
}
#service #sect-01 ul li {
	display: block;
	color: #fff;
	font-size: 24px;
	margin-bottom: 15px;
	position: relative;
	line-height: 1;
}
#service #sect-01 ul li span.f_wrapper {
	width: 42px;
	height: 42px;
	text-align: center;
	margin-right: 10px;
	overflow: hidden;
	display: inline-block;
	float: none;
	position: relative;
	top: 10px;
	left: 0;
}
#service #sect-01 ul li .flower {
	width: 32px;
	height: 32px;
	animation: list-flower ease 6000ms infinite;
	-webkit-animation: list-flower ease 6000ms infinite;
	position: relative;
	top: 5px;
}
@keyframes list-flower {
	0%{ transform: rotate(0deg) scale(1);}
	50%{ transform: rotate(180deg) scale(1.3);}
	100%{ transform: rotate(360deg) scale(1);}
}
@-webkit-keyframes list-flower {
	0%{ -webkit-transform: rotate(0deg) scale(1);}
	50%{ -webkit-transform: rotate(180deg) scale(1.3);}
	100%{ -webkit-transform: rotate(360deg) scale(1);}
}
#service #sect-01 ul li span.price-area {
	float: right;
	position: relative;
	top: 16px;
}
#service #sect-01 ul li p {
	width: 80%;
	padding: 13px 0 0 52px;
	margin: 0;
	font-size: 16px;
}
#service #sect-01 ul li .line {
	width: 0;
	height: 1px;
	padding-top: 32px;
	transition: all ease 1500ms;
	-webkit-transition: all ease 1500ms;
	-ms-transition: all ease 1500ms;
	-moz-transition: all ease 1500ms;
	transition-delay: 1400ms;
	-webkit-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	position: relative;
	left: 50%;
}
#service #sect-01 ul li.action .line {
	width: 100%;
	left: 0;
}

/*=============================================================
8. access
=============================================================*/
#access #bg {
	background-image: url(/common/img/access/bg.jpg?v8);
}
#access #bg-pin {
	background-image: url(/common/img/access/bg-pin.jpg?v6);
}
#access .row {
	margin-bottom: 40px;
}
#access .left-box {
	width: 50%;
	float: left;
}
#access .left-box img {
	width: 100%;
}
#access .right-box {
	width: 50%;
	padding-left: 35px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: right;
}
#access .right-box h1,
#access .right-box dl {
	color: #fff;
}
#access .right-box h1 {
	font-size: 26px;
	padding: 30px 0;
	border-top: dotted 1px #fff;
	border-bottom: dotted 1px #fff;
	margin-bottom: 30px;
}
#access .right-box dl {
	font-size: 18px;
	line-height: 2;
}

@media only screen
    and (orientation:portrait) {
		#access .right-box h1 {
			font-size: 20px;
		}
		#access .right-box dl {
			font-size: 14px;
			line-height: 2;
		}
}

#access .right-box dl dt,
#access .right-box dl dd {
	margin-bottom: 15px;
}
#access .right-box dl dt {
	width: 9em;
	float: left;
}
#access .right-box dl dd {
	padding-left: 9em;
}
#access dd a {
	color: #fff;
	text-decoration: underline;
}
#access dd a:hover {
	color: #633;
	transition: all ease 350ms;
	-webkit-transition: all ease 350ms;
	-ms-transition: all ease 350ms;
	-moz-transition: all ease 350ms;
}
#access #map {
	width: 100%;
	opacity: 0.73;
}

/*=============================================================
9. q and a
=============================================================*/
#qa #bg {
	background-image: url(/common/img/qa/bg.jpg?v7);
}
#qa #bg-pin {
	background-image: url(/common/img/qa/bg-pin.jpg?v6);
}
#qa .inner > section > h1 {
	margin-bottom: 40px;
}
#qa .lead {
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}
#qa dl {
	color: #fff;
	font-size: 17px;
	line-height: 1.8;
}
#qa dl dt,
#qa dl dd {
	padding-left: 45px;
	
}
#qa dl dt {
	padding-bottom: 20px;
	background: url(/common/img/qa/q.png) 0 0 no-repeat;
}
#qa dl dd {
	padding-bottom: 40px;
	border-bottom: dotted 1px #fff;
	margin-bottom: 40px;
	background: url(/common/img/qa/a.png) 0 0 no-repeat;
}

/*=============================================================
10. voice
=============================================================*/
#voice #bg {
	background-image: url(/common/img/voice/bg.jpg?v7);
}
#voice #bg-pin {
	background-image: url(/common/img/voice/bg-pin.jpg?v6);
}
#voice .inner {
	padding:0;
}
#voice .column {
	width: 33.3%;
	padding: 0 15px;
	float: left;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#voice .column article {
	padding: 25px 30px;
	margin-bottom: 30px;
	background: rgba(217,68,114,0.4);
	border-radius: 10px;
	-webkit-border-radius: 10px;
}
#voice .column article.pink {
	background: rgba(217,68,114,0.4);
}
#voice .column article.yellow {
	background: rgba(196,144,35,0.4);
}
#voice .column article.blue {
	background: rgba(20,79,106,0.4);
}
#voice .column article.brown {
	background: rgba(109,60,48,0.4)
}
#voice .column article h1 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.8;
}
#voice .column article p {
	margin-bottom: 0;
}

/*=============================================================
11. staff
=============================================================*/
#staff #bg {
	background-image: url(/common/img/staff/bg.jpg?v7);
}
#staff #bg-pin {
	background-image: url(/common/img/staff/bg-pin.jpg?v6);
}
#staff .inner {
	padding: 0;
}
#staff .row {
	margin-bottom: 63px;
	transform: translateX(6px);
	text-align: center;
}
#staff .row section {
	width: 33%;
	padding: 0 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	display: inline-block;
}
#staff .row section ul {
	height: 450px;
	margin-bottom: 35px;
	position: relative;
	perspective: 1000px;
	-webkit-perspective: 1000px;
}
#staff .row section ul li {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all ease-out 500ms;
	-webkit-transition: all ease-out 500ms;
	-ms-transition: all ease-out 500ms;
	-moz-transition: all ease-out 500ms;
	transition-delay: 1400ms;
	-webkit-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
}
#staff .row section.action ul li {
	transform: rotateY(14deg);
	-webkit-transform: rotateY(14deg);
	-ms-transform: rotateY(14deg);
	-moz-transform: rotateY(14deg);
}
#staff .row section ul li img {
	width: 100%;
}
#staff .row h1,
#staff .row h2,
#staff .row p {
	color: #fff;
	opacity: 0.87;
	font-weight: normal;
}
#staff .row h1,
#staff .row h2 {
	letter-spacing: 1px;
}
#staff .row h2,
#staff .row p {
	line-height: 1.9;
}
#staff .row h1 {
	margin-bottom: 5px;
	font-size: 24px;
}
#staff .row h2 {
	font-size: 15px;
	margin-bottom: 12px;
}
#staff .row p {
	font-size: 16px;
}

/*=============================================================
12. recruit
=============================================================*/
#recruit #bg {
	background-image: url(/common/img/recruit/bg.jpg?v7);
}
#recruit #bg-pin {
	background-image: url(/common/img/recruit/bg-pin.jpg?v7);
}
#recruit .inner {
	margin-bottom: 60px;
}
#recruit #sect-01 article:nth-of-type(1) {
	margin-bottom: 50px;
}
#recruit #sect-01 article:nth-of-type(2) {
	margin-bottom: 60px;
}
#recruit #sect-01 article div > section:nth-of-type(1) {
	margin-bottom: 20px;
}
#recruit article h1,
#recruit article p {
	text-align: center;
	font-weight: normal;
}
#recruit article section h1 {
	margin-bottom: 20px;
	color: #fff;
	font-size: 27px;
}
#recruit article section section h1 {
	font-size: 23px;
}
#recruit article section h1.mb-plus {
	margin-bottom: 33px;
}
#recruit .inner > article > h1 {
	margin-bottom: 60px;
}
#recruit h1.tit-s img {
	min-width: 600px;
	width: 65%;
	margin-bottom: 15px;
}
#recruit h1.belt {
	padding: 18px 0;
	margin-bottom: 0;
	line-height: 1;
	border-top: solid 1px rgba( 255,255,255,0.3 );
	background: rgba( 255,255,255,0.1 );
}
#recruit article p {
	font-size: 17px;
}
#recruit article ul.belt {
	border-top: solid 1px rgba( 255,255,255,0.3 );
	margin-bottom: 31px;
	background: rgba( 255,255,255,0.1 );
	font-size: 17px;
	color: #fff;
	text-align: center;
}
#recruit article section ul.belt {
	margin-bottom: 0;
}
#recruit article ul.belt li {
	padding: 20px 0;
	border-bottom: solid 1px rgba( 255,255,255,0.3 );
}
#recruit article a {
	color: #fff;
}
#recruit .points img,
#recruit .w100per {
	width: 100%;
}
#recruit .w40per {
	width: 40%;
}
#recruit .a_c {
	text-align: center;
}
#recruit .left-box,
#recruit .right-box {
	width: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
#recruit .left-box {
	padding-right: 6px;
}
#recruit .right-box {
	padding-left: 6px;
}
#recruit aside nav a {
	display: inline-block;
	width: 40%;
	font-size: 18px;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: all ease 350ms;
}
#recruit aside nav a:hover {
	transform: scale( 1.1 );
}
#recruit aside nav a img {
	padding: 1px;
	border: solid 4px rgba( 255,255,255,0.3 );
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 15px;
}

/*=============================================================
13. privacy polisy
=============================================================*/
#privacy #bg {
	background-image: url(/common/img/privacy/bg.jpg?v7);
}
#privacy #bg-pin {
	background-image: url(/common/img/privacy/bg-pin.jpg?v6);
}
#privacy #wrapper {
	padding-top: 190px;
}
@media only screen
    and (orientation:portrait) {
		#privacy #wrapper {
			padding-top: 240px;
		}
}

#privacy #sect-01 section {
	padding-bottom: 40px;
	border-bottom: dotted 1px #fff;
	margin-bottom: 40px;
}
#privacy #sect-01 section h1 {
	margin-bottom: 20px;
	color: #fff;
	font-size: 24px;
	font-weight: normal;
}
#privacy #sect-01 section p {
	font-size: 17px;
	margin-bottom: 0;
}
#privacy #sect-01 section ul {
	list-style: inside circle;
}
#privacy #sect-01 section ul li {
	font-size: 17px;
	color: #fff;
	line-height: 1.8;
}

/*=============================================================
14. site map
=============================================================*/
#sitemap #bg {
	background-image: url(/common/img/sitemap/bg.jpg?v7);
}
#sitemap #bg-pin {
	background-image: url(/common/img/sitemap/bg-pin.jpg?v6);
}
#sitemap .inner {
	width: 70%;
	padding: 0;
}
#sitemap .inner > section > h1 {
	margin-bottom: 60px;
}
#sitemap nav.pages ul {
	width: 33.3%;
	padding: 0 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
}
#sitemap nav.pages ul li {
	padding-left: 50px;
	margin-bottom: 30px;
	background: url(/common/img/sitemap/arrow.png) 0 center no-repeat;
}
#sitemap nav.pages ul li a {
	display: block;
	color: #fff;
	font-size: 32px;
	clolr: #fff;
	text-decoration: none;
	letter-spacing: 1px;
	transition: all ease 300ms;
}
#sitemap nav.pages ul li a:hover {
	opacity: 0.6;
}

/*=============================================================
15. helper
=============================================================*/
img.w100 {
	width: 100%;
}
.center {
	text-align: center;
}
.none {
	display: none;
}
.clr {
	clear: both;
}
.mb50 {
	margin-bottom: 50px;
}

/*
* clear fix
*/
.cf:before,
.cf:after {
	content:".";
	display: block;
	height: 0;
	overflow: hidden;
}
.cf:after {
	clear: both;
}
.cf {
	*zoom: 1;
}
