@charset "utf-8";

main {
    overflow: hidden;
}

/*------- ------- ------- -------   
    1차 블라인드 오픈용 메인
------- -------- ------- -------*/
.pc {
    display: block !important;
}

.mobile {
    display: none !important;
}

.text_top {
    position: relative;
}

/* .title_txt{ width:85%;margin: 0 auto; } */
.title_txt p:not(.text-date) {
    font-size: 8.5em;
    color: #fff;
    line-height: 1.15em;
    font-family: 'Monoton', cursive;
    text-transform: uppercase;
}

.title_txt .maxsummit.pc {
    display: inline-block !important;
}

.title_txt .txt_size {
    display: inline-block;
    position: relative;
    /* padding-left:2%; */
}

.text-date {
    position: absolute;
    top: -55px;
    width: 130%;
    left: 0;
    color: #fff;
}

.text-date span {
    font-size: 2.5em;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.text-date sub {
    vertical-align: baseline;
    font-size: .6em;
    text-transform: lowercase;
}

/* mouse scroll down */
.sc_arr {
    position: absolute;
    left: 0;
    right: 0;
    /* bottom:75px; */
    /* bottom: 17%; */
    bottom: -20%;
    text-indent: -9999px;
    z-index: 1000;
    margin: 0 auto;
    width: 30px;
    height: 52px;
    border-radius: 15px;
    border: 1px solid #fff;
    box-sizing: border-box;
}

.sc_arr:after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background: #fff;
    -ms-animation: scDown 1.2s infinite;
    animation: scDown 1.2s infinite;
}

@keyframes scDown {
    from {
        top: 5px;
        opacity: 1;
    }

    to {
        -webkit-transition: .5s;
        transition: .5s;
        top: 37px;
        opacity: .1;
    }
}

@-ms-keyframes scDown {
    from {
        top: 5px;
        opacity: 1;
    }

    to {
        -ms-transition: .5s;
        top: 37px;
        opacity: .1;
    }
}

/* //mouse scroll down */

/* ani TEXT slide */
.slide_txt {
    position: absolute;
    right: 55%;
    top: 13%;
    font-weight: 0;
    font-size: 3.5em;
    color: #fff;
}

.word {
    position: absolute;
    width: 450px;
    opacity: 0;
    text-align: center;
    margin-top: -10px;
}

.word:after {
    content: '';
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    width: 88%;
    margin: 0 auto;
}

.slide_txt>p:before,
.slide_txt>p:after {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    line-height: .75;
    font-size: 1.6em;
}

.slide_txt>p:before {
    content: '\28';
    left: -20px;
}

.slide_txt>p:after {
    right: -470px;
    content: '\29';
}

.letter {
    display: inline-block;
    position: relative;
    -webkit-transform: translateZ(25px);
    -ms-transform: translateZ(25px);
    transform: translateZ(25px);
    -webkit-transform-origin: 50% 50% 25px;
    -ms-transform-origin: 50% 50% 25px;
    transform-origin: 50% 50% 25px;
}

.letter.out {
    -webkit-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -ms-transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    -webkit-transform: rotateX(-90deg);
    -ms-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
}

.letter.in {
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* //ani TEXT slide */

/* ani TEXT typing */
.text_bottom {
    margin-top: 26px;
    padding: 3% 6%;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    line-height: 1.1;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

.text_bottom p:first-child {
    font-size: 4em;
}

.text_bottom p:last-child {
    overflow: hidden;
    display: inline-block;
    font-size: 3.5em;
    border-right: .15em solid rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    font-family: 'Work Sans', sans-serif;
    -webkit-animation: typing 3.5s steps(40, end), blink-caret .65s step-end infinite;
    -ms-animation: typing 3.5s steps(40, end), blink-caret .65s step-end infinite;
    animation: typing 3.5s steps(40, end), blink-caret .65s step-end infinite;
    font-weight: 600;
}

@keyframes typing {
    0% {
        width: 0;
    }

    40% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
        animation-delay: 3s;
    }

    50% {
        border-color: rgba(255, 255, 255, 0.5);
    }

    /* 50% { border-color: rgba(112,30,139,1); } */
}

/* //ani TEXT typing */
/*------- //main::visual --------*/


/*------- blindopen::about --------*/
.blindopen {
    min-height: 100vh;
    text-align: center;
    z-index: 10;
    position: relative;
}

.blindopen article header p {
    font-size: 23px;
    line-height: 2;
    color: #111;
    letter-spacing: -.05em;
    margin: 2% 0 8%;
}

.contents-box {
    width: 87%;
    margin: auto;
}

.contents-box .contents-box-top {
    margin-bottom: 5%;
}

.topBox.box-row {
    -webkit-align-items: baseline;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.topBox-con {
    padding: 4px;
    box-sizing: border-box;
}

.box-img {
    width: 116px;
    height: 120px;
    background: url(../images/icon-about.png) no-repeat;
    background-size: 300%;
    margin: auto;
}

.box-img2 {
    background-position-x: 50%;
}

.box-img3 {
    background-position-x: 100%;
}

.box-title {
    font-size: 23px;
    font-weight: bold;
    color: #444;
    margin: 8% 0 2%;
    text-transform: capitalize;
}

.box-text {
    font-size: 15px;
    letter-spacing: -.05em;
    word-break: keep-all;
    color: #444;
}

/*------- //about --------*/

/*------- timeline --------*/
.contents-box-bottom {
    padding: 5% 0;
    margin: 15% auto;
}

.bottomBox {
    background: #fff;
    width: 87%;
    margin: auto;
    padding: 9% 5% 5%;
    box-sizing: border-box;
    position: relative;
    text-align: left;
}

.box-border {
    position: absolute;
    height: 100%;
    z-index: -1;
}

.gr-left .box-border1 {
    width: 102%;
    height: 112%;
    top: -6%;
    right: 0;
}

.gr-left .box-border2 {
    width: 100%;
    top: 0;
    background: url(../images/main-bg-br.png) no-repeat;
    background-size: 100%;
    opacity: .6;
    right: -2%;
}

.bottomBox:before {
    /* maxweek */
    content: 'maxweek';
    font-family: 'Monoton', cursive;
    text-transform: uppercase;
    font-size: 57px;
    position: absolute;
    top: -18px;
    left: -2px;
    opacity: .3;
}

.bottomBox:after {
    content: '';
    position: absolute;
    bottom: -21%;
    right: -7%;
    width: 190px;
    height: 190px;
    background: url(../images/main-box-con01.png) no-repeat;
    background-size: 100%;
}

.box-list {
    position: relative;
    margin-bottom: 15px;
}

.box-list::before {
    /* 리스트 라인 */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #6f1e8c;
}

.box-time-text {
    display: inline-block;
    vertical-align: middle;
    color: #444;
    text-transform: capitalize;
}

.box-time-text:not(span) {
    font-size: 22px;
    font-weight: 900;
    width: 35%;
}

.box-time-text.label {
    width: 18%;
    color: #fff;
    padding: 0 1.8%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
}

.box-time-text.label span {
    font-weight: 600;
    font-size: 18px;
}

.box-time-text.label:after {
    /* 사다리꼴 */
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-left: 16px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: 10px solid #fff;
}

/*------- //timeline --------*/

/*------- location --------*/
.point-text {
    font-size: 90px;
    line-height: 1.15em;
    font-family: 'Monoton', cursive;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.contents-box-footer {
    text-align: center;
}

.contents-box-footer p:not(.point-text) {
    font-size: 30px;
    margin: 4% auto;
    vertical-align: middle;
    color: #444;
    letter-spacing: -.09em;
}

.contents-box-footer p:not(.point-text) a,
.contents-box-footer p:not(.point-text) strong {
    font-size: 30px;
    color: #444;
}

.contents-box-footer p:not(.point-text) strong.num,
.contents-box-footer p:not(.point-text) a i {
    font-size: 35px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.contents-box-footer p:not(.point-text) a i {
    vertical-align: sub;
    color: #0097c3;
}

/* by ticket */
.btn-by {
    position: relative;
    display: inline-block;
}

.btn-by a {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 900;

}

/*------- //location --------*/

/*------- contactus --------*/
.contents-box-info {
    margin-top: 10%;
}

.contents-box-info .bottomBox {
    width: 80%;
}

.contents-box-info .bottomBox:after {
    display: none;
}

.contents-box-info .bottomBox:before {
    /* contact us */
    content: 'contact us';
}

.contents-box-info .box-border1 {
    right: -2%;
}

.contents-box-info .box-border2 {
    right: auto;
    left: -2%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.contents-box-info-list {
    text-align: center;
}

.contents-box-info-list p strong {
    font-size: 17px;
    color: #444;
}

a.mailto {
    color: #444;
    text-decoration: underline;
}

a.mailto:hover {
    color: rgba(111, 30, 140, 1);
}