@charset "UTF-8";

/* ============================
	animation css start
============================ */
@keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		opacity: 0.2;
	}

	to {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
		opacity: 1;
	}
}

@keyframes scroll {
	0% {
		opacity: .8;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-moz-transform: translateY(20px);
		-ms-transform: translateY(20px);
		-o-transform: translateY(20px);
		transform: translateY(20px);
	}

	100% {
		opacity: .8;
		-webkit-transform: translateY(0px);
		-moz-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}
}

.ani-fade {
	opacity: .8;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all .6s;
	transition: all .6s;
}

.ani-up-slide {
	opacity: 0;
	position: relative;
	bottom: -100px;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.ani-down-slide {
	opacity: 0;
	position: relative;
	top: -100px;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.ani-left-slide {
	opacity: 0;
	position: relative;
	left: -100px;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.ani-right-slide {
	opacity: 0;
	position: relative;
	right: -100px;
	-webkit-transition: all .6s;
	transition: all .6s;
}

.fade-in {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.slide-up {
	opacity: 1;
	bottom: 0;
}

.slide-down {
	opacity: 1;
	top: 0;
}

.slide-left {
	opacity: 1;
	left: 0;
}

.slide-right {
	opacity: 1;
	right: 0;
}

/* 공통컬러 */
.point-g {
	color: #011214 !important;
}
.point-lb {
	color: #2f65bd !important;
}
.point-y {
	color: #f36c3f !important;
}
.point-gg {
	color:#1dc800;
}
.point-p {
	color: blueviolet;
}

/* 공통요소 */
body {
	min-width: 1330px;
}

.none {
	display: none !important;
}

.mb-show {
	display: none !important;
}

.mb-hide {
	display: initial !important;
}

.video {
	position: relative;
	width: 100%;
	margin: 0 auto;
	border: 3px solid #d6282a;
	box-sizing: border-box;
}

/* 임시 색상 */
.video:after {
	display: block;
	padding-top: 53.75%;
	content: "";
}

.video.no-border {
	border: none;
}

.video .post-play {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

.video .post-play:after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
	content: url(/resource/images/play2.png);
}

.video .post-play img {
	width: 100%;
	height: 100%;
}

.video .post {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 100;
}

.video .post img {
	width: 100%;
	height: 100%;
}

.video iframe,
.video object,
.video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video video {
	max-width: 100%;
}

.inner {
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.sub-inner {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.contents {
	padding: 120px 0;
}

.contents.no-top-pad {
	padding-top: 0;
}

.contents.no-bottom-pad {
	padding-bottom: 0;
}

.contents.b-border {
	border-bottom: 1px solid #ddd;
}

.contents.bg-gray {
	background-color: #f0f0f0;
}

.contents.bg-gray-gradation {
	background: linear-gradient(to bottom, #f0f0f0 0, #f0f0f0 50%, #fff 50%, #fff 100%);
}

.contents.bg-gray-gradation2 {
	background: linear-gradient(to bottom, #f0f0f0 0, #f0f0f0 80%, #fff 80%, #fff 100%);
}

.dott {
	position: relative;
	margin-bottom: 15px;
	padding-left: 25px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
}

.dott span {
	font-size: 18px;
	font-weight: 300;
}

.dott:before {
	display: inline-block;
	position: absolute;
	top: 7px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 100%;
	background-color: #f36c3f;
	vertical-align: middle;
	content: '';
}

.middot-list {
	padding: 10px 0;
}

.middot-list li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 14px;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	letter-spacing: -1px;
	word-break: keep-all;
	box-sizing: border-box;
}

.middot-list li:before {
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 100%;
	background-color: #333;
	vertical-align: middle;
	content: '';
}

.middot-list li:last-of-type {
	margin-bottom: 0;
}

.middot-list.half:after {
	overflow: hidden;
	display: block;
	height: 0;
	clear: both;
	content: '';
}

.middot-list.half li {
	width: 50%;
	float: left;
	padding-right: 20px;
	box-sizing: border-box;
}

.dash-list {
	padding: 15px 0;
}

.dash-list li {
	position: relative;
	margin-bottom: 4px;
	padding-left: 14px;
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	letter-spacing: -2px;
	word-break: keep-all;
	box-sizing: border-box;
}

.dash-list li:before {
	display: inline-block;
	position: absolute;
	top: 15px;
	left: 0;
	width: 6px;
	height: 1px;
	border-radius: 100%;
	background-color: #333;
	vertical-align: middle;
	content: '';
}

.dash-list li:last-of-type {
	margin-bottom: 0;
}

.flex-list-01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-list-01.lt {
	flex-flow: row-reverse;
}

.flex-list-01.lt .right {
	margin-left: 0;
	margin-right: 60px;
}

.flex-list-01.margin-t {
	margin-top: 80px;
}

.flex-list-01 .right {
	width: 50%;
	margin-left: 70px;
}

.flex-list-01 .right h4 {
	margin-bottom: 37px;
	font-size: 50px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -3.75px;
}

.flex-list-01 .right .text {
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -2px;
	text-align: left;
	color: #333333;
	word-break: keep-all;
}

.flex-list-01 .right .text>p {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.43;
	letter-spacing: -2.25px;
}

.flex-list-01 .right .text>span {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -1.5px;
}

.flex-list-01 .right .text>span+p {
	margin-top: 35px;
}

.flex-list-01 .right .col-list ul li {
	padding-left: 10%;
	text-align: left;
}

.flex-list-02 {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.flex-list-02.margin-t {
	margin-top: 50px;
}

.flex-list-02.n4 {
	width: calc(100% + 20px);
	margin-left: -10px;
}

.flex-list-02.n4>div {
	width: calc(25% - 20px);
	margin: 0 10px 40px;
}

.flex-list-02.n4>div>img {
	max-width: 100%;
}

.flex-list-02.n4>div>p {
	margin-top: 25px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
}

.flex-list-02.n4>div>p.left {
	text-align: left;
}

.flex-list-02.n4>div>span {
	display: block;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1px;
	word-break: keep-all;
}

.flex-list-02.n4>div>.middot-list {
	margin-top: 15px;
}

.flex-list-02.n4>div>.middot-list li {
	font-size: 18px;
	letter-spacing: -1.5px;
}

.flex-list-02.n3 {
	width: calc(100% + 50px);
	margin-left: -25px;
}

.flex-list-02.n3>div {
	width: calc(33.33% - 50px);
	margin: 0 25px 50px;
}

.flex-list-02.n3>div>p {
	margin-top: 30px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
}

.flex-list-02.n3>div>span {
	display: block;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1px;
	word-break: keep-all;
}

.flex-list-02.n2 {
	width: calc(100% + 6px);
	margin-left: -3px;
}

.flex-list-02.n2>div {
	width: calc(50% - 6px);
	margin: 0 3px;
	background-color: #f4f4f4;
}

.flex-list-02.n2>div>p {
	padding: 30px 0;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
	background-image: url(/resource/images/info01-13-01-bg.png);
	background-size: 100% 100%;
}

.flex-list-02.n2>div>p small {
	display: block;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -1.5px;
}

.flex-list-02.n2>div>span {
	display: block;
	padding: 30px 0;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1.5px;
	text-align: center;
	word-break: keep-all;
}

.flex-list-02.n1 {
	width: 100%;
	background-color: #f4f4f4;
}

.flex-list-02.n1.margin-t {
	margin-top: 80px;
}

.flex-list-02.n1>p {
	width: 100%;
	padding: 30px 0;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
	background-image: url(/resource/images/info01-13-01-bg.png);
	background-size: 100% 100%;
}

.flex-list-02.n1>div {
	display: flex;
}

.flex-list-02.n1>div>span {
	width: 50%;
	margin: 50px 0;
	padding: 0 70px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -1.5px;
	line-height: 1.5;
	word-break: keep-all;
	border-right: 1px solid #ddd;
}

.flex-list-02.n1>div>.middot-list {
	width: 50%;
	margin: 50px 0;
	padding: 0 70px;
}

.flex-list-03 {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 80px;
}

.flex-list-03.n2 {
	width: calc(100% + 6px);
	margin-left: -3px;
}

.flex-list-03.n2>div {
	width: calc(50% - 6px);
	margin: 0 3px;
	background-color: #f4f4f4;
}

.flex-list-03.n2>div>p {
	padding: 20px 0;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
	background-color: #333;
}

.flex-list-03.n2>div>span {
	display: block;
	padding: 30px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1.5px;
	word-break: keep-all;
}

.flex-list-03.n3 {
	width: calc(100% + 7px);
	margin-left: -3.5px;
}

.flex-list-03.n3>div {
	width: calc(33.33% - 7px);
	margin: 0 3.5px;
	background-color: #f4f4f4;
}

.flex-list-03.n3>div>p {
	padding: 20px 0;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
	background-color: #333;
}

.flex-list-03.n3>div>span {
	display: block;
	padding: 30px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1.5px;
	word-break: keep-all;
}

.flex-list-03 h4 {
	width: 100%;
	margin-bottom: 10px;
	padding: 30px 0;
	color: #fff;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -1px;
	text-align: center;
	background-image: url(/resource/images/info01-13-01-bg.png);
	background-size: 100% 100%;
}

.flex-list-03 h4 small {
	display: block;
	margin-top: 10px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -1.5px;
}

.flex-list-04 {
	display: flex;
}

.flex-list-04.margin-t {
	margin-top: 50px;
}

.flex-list-04 li {
	width: 33.33%;
	padding-left: 50px;
	border-left: 1px solid #ddd;
}

.flex-list-04 li:first-of-type {
	padding-left: 0;
	border: none;
}

.flex-list-04 li p {
	margin-bottom: 25px;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: -1.5px;
}

.flex-list-04 li span {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -2px;
	word-break: keep-all;
}

.z-list.intro02-bg {
	max-width: 1160px;
	margin: 0 auto;
	background-image: url(/resource/images/intro02-bg.png);
	background-repeat: no-repeat;
	background-position: center;
}

.z-list.intro02-bg li {
	margin: 100px 0;
}

.z-list.intro02-bg li:nth-of-type(odd) {
	flex-flow: row-reverse;
}

.z-list.intro02-bg li:nth-of-type(even) {
	flex-flow: row;
}

.z-list.intro02-bg li:nth-of-type(even) .text {
	padding-left: 64px;
}

.z-list.intro02-bg li .img {
	width: 45%;
}

.z-list.intro02-bg li .text {
	width: 55%;
}

.z-list.feel li {
	margin: 0;
}

.z-list.feel li .text {
	padding: 50px 64px;
	background-repeat: no-repeat;
	background-position: 151px 0;
}

.z-list.feel li:nth-of-type(odd) {
	flex-flow: row;
}

.z-list.feel li:nth-of-type(even) {
	flex-flow: row-reverse;
}

.z-list.feel li:nth-of-type(1) .text {
	background-image: url(/resource/images/feel3-01.png);
}

.z-list.feel li:nth-of-type(2) .text {
	padding-left: 0;
	background-image: url(/resource/images/feel3-02.png);
	background-position: 73px 0;
}

.z-list.feel li:nth-of-type(3) .text {
	background-image: url(/resource/images/feel3-03.png);
}

.z-list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.z-list li:nth-of-type(even) {
	flex-flow: row-reverse;
	margin: 0;
}

.z-list li:nth-of-type(even) .text {
	padding-left: 0;
}

.z-list li .img {
	width: 50%;
}

.z-list li .img img {
	max-width: 100%;
}

.z-list li .text {
	width: 50%;
	padding: 0 64px;
	box-sizing: border-box;
}

.z-list li .text.no-right-pad {
	padding-right: 0;
}

.z-list li .text>small {
	font-size: 15px;
	font-weight: bold;
	line-height: 2.13;
	letter-spacing: -0.75px;
	text-transform: uppercase;
	color: #929292;
}

.z-list li .text>p {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: -3px;
	color: #333333;
	word-break: keep-all;
}

.z-list li .text>p.small {
	font-size: 30px;
}

.z-list li .text>span {
	display: block;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -2px;
	color: #333333;
	word-break: keep-all;
}

.program-list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.program-list li {
	width: 210px;
	margin-right: 62px;
	margin-bottom: 60px;
	box-sizing: border-box;
}

.program-list li:nth-of-type(5n+5) {
	margin-right: 0;
}

.program-list li img {
	max-width: 100%;
}

.program-list li p {
	margin-top: 30px;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: -1.5px;
	word-break: keep-all;
}

.img-box {
	text-align: center;
}

.img-box img {
	max-width: 100%;
}

/*
	Ham botton
*/
.menu-button {
	display: none;
	position: relative;
	padding: 15px;
	cursor: pointer;
	-webkit-transition: .3s;
	transition: .3s;
	z-index: 10001;
}

.menu-button .bar {
	position: relative;
	display: block;
	width: 34px;
	height: 5px;
	margin: 5px auto;
	background-color: #333;
	border-radius: 10px;
	-webkit-transition: .3s;
	transition: .3s;
}

.menu-button .bar:nth-of-type(1) {
	margin-top: 0px;
}

.menu-button .bar:nth-of-type(3) {
	margin-bottom: 0px;
}

.menu-button.cross .bar:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	-ms-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.menu-button.cross .bar:nth-of-type(2) {
	opacity: 0;
}

.menu-button.cross .bar:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	-ms-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}

#wrap {
	overflow: hidden;
	margin: 94px auto 0;
}


/* 탑버튼 */
#top {
	position: fixed;
	bottom: 5%;
	right: 60px;
	display: none;
	width: 100px;
	height: 100px;
	color: #fff;
	font-size:24px;
	line-height: 100px;
	text-align: center;
	border-radius: 100%;
	background-color: #f36c3f;
	z-index: 10000;
}

/*퀵메뉴*/
#quick {
    position: fixed;
    bottom: 160px;
    right: 60px;
    z-index: 100;
	}

#quick img {
	width:100px;
	}


@media screen and (max-width: 720px) {
    #quick {
        bottom: 265px;
        right: 15px;
        z-index: 1000;
    }
}
@media screen and (max-width: 720px) {
    #quick img {
        width: auto;
    }
}
/*

	Header
*/
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 94px;
	padding: 0 57px;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #fff;
	z-index: 9990;
}

header #gnb {
	position: absolute;
	top: 0;
	left: 50%;
	height: 100%;
	transform: translateX(-50%);
}

header #gnb>ul {
	display: flex;
	height: 100%;
}

header #gnb>ul>li {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	margin: 0 30px;
}

header #gnb>ul>li>a {
	color: #333;
	font-size: 18px;
}

header #gnb>ul>li>.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	width: 200px;
	border: 1px solid #ddd;
	transform: translateX(-50%);
	background-color: #fff;
}

header #gnb>ul>li>.sub-menu li:nth-of-type(odd) a {
	background-color: #f8f8f8;
}

header #gnb>ul>li>.sub-menu li a {
	display: block;
	padding: 10px 20px;
	color: #333;
	font-size: 16px;
	text-align: center;
}

header #gnb>ul>li:hover>.sub-menu {
	display: block;
}

header #header_info {
	display: flex;
	align-items: center;
}

header #header_info .login-box {
	margin-right: 25px;
}

header #header_info .login-box a {
	color: #979797;
	letter-spacing: -1px;
}

header #header_info .sns {
	display: flex;
	align-items: center;
	margin-right: 25px;
}

header #header_info .sns li {
	margin-right: 5px;
}

header #header_info .sns li:last-of-type {
	margin-right: 0;
}

header #header_info .sns li a {
	display: block;
	width: 28px;
	height: 28px;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 0 0;
	transition: all 0.2s;
}

header #header_info .sns li.blog a {
	background-image: url(/resource/images/h-blog.png);
}

header #header_info .sns li.blog:hover a {
	background-image: url(/resource/images/h-blog-hover.png);
}

header #header_info .sns li.youtube a {
	background-image: url(/resource/images/h-you.png);
}

header #header_info .sns li.youtube:hover a {
	background-image: url(/resource/images/h-you-hover.png);
}

/*
	Footer
*/
footer {
	background-color: #ededed;
}

footer .top {
	padding: 20px 0;
	border-bottom: 1px solid #ccc;
}

footer .top ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

footer .top ul li {
	margin: 0 40px;
}

footer .top ul li a {
	color: #333;
	font-size: 16px;
}

footer .bottom {
	position: relative;
	padding: 60px 0 80px;
	text-align: center;
}

footer .bottom .sitemap {
	position: absolute;
	top: -55px;
	left: 30px;
	background-color: #fff;
}

footer .bottom .sitemap>p {
	position: relative;
	width: 160px;
	padding: 5px 10px;
	text-align: left;
	border: 1px solid #ddd;
}

footer .bottom .sitemap>p:after {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	content: '▼';
}

footer .bottom .sitemap>ul {
	display: none;
	position: absolute;
	top: 100%;
	width: 100%;
	padding: 5px 0;
	border: 1px solid #ddd;
	border-top: none;
	box-sizing: border-box;
	background-color: #fff;
	z-index: 10;
}

footer .bottom .sitemap>ul>li {
	padding: 10px;
	box-sizing: border-box;
}

footer .bottom .sitemap>ul>li>a {
	display: block;
	color:#333;
}

footer .bottom > h1 {
	margin-bottom: 30px;
}

footer .bottom > span {
	display: inline-block;
	margin: 0 10px;
	color: #959595;
	font-size: 14px;
}

footer .bottom > p {
	margin: 0 10px;
	color: #959595;
	font-size: 14px;
}

footer .bottom .foot-sns {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

footer .bottom .foot-sns li {
	margin: 0 10px;
}

footer .bottom .foot-sns li a {
	display: block;
	width: 80px;
	height: 80px;
	line-height: 80px;
	text-align: center;
	border-radius: 100%;
}

footer .bottom .foot-sns li a.blog {
	background-color: #2cb0b5;
}

footer .bottom .foot-sns li a.kakao {
	background-color: #b39b7d;
}

/*
	Main
*/
#main-bnnr .swiper-slide .inner {
	position: absolute;
	top: 190px;
	left: 50%;
	transform: translateX(-50%);
}

#main-bnnr .swiper-slide .inner.center {
	top: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
}

#main-bnnr .swiper-slide .inner img {
	position: relative;
	left: -200px;
	opacity: 0;
	transition: all 2s;
}

#main-bnnr .swiper-slide-active .inner img {
	left: 0;
	opacity: 1;
}

#main-bnnr .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}

#main-bnnr .swiper-pagination {
	display: none;
	bottom: 140px;
	width: 1330px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

/* #main-bnnr .swiper-pagination-bullet {
  display: block;
  width: 200px;
  height: 47px;
  margin-bottom: 15px;
  margin-left: auto;
  color: rgba(51, 51, 51, 0.37);
  font-size: 17px;
  line-height: 45px;
  border-radius: 24px;
  border: 1px solid #f36c3f;
  background-color: #fff;
  opacity: 1; }
#main-bnnr .swiper-pagination-bullet-active {
  color: #48d5e6;
  border-color: #012035;
  background-color: #012035; } */

#main-quick {
	position: relative;
	width: 1920px;
	left: 50%;
	display: flex;
	margin-bottom: 80px;
	margin-left: -960px;
}

#main-quick .left {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
	width: 492px;
	padding: 44px 60px;
	box-sizing: border-box;
	background-color: #351401;
}

#main-quick .right {
	display: flex;
	align-items: center;
	width: calc(100% - 492px);
	padding: 44px 60px;
	box-sizing: border-box;
	background-color: #f36c3f;
}

#main-quick .right h3 {
	margin-right: 60px;
	color: #fff;
	font-size: 32px;
	letter-spacing: -1px;
}

#main-quick .right h3 small {
	display: block;
	margin-top: 15px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
}

#main-quick .right ul {
	display: flex;
	align-items: center;
}

#main-quick .right ul li a {
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 127px;
	background-image: url(/resource/images/quick-line.png);
	background-repeat: no-repeat;
	background-position: 100% 0;
}

#main-slide {
	overflow: hidden;
	position: relative;
}

#main-slide .swiper-container {
	overflow: visible;
	width: 1610px;
	margin: 0;
}

#main-slide .swiper-slide {
	display: flex;
}

#main-slide .swiper-slide .text {
	padding: 70px;
	box-sizing: border-box;
}

#main-slide .swiper-slide .text small {
	color: #f36c3f;
	font-size: 21px;
}

#main-slide .swiper-slide .text h4 {
	margin: 60px 0 50px;
	font-size: 50px;
	line-height: 1.11;
	letter-spacing: -2.2px;
}

#main-slide .swiper-slide .text h4>span {
	display: block;
	margin-top: 10px;
	font-size: 25px;
}

#main-slide .swiper-slide .text p {
	color: #aeaeae;
	font-size: 18px;
	letter-spacing: -0.9px;
}

#main-slide .swiper-slide .text a {
	display: block;
	width: 233px;
	margin-top: 38px;
	color: #333;
	font-size: 16px;
	line-height: 58px;
	text-align: center;
	border: 1px solid #000;
}

#main-slide .swiper-control {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 1540px;
}

#main-slide .swiper-pagination {
	position: absolute;
	display: inline-block;
	width: auto;
	right: 80px;
	left: auto;
	bottom: 0;
}

#main-slide .swiper-pagination * {
	font-size: 18px;
}

#main-slide .swiper-button-prev,
#main-slide .swiper-button-next {
	top: auto;
	bottom: 10px;
	width: 51px;
	height: 7px;
	margin-top: 0;
	background-repeat: no-repeat;
	background-position: 0 0;
}

#main-slide .swiper-button-prev:after,
#main-slide .swiper-button-next:after {
	display: none;
}

#main-slide .swiper-button-prev {
	left: auto;
	right: 135px;
	background-image: url(/resource/images/left-arrow.png);
}

#main-slide .swiper-button-next {
	background-image: url(/resource/images/right-arrow.png);
}

#main-news {
	padding: 120px 0;
}

#main-news>h3 {
	font-size: 50px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -2px;
}

#main-news>h3 span {
	color: #f36c3f;
}

#main-news #introduce {
	max-width: 1100px;
	margin:40px auto 0;
}

/* #main-news>p {
	position: relative;
	margin-top: 20px;
	font-size: 18px;
	text-align: center;
}

#main-news>p:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 15px;
	margin-top: -6px;
	background-color: #909090;
	content: "";
}

#main-news .mobile {
	display: none;
}

#main-news ul {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}

#main-news ul li {
	width: 387px;
}

#main-news ul li a {
	display: block;
}

#main-news ul li a .text {
	position: relative;
	margin-top: -60px;
	z-index: 10;
}

#main-news ul li a .text .tit {
	display: flex;
	align-items: center;
	width: 337px;
	min-height: 70px;
	padding: 20px 20px 20px 0;
	color: #333;
	font-size: 22px;
	word-break: keep-all;
	box-sizing: border-box;
	background-color: #fff;
}

#main-news ul li a .text .label {
	display: inline-block;
	padding: 0 8px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: 10px;
}

#main-news ul li a .text .label.g {
	color: #f36c3f;
	border: 1px solid #f36c3f;
}

#main-news ul li a .text .label.b {
	color: #b28367;
	border: 1px solid #b28367;
}

#main-news ul li a .text p {
	color: #909090;
	word-break: keep-all;
} */

#main-introduce {
	padding:0 0 120px;
}
#main-introduce .inner {
	padding:0;
}
#main-introduce .inner > h3 {
	font-size: 50px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -2px;
}

#main-introduce .inner > h3 span {
	color: #f36c3f;
}

#main-introduce .video {
	margin-top: 50px;
}

#main-center {
	margin-bottom: 140px;
	padding: 100px 0;
	height: 506px;
	box-sizing: border-box;
	background-image: url(/resource/images/main-center-bg.png);
	background-repeat: no-repeat;
	background-position: center;
}

#main-center>h3 {
	color: #fff;
	font-size: 50px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -2px;
}

#main-center>h3 span {
	color: #f36c3f;
}

#main-center>p {
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

#main-center .inner {
	display: flex;
	margin-top: 40px;
}

#main-center .inner ul {
	display: flex;
	height: 180px;
}

#main-center .inner ul:first-of-type {
	width: 800px;
	padding: 0 50px;
	box-sizing: border-box;
	background-color: #fff;
}

#main-center .inner ul:first-of-type li {
	width: 25%;
	height: 100%;
}

#main-center .inner ul:first-of-type li a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	height: 100%;
	color: #333;
}

#main-center .inner ul:last-of-type {
	width: 500px;
	box-sizing: border-box;
	background-color: #fff;
}

#main-center .inner ul:last-of-type li {
	width: 50%;
	height: 100%;
}

#main-center .inner ul:last-of-type li:first-of-type {
	background-color: #f36c3f;
}

#main-center .inner ul:last-of-type li:last-of-type {
	background-color: #351401;
}

#main-center .inner ul:last-of-type li a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	height: 100%;
	color: #fff;
}

#info {
	margin-bottom: 100px;
}

#info .inner {
	display: flex;
	justify-content: space-between;
}

#info .inner .box {
	width: 420px;
	padding: 54px 46px;
	box-sizing: border-box;
}

#info .inner .box h3 {
	font-size: 35px;
	font-weight: 500;
	line-height: 1.29;
	letter-spacing: -2.63px;
	color: #333333;
}

#info .inner .box a {
	display: block;
	width: 100%;
	height: 53px;
	margin-top: 8px;
	padding: 0 10px;
	color: #333;
	line-height: 53px;
	text-align: center;
	border: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #f2f2f2;
}

#info .inner .box.left {
	position: relative;
	padding: 0;
}

#info .inner .box.left img {
	position: absolute;
	top: 0;
	right: 0;
	/* max-width: 100%; */
}

#info .inner .box.center {
	background-color: #f0f0f0;
}

#info .inner .box.center.no-pad {
	padding:0 !important;
}

#info .inner .box.center label {
	display: block;
	margin-top: 10px;
	margin-bottom: 30px;
	cursor: pointer;
}

#info .inner .box.center select,
#info .inner .box.center input:not([type="checkbox"]) {
	width: 100%;
	height: 53px;
	margin-bottom: 12px;
	padding: 0 10px;
	line-height: 53px;
	outline: none;
	box-shadow: none;
	border: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #fff;
}

#info .inner .box.center a {
	margin-top: 10px;
	color: #fff;
	background-color: #333;
}

#info .inner .box.center p {
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: -1px;
}

#info .inner .box.right {
	border: 1px solid #ddd;
	box-sizing: border-box;
}

#info .inner .box.right .tit-n2 {
	display: flex;
	justify-content: space-between;
}

#info .inner .box.right .tit-n2 h3 {
	font-size: 16px;
	letter-spacing: -1px;
}

#info .inner .box.right .tit-n2 p {
	margin-top: 10px;
	font-family: 'Gotham';
	font-size: 32px;
	font-weight: bold;
	line-height: 1;
	color: #929292;
	letter-spacing: -2px;
}

#info .inner .box.right .tit-n2 p span {
	color: #333;
}

#info .inner .box.right .table-box {
	margin: 30px 0;
	padding: 15px 28px;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

#info .inner .box.right .table-box table tbody td:first-of-type {
	width: 110px;
}

#info .inner .box.right .table-box table tfoot td {
	color: #aaa;
}

/*
	Sub
*/
#sub-bnnr {
	overflow: hidden;
	position: relative;
}

#sub-bnnr img {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

#sub-bnnr h2 {
	position: absolute;
	top: calc(50% - 33px);
	left: 0;
	width: 100%;
	color: #fff;
	text-align: center;
	transform: translateY(-50%);
}

#sub-bnnr h2 span {
	font-size: 57px;
	letter-spacing: -4px;
}

#sub-bnnr h2 small {
	display: block;
	margin-bottom: 30px;
	font-family: 'Gotham';
	font-size: 14px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
}

#location {
	position: relative;
	display: flex;
	width: 100%;
	height: 66px;
	max-width: 1300px;
	margin: -33px auto 0;
	border: 1px solid #ddd;
	box-sizing: border-box;
	background-color: #fff;
	z-index: 10;
}

#location .home {
	display: block;
	width: 66px;
	height: 100%;
	border-right: 1px solid #ddd;
	text-indent: -9999px;
	box-sizing: border-box;
	background-image: url(/resource/images/home.png);
	background-repeat: no-repeat;
	background-position: center;
}

#location .locDepth {
	position: relative;
	width: calc(50% - 33px);
	background-image: url(/resource/images/plus.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 30px) 50%;
}

#location .locDepth.locDepth1 {
	border-right: 1px solid #ddd;
	box-sizing: border-box;
}

#location .locDepth button {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 46px;
	font-size: 23px;
	font-weight: 500;
	box-sizing: border-box;
}

#location .locDepth ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #ddd;
	border-bottom: 0;
	box-sizing: border-box;
	background-color: #fff;
}

#location .locDepth ul li {
	border-bottom: 1px solid #ddd;
}

#location .locDepth ul li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 50px;
	padding: 0 46px;
	box-sizing: border-box;
	color: #666;
	font-size: 20px;
}

#location .locDepth ul li a br {
	display: none;
}

#location .locDepth ul li a:hover {
	color: #f36c3f;
	background-color: #351401;
}

#location .locDepth:hover ul {
	display: block;
}

.page-tit {
	margin-bottom: 90px;
	font-size: 35px;
	line-height: 1.17;
	letter-spacing: -2.63px;
	text-align: center;
	color: #333333;
}

.cont-tit {
	margin-bottom: 60px;
	font-size: 50px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -3.75px;
	text-align: center;
	color: #333333;
}

.cont-tit.border {
	position: relative;
	padding-bottom: 20px;
}

.cont-tit.border:after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 46px;
	height: 2px;
	margin-left: -23px;
	background-color: #ccc;
	content: '';
}

.cont-tit+.help-tit {
	margin-top: -30px;
}

.help-tit {
	margin-bottom: 50px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -1px;
	text-align: center;
	color: #333;
}

.help-tit.middot {
	margin-top: 29px;
	font-size: 20px;
	font-weight: 500;
}

.help-tit.middot:before,
.help-tit.middot:after {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 0 10px;
	border-radius: 100%;
	background-color: #f36c3f;
	content: '';
}

.help-text {
	margin-top: 66px;
	font-weight: 300;
	font-size: 20px;
}

[id*="sub-menu"] {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 58px 0;
}

[id*="sub-menu"].on {
	display: flex;
}

[id*="sub-menu"] li {
	position: relative;
	padding: 0 15px;
}

[id*="sub-menu"] li:after {
	position: absolute;
	top: 50%;
	left: 100%;
	width: 2px;
	height: 15px;
	margin-top: -7px;
	background-color: #b8b8b8;
	content: '';
}

[id*="sub-menu"] li:last-of-type:after {
	display: none;
}

[id*="sub-menu"] li a {
	color: #b8b8b8;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -1.65px;
}

[id*="sub-menu"] li.on a {
	color: #333;
}

.page-bnnr {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.page-bnnr .center {
	flex-shrink: 0;
	width: 650px;
	padding: 0 40px 0 75px;
	box-sizing: border-box;
}

.page-bnnr .center small {
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	color: #b1b1b1;
	text-transform: uppercase;
}

.page-bnnr .center h4 {
	margin-top: 15px;
	font-size: 50px;
	line-height: 1.2;
	letter-spacing: -3.75px;
}

.page-bnnr .center p {
	margin-top: 30px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -2px;
}

.intro02 .box:nth-of-type(even) .text {
	flex-flow: row-reverse;
}

.intro02 .box .text {
	display: flex;
	padding: 90px 0;
}

.intro02 .box .text>div {
	width: 50%;
}

.intro02 .box .text>div.right {
	padding: 0 50px;
	box-sizing: border-box;
}

.intro02 .box .text>div h4 {
	position: relative;
	width: 100%;
	font-size: 50px;
	line-height: 1;
	letter-spacing: -3.75px;
	text-align: center;
}

.intro02 .box .text>div h4 small {
	position: absolute;
	bottom: calc(100% + 30px);
	left: 0;
	width: 100%;
	color: #f2f2f2;
	font-family: sans-serif;
	font-size: 150px;
	letter-spacing: -8.25px;
	text-align: center;
}

.intro02 .box .text>div p {
	margin-bottom: 40px;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: -3px;
}

.intro02 .box .text>div span {
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -2px;
	word-break: keep-all;
}

.intro01-box {
	margin-top: 40px;
	padding-left: 140px;
	box-sizing: border-box;
}

.intro01-box h4 {
	margin-bottom: 90px;
	font-size: 50px;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: -3px;
	text-align: left;
	color: #333333;
}

.intro01-box h4 small {
	display: block;
	margin-bottom: 20px;
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: 800;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	text-align: left;
	text-transform: uppercase;
	color: #b1b1b1;
}

.intro01-box p {
	margin-bottom: 35px;
	font-size: 20px;
	font-weight: 300;
	letter-spacing: -2px;
	word-break: keep-all;
}

.intro01-box p.sign {
	margin-top: 80px;
}

.intro02-tit {
	margin-top: 120px;
	font-size: 50px;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: -3.75px;
	text-align: center;
	color: #333333;
}

.intro02-tit small {
	display: block;
	margin-bottom: 40px;
	font-family: 'Gotham';
	font-size: 25px;
	font-weight: bold;
	line-height: 0.72;
	letter-spacing: -1.88px;
	text-align: center;
	text-transform: uppercase;
	color: #b1b1b1;
}

.doc-box {
	display: flex;
	margin-bottom: 120px;
}

.doc-box .text {
	margin-left: 120px;
}

.doc-box .text>small {
	font-family: 'Gotham';
	font-size: 18px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: normal;
	text-transform: uppercase;
	color: #bfbfbf;
}

.doc-box .text>h4 {
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 50px;
	line-height: 1.1;
	letter-spacing: -3.75px;
	color: #333333;
}

.doc-box .text>p:not(.history-help-text) {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -1.5px;
	color: #333333;
}

.doc-box .text .history-box {
	position: relative;
	overflow: hidden;
	height: 173px;
	margin-bottom: 30px;
	padding-bottom: 70px;
	transition: all 0.2s;
}

.doc-box .text .history-box.on {
	height: auto;
}

.doc-box .text .history-box>a {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	color: #000;
	line-height: 50px;
	border: 1px solid #ddd;
	font-size: 18px;
	text-align: center;
	box-sizing: border-box;
	background-color: #fff;
}

.doc-box .text .history {
	margin-bottom: 25px;
}

.doc-box .text .history .label {
	width: 130px;
	height: 35px;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 500;
	line-height: 35px;
	letter-spacing: -1.5px;
	text-align: center;
	color: #ffffff;
	border-radius: 18px;
}

.doc-box .text .history .label.g {
	background-color: #946c73;
}

.doc-box .text .history .label.b {
	background-color: #87664e;
}

.doc-box .text .history span {
	font-size: 20px;
	line-height: 1.6;
	word-break: keep-all;
}

.history-help-text {
	margin-top: -20px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
}

.intro04-box>div {
	display: flex;
}

.intro04-box>div .con {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.intro04-box>div .con * {
	color: #fff;
}

.intro04-box>div .con>img {
	margin-left: 70px;
	margin-bottom: 20px;
}

.intro04-box>div.top {
	background-color: #946c73;
}

.intro04-box>div.top .con h4 {
	margin-bottom: 10px;
}

.intro04-box>div.top .con h4 span {
	position: relative;
	margin: 0 15px;
	padding: 5px 0;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.19;
	letter-spacing: -2.03px;
}

.intro04-box>div.top .con h4 span:after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	content: '';
}

.intro04-box>div.top .con h4:after,
.intro04-box>div.top .con h4:before {
	display: inline-block;
	width: 20px;
	height: 61px;
	background-repeat: no-repeat;
	background-position: 0 0;
	vertical-align: middle;
	content: '';
}

.intro04-box>div.top .con h4:after {
	background-image: url(/resource/images/intro04-right.png);
}

.intro04-box>div.top .con h4:before {
	background-image: url(/resource/images/intro04-left.png);
}

.intro04-box>div.top .con ul li {
	display: flex;
	font-size: 20px;
	line-height: 1.5;
}

.intro04-box>div.top .con ul li span {
	width: 140px;
}

.intro04-box>div.bottom {
	flex-flow: row-reverse;
	background-color: #87664e;
}

.intro04-box>div.bottom .con h4 {
	margin-bottom: 25px;
	font-family: "Gotham";
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: -3px;
}

.intro04-box>div.bottom .con p {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.35;
	letter-spacing: -1px;
	text-align: center;
}

.step {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: calc(100% + 10px);
	margin-left: -5px;
}

.step li {
	width: 320px;
	margin: 5px;
	padding: 48px 15px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	text-align: center;
}

.step li img {
	margin-bottom: 15px;
}

.step li small {
	display: block;
	font-family: 'Gotham';
	font-size: 16px;
	font-weight: bold;
	line-height: 1.56;
	letter-spacing: -0.8px;
	text-align: center;
	color: #f36c3f;
}

.step li h5 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -1.5px;
	color: #333333;
}

.step li p {
	margin-top: 15px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	letter-spacing: -1.2px;
	word-break: keep-all;
	color: #333333;
}

.text-box {
	padding: 40px 50px;
	box-sizing: border-box;
	background-color: #f8f8f8;
}

/*--------------
	둘러보기
---------------*/
#introduce .floor {
	margin-top: 2.4rem;
}

#introduce .floor .swiper-slide img {
	width: 100%;
}

#introduce .floor .swiper-slide:before {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 20px 10px;
	color: #fff;
	font-size: 28px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
	content: attr(title);
}

#introduce .floor .swiper-button-next,
#introduce .floor .swiper-button-prev {
	width: 93px;
	height: 93px;
	background-color: #fff;
	background-image: url("/resource/images/floor-arrow.png");
	background-repeat: no-repeat;
	background-size: auto 93px;
	opacity: 1;
}

#introduce .floor .swiper-button-next:hover,
#introduce .floor .swiper-button-prev:hover {
	opacity: 0.9;
}

#introduce .floor .swiper-button-next:after,
#introduce .floor .swiper-button-prev:after {
	display: none;
}

#introduce .floor .swiper-button-next {
	top: auto;
	bottom: 0;
	right: 0;
	background-position: -93px 0;
}

#introduce .floor .swiper-button-prev {
	top: auto;
	bottom: 0;
	right: 93px;
	left: auto;
	background-position: 0 0;
}

#introduce .gallery-thumbs {
	margin-top: 20px;
}

#introduce .gallery-thumbs .swiper-slide {
	border: 2px solid #fff;
	box-sizing: border-box;
}

#introduce .gallery-thumbs .swiper-slide-thumb-active {
	border-color: #666;
}


/* 치료후기 */
.experience-list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-top: 60px;
	margin-left: -10px;
	font-size: 0;
	line-height: 0;
}

.experience-list>li {
	margin: 10px;
	width: calc(25% - 20px);
}

.experience-list>li .picture {
	position: relative;
	display: block;
	padding-top: 120%;
}

.experience-list>li .picture img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.experience-list:after {
	content: '';
	display: block;
	clear: both;
}

.experience-list img.block {
	outline: 1px #ddd solid;
	box-sizing: border-box;
}

.exp-tit {
	padding: 15px 0;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: -1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #333;
}

.experience-list p {
	padding: 12px 0;
	border-bottom: 1px #ddd solid;
}

.experience-list p>span {
	display: block;
	display: -webkit-box;
	height: 85px;
	overflow: hidden;
	font-size: 16px;
	line-height: 28px;
	color: #666;
	word-wrap: break-word;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.experience-list {
	margin-top: 50px;
}

.exp-info {
	border-top: 2px #19b1c3 solid;
}

.exp-info dd {
	display: inline-block;
	padding: 9px 9px 9px 0;
	font-size: 16px;
	line-height: 32px;
	color: #333;
}

.exp-info dd:after {
	content: '/';
	margin-left: 5px;
}

.exp-info dd:last-child:after {
	display: none;
}

.exp-num {
	border-top: 1px #ddd solid;
	padding: 9px 0;
	font-size: 14px;
	line-height: 32px;
	color: #999;
}

.exp-num:after {
	content: '';
	display: block;
	clear: both;
}

.exp-num span.num {
	float: left;
}

.exp-num span.date {
	float: right;
}

/* 감사편지 */
.letter-list {
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-top: 20px;
	margin-left: -10px;
}

.letter-list>li {
	margin: 10px;
	width: calc(25% - 20px);
}

.letter-list>li a {
	display: block;
	padding: 20px 30px;
	border: 1px solid #e1e1e1;
}

.letter-list .tit {
	margin-top: 18px;
	font-size: 18px;
	line-height: 22px;
	color: #333;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.letter-list .cont {
	margin: 25px 0;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	height: 72px;
	overflow: hidden;
	word-break: break-all;
}

/* 3필 치료법 */
.feel3-care .box {
	display: flex;
	padding: 65px 44px;
	box-sizing: border-box;
}

.feel3-care .box.box1 {
	background-color: #f7f0e8;
}

.feel3-care .box.box3 {
	background-color: #e7f3f1;
}

.feel3-care .box .left {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.feel3-care .box .left h5 {
	margin-left: 30px;
	font-size: 50px;
	line-height: 0.7;
	letter-spacing: -3px;
	text-align: center;
}

.feel3-care .box .left h5 small {
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: 3.6;
	letter-spacing: -1.5px;
}

.feel3-care .box .right {
	width: 688px;
	margin-left: 150px;
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: -2px;
	word-break: keep-all;
}

/* -------------------------
		FnQ Start
---------------------------- */
.accordion {
	margin-top: 100px;
	margin-bottom: 60px;
	border-top: 2px solid #333;
}

.accordion .item {
	border-bottom: 1px solid #ddd;
	transition: all 0.1s;
}

.accordion .item.active .collapsed {
	display: block;
}

.accordion .item.active .collapsed:after {
	display: none;
}

.accordion .item.active .collapse {
	display: block;
}

.accordion .item .collapsed {
	display: block;
	position: relative;
	width: 100%;
	padding: 25px 40px 25px 80px;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	box-sizing: border-box;
}

.accordion .item .collapsed span {
	position: relative;
}

.accordion .item .collapsed span:before {
	display: block;
	position: absolute;
	top: 50%;
	left: -40px;
	width: 20px;
	height: 20px;
	margin-top: -13px;
	color: #333;
	font-size: 20px;
	font-weight: bold;
	border-radius: 100%;
	content: 'Q';
}

.accordion .item .collapsed span.mail:before {
	display: block;
	position: absolute;
	top: 50%;
	left: -40px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	color: #333;
	font-size: 20px;
	line-height: 1.750rem;
	text-align: center;
	text-indent: -2px;
	border-radius: 100%;
	background-image: url(../images/sub/mail.png);
	background-repeat: no-repeat;
	background-size: 20px auto;
	background-position: center;
	/* background-color: #777052; */
	content: '';
}

.accordion .item .collapsed:before {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 2px;
	height: 20px;
	margin-top: -10px;
	background-color: #333;
	transform: rotateZ(90deg);
	content: '';
}

.accordion .item .collapsed:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 30px;
	width: 2px;
	height: 20px;
	margin-top: -10px;
	background-color: #333;
	content: '';
}

.accordion .item .collapse {
	display: none;
	position: relative;
	padding: 40px 50px 40px 80px;
	font-size: 18px;
	box-sizing: border-box;
	background-color: #f9f9f9;
}

.accordion .item .collapse:before {
	display: none;
	position: absolute;
	top: 8px;
	left: 10px;
	width: 30px;
	height: 30px;
	color: #333;
	font-size: 1.250em;
	line-height: 1.750rem;
	text-align: center;
	border-radius: 100%;
	background-color: #ccc;
	content: 'A';
}

.accordion .item.active .collapse {
	border-top: 1px solid #ddd;
}

.accordion .item.active .collapse * {
	font-size: 18px;
	font-family: 'Noto Sans KR';
	letter-spacing: -0.75px;
}

.accordion .item.active .collapse p {
	font-weight: 300;
}

.accordion .item.active .collapse b {
	font-weight: 500;
}

.accordion .item .collapse p {
	color: #666;
	font-size: 17px;
	line-height: 1.4;
}

/* 로그인 */
#member-box {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 0;
	border: 1px solid #ddd;
	box-sizing: border-box;
}

#member-box .mem-tit {
	margin-bottom: 20px;
	font-weight: normal;
	text-align: center;
}

#member-box .mem-tit span {
	display: block;
	margin-top: 30px;
	font-size: 26px;
	line-height: 1.07;
	letter-spacing: -0.75px;
	color: #212121;
}

#member-box .mem-tit small {
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.8px;
	text-align: center;
}

#member-box #btn-box {
	justify-content: center;
}

#member-box #btn-box .btn {
	width: 304px;
	height: 70px;
	font-weight: 500;
	line-height: 70px;
}

#member-box #btn-box .btn img {
	margin-top: -3px;
	margin-right: 10px;
}

#member-box #btn-box .btn.naver {
	border-color: #2DB400;
	background-color: #2DB400;
}

#member-box #btn-box .btn.kakao {
	color: #3A1D1D;
	border-color: #F7E600;
	background-color: #F7E600;
}

/* 협력기관 */
#collaboCorp {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

#collaboCorp li {
	width: calc(100%/5);
}

#collaboCorp li>a {
	display: block;
	border: 1px solid #ddd;
	margin: 0 5px 10px;
}

#collaboCorp li>a:hover {
	border: 1px solid #65bb00;
	outline: 1px solid #65bb00;
}

#collaboCorp li>a .logo {
	display: block;
	line-height: 112px;
	padding: 15px;
	text-align: center;
	box-sizing: border-box;
}

#collaboCorp li>a .logo img {
	max-width: 100%;
	max-height: 100%;
}

#collaboCorp .name {
	display: block;
	padding: 22px 0;
	color: #333;
	text-align: center;
	background-color: #f8f8f8;
}

/* 오시는길 */
#map .root_daum_roughmap {
	width: 100%;
}
#map1 .root_daum_roughmap {
	width: 100%;
}

.btnWrap {
	display: flex;
	width: 100%;
	text-align: center;
}

.btnWrap>span {
	width: 100%;
}

.btnWrap [class*="btnType"] {
	display: inline-block;
	width: 100%;
	padding: 15px 0;
	font-size: 20px;
	font-weight: 500;
}

.btnWrap [class*="btnType"]~[class*="btnType"] {
	margin-top: 2rem;
}

.btnWrap+.btnWrap {
	margin-top: 1.5rem;
}

.btnTypeNaver {
	background: #1dc800;
	color: #fff;
}

.btnTypeNaver:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 25px;
	margin: -2px 10px 0;
	background: url("/resource/images/n.png") no-repeat;
	vertical-align: middle;
}

.btnTypeKakao {
	background: #ffe400;
	color: #412e34 !important;
}

.btnTypeKakao:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 25px;
	margin: -2px 10px 0;
	background: url("/resource/images/k.png") no-repeat;
	vertical-align: middle;
}

.map-addr {
	display: flex;
	margin: 5.8rem 0 8rem;
	font-family: 'Noto Sans KR';
}

.map-addr>div {
	display: flex;
	align-items: center;
	width: 50%;
}

.map-addr>div img {
	margin-right: 20px;
}

.map-addr>div span {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.6;
	letter-spacing: -1.88px;
	color: #333333;
	vertical-align: middle;
}

.map-addr>div span small {
	display: inline-block;
	width: 80px;
	color: #333;
	font-size: 20px;
	font-weight: 500;
}

.map-addr>div span b {
	font-weight: 500;
}

.cont-box {
	overflow: hidden;
	position: relative;
	display: flex;
	margin-bottom: 40px;
	padding: 40px 0;
	box-sizing: border-box;
}

.cont-box:before {
	position: absolute;
	top: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #dadada;
	content: '';
}

.cont-box:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 170px;
	height: 3px;
	background-color: #f36c3f;
	content: '';
}

.cont-box .cont-label {
	flex-shrink: 0;
	width: 220px;
	padding-left: 15px;
	color: #333333;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -1.25px;
}

.cont-box .cont {
	width: 100%;
}

.cont-box .cont>p {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.6;
}

.cont-box.no-after:after {
	display: none;
}

@media screen and (max-width: 1470px) {
	.menu-button {
		display: block;
	}

	.menu-button .bar {
		width: 50px;
		margin: 8px 0 8px auto;
		border-radius: 0;
	}

	.menu-button .bar.short {
		width: 30px;
	}

	.menu-button.cross .bar {
		margin: 8px auto;
	}

	.menu-button.cross .bar:nth-of-type(1) {
		-webkit-transform: translateY(13px) rotate(-45deg);
		-ms-transform: translateY(13px) rotate(-45deg);
		transform: translateY(13px) rotate(-45deg);
	}

	.menu-button.cross .bar:nth-of-type(3) {
		-webkit-transform: translateY(-13px) rotate(45deg);
		-ms-transform: translateY(-13px) rotate(45deg);
		transform: translateY(-13px) rotate(45deg);
	}

	.mobile-bg {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		background-color: rgba(0, 0, 0, 0.7);
		z-index: 9990;
	}

	.mobile-bg.on {
		display: block;
	}

	header {
		padding: 0 17px;
	}

	header .logo a img {
		width: 240px;
	}

	header #gnb {
		overflow-y: auto;
		position: fixed;
		width: 450px;
		top: 94px;
		left: auto;
		right: -100%;
		bottom: 0;
		transform: translateX(0);
		transition: all 0.2s;
	}

	header #gnb.on {
		right: 0;
	}

	header #gnb.on>ul>li.on>a:before {
		display: none;
	}

	header #gnb>ul {
		display: block;
	}

	header #gnb>ul>li {
		display: block;
		width: 100%;
		height: auto;
		margin: 0;
	}

	header #gnb>ul>li>a {
		position: relative;
		display: block;
		width: 100%;
		margin-top: -1px;
		padding: 34px;
		font-size: 25px;
		text-align: left;
		border-top: 1px solid #ddd;
		box-sizing: border-box;
		background-color: #f6f6f6;
	}

	header #gnb>ul>li>a:after {
		position: absolute;
		top: 50%;
		right: 34px;
		width: 26px;
		height: 4px;
		margin-top: -2px;
		background-color: #87664e;
		content: '';
	}

	header #gnb>ul>li>a:before {
		position: absolute;
		top: 50%;
		right: 45px;
		width: 4px;
		height: 26px;
		margin-top: -13px;
		background-color: #87664e;
		content: '';
	}

	header #gnb>ul>li>.sub-menu {
		position: relative;
		top: auto;
		flex-wrap: wrap;
		width: 100% !important;
		border: none;
		background-color: #f8f8f8;
	}

	header #gnb>ul>li>.sub-menu li {
		width: 50%;
	}

	header #gnb>ul>li>.sub-menu li a {
		padding: 25px 0 25px 25px;
		font-size: 20px;
		text-align: left;
		border-right: 1px solid #eee;
		box-sizing: border-box;
		border-top: 1px solid #eee;
		background-color: #fff !important;
	}

	header #gnb>ul>li>.sub-menu li a br {
		display: none;
	}

	header #gnb>ul>li>.sub-menu li:nth-of-type(even) a {
		border-right: none;
	}

	header #gnb>ul>li:hover>.sub-menu {
		display: none;
	}

	header #gnb>ul>li.on>.sub-menu {
		display: flex;
	}

	header #header_info {
		margin-left: auto;
	}
}



/*# sourceMappingURL=style.css.map */
