*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: 'Noto Sans KR', sans-serif;
    color: #333333;
}

html,
body {
    width: 100%;
}

a {
    color: #333333;
    text-decoration: none;
}

img {
    vertical-align: top;
}

select {
	background-color: #ffffff;
}

.material-icons {
    vertical-align: middle;
}

.unselectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}
.unselectable:focus {
	outline: none;
}

.blue {
    color: #7499c6;
}

.pink {
    color: #f3859b;
}

.bold {
    font-weight: 700;
}

span.pbr {
    display: block;
}
@media only screen and (max-width: 979px) {
    span.pbr {
        display: inline-block;
    }
}

span.tbr {
    display: block;
}
@media only screen and (max-width: 599px) {
    span.tbr {
        display: inline-block;
    }
}

span.br {
    display: inline-block;
}
@media only screen and (max-width: 979px) {
    span.br {
        display: block;
    }
}

span.brt {
    display: inline-block;
}
@media only screen and (max-width: 599px) {
    span.brt {
        display: block;
    }
}

.text-over-underline {
    position: relative;
    z-index: 1;
    color: #404040 !important;
    font-weight: 700;
    white-space: nowrap;
}
.text-over-underline::after {
    content: '';
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: 60%;
    left: 0;
    width: 100%;
    height: 30%;
    border-radius: 8px;
}
.text-over-underline.pink::after {
    background-color: #faced7;
}
.text-over-underline.yellow::after {
    background-color: #fff7cf;
}
.text-over-underline.blue::after {
    background-color: #6db9f4;
}
.text-over-underline.green::after {
    background-color: #cdeecf;
}
.text-over-underline.beige::after {
    background-color: #ffdbc3;
}
.text-over-underline.sky::after {
    background-color: #d0dbf3;
}

@media only screen and (max-width: 599px) {
	body.pad {
		padding-top: 48px;
	}
}

/* header */
.header {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
}
.header .home {
    display: inline-block;
    position: absolute;
    top: 60px;
    left: 16px;
    transform: translate(0, -50%)
}
.header.com .home {
	top: 50%;
}
.header.com .home img {
	max-height: 60px;
}
.header .btn-menu {
    display: none;
}
.header .menu {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.header .menu .btn-close {
    display: none;
}
.header .menu .user {
    float: right;
    padding: 30px 0;
    margin-right: 16px;
}
.header .menu .user .main {
    margin-bottom: 12px;
    text-align: center;
    font-size: 0;
}
.header .menu .user .main>a {
    display: inline-block;
    padding: 0 12px;
    font-size: 14px;
    line-height: 1;
}
.header .menu .user .main>a.qr {
	font-weight: 700;
}
.header .menu .user .main .logo {
    display: none;
}
.header .menu .user .main>a:not(:last-child) {
    border-right: 1px solid #333333;
}
.header .menu .user .sub {
	float: right;
}
.header .menu .user .sub>a {
    float: left;
    border-radius: 2px;
    padding: 0 20px;
    background-color: #ecf2f9;
    text-align: center;
    font-size: 14px;
    line-height: 2;
    font-weight: 700;
}
.header .menu .user .sub>a:not(:last-child) {
    margin-right: 2px;
}
.header .menu .navi {
    float: left;
	width: 100%;
}
.header .menu .navi .main-list {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
	border-bottom: 1px solid #e7e7e7;
}
.header .menu .navi .main-list .main-item {
    float: left;
    position: relative;
    width: 14.2857142%;
    cursor: pointer;
}
.header .menu .navi .main-item:hover .sub-list {
    max-height: none;
    opacity: 1;
}
.header .menu .navi .main-item .main-menu {
    display: inline-block;
    position: relative;
    width: 100%;
    border: 1px solid #e7e7e7;
    border-bottom: none;
    text-align: center;
    font-size: 15px;
    line-height: 3;
    font-weight: 700;
}
/*.header .menu .navi .main-item .main-menu:hover {
	background-color: #e7e7e7;
	color: #ffffff;
}*/
.header .menu .navi .main-item:not(:last-child) .main-menu {
    border-right: none;
}
.header .menu .navi .main-item .main-menu .material-icons {
    display: none;
}
.header .menu .navi .sub-list {
    position: absolute;
    z-index: 100;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    border: 1px solid #e7e7e7;
    border-top: none;
    background-color: #ffffff;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    overflow: hidden;
}
.header .menu .navi .sub-list .sub-item {
    border-top: 1px solid #e7e7e7;
}
.header .menu .navi .sub-list .sub-menu {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    line-height: 2;
    text-align: center;
}
.header .menu .navi .sub-list .sub-menu.category {
    color: #7499c6;
    font-weight: 700;
}
.header .menu .navi .sub-list .sub-menu:hover {
    background-color: #f3859b;
    color: #ffffff;
}
.header .menu .navi .sub-list .sub-menu.category:hover {
    background-color: #7499c6;
    color: #ffffff;
}
@keyframes header {
    0% {
        top: -48px;
    }
    100% {
        top: 0;
    }
}
@media only screen and (max-width: 979px) {
    .header {
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        animation: header 0.6s ease-in-out;
    }
    .header.top {
        position: absolute;
        background-color: transparent;
        box-shadow: none;
        animation: none;
    }
    .header .home {
        top: 12px;
        left: 50%;
        height: 24px;
        transform: translate(-50%, 0);
    }
    .header .home>img {
        height: 100%;
    }
	.header.com .home {
		top: 8px;
		height: 32px;
	}
    .header .btn-menu {
        float: right;
        display: block;
        height: 36px;
        margin: 6px 12px;
        border: none;
        padding: 0 6px;
        background-color: transparent;
        line-height: 1;
    }
    .header .menu {
        position: fixed;
        z-index: 1000;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out;
    }
    .header .menu.on {
        right: 0;
    }
    .header .menu .btn-close {
        float: right;
        display: block;
        top: 0;
        right: 0;
        height: 36px;
        margin: 6px 12px;
        border: none;
        padding: 0 6px;
        background-color: transparent;
        line-height: 1;
    }
    .header .menu .user {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .header .menu .user .main {
        position: relative;
        margin: 36px 12px 12px 12px;
        text-align: right;
    }
	.header.com .menu .user .main {
		margin: 36px 12px 36px 12px;
	}
    .header .menu .user .main>a {
        width: calc(50% - 12px);
        margin: 6px;
        border: none !important;
        border-radius: 2px;
        padding: 0 ;
        background-color: #f3859b;
        text-align: center;
        color: #ffffff;
        font-size: 15px;
        line-height: 2;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    .header .menu .user .main .logo {
        display: block;
        position: absolute;
        top: -64px;
        left: 12px;
        margin: 0 !important;
        background-color: transparent;
    }
	.header.com .menu .user .main .logo>img {
		width: auto;
		max-width: 154px;
		height: auto;
		max-height: 60px;
	}
    .header .menu .user .sub {
        width: 100%;
        background-color: #7499c6;
        vertical-align: top;
    }
    .header .menu .user .sub>a {
        width: 33.333333%;
        margin: 0 !important;
        border-radius: 0;
        padding: 0;
        background-color: transparent;
        color: #ffffff;
        font-size: 15px;
        line-height: 4;
    }
	.header.com .menu .user .sub {
        background-color: transparent;
    }
    .header.com .menu .user .sub>a {
        width: 100%;
        color: #7499c6;
    }
    .header .menu .navi .main-list {
        display: inline-block;
        width: 100%;
        height: calc(100vh - 198px);
        background-color: #f3859b;
        white-space: normal;
        -ms-overflow-style: none;
        overflow: -moz-scrollbars-none;
        overflow: auto;
    }
    .header .menu .navi .main-list::-webkit-scrollbar { 
        display: none;
    }
    .header .menu .navi .main-list .main-item {
        width: 100%;
    }
    .header .menu .navi .main-item:hover .sub-list {
        max-height: 0;
    }
    .header .menu .navi .main-item .main-menu {
        border: none;
        padding: 0 24px;
        text-align: left;
        color: #ffffff;
        font-size: 15px;
        line-height: 4;
    }
    .header .menu .navi .main-item .main-menu .material-icons {
        display: none;
        position: absolute;
        top: 50%;
        right: 24px;
        transform: translate(0, -50%);
        font-size: 24px;
        transition: all 0.2s ease-out;
    }
    .header .menu .navi .main-item .main-menu.on .material-icons {
        transform: translate(0, -50%) rotate(90deg);
    }
    .header .menu .navi .main-item .main-menu.on+.sub-list {
        max-height: 600px;
    }
    .header .menu .navi .sub-list {
        position: relative;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        border: none;
        background-color: transparent;
        transition: all 0.6s ease-in-out;
        opacity: 1;
        overflow: hidden;
    }
    .header .menu .navi .sub-list .sub-item {
        border-top: none;
    } 
    .header .menu .navi .sub-list .sub-menu {
        padding-left: 60px;
        text-align: left;
        color: #ffffff;
    }
    .header .menu .navi .sub-list .sub-menu.category {
        padding-left: 48px;
        line-height: 3;
        color: #ffffff;
    }
    .header .menu .navi .sub-list .sub-menu:hover {
        background-color: #da4c68;
    }
    .header .menu .navi .sub-list .sub-menu.category:hover {
        background-color: #da4c68;
    }
}

.sub-pad {
	display: none;
}
@media only screen and (max-width: 979px) {
	.sub-pad {
		display: block;
		padding-top: 48px;
	}
}

/* .contact-container */
.contact-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 30px;
}
.contact-container .form-part {
    display: inline-block;
    width: 100%;
}
.contact-container .form-part:not(:first-child) {
    margin-top: 72px;
}
.contact-container .form-part .heading {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #8c8c8c;
    text-align: right;
    line-height: 40px;
}
.contact-container .form-part .heading .title {
    float: left;
    text-align: left;
    font-size: 20px;
    line-height: 2;
    font-weight: 900;
}
.contact-container .form-part .heading .sub {
    display: inline-block;
    font-size: 15px;
    line-height: 2;
    vertical-align: bottom;
}
.contact-container .form-part .heading .sub > * {
    vertical-align: middle;
}
.contact-container .form-part .ac {
    float: right;
    margin-top: 12px;
    color: #585858;
    font-size: 12px;
    line-height: 1.4;
}
.contact-container .form-part .cp {
	float: left;
    width: 100%;
    margin-top: 12px;
	text-align: right;
    font-size: 20px;
    line-height: 1.2;
}
.contact-container .form-part .tp {
    float: left;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
}
.contact-container .form-part .tp > * {
    vertical-align: top;
}
.contact-container .caution {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #8c8c8c;
    text-align: right;
    color: #555555;
    font-size: 15px;
    line-height: 2;
}
.contact-container .form {
    display: inline-block;
    width: 100%;
}
.contact-container .form .input-container {
    float: left;
    width: 50%;
    padding: 20px 16px;
    border-bottom: 1px solid #dfdfdf;
    background-color: #ffffff;
}
.contact-container .form .input-container.sl {
	width: 100%;
}
.contact-container .form .input-container.address {
	width: 100%;
}
.contact-container .form .input-container .label {
    float: left;
    width: 120px;
    height: 32px;
    font-weight: 700;
    font-size: 15px;
    line-height: 30px;
}
.contact-container .form .input-container .input {
    float: left;
    width: calc(100% - 121px);
}
.contact-container .form .input-container .input input {
    display: inline-block;
    height: 32px;
    border: 1px solid #e8e9e9;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 15px;
}
.contact-container .form .input-container .input.radio > span {
    display: inline-block;
    vertical-align: top;
}
.contact-container .form .input-container .input.radio input {
    margin: 0 4px;
	width: 16px;
    vertical-align: top;
}
.contact-container .form .input-container .input.radio label {
    display: inline-block;
    min-height: 32px;
    font-size: 15px;
    line-height: 32px;
    word-break: keep-all;
    vertical-align: top;
	cursor: pointer;
}
.contact-container .form .input-container .check-container {
	float: left;
    width: calc(100% - 121px);
}
.contact-container .form .input-container .check-container .input.check {
	width: 50%;
}
.contact-container .form .input-container .input.check input {
    margin: 0 4px;
	width: 16px;
    vertical-align: top;
}
.contact-container .form .input-container .input.check label {
    display: inline-block;
    min-height: 32px;
    font-size: 15px;
    line-height: 32px;
    word-break: keep-all;
    vertical-align: top;
	cursor: pointer;
}
.contact-container .form .input-container .input.check .inline-check {
	margin-right: 24px;
	white-space: nowrap;
}
.contact-container .form .input-container .input .single-column {
    float: left;
    width: 100%;
}
.contact-container .form .input-container .input select {
    display: inline-block;
    height: 32px;
    border: 1px solid #e8e9e9;
    border-radius: 4px;
    padding: 0 5px;
    font-size: 15px;
	/* custom dropdown icon */
	-webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
    padding-right: 20px;
}
.contact-container .form .input-container .input select::-ms-expand {
	display: none;
}
.contact-container .form .input-container .input .triple-column {
    float: left;
    width: calc((100% - 48px) / 3);
}
.contact-container .form .input-container .input .divider {
    float: left;
    width: 24px;
    height: 32px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
}
.contact-container .form .input-container.address .input input[name="zipcode"] {
	float: left;
	width: 163px;
}
.contact-container .form .input-container.address .input .postcode {
	float: left;
	margin-left: 24px;
	border: 1px solid #7499c6;
	border-radius: 4px;
	width: 120px;
	background-color: transparent;
	color: #7499c6;
	font-size: 12px;
	line-height: 28px;
	font-weight: 700;
	vertical-align: top;
	cursor: pointer;
}
.contact-container .form .input-container.address .input input[name="addr1"] {
	float: left;
	margin-left: 24px;
	width: calc(767px - 163px - 24px - 120px - 24px);
}
.contact-container .form .textarea-container {
    float: left;
    width: 100%;
    padding: 20px 16px;
    border-bottom: 1px solid #dfdfdf;
    background-color: #ffffff;
}
.contact-container .form .textarea-container .label {
    float: left;
    width: 120px;
    height: 32px;
    font-weight: 700;
    font-size: 15px;
    line-height: 30px;
}
.contact-container .form .textarea-container .textarea {
    width: calc(100% - 120px);
    height: 9.6em;
    border: 1px solid #e8e9e9;
    border-radius: 4px;
    padding: 5px;
    font-size: 15px;
    line-height: 1.2;
    resize: none;
}
.contact-container .form .info-container {
    float: left;
    width: 100%;
    padding: 20px 16px;
    border-bottom: 1px solid #dfdfdf;
    background-color: #ffffff;
}
.contact-container .form .info-container .label {
    float: left;
    width: 120px;
    height: 32px;
    font-weight: 700;
    font-size: 15px;
    line-height: 30px;
}
.contact-container .form .info-container .info {
    float: left;
    width: calc(100% - 120px);
    min-height: 32px;
    font-weight: 400;
    font-size: 15px;
    line-height: 30px;
}
.contact-container .form .info-container .info span {
    display: inline-block;
    min-width: 60px;
    margin-right: 12px;
    vertical-align: top;
}
.contact-container .form .button-container {
    margin-top: 72px;
    text-align: center;
    font-size: 0;
}
.contact-container .form .button-container .button-cancle {
    max-width: 192px;
    height: 48px;
    margin: 0 12px;
    border: 2px solid #6c6c6c;
    border-radius: 0;
    padding: 0;
    width: calc(50% - 24px);
	background-color: transparent;
    color: #6c6c6c;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.contact-container .form .button-container .button-cancle:hover {
    background-color: #6c6c6c;
	color: #ffffff;
}
.contact-container .form .button-container .button-submit {
    max-width: 192px;
    height: 48px;
    margin: 0 12px;
    border: 2px solid #547fb4;
    padding: 0;
    width: calc(50% - 24px);
	background-color: transparent;
    color: #547fb4;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.contact-container .form .button-container .button-submit:hover {
    background-color: #547fb4;
	color: #ffffff;
}
.contact-container .form .privacy {
    float: left;
    margin-top: 24px;
    font-size: 12px;
    line-height: 3;
}
.contact-container .form .privacy .btn-privacy {
    border: none;
    margin-left: 4px;
    padding: 0;
    background-color: transparent;
    font-size: 12px;
    font-weight: 700;
    line-height: 3;
	cursor: pointer;
}
.contact-container .form .privacy .btn-privacy:focus {
	outline: none;
}
.contact-container .form .btn-submit {
    float: right;
    margin-top: 24px;
    border: 1px solid #7499c6;
    border-radius: 4px;
    padding: 0 3em;
    background-color: transparent;
    color: #7499c6;
    font-size: 12px;
    line-height: 3;
    font-weight: 700;
	cursor: pointer;
}
.contact-container .form .btn-submit:hover {
	background-color: #7499c6;
	color: #ffffff;
}
@media only screen and (max-width: 979px) {
    .contact-container .form .input-container {
        width: 100%;
    }
	.contact-container .form .input-container .check-container .input.check {
		width: 100%;
	}
	.contact-container .form .input-container.address .input input[name="zipcode"] {
		float: left;
		width: calc(100% - 24px - 120px);
		max-width: 160px;
	}
	.contact-container .form .input-container.address .input input[name="addr1"] {
		margin-top: 12px;
		margin-left: 0;
		width: 100%;
	}
}
@media only screen and (max-width: 599px) {
    .contact-container .form .input-container {
        padding: 20px 0;
    }
    .contact-container .form .input-container .input {
        width: 100%;
    }
	.contact-container .form .input-container .check-container {
		width: 100%;
	}
    .contact-container .form .textarea-container {
        padding: 20px 0;
    }
    .contact-container .form .textarea-container .textarea {
        width: 100%;
    }
    .contact-container .form .info-container {
        padding: 20px 0;
    }
    .contact-container .form .info-container .info {
        width: 100%;
    }
}



[class*=-swiper-container] .swiper-slide {
    text-align: center;
}
.card-wrapper {
    float: left;
    width: 25%;
    padding: 24px 12px;
    text-align: center;
}
@media only screen and (max-width: 1900px) {
    .card-wrapper {
        width: calc(100% / 3);
    }
}
@media only screen and (max-width: 1431px) {
    .card-wrapper {
        width: 50%;
    }
}
@media only screen and (max-width: 962px) {
    .card-wrapper {
        width: 100%;
    }
}
/* card-container */
.card-container {
    display: inline-block;
    position: relative;
    max-width: 445px;
    text-align: left;
}
.card-container.add-tag {
    text-align: center;
}
.card-container .card-image {
    width: 100%;
}
.card-container .card-tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 15px;
}
.card-container .card-content {
    padding: 24px 12px;
}
.card-container .card-content .card-title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.card-container .card-content .card-subtitle {
    display: inline-block;
    height: 20px;
    margin-left: 3px;
    border-left: 1px solid #333333;
    padding-left: 6px;
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
    vertical-align: bottom;
}
.card-container .card-content .card-info {
	min-height: 84px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.4;
}



/* center-container */
.center-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}
.center-container .region-container {
    display: inline-block;
    width: 100%;
}
.center-container .region-container:not(:first-child) {
    margin-top: 48px;
}
.center-container .region-container .region {
    float: left;
    width: calc((100% - (4 * 24px)) / 5);
    border: 2px solid #f48ea2;
    text-align: center;
    color: #232323;
    font-size: 15px;
    line-height: 44px;
    font-weight: 700;
}
.center-container .region-container .center-list {
    float: left;
    width: calc(100% - ((100% - (4 * 24px)) / 5));
}
.center-container .region-container .center-list .center {
    float: left;
    width: calc((100% - (4 * 24px)) / 4);
	height: 96px;
    margin-left: 24px;
    border: 2px solid #f7d8de;
	/*transition: 0.6s background ease-in-out;*/
}
.center-container .region-container .center-list .center.on,
.center-container .region-container .center-list .center:hover {
    background-color: #f3859b;
}
.center-container .region-container .center-list .center:nth-child(n+5) {
    margin-top: 8px;
}
.center-container .region-container .center-list .center span {
    display: inline-block;
	position: relative;
	top: 50%;
    width: 100%;
	transform: translate(0, -50%);
    text-align: center;
    color: #f3859b;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
	word-break: keep-all;
	cursor: pointer;
}
.center-container .region-container .center-list .center.on span,
.center-container .region-container .center-list .center:hover span {
    color: #ffffff;
}
@media only screen and (max-width: 979px) {
    .center-container .region-container .region {
        width: calc((100% - (3 * 12px)) / 4);
    }
    .center-container .region-container .center-list {
        width: calc(100% - ((100% - (3 * 12px)) / 4));
    }
    .center-container .region-container .center-list .center {
        width: calc((100% - (3 * 12px)) / 3);
        margin-left: 12px;
    }
    .center-container .region-container .center-list .center:nth-child(n+4) {
        margin-top: 8px;
    } 
}
@media only screen and (max-width: 599px) {
    .center-container .region-container .region {
        width: 100%;
        margin-bottom: 8px;
    }
    .center-container .region-container .center-list {
        width: 100%;
    }
    .center-container .region-container .center-list .center {
        width: calc((100% - 12px) / 2);
        margin-left: 0;
    }
    .center-container .region-container .center-list .center:nth-child(2n) {
        margin-left: 12px;
    }
    .center-container .region-container .center-list .center:nth-child(n+3) {
        margin-top: 8px;
    }
}



/* quick container */
.quick-container {

}
.quick-container .pc {
    display: inline-block;
    position: fixed;
    z-index: 100;
    top: 50%;
    right: 24px;
    border-radius: 8px;
    transform: translate(0, -50%);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    overflow: hidden;
}
.quick-container .pc .phone {
    padding: 12px 0;
    background-color: #7499c6;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
}
.quick-container .pc .phone > img {
    display: inline-block;
    margin: 4px 0;
}
.quick-container .pc .phone > span {
    position: relative;
}
.quick-container .pc .phone > span::before {
    content: '';
    display: block;
    width: 4px;
    height: 1px;
    margin: 2px auto;
    background-color: #ffffff;
}
.quick-container .pc a {
    display: block;
    border-bottom: 1px solid #b5b5b5;
    padding: 12px 20px;
    background-color: #ffffff;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
}
.quick-container .pc a img {
    margin-bottom: 8px;
}
.quick-container .pc button {
    display: inline-block;
    width: 100%;
    border: none;
    padding: 12px 0;
    background-color: #222830;
    color: #ffffff;
    vertical-align: top;
    cursor: pointer;
}
.quick-container .pc button:focus {
    outline: none;
}

.quick-container .mobile {
    display: none;
    position: fixed;
    z-index: 100;
    right: 31px;
    bottom: 100px;
}
.quick-container .mobile .ring-menu {
    position: relative;
    z-index: 10;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    padding: 0;
    background-color: #7499c6;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
	cursor: pointer;
}
.quick-container .mobile .ring-menu:focus {
    outline: none;
}
.quick-container .mobile .material-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 30px;
}
.quick-container .mobile a {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0; 
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f3859b;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
    transition: all 0.4s ease-in-out;
    opacity: 0;
}
.quick-container .mobile.on a:nth-child(2) {
    transform: rotateZ(-10deg) translate(-64px, 0) rotateZ(10deg);
    opacity: 1;
}
.quick-container .mobile.on a:nth-child(3) {
    transform: rotateZ(50deg) translate(-64px, 0) rotateZ(-50deg);
    opacity: 1;
}
.quick-container .mobile.on a:nth-child(4) {
    transform: rotateZ(110deg) translate(-64px, 0) rotateZ(-110deg);
    opacity: 1;
}
.quick-container .mobile a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    transform: translate(-50%, -50%);
}
@media only screen and (max-width: 979px) {
    .quick-container .pc {
        display: none;
    }
    .quick-container .mobile {
        display: block;
    }
}
@media only screen and (max-width: 599px) {
    .quick-container .mobile {
        right: 68px;
        bottom: 15px;
    }
}



/* popup */
.popup-wrapper {
	display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup-wrapper .popup {
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 48px);
    max-width: 480px;
    border-radius: 12px;
    padding: 30px;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}
.popup-wrapper .popup .title {
	display: inline-block;
	font-size: 15px;
	line-height: 1;
}
.popup-wrapper .popup .button-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.popup-wrapper .popup .content {
/*	border: 1px solid #ebeaea;*/
/*	border-radius: 12px;*/
	margin-top: 12px;
    text-align: center;
}
.popup-wrapper .popup .content textarea {
	width: 100%;
	height: 16em;
	resize: none;
	text-align: left;
}


/* footer */
.footer {
    background-color: #dde6f1;
}
.footer .footer-wrapper {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px 0;
}
.footer .footer-wrapper::after {
    content: '';
    display: block;
    clear: both;
}
.footer.com {
	margin-top: 72px;
	border-top: 2px solid #729dd1;
	background-color: #f1f1f1;
}
.footer.com .footer-wrapper {
    padding: 24px 0;
}
.footer .footer-wrapper .site-logo {
    float: left;
    padding: 0 8px;
    line-height: 90px;
}
.footer.com .footer-wrapper .site-logo {
    float: right;
}
.footer .footer-wrapper .site-logo img {
    width: 100%;
    max-width: 154px;
    vertical-align: middle;
}
.footer .footer-wrapper .site-info {
    float: left;
    max-width: 500px;
    padding: 0 24px;
    text-align: left;
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
    word-break: keep-all;
}
.footer .footer-wrapper .site-info .info span {
    white-space: nowrap;
}
.footer .footer-wrapper .site-info .info .privacy {
	border: none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
.footer .footer-wrapper .site-info .info .privacy:focus {
	outline: none;
}
.footer .footer-wrapper .site-map {
    float: right;
	height: 90px;
    border-left: 1px solid #c3d8ee;
    padding-left: 20px;
    padding-right: 8px;
    text-align: left;
}
.footer .footer-wrapper .site-map .family-site {
    display: block;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 700;
}
.footer .footer-wrapper .site-map .hugmom,
.footer .footer-wrapper .site-map .hugin {
    display: block;
    margin: 6px 0 4px 0;
    line-height: 1.5;
}
.footer .footer-wrapper .site-map .hugmom .material-icons,
.footer .footer-wrapper .site-map .hugin .material-icons {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    vertical-align: bottom;
}
.footer .footer-wrapper .site-map .hugmom .text,
.footer .footer-wrapper .site-map .hugin .text {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    vertical-align: bottom;
}
.footer .footer-wrapper .site-map .hugmom img,
.footer .footer-wrapper .site-map .hugin img {
    vertical-align: bottom;
}
.footer.com .footer-wrapper .site-guide {
	float: left;
	width: 230px;
	line-height: 90px;
	padding: 0 16px;
}
.footer.com .footer-wrapper .site-guide p {
	display: inline-block;
	color: #333333;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
	vertical-align: middle;
}
.footer.com .footer-wrapper .site-guide p span {
	color: #f3859b;
	font-size: 24px;
	font-weight: 700;
}
.footer.com .footer-wrapper .site-notice {
	float: left;
	width: 580px;
	text-align: center;
	color: #333333;
	font-size: 13px;
	line-height: 90px;
	font-weight: 300;
}
@media only screen and (max-width: 979px) {
    .footer .footer-wrapper {
        padding: 24px 0;
        text-align: center;
    }
    .footer .footer-wrapper .site-logo {
        width: 43%;
        padding: 0 24px;
        text-align: right;        
    }
	.footer.com .footer-wrapper .site-logo {
		width: 100%;
		text-align: center;
	}
    .footer .footer-wrapper .site-map {
        float: left;
        width: 57%;
        padding: 0 24px;
    }
    .footer .footer-wrapper .site-info {
        float: none;
        display: inline-block;
        margin-top: 20px;
    }
	.footer.com .footer-wrapper .site-guide {
		width: 100%;
		padding: 0 24px;
		line-height: 50px;
	}
	.footer.com .footer-wrapper .site-notice {
		width: 100%;
	    margin-top: 24px;
	    padding: 0 24px;
		line-height: 1.5;
	    word-break: keep-all;
	}
}
@media only screen and (max-width: 599px) {
    .footer .footer-wrapper .site-logo {
        width: 100%;
        text-align: left;
    }
    .footer .footer-wrapper .site-map {
        float: right;
        width: 100%;
        border-left: none;
    }
    .footer .footer-wrapper .site-info {
        float: left;
        width: 100%;
    }
}


/* datepicker */
.ui-widget {
	font-family: Noto Sans KR, sans-serif;
	font-size: 1em;
}
.ui-widget-header .ui-icon {
	background-image: url(https://code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_444444_256x240.png);
}
.ui-widget-content {
	background: #ffffff;
}
.ui-datepicker {
	display: none;
    margin-top: 4px;
}
.ui-datepicker .ui-datepicker-header,
.ui-widget-content .ui-state-default {
    border: 1px solid #bbc2d3;
    background: #f2f4f9;
	color: #333333;
	font-weight: normal;
}
.ui-widget-content .ui-state-default.ui-state-highlight {
    background: #ffffff;
	color: #cccccc;
}
.ui-widget-content .ui-state-default.ui-state-active {
    background: #51576e;
	color: #ffffff;
}
.ui-corner-all {
    border-radius: 0;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}


.pass-popup {
	display: none;
	width: 310px;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	left: 50% !important;
	transform: translate(-50%, 0);
}
.pass-popup .head {
	height: 36px;
	background-color: #f3859b;
	text-align:right;
}
.pass-popup .head .close {
	display:inline-block;
	margin-right: 10px;
	color: #ffffff;
	font-size: 20px;
	line-height: 34px;
	cursor: pointer;
}
.pass-popup .body .txt {
	padding: 12px 0;
	text-align: center;
	font-size: 15px;
}
.pass-popup .body .form {
	position:relative;
	overflow:hidden;
	text-align:center;
	padding:4px 0 16px;
	font-size:0;
}
.pass-popup .body .form input[type="password"] {
	width: 144px;
	height: 30px;
	margin-right: 8px;	
	border: 1px solid #cccccc;
	padding: 0 8px;
	line-height: 28px;
	vertical-align: top;
}
.pass-popup .body .form input[type="password"]:focus {
	outline: none;
	border-color: #f3859b;
}
.pass-popup .body .form button[type="submit"] {
	margin-right: 8px;
	background-color: #f3859b;
}
.pass-popup .body .form button {
	width: 60px;
	border: none;
	border-radius: 3px;
	background-color: #999999;
	color: #ffffff;
	line-height: 28px;
	letter-spacing: 0.2em;
	cursor:pointer;
}
.pass-popup .foot {
	display: none;
	padding: 0 12px;
	color: #dc143c;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
}
.swiper-wrapper-container .swiper-wrapper {height:auto;}


.center_list_select button {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	height:50px;
	width:100%; 
	outline:none;
	background:none;
	border: 2px solid #f3879d;
	box-sizing:border-box;
	border-radius:60px;
	font-size:16px;
	font-weight:600;
	cursor: pointer;
}
.center_list_select.active button {
	color:#fff;
	background:#f3859b;
	border-color:#eba0af;
}