/* common */
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    font-family: 'Nanum Gothic', sans-serif;
    font-size: 0;
}
body {
    display: inline-block;
    width: 100%;
    padding-top: 230px;
}



/* header */
.header {
    position: fixed;;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f9dfdf;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
    text-align: center;
}
.header .form {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 230px;
    text-align: left;
    font-size: 0;
    line-height: 230px;
}
.header .form .link {
    display: inline-block;
    padding: 0 24px;
    font-size: 0;
    line-height: normal;
    vertical-align: middle;
}
.header .form .fields {
    display: inline-block;
    width: calc(100% - 403px - 215px);
    vertical-align: middle;
}
.form .field {
    float: right;
    width: 100%;
    max-width: 360px;
    line-height: normal;
}
.form .field:not(:first-child) {
    margin-top: 5px;
}
.form .field label {
    float: left;
    width: 110px;
    text-align: left;
    color: #f2778d;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
}
.form .field input[type=text],
.form .field input[type=tel],
.form .field select {
    float: left;
    width: calc(100% - 110px);
    height: 30px;
    border: 1px solid #f7a7b9;
    padding: 0 8px;
    color:#f3829b;
}
.form .field select {
    -webkit-appearance: none; 
   -moz-appearance: none;
   appearance: none;
   background-image: url(../img/select_arrow.png);
   background-position: calc(100% - 4px) center;
   background-repeat: no-repeat;
}
.form .field select::-ms-expand { 
    display: none;
}
.form .field.tel input,
.form .field.tel select {
    width: calc((100% - 110px - 40px) / 3);
}
.form .field.tel span {
    float: left;
    width: 20px;
    text-align: center;
    font-size: 34px;
    color: #f2778d;
    line-height: 30px;
}
.form .field.policy-term {
    margin-top: 10px;
    text-align: right;
}
.form .field.policy-term input[type=checkbox] {
	display: none;
}
.form .field.policy-term label {
    float: none;
    display: inline-block;
    position: relative;
    width: auto;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
}
.form .field.policy-term label::before {
    content: '';
    float: left;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    border: 1px solid #f2778d;
    background-color: #ffffff;
}
.form .field.policy-term input[type=checkbox]:checked+label::after {
    display: inline-block;
}
.form .field.policy-term label::after {
    content: '\2714';
    display: none;
    position: absolute;
    top: -2px;
    left: 2px;
    color: #f2778d;
    font-size: 22px;
    font-weight: 700;
}
.form .field.policy-term button {
    border: none;
    padding: 0;
    background-color: transparent;
    color: #f2778d;
    font-size: 15px;
    line-height: 15px;
	overflow: visible;
    cursor: pointer;
}
.form .btn-submit {
    display: inline-block;
    border: none;
    padding: 0 24px;
    background-color: transparent;
	line-height: 1;
    vertical-align: middle;
    cursor: pointer;
}
.form .btn-submit:focus {
	outline: none;
}

.mobile-header {
    display: none;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 15%;
    background-color: #f9dfdf;
    box-shadow: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}
.mobile-header .call {
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    border-right: 1px solid #ffffff;
    text-decoration: none;
}
.mobile-header .call i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f2778d;
    font-size: 6vw;   
}
.mobile-header .link {
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 100%;
    text-align: center;
    line-height: 100%;
}
.mobile-header .center img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 60%;
    transform: translate(-50%, -50%);
}
.mobile-header .btn-contact {
    position: absolute;
    top: 0;
    left: 85%;
    width: 15%;
    height: 100%;
    border: none;
    border-left: 1px solid #ffffff;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.mobile-header .btn-contact:focus {
    outline: none;
}
.mobile-header .btn-contact i {
    position: absolute;
    top: 50%;
    left: 50%;
    border: none;
    padding: 0;
    transform: translate(-50%, -50%);
    color: #f2778d;
    font-size: 6vw;
}
.mobile-header .form {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f9dfdf;
    text-align: center;
    overflow-y: auto;
}
.mobile-header .form.on {
    display: block;
}
.mobile-header .form .notice {
    display: inline-block;
    max-width: 360px;
    margin-top: 96px;
    padding: 0 12px;
    color: #f2778d;
    font-size: 20px;
    line-height: 1.5;
    word-break: keep-all;
}
.mobile-header .form .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    padding: 0;
    background-color: transparent;
    color: #ffffff;
    font-weight: 700;
}
.mobile-header .form .btn-close i {
    font-size: 36px;
}
.mobile-header .form .fields {
    display: inline-block;
    width: 100%;
    max-width: 480px;
    margin-top: 48px;
    padding: 0 12px;
}
.mobile-header .form .field {
    max-width: none;
    margin-top: 12px;
}
.mobile-header .form .field label {
    width: 100%;
}
.mobile-header .form .field label span {
    display: inline-block;
    width: 4px;
    height: 18px;
    margin-top: 6px;
    margin-right: 6px;
    border-radius: 2px;
    background-color: #f2778d;
    vertical-align: top;
}
.mobile-header .form .field input[type=text],
.mobile-header .form .field input[type=tel],
.mobile-header .form .field select {
    width: 100%;
}
.mobile-header .form .field.tel input,
.mobile-header .form .field.tel select {
    width: calc((100% - 40px) / 3);
}
.mobile-header .form .field.policy-term {
    margin-top: 24px;
    text-align: center;
}
.mobile-header .form .field.policy-term label {
    width: auto;
}
.mobile-header .form .btn-submit {
    width: calc(100% - 24px);
    max-width: calc(360px - 24px);
    margin: 48px 12px 96px 12px;
    border-radius: 4px;
    background-color: #f2778d;
    box-shadow: 4px 4px 0px #d5566d;
    color: #ffffff;
    font-size: 20px;
    line-height: 3;
    font-weight: 700;
    letter-spacing: 0.2em;
    cursor: pointer;
}
@media screen and (min-width: 720px) and (max-width: 980px) {
    .header .form .link {
        width: 240px;
        padding: 0 12px;
    }
    .header .form .link img {
        width: 100%;
    }
    .header .form .fields {
        width: calc(100% - 240px - 140px);
    }

    .form .field {
        max-width: none;
    }

    .form .btn-submit {
        width: 140px;
        padding: 0 12px;
    }
    .form .btn-submit img {
        width: 100%;
    }
}
@media screen and (max-width: 719px) {
    body {
        padding-top: 15%;
    }

    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }
}



/* main */
.main {
    float: left;
    width: 100%;
}
.main [class*=content] {
    float: left;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main [class*=content] img {
    display: inline-block;
    position: relative;
    left: 50%;
    width: 2000px;
    transform: translate(-50%, 0);
    vertical-align: top;
}
@media screen and (max-width: 1199px) {
    .main [class*=content] img {
        width: 166.666666%;
    }
}

.fluid-container {
	position: absolute;
	top: 50%;
	left: 45%;
	width: 50%;
	max-width: 640px;
	transform: translate(0, -50%);
    box-shadow: 3px 3px 1px 1px rgba(0, 0, 0, 0.2);
}
.fluid-container .embed {
    width: 100%;
	padding-top: 56.24%;
}
@media screen and (max-width: 719px) {
	.content.video img {
		left: 80%;
	}
    .fluid-container {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		max-width: none;
		transform: translate(0, 0);
		box-shadow: none;
	}
}



/* footer */
.footer {
    float: left;
    width: 100%;
	background-color: #e6e5e5;
}
.footer .content {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 20px;
	text-align: center;
}
.footer .link {
	display: inline-block;
	position: relative;
	width: 50%;
	max-width: 160px;
	vertical-align: middle;
}
.footer .info {
	display: inline-block;
	position: relative;
	padding: 0 0 0 16px;
	text-align: left;
	color: #555555;
	font-size: 12px;
	line-height: 1.8;
	vertical-align: middle;
}
.footer .copy {
	padding: 18px 0 0;
	color: #555555;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 700;
}