@charset "utf-8";

#wrapper {
    position:relative;
    width: 100%;
}

@media screen and (min-width:1139px) {
    #header {
        background-color: rgba(255,255,255,0);
    }

    #header h1 a {
        background-image: url("../images/common/logo_w.png");
    }

    #gnb ul.gnb_1ul li.gnb_1li a.gnb_1a {
        color: #fff;
    }

    .scrollOn #header {
        background-color: rgba(255,255,255,1);
    }

    .scrollOn #header h1 a {
        background-image: url("../images/common/logo.png");
    }

    .scrollOn #header #gnb ul.gnb_1ul li.gnb_1li a.gnb_1a {
        color: #212121;
    }
}


h2.main-tit {
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
}

h2.main-tit em {
    text-transform: uppercase;
}

@media screen and (min-width:639px) {
    h2.main-tit {
        font-size: 24px;
    }
}

@media screen and (min-width:767px) {
    h2.main-tit {
        margin-bottom: 40px;
        font-size: 30px;
    }
}

@media screen and (min-width:1139px) {
    h2.main-tit {
        font-size: 40px;
    }
}


#mainContainer {
    overflow: hidden;
}

/* 상단 동영상 */
#mainTop {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
    background-color: #000;
}

#mainTop .main-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 600px;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

#mainTop .main-txt {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#mainTop .main-txt .small-txt {
    font-size: 24px;
    font-family: 'GmarketSansLight';
}

#mainTop .main-txt .big-tit {
    line-height: 1.4;
    text-transform: uppercase;
    font-size: 32px;
    font-family: 'GmarketSansBold';
}

#mainTop .main-txt .point-txt {
    margin-top: 20px;
}

#mainTop .main-txt .point-txt .pt {
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    margin: 3px 0;
    background-color: rgba(0,0,0,0.4);
    border-radius: 18px;
}

#mainTop .mouse {
    position: absolute;
    bottom: 25px;
    left: 50%;
    margin-left: -10px;
    z-index: 3500;
    text-align: center;
}

#mainTop .mouse .mouse_ico {
    position: relative;
    display: inline-block;
    color: #fff !important;
    text-align: center;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    overflow: hidden;    
    opacity: 0.6;    
    overflow: visible;
    opacity: 1;
    height: auto;
    bottom: 0;
    -webkit-animation: nudgeMouse 2.4s cubic-bezier(0.250,0.460,0.450,0.940) infinite;
    animation: nudgeMouse 2.4s cubic-bezier(0.250,0.460,0.450,0.940) infinite;
    width: 20px;
    margin-top: 20px;   
}

#mainTop .mouse .mouse_ico::before{ 
    position: absolute;
    content: '';
    display: block;
    left: 50%;
    margin-left: -1px;
    top: 16px;
    background-color: rgba(255,255,255,0.7);
    width: 2px;
    height: 6px;
    border-radius: 10px;
    transition: background-color .55s cubic-bezier(.5,.1,.07,1);
    -webkit-animation: trackBallSlide 2.4s cubic-bezier(0.000,0.000,0.725,1.000) infinite;
    animation: trackBallSlide 2.4s cubic-bezier(0.000,0.000,0.725,1.000) infinite;
}

@-webkit-keyframes trackBallSlide { 
    0% {
        opacity:1;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }

    45% {
        opacity:0;
        -webkit-transform:scaleY(0.5) translateY(13px);
        transform:scaleY(0.5) translateY(13px);
    }

    46% {
        opacity:0;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }

    65%, 100% {
        opacity:1;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }
}

@keyframes trackBallSlide { 
    0% {
        opacity:1;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }

    45% {
        opacity:0;
        -webkit-transform:scaleY(0.5) translateY(13px);
        transform:scaleY(0.5) translateY(13px);
    }

    46% {
        opacity:0;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }

    65%, 100% {
        opacity:1;
        -webkit-transform:scaleY(1) translateY(-10px);
        transform:scaleY(1) translateY(-10px);
    }
}

@keyframes nudgeMouse { 
    0% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }

    45% {
        -webkit-transform:translateY(8px);
        transform:translateY(8px);
    }

    65%, 100% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
}

@-webkit-keyframes nudgeMouse { 
    0% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }

    45% {
        -webkit-transform:translateY(8px);
        transform:translateY(8px);
    }

    65%, 100% {
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
}

@media screen and (min-width:639px) {
    #mainTop .main-txt .small-txt {
        font-size: 34px;
    }

    #mainTop .main-txt .big-tit {
        font-size: 46px;
    }

    #mainTop .main-txt .point-txt {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #mainTop .main-txt .point-txt .pt:not(:first-child) {
        margin-left: -15px;
    }
}

@media screen and (min-width:767px) {
    #mainTop {
        height: 700px;
    }

    #mainTop .main-video {
        min-height: 700px;
    }

    #mainTop .main-txt .small-txt {
        font-size: 50px;
    }

    #mainTop .main-txt .big-tit {
        line-height: 1.2;
        font-size: 66px;
    }

    #mainTop .main-txt .point-txt {
        margin-top: 30px;
    }

    #mainTop .main-txt .point-txt .pt {
        width: 230px;
        height: 50px;
        line-height: 50px;
        border-radius: 25px;
    }
}

@media screen and (min-width:979px) {
    #mainTop .main-txt .point-txt .pt {
        width: 300px;
    }

    #mainTop .main-txt .point-txt .pt:not(:first-child) {
        margin-left: -30px;
    }
}

@media screen and (min-width:1139px) {
    #mainTop {
        height: calc(100vh - 60px);
    }

    #mainTop .main-video {
        min-height: calc(100vh - 60px);
    }

    #mainTop .main-txt {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    #mainTop .main-txt .small-txt {
        font-size: 62px;
    }

    #mainTop .main-txt .big-tit {
        font-size: 80px;
    }
}

@media screen and (min-width:1239px) {
}


/* 공통 */
.content-page {
    position: relative;
    padding: 40px;
}

.content-page.bgGray {
    background-color: #f8f8f8;
}

.content-page h2.page-h2 {
    font-family: 'GmarketSansLight';
    font-size: 24px;
}

.content-page h2.page-h2 strong {
    font-family: 'GmarketSansBold';
    color: #CE2A34
}

.content-page p.cp-comment {
    margin-top: 10px;
    color: #666;
}

.content-page p.cp-comment br {
    display: none;
}

@media screen and (min-width:639px) {
    .content-page {
        padding: 60px 40px;
    }

    .content-page h2.page-h2 {
        font-size: 30px;
    }
}

@media screen and (min-width:767px) {
    .content-page h2.page-h2 {
        font-size: 40px;
    }

    .content-page p.cp-comment br {
        display: block;
    }
}

@media screen and (min-width:979px) {
    .content-page {
        padding: 80px 40px;
    }

    .content-page h2.page-h2 {
        font-size: 50px;
        letter-spacing: -.25pt;
    }
    
    .content-page p.cp-comment {
        font-size: 20px;
    }
}

@media screen and (min-width:1139px) {
    .content-page h2.page-h2 {
        font-size: 60px;
    }
}

@media screen and (min-width:1439px) {
    .content-page {
        padding: 100px 0;
    }
}


/* 마이포스터 소개 */
#mainIntroduce {
    position: relative;
    color: #fff;
}

#mainIntroduce:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 470px;
    background-color: #DA2934;
    border-radius: 0 0 40px 40px;
    content: '';
    z-index: -1;
    transition:.3s ease-in-out;
}

#mainIntroduce h2 {
    font-family: 'GmarketSansLight';
    font-size: 26px;
}

#mainIntroduce h2 em {
    font-size: 30px;
}

#mainIntroduce h2 em strong {
    font-family: 'GmarketSansBold';
    color: #DCE849;
}

#mainIntroduce p.comment {
    margin-top: 10px;
}

#mainIntroduce p.comment br {
    display: none;
}

#mainIntroduce .statebox {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px -20px 10px;
}

#mainIntroduce .statebox .state {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(85,15,8,0.5);
    border-radius: 50%;
    font-size: 12px;
}

#mainIntroduce .statebox .state:not(:first-child) {
    margin-left: -10px;
}

#mainIntroduce .statebox .state span.ico {
    font-size: 20px;
}

#mainIntroduce p.statetxt {
    font-size: 12px;
}

#mainIntroduce .product-box {
    margin-top: 50px;
    font-size: 0;
}

@media screen and (min-width:639px) {
    #mainIntroduce:after {
        height: 550px;
    }

    #mainIntroduce h2 {
        font-size: 40px;
    }

    #mainIntroduce h2 em {
        font-size: 50px;
    }

    #mainIntroduce p.comment {
        font-size: 18px;
    }

    #mainIntroduce p.comment br {
        display: block;
    }

    #mainIntroduce .statebox {
        justify-content: flex-start;
        margin: 30px 0 10px;
    }

    #mainIntroduce .statebox .state {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }

    #mainIntroduce .statebox .state span.ico {
        font-size: 28px;
    }

    #mainIntroduce p.statetxt {
        font-size: 14px;
    }
}

@media screen and (min-width:767px) {
    #mainIntroduce {
        padding: 80px 40px;
    }

    #mainIntroduce:after {
        height: 650px;
    }
}

@media screen and (min-width:979px) {
    #mainIntroduce {
        padding: 170px 40px;
    }

    #mainIntroduce h2 {
        font-size: 50px;
    }

    #mainIntroduce h2 em {
        font-size: 60px;
    }

    #mainIntroduce .product-box {
        position: absolute;
        top: 50px;
        right: 40px;
        width: 40%;
        max-width: 643px;
        margin: 0;
    }
}

@media screen and (min-width:1139px) {
    #mainIntroduce:after {
        height: 850px;
        border-radius: 0 0 80px 80px;
    }

    #mainIntroduce h2 {
        font-size: 60px;
    }

    #mainIntroduce h2 em {
        font-size: 80px;
    }

    #mainIntroduce p.comment {
        margin-top: 20px;
        font-size: 22px;
    }

    #mainIntroduce .statebox {
        margin: 100px 0 20px;
    }

    #mainIntroduce .statebox .state {
        width: 140px;
        height: 140px;
        font-size: 16px;
    }

    #mainIntroduce .statebox .state span.ico {
        font-size: 32px;
    }

    #mainIntroduce .product-box {
        width: 35%;
    }

    #mainIntroduce p.statetxt {
        font-size: 18px;
    }

    #mainIntroduce .product-box {
        top: 120px;
    }
}

@media screen and (min-width:1439px) {
    #mainIntroduce:after {
        border-radius: 0 0 150px 150px;
    }

    #mainIntroduce .product-box {
        width: 643px;
        top: -130px;
    }
}


/* 신나는 AR(증강현실) 콘텐츠 */
#mainVR .vr-content-box {
    position: relative;
    margin-top: 30px;
}

#mainVR .vr-photocard-slide ul {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 0;
    border-radius: 10px;
    -moz-box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
}

#mainVR .vr-photocard-slide ul li img {
    width: 100%;
}

#mainVR .vr-content {
    margin-top: 20px;
    font-size: 0;
}

#mainVR .vr-content ul li {
    width: 33.3333%;
}

@media screen and (min-width:639px) {
    #mainVR .vr-photocard-slide {
        position: absolute;
        top: 30px;
        left: 0;
        width: 40%;
        transform: rotate(-18deg);
        z-index: 1000;
    }

    #mainVR .vr-content {
        width: 60%;
        margin-left: 40%;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
    #mainVR .vr-content-box {
        margin-top: 50px;
    }

    #mainVR .vr-photocard-slide {
        width: 20%;
        top: -10px;
    }

    #mainVR .vr-content {
        width: 100%;
        margin: 0;
    }

    #mainVR .vr-content ul li {
        width: 20%;
        padding: 5px;
    }

    #mainVR .vr-content ul li:first-child {
        margin-left: 20%;
    }

    #mainVR .vr-content ul li img {
        border-radius: 5px;
    }
}

@media screen and (min-width:1139px) {
}

@media screen and (min-width:1439px) {
}


/* 찰나의 순간을 포토카드로! */
#mainPhotoCard .photocard-img {
    position: relative;
    margin-top: 30px;
    font-size: 0;
    text-align: center;
}

#mainPhotoCard .photocard-img .photocard {
    text-align: center;
}

#mainPhotoCard .photocard-img .photocard img {
    transform: rotate(-20deg);
}

#mainPhotoCard .photocard-img .photocard:not(:first-child) {
    margin-top: -50px;
}

#mainPhotoCard .photocard-img .photocard.photocard-img2 img {
    transform: rotate(20deg);
}

@media screen and (min-width:639px) {
    #mainPhotoCard .photocard {
        display: inline-block;
        width: 33.3333%;
    }

    #mainPhotoCard .photocard-img .photocard:not(:first-child) {
        margin-top: 0px;
    }
}

@media screen and (min-width:767px) {
    #mainPhotoCard .photocard-img {
        margin-top: 80px;
    }

    #mainPhotoCard .photocard-img .photocard.photocard-img2 {
        position: absolute;
        top: -50px;
        left: 50%;
        margin-left: calc(33.3333% - 50%);
    }

    #mainPhotoCard .photocard-img .photocard.photocard-img2 img {
        transform: rotate(-9deg);
    }

    #mainPhotoCard .photocard-img .photocard.photocard-img3 {
        margin-left: 10%;
        padding-top: 100px;
    }

    #mainPhotoCard .photocard-img .photocard.photocard-img3 img {
        transform: rotate(14deg);
    }
}

@media screen and (min-width:979px) {
}

@media screen and (min-width:1139px) {

    #mainPhotoCard .photocard-txt {
        margin-left: 50%;
    }

    #mainPhotoCard .photocard-txt .cp-comment br {
        display: none;
    }

    #mainPhotoCard .photocard-img {
        position: absolute;
        top: 50px;
        left: 0;
        width: 50%;
        margin-top: 0;
    }
}

@media screen and (min-width:1439px) {
    #mainPhotoCard {
        padding: 150px 0;
    }

    #mainPhotoCard .photocard-txt .cp-comment br {
        display: block;
    }

    #mainPhotoCard .photocard-img {
        top: -120px;
        width: 60%;
        margin-left: -5%;
    }
}


/* 장소불문 이색 체험 */
#mainExperience .ex-img {
    margin-top: 30px;
}

#mainExperience .ex-img figure {
    margin-bottom: 10px;
}

#mainExperience .ex-img figure img {
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
}

@media screen and (min-width:639px) {
    #mainExperience .ex-img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px -5px 0;
    }

    #mainExperience .ex-img figure {
        padding: 0 5px;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
}

@media screen and (min-width:1139px) {
}

@media screen and (min-width:1439px) {
}


/* 남녀노소 쉽고 간단한 촬영 */
#mainEasyShooting .x-scroll {
    overflow-x: auto;
    margin-top: 30px;
}

#mainEasyShooting .es-step-box {
    position: relative;
    width: 810px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

#mainEasyShooting .es-step-box .es-step {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 10px 0;
    background-color: #212121;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

#mainEasyShooting .es-step-box .es-step:not(:first-child) {
    margin-left: 40px;
}

#mainEasyShooting .es-step-box .es-step .step-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    line-height: 24px;
    background-color: #fff;
    border: 3px solid #212121;
    color: #212121;
    font-family: 'Open Sans';
    font-weight: 700;
    border-radius: 50%;
}

#mainEasyShooting .es-step-box .es-step span.ico {
    font-size: 20px;
}

#mainEasyShooting .es-step-box .es-step span.arrow {
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    line-height: 100px;
    color: #999;
    text-align: center;
    font-size: 30px;
}

@media screen and (min-width:639px) {
    #mainEasyShooting .x-scroll {
        overflow-x: hidden;
    }

    #mainEasyShooting .es-step-box {
        width: 100%;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
}

@media screen and (min-width:1139px) {
    #mainEasyShooting .respon {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    #mainEasyShooting .es-txt {
        width: 50%;
    }

    #mainEasyShooting .x-scroll {
        width: 40%;
        margin-top: 0;
    }

    #mainEasyShooting .cp-comment br {
        display: none;
    }
}

@media screen and (min-width:1439px) {
    #mainEasyShooting .cp-comment br {
        display: block;
    }

    #mainEasyShooting .x-scroll {
        width: 50%;
    }

    #mainEasyShooting .es-step-box .es-step {
        width: 150px;
        height: 150px;
    }

    #mainEasyShooting .es-step-box .es-step:not(:first-child) {
        margin-left: 50px;
    }

    #mainEasyShooting .es-step-box .es-step .step-num {
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 30px;
        border-width: 5px;
    }

    #mainEasyShooting .es-step-box .es-step span.arrow {
        left: -50px;
        width: 50px;
        line-height: 150px;
    }
}


/* 나만의 마이포스터를 카톡에서 바로 확인 */
#mainKakaoTalk .kt-txt .qrbox {
    margin-top: 30px;
    text-align: center;
}

#mainKakaoTalk .kt-txt .qrbox figure img {
    width: 50%;
    max-width: 180px;
    border: 1px solid #dcdcdc;
}

#mainKakaoTalk .kt-txt .qrbox figure figcaption {
    margin-top: 10px;
    color: #666;
    font-size: 12px;
}

#mainKakaoTalk .kt-img {
    margin-top: 30px;
    font-size: 0;
}

@media screen and (min-width:639px) {
}

@media screen and (min-width:767px) {
    #mainKakaoTalk {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mainKakaoTalk .kt-txt {
        width: 50%;
    }

    #mainKakaoTalk .kt-txt h2.page-h2 br {
        display: none;
    }

    #mainKakaoTalk .kt-txt .qrbox {
        text-align: left;
    }

    #mainKakaoTalk .kt-img {
        width: 48%;
        text-align: right;
    }
}

@media screen and (min-width:979px) {
    #mainKakaoTalk .kt-txt h2.page-h2 br {
        display: block;
    }

    #mainKakaoTalk .kt-txt .qrbox figure figcaption {
        font-size: 14px;
    }
}

@media screen and (min-width:1139px) {
    #mainKakaoTalk .kt-txt .qrbox {
        margin-top: 70px;
    }
}

@media screen and (min-width:1439px) {
}


/* 특허 기반의 마이포스터 */
#mainPatent .patent-txt .patent-step {
    position: relative;
    margin-top: 30px;
}

#mainPatent .patent-txt .patent-step .ps-con {
    position: relative;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
}

#mainPatent .patent-txt .patent-step .ps-con:before {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: -5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 0 0 5px 5px;
    content: '';
}

#mainPatent .patent-txt .patent-step .ps-con:after {
    position: absolute;
    top: 50%;
    right: -25px;
    width: 23px;
    height: 46px;
    background: url('../images/patent_arrow.png') no-repeat center;
    content: '';
}

#mainPatent .patent-txt .patent-step .ps-con:last-child::after {
    display: none;
}

#mainPatent .patent-txt .patent-step .ps-con em {
    display: block;
    font-weight: 700;
}

#mainPatent .patent-txt .patent-step .ps-con span {
    display: block;
    margin-top: 5px;
    color: #999;
}

#mainPatent .patent-txt .patent-step .ps-con:not(:first-child) {
    margin-top: 15px;
}

#mainPatent .patent-img {
    margin-top: 30px;
}

#mainPatent .patent-img figure figcaption {
    margin-top: 10px;
    color: #666;
    font-size: 11px;
}

@media screen and (min-width:639px) {
    #mainPatent .patent-txt .patent-step .ps-con {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mainPatent .patent-txt .patent-step .ps-con span {
        margin-top: 0;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
    #mainPatent .respon {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    #mainPatent .patent-img {
        margin-top: 0;
    }

    #mainPatent .patent-img figure figcaption {
        font-size: 12px;
    }
}

@media screen and (min-width:1139px) {
    #mainPatent .patent-txt .patent-step .ps-con {
        padding: 10px 30px;
    }
}

@media screen and (min-width:1439px) {
}


/* 콘텐츠는 풍부하게! 효과는 바로바로! */
#mainCMS .cms-con {
    position: relative;
    margin-top: 30px;
}

#mainCMS .cms-con .cms-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 120px;
    line-height: 1.1;
    margin: -60px 0 0 -100px;
    background-color: rgba(255,255,255,0.95);
    border-radius: 5px;
    -moz-box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    box-shadow: 0px 2px 15px rgba(0,0,0,0.1);
    font-family: 'Open Sans';
}

#mainCMS .cms-con .cms-txt strong {
    color: #ccc;
    font-weight: 800;
    font-size: 60px;
}

#mainCMS .cms-con .cms-txt p {
    color: #666;
    font-size: 12px;
}

@media screen and (min-width:639px) {
}

@media screen and (min-width:767px) {
    #mainCMS h2.page-h2 br {
        display: none;
    }

    #mainCMS .cms-con {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
    }

    #mainCMS .cms-con figure {
        width: 50%;
    }
}

@media screen and (min-width:979px) {
    #mainCMS .cms-con {
        margin-top: 50px;
    }
}

@media screen and (min-width:1139px) {

    #mainCMS .cms-con .cms-txt {
        width: 300px;
        height: 200px;
        line-height: 1;
        margin: -100px 0 0 -150px;
    }

    #mainCMS .cms-con .cms-txt strong {
        font-size: 120px;
    }

    #mainCMS .cms-con .cms-txt p {
        font-size: 18px;
    }
}

@media screen and (min-width:1439px) {
}


/* 콘텐츠 제작 방법 및 순서 */
#mainProductionMethod {
    background: url("../images/howmake_bg.jpg") no-repeat center/cover;
}

#mainProductionMethod h2.page-h2 {
    color: #fff;
}

#mainProductionMethod h2.page-h2 strong {
    color: #5CFF75;
}

#mainProductionMethod .cp-comment {
    color: #fff;
    opacity: 0.7;
}

#mainProductionMethod .pm-make {
    margin: 30px -30px;
}

#mainProductionMethod .pm-stepbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -20px;
}

#mainProductionMethod .pm-stepbox .pm-step {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    margin: 10px;
    background-color: #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

#mainProductionMethod .pm-stepbox .pm-step .step-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    line-height: 24px;
    background-color: #CE2A34;
    border: 3px solid #fff;
    color: #fff;
    font-family: 'Open Sans';
    font-weight: 700;
    border-radius: 50%;
}

#mainProductionMethod .pm-stepbox .pm-step span.ico {
    font-size: 20px;
}

#mainProductionMethod .pm-stepbox .pm-step em {
    display: block;
    color: #212121;
    font-size: 11px;
}

#mainProductionMethod .pm-stepbox .pm-step span.arrow {
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    line-height: 90px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

@media screen and (min-width:639px) {
    #mainProductionMethod .pm-make {
        margin: 30px 0;
    }

    #mainProductionMethod .pm-stepbox .pm-step {
        width: 100px;
        height: 100px;
        margin: 10px 0;
    }

    #mainProductionMethod .pm-stepbox .pm-step:not(:first-child) {
        margin-left: 40px;
    }

    #mainProductionMethod .pm-stepbox .pm-step span.arrow {
        left: -40px;
        width: 40px;
        line-height: 100px;
        font-size: 30px;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
    #mainProductionMethod h2.page-h2,
    #mainProductionMethod .cp-comment {
        text-align: center;
    }

    #mainProductionMethod .pm-make {
        margin: 50px 0;
    }

    #mainProductionMethod .pm-stepbox .pm-step .step-num {
        left: 10px;
        width: 40px;
        height: 40px;
        line-height: 30px;
        border-width: 5px;
    }

    #mainProductionMethod .pm-stepbox .pm-step em {
        font-size: 12px;
    }
}

@media screen and (min-width:1139px) {
    #mainProductionMethod .pm-stepbox .pm-step {
        width: 120px;
        height: 120px;
    }

    #mainProductionMethod .pm-stepbox .pm-step span.arrow {
        line-height: 120px;
    }

    #mainProductionMethod .pm-stepbox .pm-step em {
        font-size: 14px;
    }
}

@media screen and (min-width:1239px) {
    #mainProductionMethod .pm-stepbox .pm-step {
        width: 150px;
        height: 150px;
    }

    #mainProductionMethod .pm-stepbox .pm-step:not(:first-child) {
        margin-left: 60px;
    }

    #mainProductionMethod .pm-stepbox .pm-step span.arrow {
        left: -60px;
        width: 60px;
        line-height: 150px;
    }

    #mainProductionMethod .pm-stepbox .pm-step em {
        margin-top: 5px;
        font-size: 17px;
    }
}

@media screen and (min-width:1439px) {
}


/* 마이포스터 적용 사례 */
#mainCase {
    padding-bottom: 0;
}

#mainCase .mp-history {
    position: relative;
    padding: 0 0 40px;
    margin-top: 30px;
}

#mainCase .mp-history:before {
    position: absolute;
    top: 0;
    left: -20px;
    bottom: 0;
    width: 1px;
    background-color: #dcdcdc;
    content: '';
    z-index: -1;
}

#mainCase .mp-history .history-con {
    position: relative;
    margin-top: 40px;
}

#mainCase .mp-history .history-con:after {
    position: absolute;
    top: 15px;
    left: -20px;
    width: 20px;
    height: 1px;
    background-color: #dcdcdc;
    content: '';
}

#mainCase .mp-history .history-con:first-child {
    margin-top: 0 !important;
}

#mainCase .mp-history .history-con h3 {
    position: relative;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 20px;
    margin-bottom: 20px;
    font-family: 'Open Sans';
    font-size: 17px;
    font-weight: 800;
    background-color: #CE2A34;
    color: #fff;
    border-radius: 16px;
}

#mainCase .mp-history .history-con h3:after {
    position: absolute;
    top: 10px;
    left: -25px;
    width: 10px;
    height: 10px;
    background-color: #CE2A34;
    content: '';
    border-radius: 50%;
    z-index: 100;
}

#mainCase .mp-history .history-con ul.history-list li {
    position: relative;
    line-height: 1.8;
    margin-top: 10px;
    color: #666;
}

#mainCase .mp-history .history-con ul.history-list li:first-child {
    margin-top: 0 !important;
}

#mainCase .mp-history .history-con ul.history-list li.in-month {
    padding-left: 30px;
}

#mainCase .mp-history .history-con ul.history-list li.in-month em.month {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
    background-color: #FFBB00;
    color: #fff;
    text-align: center;
    font-family: 'Open Sans';
    font-weight: 800;
    font-size: 12px;
    border-radius: 50%;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}

#mainCase .history-slide {
    margin: 0 -40px;
}

@media screen and (min-width:639px) {
    #mainCase .page-h2 {
        text-align: center;
    }

    #mainCase .mp-history {
        padding: 70px 0 50px;
    }

    #mainCase .mp-history:before {
        top: 15px;
        left: 50%;
    }

    #mainCase .mp-history:after {
        position: absolute;
        top: 0;
        left: calc(50% - 15px);
        width: 30px;
        height: 30px;
        border: 5px solid #fff;
        background-color: #333;
        -moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.16);
        -webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.16);
        box-shadow: 0px 2px 3px rgba(0,0,0,0.16);
        border-radius: 50%;
        content: '';
    }

    #mainCase .mp-history .history-con {
        width: 50%;
        padding: 0 20px;
    }

    #mainCase .mp-history .history-con:nth-child(2n) {
        text-align: right;
    }

    #mainCase .mp-history .history-con:nth-child(2n)::after {
        left: auto;
        right: 0;
    }

    #mainCase .mp-history .history-con:nth-child(2n) h3:after {
        left: auto;
        right: -25px;
    }

    #mainCase .mp-history .history-con:nth-child(2n+1) {
        margin-left: 50%;
    }

    #mainCase .mp-history .history-con:nth-child(2n+1)::after {
        left: 0;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
    #mainCase .mp-history {
        padding: 70px 0 80px;
        margin-top: 50px;
    }

    #mainCase .mp-history .history-con {
        padding: 0 50px;
    }

    #mainCase .mp-history .history-con:after {
        width: 50px;
    }

    #mainCase .mp-history .history-con:nth-child(2n) h3:after {
        right: -55px;
    }

    #mainCase .mp-history .history-con:nth-child(2n+1) h3:after {
        left: -55px;
    }
}

@media screen and (min-width:1139px) {
}

@media screen and (min-width:1439px) {
    #mainCase .history-slide {
        margin: 0;
    }
}


/* 마이포스터 제품 사양 */
#mainSpec .tabmnu {
    position: relative;
    margin: 30px 0;
}

#mainSpec .tabmnu ul li {
    width: 100%;
    margin-bottom: 5px;
}

#mainSpec .tabmnu ul li a {
    display: block;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #F1F1F1;
    text-align: center;
    border-radius: 5px;
    font-family: 'GmarketSansMedium';
    color: #666;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#mainSpec .tabmnu ul li a.current {
    border: 2px solid #CE2A34;
    background-color: #fff;
    color: #CE2A34;
    font-family: 'GmarketSansBold';
}

#mainSpec .tabmnu ul li a em {
    display: none;
}

#mainSpec .tab_unit_wrap {
    margin: 0 -30px;
}

#mainSpec .tab_unit_wrap .tab_unit {
    text-align: center;
}

#mainSpec .tab_unit_wrap .tab_unit img {
    width: 100%;
    max-width: 700px;
}

@media screen and (min-width:639px) {
    #mainSpec .tabmnu ul li {
        width: 32%;
    }

    #mainSpec .tabmnu ul li:not(:first-child) {
        margin-left: 2%;
    }

    #mainSpec .tabmnu ul li a.current {
        border-width: 3px;
    }

    #mainSpec .tabmnu ul li a em {
        display: block;
        margin-bottom: 5px;
    }
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
    #mainSpec {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #mainSpec .spec-left {
        width: 50%;
    }

    #mainSpec .tabmnu {
        margin: 50px 0 0 0;
    }

    #mainSpec .tabmnu ul li a span {
        font-size: 14px;
    }

    #mainSpec .tab_unit_wrap {
        width: 50%;
    }
}

@media screen and (min-width:1139px) {
}

@media screen and (min-width:1439px) {
    #mainSpec .tabmnu {
        margin-top: 70px;
    }

    #mainSpec .tabmnu ul li a span {
        font-size: 16px;
    }
}


/* 마이포스터 가격 정보 */
#mainPrice {
    background-color: #333;
    color: #fff;
}

#mainPrice h2.page-h2 {
    color: #fff;
}

#mainPrice h2.page-h2 strong {
    color: #FFF846;
}

#mainPrice .myposter-price {
    margin-top: 30px;
}

#mainPrice .myposter-price .myposter-con {
    margin-bottom: 30px;
    text-align: center;
}

#mainPrice .myposter-price .myposter-con figure {
    display: block;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50%;
    font-size: 0;
}

#mainPrice .myposter-price .myposter-con h4 {
    margin: 15px 0;
    font-size: 16px;
    font-family: 'GmarketSansBold';
}

#mainPrice .myposter-price .myposter-con dl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #666;
    border-radius: 15px;
}

#mainPrice .myposter-price .myposter-con dl:not(:last-child) {
    margin-bottom: 10px;
}

#mainPrice .myposter-price .myposter-con dl dt {
    flex-shrink: 0;
    width: 80px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    border-radius: 15px;
    color: #333;
    font-weight: 700;
}

#mainPrice .myposter-price .myposter-con dl dd {
    flex-grow: 1;
    padding-left: 20px;
    text-align: left;
}

#mainPrice .other-price {
    margin-top: 30px;
}

#mainPrice .other-price .other-price-tbl {
    border-top: 2px solid #fff;
}

#mainPrice .other-price .other-price-tbl th,
#mainPrice .other-price .other-price-tbl td {
    padding: 10px 20px;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-size: 12px;
}

#mainPrice .other-price .other-price-tbl thead th {
    font-weight: 800;
    background-color: rgba(255,255,255,0.1);
}

#mainPrice .other-price p.comment {
    margin-top: 10px;
    font-size: 12px;
}

@media screen and (min-width:639px) {
    #mainPrice h2.page-h2 {
        text-align: center;
    }

    #mainPrice .myposter-price {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        margin-top: 50px;
    }

    #mainPrice .myposter-price .myposter-con {
        width: 50%;
        padding: 0 4%;
    }

    #mainPrice .other-price .other-price-tbl th,
    #mainPrice .other-price .other-price-tbl td {
        padding: 15px 20px;
        font-size: 14px;
    }

    #mainPrice .other-price .other-price-tbl thead th {
        font-size: 16px;
    }
}

@media screen and (min-width:767px) {
    #mainPrice .myposter-price .myposter-con figure {
        width: 200px;
        height: 200px;
    }

    #mainPrice .myposter-price .myposter-con h4 {
        margin: 25px 0 15px;
        font-size: 19px;
    }

    #mainPrice .myposter-price .myposter-con dl {
        border-radius: 20px;
    }

    #mainPrice .myposter-price .myposter-con dl dt {
        width: 100px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
    }

    #mainPrice .other-price .other-price-tbl th,
    #mainPrice .other-price .other-price-tbl td {
        font-size: 16px;
    }

    #mainPrice .other-price .other-price-tbl thead th {
        font-size: 18px;
    }

    #mainPrice .other-price p.comment {
        margin-top: 15px;
        font-size: 14px;
    }
}

@media screen and (min-width:979px) {
    #mainPrice .myposter-price .myposter-con {
        width: 25%;
        padding: 0 2%;
    }
}

@media screen and (min-width:1239px) {
    #mainPrice .other-price {
        width: 1000px;
        margin: 0 auto;
        margin-top: 50px;
    }
}

@media screen and (min-width:1439px) {
}










@media screen and (min-width:639px) {
}

@media screen and (min-width:767px) {
}

@media screen and (min-width:979px) {
}

@media screen and (min-width:1139px) {
}

@media screen and (min-width:1439px) {
}