@charset "UTF-8";

/* background-image preload - 호버 이미지 로드용 */
body::after {
	position:absolute; 
    width:0; 
    height:0; 
    overflow:hidden; 
    z-index:-1;  
    content:
   	url(../images/floating-banner-bg-hover.png);
}

/* 공통 영역 */

.sr-only {
    width: 1px;
    height: 1px;
    opacity: 0;
    color: rgba(0,0,0,0);
    position: absolute;
    top: -9999em;
    left: -9999em;
    text-indent: -9999em;
}

.campaign-wrap {
    margin: 0 auto;
    max-width: 1920px;
}

.campaign-wrap section>div {
    background-position: center center;
}


/* 플로팅배너 영역 */

.camp-floating-banner {
  position: fixed;
  cursor: pointer;
  top: 16.5%;
  right: 4%;
  z-index: 99;
  width: 139px;
  height: 236px;
  overflow: hidden;
}

.camp-floating-banner a {display:block;width:100%;height:100%}

.camp-floating-banner .bg {
  position: absolute;
  width: 139px;
  height: 236px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .25s ease-in-out;
  background-image: url(../images/floating-banner-bg-hover.png);
}

.camp-floating-banner .bg:hover {
  background-image: url(../images/floating-banner-bg.png);
}


/* cont01 : 메인 비쥬얼 영역 */

.cont01 {
    height: 840px;
    min-height: 840px;
    background-image: url(../images/cont01_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont01 .cont01_wrap {
    position: relative;
    width: 1200px;
    height: 840px;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    align-items: center;
}

.cont01 .cont01_title {
    margin-top: -50px;
}

.cont01 .cont01_title img {
    display: block;
}

.cont01 .cont01_title .cont01_subtitle {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.7;
    text-align: left;
    color: #fff;
    margin-top: 32px;
    margin-left: 26px;
}

.cont01 .cont01_title .cont01_btn {
    margin-top: 46px;
    margin-left: 26px;
    text-align: left;
}


/* 버튼 영역 */

.button {
	pointer-events: auto;
	cursor: pointer;
	background: #e7e7e7;
	border: none;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
    text-align: center;
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--dione {
	background: none;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 800;
	font-size: 30px;
	width: 362px;
	height: 100px;
    line-height: 100px;
	vertical-align: middle;
    border-radius: 10px;
    letter-spacing: 0;
}

.button--dione span {
	display: inline-block;
	position: relative;
	color: #fff;
}

.button--dione::before {
	content: '';
	background: #3f625b;
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
    border-radius: 10px;
    box-shadow: 0px 5px 6.37px 0.63px rgba(0, 0, 0, 0.3);
}

.button--dione:hover>span {
	color: #fff;
	outline-offset: 12px;
	outline-color: #3f625b;
}

.button--dione:hover::before {
	transform: scale3d(0.9, 0.8, 1);
	box-shadow: 0px 5px 6.37px 0.63px rgba(0, 0, 0, 0.3);
	background-color: #005b48;
}

.button--dione::after {
	content: '';
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
	transform: scale3d(0.9, 0.8, 1);
}

.button--dione:hover::after {
	transform: scale3d(1,1,1);
	outline: 4px solid rgba(255, 255, 255, 0.5);
	-webkit-transition: all 1.25s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 2.2s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    animation: fadeout 1.2s 1 ease;
    animation-fill-mode: forwards;
}

@keyframes fadeout {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}


/* cont04 버튼 영역 */

.button_cont04 {
	pointer-events: auto;
	cursor: pointer;
	background: #e7e7e7;
	border: none;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
    text-align: center;
}

.button_cont04::before,
.button_cont04::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--dione04 {
	background: none;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 800;
	font-size: 25px;
	width: 283px;
	height: 69px;
    line-height: 69px;
	vertical-align: middle;
    border-radius: 10px;
    letter-spacing: 0;
}

.button--dione04 span {
	display: inline-block;
	position: relative;
	color: #fff;
}

.button--dione04::before {
	content: '';
	background: #c0b590;
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
    border-radius: 10px;
}

.button--dione04:hover>span {
	color: #fff;
	outline-offset: 12px;
	outline-color: #c0b590;
}

.button--dione04:hover::before {
	transform: scale3d(0.9, 0.8, 1);
	background-color: #c0b590;
}

.button--dione04::after {
	content: '';
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
	transform: scale3d(0.9, 0.8, 1);
}

.button--dione04:hover::after {
	transform: scale3d(1,1,1);
	outline: 4px solid rgba(255, 255, 255, 0.5);
	-webkit-transition: all 1.25s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 2.2s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    animation: fadeout 1.2s 1 ease;
    animation-fill-mode: forwards;
}

@keyframes fadeout {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}


/* cont06 버튼 영역 */

.button_cont06 {
	pointer-events: auto;
	cursor: pointer;
	background: #374643;
	border: none;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
    text-align: center;
}

.button_cont06::before,
.button_cont06::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--dione06 {
	background: none;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 800;
	font-size: 25px;
	width: 283px;
	height: 78px;
    line-height: 78px;
	vertical-align: middle;
    border-radius: 10px;
    letter-spacing: 0;
}

.button--dione06 span {
	display: inline-block;
	position: relative;
	color: #f5f2e8;
}

.button--dione06::before {
	content: '';
	background: #374643;
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
    border-radius: 10px;
}

.button--dione06:hover>span {
	color: #f5f2e8;
	outline-offset: 12px;
	outline-color: #374643;
}

.button--dione06:hover::before {
	transform: scale3d(0.9, 0.8, 1);
	background-color: #374643;
}

.button--dione06::after {
	content: '';
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
	transform: scale3d(0.9, 0.8, 1);
}

.button--dione06:hover::after {
	transform: scale3d(1,1,1);
	outline: 4px solid rgba(255, 255, 255, 0.5);
	-webkit-transition: all 1.25s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 2.2s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    animation: fadeout 1.2s 1 ease;
    animation-fill-mode: forwards;
}


/* cont07 버튼 영역 */

.button_cont07 {
	pointer-events: auto;
	cursor: pointer;
	background: #005b48;
	border: none;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
    text-align: center;
}

.button_cont07::before,
.button_cont07::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--dione07 {
	background: none;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 700;
	font-size: 28px;
	width: 385px;
	height: 94px;
    line-height: 94px;
	vertical-align: middle;
    border-radius: 15px;
    letter-spacing: 0;
}

.button--dione07 span {
	display: inline-block;
	position: relative;
	color: #fff;
}

.button--dione07::before {
	content: '';
	background: #3f625b;
    box-shadow: 0px 4px 4.7px 0.3px rgba(0, 0, 0, 0.4);
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
    border-radius: 15px;
}

.button--dione07:hover>span {
	color: #fff;
	outline-offset: 12px;
	outline-color: #3f625b;
}

.button--dione07:hover::before {
	transform: scale3d(0.9, 0.8, 1);
    box-shadow: 0px 4px 4.7px 0.3px rgba(0, 0, 0, 0.4);
	background-color: #3f625b;
}

.button--dione07::after {
	content: '';
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
	transform: scale3d(0.9, 0.8, 1);
}

.button--dione07:hover::after {
	transform: scale3d(1,1,1);
	outline: 4px solid rgba(255, 255, 255, 0.5);
	-webkit-transition: all 1.25s cubic-bezier(0.19, 1, 0.22, 1);
	transition: all 2.2s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 15px;
    animation: fadeout 1.2s 1 ease;
    animation-fill-mode: forwards;
}


/* cont02 : 영상 영역 */

.cont02 {
    position: relative;
    background-image: url(../images/cont02_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 917px;
    min-height: 917px;
}

.yt-area {
    width: 1134px;
    height: inherit;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yt-area > .yt-box {
    width: 100%;
    height: 638px;
}

.cont02 .cont02_text {
    margin-top: 22px;
    text-align: center;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 18px;
    color: #f5ebd3;
    opacity: .5;
    letter-spacing: -.025em;
}


/* cont03 : 열은 계속 오르고 애는 곧  숨이 넘어갈 것처럼 우는데... 영역 */

.cont03 {
    height: 913px;
    min-height: 913px;
    background-image: url(../images/cont03_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont03 .cont03_wrap {
    position: relative;
    width: 1200px;
    height: 913px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}

.cont03 .cont03_text .cont03_desc {
    margin: 60px 0 0 16px;
}

.cont03 .cont03_text .cont03_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 23px;
    letter-spacing: -.025em;
    line-height: 1.65;
    color: #f5f2e8;
    margin-bottom: 32px;
}

.cont03 .cont03_text .cont03_desc p:last-child {
    margin-bottom: 0;
}

.cont03 .cont03_text .cont03_desc > p > b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 700;
}

.cont03 .cont03_imgs {
    position: absolute;
    width: 810px;
    bottom: 100px;
    right: -80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cont03 .cont03_imgs .cont03_imgs_text {
    display: inline-block;
    margin-top: 6px;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 18px;
    letter-spacing: -.025em;
    color: #f5f2e8;
}


/* cont04 : 아프다고 말하면 제가 속상해할까 봐 '엄마, 나 괜찮아~' 해요. 영역 */

.cont04 {
    height: 962px;
    min-height: 962px;
    background-image: url(../images/cont04_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont04 .cont04_wrap {
    position: relative;
    width: 1200px;
    height: 962px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}

.cont04 .cont04_text .cont04_desc {
    margin: 50px 0 0 16px;
}

.cont04 .cont04_text .cont04_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 23px;
    letter-spacing: -.025em;
    line-height: 1.65;
    color: #36260c;
    margin-bottom: 24px;
}

.cont04 .cont04_text .cont04_desc p:last-child {
    margin-bottom: 0;
}

.cont04 .cont04_btn {
    margin: 40px 0 0 10px;
}

.cont04 .cont04_imgs {
    position: absolute;
    bottom: 70px;
    right: -70px;
}

.cont04 .cont04_imgs .cont04_imgs_text {
    display: block;
    margin-top: 12px;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 18px;
    letter-spacing: -.025em;
    opacity: .9;
    color: #36260c;
}


/* cont05 : 엄마, 나만 머리카락이 하나도 없어. 머리카락 언제 나? 영역 */

.cont05 {
    height: 931px;
    min-height: 931px;
    background-image: url(../images/cont05_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont05 .cont05_wrap {
    position: relative;
    width: 1200px;
    height: 931px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
}

.cont05 .cont05_text {
    margin-right: 40px;
}

.cont05 .cont05_text .cont05_desc {
    margin: 42px 0 0 25px;
}

.cont05 .cont05_text .cont05_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 23px;
    letter-spacing: -.025em;
    line-height: 1.65;
    color: #36260c;
    margin-bottom: 30px;
}

.cont05 .cont05_text .cont05_desc p:last-child {
    margin-bottom: 0;
}


/* cont06 : 엄마잖아요. 효원이가 나을 수만 있다면 제 모든 걸 줄 수 있어요. 영역 */

.cont06 {
    position: relative;
    height: 1137px;
    min-height: 1137px;
    background-image: url(../images/cont06_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont06 .cont06_wrap {
    width: 1200px;
    height: 1137px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont06 .cont06_imgs {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 1920px;
    overflow: hidden;
}

.cont06 .cont06_imgs > img {
    width: 641px;
    height: 469px;
}

.cont06 .cont06_text {
    margin-top: 440px;
}

.cont06 .cont06_text .cont06_desc {
    margin: 58px 0 0 16px;
}

.cont06 .cont06_text .cont06_desc p {
    text-align: center;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 23px;
    letter-spacing: -.025em;
    line-height: 1.65;
    color: #f5f2e8;
    margin-bottom: 24px;
}

.cont06 .cont06_text .cont06_desc p:last-child {
    margin-bottom: 40px;
    font-weight: 400;
	font-size: 18px;
    letter-spacing: -.025em;
}

.cont06 .cont06_btn {
    width: 100%;
    text-align: center;
}


/* cont07 : 걱정 마, 효원아. 언제나 엄마가 널 지켜 줄게. 영역 */

.cont07 {
    height: 838px;
    min-height: 838px;
    background-image: url(../images/cont07_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont07 .cont07_wrap {
    position: relative;
    width: 1200px;
    height: 838px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
}

.cont07 .cont07_text {
    margin-right: 40px;
}

.cont07 .cont07_text .cont07_desc {
    margin: 36px 0 0 22px;
}

.cont07 .cont07_text .cont07_title {
    margin-top: 22px;
}

.cont07 .cont07_text .cont07_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 25px;
    letter-spacing: -.025em;
    line-height: 1.65;
    color: #36260c;
    margin-bottom: 24px;
}

.cont07 .cont07_text .cont07_desc p:nth-child(2) {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 700;
}

.cont07 .cont07_text .cont07_desc p:last-child {
    margin-bottom: 0;
}

.cont07 .cont07_btn {
    margin: 28px 0 0 20px;
}


/* cont08 : 사업소개 영역 */

.cont08 {
    height: 768px;
    min-height: 768px;
    background-image: url(../images/cont08_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont08 .cont08_wrap {
    width: 1200px;
    height: 768px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont08 .cont08_text {
    text-align: center;
}

.cont08 .cont08_title {
    display: block;
    margin-bottom: 40px;
}

.cont08 .cont08_text .cont08_object {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1152px;
    height: 236px;
}

.cont08 .cont08_text .cont08_object > div {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 566px;
    height: 236px;
    text-align: left;
}

.cont08 .cont08_text .cont08_object .object01 {
    background-image: url(../images/cont08_object01_bg.png);
}

.cont08 .cont08_text .cont08_object .object02 {
    background-image: url(../images/cont08_object02_bg.png);
}

.cont08 .cont08_text .cont08_object > div > div {
    padding: 37px 52px;
} 

.cont08 .cont08_text .cont08_object div .desc_title {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-size: 27px;
	font-weight: 800;
    letter-spacing: -.025em;
    color: #222;
    margin-bottom: 18px;
}

.cont08 .cont08_text .cont08_object div .desc_title .desc_title_number {
    display: inline-block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-size: 27px;
	font-weight: 800;
    letter-spacing: -.025em;
    color: #005b48;
    margin-right: 14px;
}

.cont08 .cont08_text .cont08_object div .desc_cont {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.4;
    color: #222;
}

.cont08 .cont08_text .cont08_object .object02 .desc_cont {
    margin-top: 30px;
}

.cont08 .cont08_subtitle {
    display: block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 500;
	font-size: 17px;
    letter-spacing: -.025em;
    margin-top: 35px;
    color: #000;
    opacity: .8;
}


/* cont09 : COPYRIGHT */

.cont09 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 143px;
    min-height: 143px;
    background-color: #000;
    margin: 0 auto;
}

.cont09 span {
    display: block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -.025em;
    color: #fff;
}


@media (max-width: 1536px) {

    html {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .campaign-wrap {
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }

    .camp-floating-banner {
        top: 12%;
        right: 2%
    }

}