@charset "UTF-8";

/* background-image preload - 호버 이미지 로드용 */
body::after {
	position:absolute; 
    width:0; 
    height:0; 
    overflow:hidden; 
    z-index:-1;
    
    /* load images */
    content:
    url(../images/floating-banner-bg-2.png)
    url(../images/floating-banner2-bg.png)
    url(../images/floating-banner2-bg2.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: 10%;
  right: 2.5%;
  z-index: 99;
  width: 229px;
  height: 271px;
  overflow: hidden;
}

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

.camp-floating-banner .bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out;
}

.camp-floating-banner .bg1 {
  background-image: url(../images/floating-banner-bg.png);
  opacity: 0;
  visibility: hidden;
}

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

.camp-floating-banner .bg2 {
  background-image: url(../images/floating-banner2-bg.png);
  opacity: 0;
  visibility: hidden;
}

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


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

.cont01 {
    height: 1091px;
    min-height: 1091px;
    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: 1400px;
    height: 1091px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.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: center;
    color: #121212;
    margin-top: 18px;
}

.cont01 .cont01_title .cont01_subtitle .desc2 {
    margin-top: 20px;
}

.cont01 .cont01_title .cont01_btn {
    margin-top: 40px;
    text-align: center;
}


/* 버튼 영역 */

.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: 700;
	font-size: 28px;
	width: 326px;
	height: 100px;
    line-height: 100px;
	vertical-align: middle;
    border-radius: 15px;
    letter-spacing: 0;
}

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

.button--dione::before {
	content: '';
	background: #005b48;
	transition: transform 0.3s cubic-bezier(0.2,1,0.7,1);
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31);
}

.button--dione:hover>span {
	color: #fffb9b;
	outline-offset: 12px;
	outline-color: #004436;
}

.button--dione:hover::before {
	transform: scale3d(0.9, 0.8, 1);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.31);
	background-color: #004436;
}

.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: 15px;
    animation: fadeout 1.2s 1 ease;
    animation-fill-mode: forwards;
}

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


/* cont02 : 영상 영역 */

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

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

.yt-area > .yt-box {
    width: 100%;
    height: 480px;
    box-shadow: 4.5px 7.794px 31.36px 0.64px rgba(0, 0, 0, 0.45);
}

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


/* cont03 : 작은 섬마을의 유일한 아기, 태오 영역 */

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

.cont03 .cont03_wrap {
    width: 1200px;
    height: 942px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
    align-items: center;
}

.cont03 .cont03_text {
    position: relative;
    margin-bottom: 258px;
}

.cont03 .cont03_text .cont03_desc {
    margin: 44px 80px 0 0;
}

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

.cont03 .cont03_text .cont03_desc p:first-child {
    margin-bottom: 22px;
}

.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: 600;
}

.cont03 .cont03_text .cont03_img {
    position: absolute;
    bottom: -300px;
    left: -82px;
}

.cont03 .line {
    position: absolute;
    width: 0;
    height: 18px;
    background: rgba(36,255,0,.2);
    transition: width 1.85s ease-out;
    z-index: 499;
}

.cont03 .line1 {
    bottom: 88px;
    left: 278px;
}

.cont03 .line2 {
    bottom: 68px;
    left: 182px;
}

.cont03 .line3 {
    bottom: 48px;
    left: 196px;
}

.cont03 .line4 {
    bottom: 28px;
    left: 280px;
}

.cont03.line-active .line1 { 
    transition-delay: 0s; 
    width: 140px;
}

.cont03.line-active .line2 { 
    transition-delay: 0.7s; 
    width: 160px;
}

.cont03.line-active .line3 { 
    transition-delay: 1.4s; 
    width: 134px;
}

.cont03.line-active .line4 { 
    transition-delay: 2.1s; 
    width: 218px;
}


/* cont04 : 태오 사진 영역 */

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

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

.cont04 .cont04_text .cont04_desc {
    text-align: center;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 240px;
    filter: drop-shadow(0 0 4px white)
            drop-shadow(0 0 8px white)
            drop-shadow(0 0 12px white)
            drop-shadow(0 0 16px white);
}

.cont04 .cont04_text .cont04_desc b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
}


/* cont05 : 없이 살아도, 사는 데까지 잘 키우겠다고 했어요. 영역 */

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

.cont05 .cont05_wrap {
    width: 1400px;
    height: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}

.cont05 .cont05_text {
    margin-left: 100px;
}

.cont05 .cont05_text .cont05_title {
    margin-left: -48px;
}

.cont05 .cont05_text .cont05_desc {
    margin-top: 18px;
}

.cont05 .cont05_text .cont05_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 22px;
}

.cont05 .cont05_text .cont05_desc p:nth-child(3) {
    margin-bottom: 28px;
}

.cont05 .cont05_text .cont05_desc .cont05_img img {
    display: block;
    margin-left: -8px;
}

.cont05 .cont05_text .cont05_desc .cont05_img span {
    display: block;
    margin: 16px 0 0 38px;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 19px;
    letter-spacing: -.015em;
    color: #121212;
}

.cont05 .cont05_text .cont05_desc > p > b,
.cont05 .cont05_text .cont05_desc span b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
}


/* cont06 : 할머니! 해봐. 엄마, 엄마 영역 */

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

.cont06 .cont06_wrap {
    width: 1400px;
    height: 1061px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items:normal;
}

.cont06 .cont06_title {
    margin: 16px 0 0 14px;
}

.cont06 .cont06_text {
    margin-right: 70px;
}

.cont06 .cont06_text .cont06_title {
    margin-left: 91px;
}

.cont06 .cont06_text .cont06_desc {
    margin: 84px 0 0;
}

.cont06 .cont06_text .cont06_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 22px;
}

.cont06 .cont06_text .cont06_desc img {
    margin: 20px 0 42px -2px;
}

.cont06 .cont06_text .cont06_desc p:last-child {
    margin-bottom: 0;
}

.cont06 .cont06_text .cont06_desc > p > b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
}

.cont06 .cont06_text .cont06_desc .cont06_subdesc {
    filter: drop-shadow(0 0 4px rgba(226,241,241,.8))
            drop-shadow(0 0 8px rgba(226,241,241,.8))
            drop-shadow(0 0 12px rgba(226,241,241,.8))
            drop-shadow(0 0 16px rgba(226,241,241,.8))
}

.cont06 .cont06_text .cont06_desc .cont06_subdesc strong {
    display: block;
    margin-left: -16px;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
    font-size: 21px;
}

.cont06 .cont06_text .cont06_desc .cont06_subdesc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 18px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-top: 14px;
}

.cont06 .cont06_text .cont06_desc .cont06_subdesc > p > b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
}


/* cont07 : 애가 부모 있이 컸으면, 부모가 있었으면... 영역 */

.cont07 {
    height: 712px;
    min-height: 712px;
    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: 712px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}

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

.cont07 .cont07_text img {
    margin-left: -22px;
}

.cont07 .cont07_text .cont07_desc {
    margin-top: 44px;
}

.cont07 .cont07_text .cont07_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 22px;
}

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

.cont07 .cont07_text .cont07_subdesc {
    position: absolute;
    top: 19.25%;
    left: 55.35%;
    filter: drop-shadow(0 0 4px rgba(243,250,253,.8))
            drop-shadow(0 0 8px rgba(243,250,253,.8))
            drop-shadow(0 0 12px rgba(243,250,253,.8))
            drop-shadow(0 0 16px rgba(243,250,253,.8))
}

.cont07 .cont07_text .cont07_subdesc .sub_detail {
    display: block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 19px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    text-align: center;
}

.cont07 .cont07_text .cont07_subdesc .sub_detail > b {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 600;
}


/* cont08 : 해안가를 걷는 할머니와 태오 영역 */

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

.cont08 .cont08_wrap {
    width: 1200px;
    height: 766px;
    margin: 0 auto;
    display: flex;
    justify-content: right;
}

.cont08 .cont08_text .cont08_desc {
    margin: 110px 103px 0 0;
}

.cont08 .cont08_text .cont08_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 24px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 22px;
}

.cont08 .cont08_text .cont08_desc p:last-child {
    margin-bottom: 0;
}


/* cont09 : 후원 독려 영역 */

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

.cont09 .cont09_wrap {
    width: 1200px;
    height: 827px;
    margin: 0 auto;
    display: flex;
    justify-content: left;
    align-items: center;
}

.cont09 .cont09_text .cont09_desc p {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 26px;
    letter-spacing: -.015em;
    line-height: 1.65;
    color: #121212;
    margin-bottom: 22px;
}

.cont09 .cont09_text .cont09_desc p:last-child {
    margin-bottom: 42px;
}

.cont09 .cont09_text .cont09_desc p strong {
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 700;
    font-size: 28px;
}


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

.cont10 {
    height: 862px;
    min-height: 862px;
    background-image: url(../images/cont10_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.cont10 .cont10_wrap {
    width: 1200px;
    height: 862px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont10 .cont10_text {
    text-align: center;
}

.cont10 .cont10_title {
    display: block;
    margin-bottom: 40px;
}

.cont10 .cont10_text .cont10_object {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1204px;
    height: 444px;
}

.cont10 .cont10_text .cont10_object::before {
    content: url(../images/cont10_shell_top.png);
    position: absolute;
    top: -32px;
    left: -40px;
    z-index: 10;
}

.cont10 .cont10_text .cont10_object::after {
    content: url(../images/cont10_shell_bottom.png);
    position: absolute;
    bottom: -45px;
    right: -55px;
    z-index: 10;
}

.cont10 .cont10_text .cont10_object > div {
    width: 382px;
    height: 444px;
    text-align: center;
    filter: drop-shadow(0 0 4px rgba(0,0,0,.12))
}

.cont10 .cont10_text .cont10_object > div > img {
    display: block;
    font-size: 0;
}

.cont10 .cont10_text .cont10_object div .desc_title {
    position: relative;
    background: #264148;
    height: 71px;
    line-height: 71px;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-size: 27px;
	font-weight: 700;
    letter-spacing: -.015em;
    color: #fff;
}

.cont10 .cont10_text .cont10_object div .desc_cont {
    padding: 30px 0;
    background: #fff;
    border-radius: 0 0 10px 10px;
    color: #222222;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.65;
    opacity: 0.95;
}

.cont10 .cont10_subtitle {
    display: block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
	font-weight: 400;
	font-size: 20px;
    letter-spacing: -.015em;
    margin-top: 50px;
    color: #ffffff;
    opacity: .5;
}


/* cont11 : COPYRIGHT */

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

.cont11 span {
    display: block;
    font-family: Pretendard,'Noto Sans KR', sans-serif;
    font-weight: 400;
    font-size: 21px;
    letter-spacing: -.02em;
    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: 3.5%
    }

}