@charset "utf-8";


/* // Header
----------------------------------------------- */
#Header {
    margin-bottom: 0;
}
@media screen and (min-width: 741px) {
    #Header {
        position: absolute;
        margin-bottom: 0;
        width: 1200px;
        left: 50%;
        top: 0;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
        transition: 0.3s;
        z-index: 10000;
    }
    #Header.default {
        top: -120px;
    }

    #HeaderContactBtn {
        transition: 0.3s;
    }
    #HeaderContactBtn.default {
        top: -120px;
    }
    #HeaderContactBtn {
        -ms-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    #HeaderContactBtn.hideOff {
        -ms-transform: translateY(-0%);
        -webkit-transform: translateY(-0%);
        -moz-transform: translateY(-0%);
        transform: translateY(-0%);
    }
}
@media screen and (min-width: 1601px) {
    #HeaderContactBtn {
        right: 50%;
        -ms-transform: translate(800px, -100%);
        -webkit-transform: translate(800px, -100%);
        -moz-transform: translate(800px, -100%);
        transform: translate(800px, -100%);
    }
    #HeaderContactBtn.hideOff {
        -ms-transform: translate(800px, -0%);
        -webkit-transform: translate(800px, -0%);
        -moz-transform: translate(800px, -0%);
        transform: translate(800px, -0%);
    }
}


/* // TopMv //
----------------------------------------------- */
#TopMv {
    opacity: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
#TopMv.start {
    transition-duration: 0.3s;
    opacity: 1;
}

#TopMv .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 750px;
}

/* //    |- swiper  */
#TopMv .swiper-container {
    height: 900px;
}
#TopMv .swiper-slide {
    cursor: default;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
#TopMv .swiper-slide .image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
#TopMv .swiper-slide img.slideImg {
    opacity: 0;
}


/* //    |- catchWrap  */
#TopMv .catchWrap .stroke svg path {
    stroke: #fff;
    fill: rgba(255, 255, 255, 0);
    stroke-width: 1;
    stroke-DASHarray: 3000;
    stroke-DASHoffset: 3000;
    /* */
    -moz-animation: DASH 2.5s linear .1s forwards;
    -webkit-animation: DASH 2.5s linear .1s forwards;
    -o-animation: DASH 2.5s linear .1s forwards;

    animation: DASH 2.5s linear .1s forwards;
}
@keyframes DASH {
    0% {
        stroke-DASHoffset: 3000;
        fill: rgba(255, 255, 255, 0);
        stroke: #fff;
    }
    100% {
        stroke-DASHoffset: 2000;
        fill: rgba(255, 255, 255, 0);
        stroke: #fff;
    }
}
#TopMv.start .catchWrap .stroke {
    transition-duration: 0.6s;
    transition-delay: 1.0s;
    opacity: 0;
}
#TopMv .catchWrap .logo {
    transition-duration: 0.6s;
    transition-delay: 1.0s;
    opacity: 0;
}
#TopMv.start .catchWrap .logo {
    opacity: 1;
}

#TopMv .catchWrap {
    position: relative;
}
#TopMv .catchWrap svg {
    width: 600px;
}
#TopMv .catchWrap .stroke {}
#TopMv .catchWrap .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
#TopMv .catchWrap .ill {
    width: 55px;
    opacity: 0;
    position: absolute;
    top: 47%;
    left: 50%;
    -ms-transform: translate(-50%, -50%) rotateZ(0deg);
    -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
    -moz-transform: translate(-50%, -50%) rotateZ(0deg);
    transform: translate(-50%, -50%) rotateZ(0deg);
    transition-duration: 0.8s;
}
#TopMv.start .catchWrap .ill {
    opacity: 1;
    transition-delay: 0.9s;
    -ms-transform: translate(-50%, -50%) rotateZ(1080deg);
    -webkit-transform: translate(-50%, -50%) rotateZ(1080deg);
    -moz-transform: translate(-50%, -50%) rotateZ(1080deg);
    transform: translate(-50%, -50%) rotateZ(1080deg);
}

/* //    |- line  */
#TopMv .line {
    margin-top: 34px;
    width: 100%;
    height: 6px;
    position: relative;
    z-index: 100;
}
#TopMv .line .gray {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #5B5C57;
    width: 0%;
    height: 100%;
    display: block;
}
#TopMv .line .red {
    position: absolute;
    left: 0%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #E10D20;
    width: 0;
    height: 100%;
    display: block;
}
#TopMv.start .line .gray {
    transition-duration: 0.6s;
    transition-delay: 1.0s;
    width: 100%;
}
#TopMv.start .line .red {
    transition-duration: 0.6s;
    transition-delay: 1.0s;
    width: 250px;
}

/* //    |- jaCatch  */
#TopMv .jaCatch {
    margin-top: 40px;
    width: 100%;
    color: #FFF;
    font-weight: 100;
    font-size: 34px;
    text-align: center;
    line-height: 1;
    opacity: 0;
    position: relative;
    top: -20px;
}
#TopMv.start .jaCatch {
    transition-duration: 0.8s;
    transition-delay: 1.2s;
    opacity: 1;
    top: -0;
}

/* //    |- NewInfo  */

#TopMv #NewInfo {
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #FFF;
    line-height: 1.3;
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}
#TopMv.start #NewInfo {
    transition-duration: 0.5s;
    transition-delay: 1.5s;
    -ms-transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}


#TopMv #NewInfo a {
    color: #FFF;
}

#TopMv #NewInfo .cell {
    height: auto;
    padding-top: 10px;
    padding-bottom: 1px;
    vertical-align: middle;
}
#TopMv #NewInfo .title {
    width: 210px;
    background-color: rgba(0, 0, 0, 0.3);
}
#TopMv #NewInfo .title p {
    text-align: center;
    font-weight: 600;
    font-size: 116%;
}
#TopMv #NewInfo .contents {
    width: 740px;
    padding-left: 25px;
    padding-right: 25px;
    display: table;
}
#TopMv #NewInfo .contents a {
    display: block;
    margin-bottom: 10px;
}
#TopMv #NewInfo .contents .date {
    display: table-cell;
    width: 100px;
    font-size: 110%;
}
#TopMv #NewInfo .contents .type {
    display: table-cell;
    width: 115px;
    padding-right: 20px;
}
#TopMv #NewInfo .contents .type .frame {
    display: block;
    border: 1px solid #FFF;
    padding: 3px;
    text-align: center;
    font-size: 80%;
}
#TopMv #NewInfo .contents .body {
    display: table-cell;
    font-size: 90%;
}
#TopMv #NewInfo .contents .body.pdf .tx {
    position: relative;
}
#TopMv #NewInfo .contents .body.pdf .tx:after {
    position: absolute;
    left: 100%;
    top: 50%;
    font-size: 100%;
    -webkit-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    -webkit-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
    content: '\e922';
    font-family: iconfontA;
    color: #fff;
}
#TopMv #NewInfo .contents .body.out .tx {
    position: relative;
}
#TopMv #NewInfo .contents .body.out .tx:after {
    position: absolute;
    left: 100%;
    top: 50%;
    font-size: 100%;
    -webkit-transform: translate(10px, -50%);
    -ms-transform: translate(10px, -50%);
    -webkit-transform: translate(10px, -50%);
    transform: translate(10px, -50%);
    content: '\e91f';
    font-family: iconfontA;
    color: #fff;
}

#TopMv #NewInfo .btn {
    display: table-cell;
    background-image: linear-gradient(to right, #5B5C57 50%, #747571 50%);
    background-position: 0 0;
    background-size: 200% auto;
    width: 150px;
    text-align: center;
    vertical-align: middle;
}
#TopMv #NewInfo .btn:hover {
    background-position: -100% 0;
}
#TopMv #NewInfo .btn .tx {
    display: block;
    position: relative;
    font-weight: 600;
    font-size: 110%;
}
#TopMv #NewInfo .btn .tx:after {
    position: absolute;
    right: 7px;
    top: 50%;
    font-size: 55%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: '\e91d';
    font-family: iconfontA;
    color: #fff;
    transition: 0.2s;
}


@media screen and (max-width: 740px) {

    /* // TopMv //
----------------------------------------------- */
    #HeaderContactBtn {
        -ms-transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
        transition: 0.4s;
    }

    #HeaderContactBtn.hideOff {
        -ms-transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }

    /* // TopMv //
----------------------------------------------- */
    #TopMv {
        margin-bottom: 35px;
    }
    #TopMv.start {}
    #TopMv .inner {
        width: 100%;
        top: 40%;
    }

    /* //    |- swiper  */
    #TopMv .swiper-container {
        height: 600px;
    }
    #TopMv .swiper-slide {}
    #TopMv .swiper-slide .image {}
    #TopMv .swiper-slide img.slideImg {}


    /* //    |- catchWrap  */
    #TopMv .catchWrap .stroke svg path {}
    @keyframes DASH {
        0% {
            stroke-DASHoffset: 3000;
            fill: rgba(255, 255, 255, 0);
            stroke: #fff;
        }
        100% {
            stroke-DASHoffset: 2000;
            fill: rgba(255, 255, 255, 0);
            stroke: #fff;
        }
    }
    #TopMv.start .catchWrap .stroke {
        opacity: 0;
        width: 100%;
    }
    #TopMv .catchWrap .logo {}
    #TopMv.start .catchWrap .logo {
        width: 100%;
    }
    #TopMv .catchWrap svg {
        width: 94% !important;
        height: auto;
    }
    #TopMv .catchWrap {}
    #TopMv .catchWrap .logo {}
    #TopMv .catchWrap .ill {
        width: 42px;
        top: 48%;
    }

    /* //    |- line  */
    #TopMv .line {
        margin: 25px auto 0;
        width: 90%;
        height: 5px;
    }
    #TopMv .line .gray {}
    #TopMv .line .red {}
    #TopMv.start .line .gray {}
    #TopMv.start .line .red {
        width: 40%;
    }

    /* //    |- jaCatch  */
    #TopMv .jaCatch {
        margin-top: 21px;
        font-size: 19px;
        line-height: 1.3;
        font-weight: 400;
    }
    #TopMv.start .jaCatch {}

    /* //    |- NewInfo  */

    #TopMv #NewInfo {}
    #TopMv.start #NewInfo {
        /* 
		transition-duration: 0s;
		transition-delay: 0s;
		 */
    }
    #TopMv #NewInfo .wrap {
        position: relative;
    }
    #TopMv #NewInfo a {}
    #TopMv #NewInfo .cell {
        height: auto;
        padding-top: 0;
    }
    #TopMv #NewInfo .title {
        width: auto;
        display: block;
        background-color: rgba(0, 0, 0, 0);
        margin-bottom: 0;
        padding-left: 8px;
        padding-top: 3px;
    }
    #TopMv #NewInfo .title p {
        text-align: left;
        font-weight: 600;
        font-size: 126%;
    }
    #TopMv #NewInfo .contents {
        width: 100%;
        padding: 3px 8px 8px;
        display: block;
    }
    #TopMv #NewInfo .contents a {
        display: block;
    }
    #TopMv #NewInfo .contents .date {
        display: inline-block;
        width: auto;
        font-size: 106%;
        margin-right: 10px;
        font-weight: 400;
        Z
    }
    #TopMv #NewInfo .contents .type {
        display: inline-block;
        width: auto;
        padding-right: 0;
    }
    #TopMv #NewInfo .contents .type .frame {
        display: block;
        border: 1px solid #FFF;
        padding: 1px 8px;
        font-size: 75%;
    }
    #TopMv #NewInfo .contents .body {
        display: block;
        padding-top: 5px;
        font-size: 90%;
    }
    #TopMv #NewInfo .contents .body.pdf .tx,
    #TopMv #NewInfo .contents .body.out .tx {
        position: relative;
        padding-right: 22px;
        display: block;
    }
    #TopMv #NewInfo .contents .body.pdf .tx:after,
    #TopMv #NewInfo .contents .body.out .tx:after {
        top: 50%;
        font-size: 100%;
        -webkit-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
        -webkit-transform: translate(-100%, -50%);
        transform: translate(-100%, -50%);
    }


    #TopMv #NewInfo .btn {
        display: block;
        background-size: 200% auto;
        width: 110px;
        line-height: 1;
        position: absolute;
        top: 5px;
        right: 5px;
    }
    #TopMv #NewInfo .btn:hover {
        background-size: 200% auto;
    }
    #TopMv #NewInfo .btn .tx {
        display: block;
        padding: 3px;
        position: relative;
        font-weight: 500;
        font-size: 100%;
    }
    #TopMv #NewInfo .btn .tx:after {
        right: 5px;
        font-size: 9px !important;
    }
    #TopMv #NewInfo .infoList li:nth-child(4), #TopMv #NewInfo .infoList li:nth-child(5) {
        display: none;
    }

}

/* //    |- bnr  */

#TopMv .BnrArea {
    position: absolute;
    left: 0px;
    bottom: 120px;
    display: block;
    width: 100%;
    z-index: 10;
    -webkit-transition: all 3s;
    -moz-transition: all 3s;
    -ms-transition: all 3s;
    -o-transition: all 3s;
    transition: all 3s;
    opacity: 0;
    text-align: right;
    padding-right: 20px;
}
#TopMv.start .BnrArea {
    transition-duration: 0.5s;
    transition-delay: 1.5s;
    opacity: 1;
}

#TopMv .BnrArea img {
    width: 350px;
}

@media screen and (max-width: 740px) {
    #TopMv .inner {
        margin-top: -15vw;
    }
    #TopMv .BnrArea {
        text-align: center;
        padding-right: 0px;
        bottom: 55vw;
    }
    #TopMv .BnrArea img {
        width: 80%;
    }
}