/* Common */
.sec {
    padding:150px 0px;
}

.sec-tit {
    font-family: 'Montserrat', sans-serif;
    font-size:4.2rem;
    font-weight:700;
    color:#191919;
}

.sec-tit--style02 {
    position: relative;
}

.sec-tit--style02::before {
    content:"";
    display: block;
    position: relative;
    left:3px;
    -webkit-transform: translateX(-25px);
    transform: translateX(-25px);
    width:9px;
    height:9px;
    background-color: #0068b7;
    border-radius:50%;
    opacity:0;
    -webkit-transition:all 1s ease;
    transition:all 1s ease;
}

.sec-subtit {
    font-size:2rem;
    line-height:1.6;
    color:#191919;
}

.sec-tit--style02.aos-animate::before {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity:1;
}

@media screen and (max-width:1200px) {
    .sec {
        padding:120px 0px;
    }

    .sec-tit {
        font-size:3.2rem;
    }

    .sec-subtit {
        font-size:1.8rem;
    }
}
@media screen and (max-width:992px) {
    .sec {
        padding:80px 0px;
    }

    .sec-tit--style02::before {
        width:7px;
        height:7px;
    }
}
@media screen and (max-width:768px) {
    .sec {
        padding:60px 0px;
    }

    .sec-tit {
        font-size:2.6rem;
    }

    .sec-tit--style02::before {
        left: 2px;
    }

    .sec-subtit {
        font-size:1.6rem;
    }
}
@media screen and (max-width:576px) {
    .sec-tit {
        font-size:2.2rem;
    }

    .sec-tit--style02::before {
        width:5px;
        height:5px;
    }

    .sec-subtit {
        font-size:1.5rem;
    }
}



/* Visual */
.sec--01 {
    width:100%;
    height: 100%;
    /* height:100vh; */
    padding:0px;
}

.sec--01 .visual {
    /* height: calc(100vh - 108px); */
}

.sec--01 .swiper-container,
.sec--01 .swiper-wrapper,
.sec--01 .swiper-slide {
    height:100%;
}

.sec--01 .swiper-wrapper {
    transition-timing-function:ease-out;
}

.sec--01 .swiper-slide {
    overflow: hidden;
    background-color: #fff;
}

.sec--01 .pagination {
    z-index:10;
    display: flex;
    justify-content: center;
    position: absolute;
    left:50%;
    bottom:10%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width:1430px;
    width:100%;
    margin:0 auto;
    padding:0px 15px;
}

.sec--01 .pagination .swiper-pagination-bullet {
    display: block;
    width:70px;
    height:2px;
    background-color:rgba(255,255,255,.3);
    border-radius:0px;
    margin:0px 10px 0px 0px;
    opacity:1;
}

.sec--01 .pagination .swiper-pagination-bullet span {
    display: inline-block;
    font-size:1.5rem;
    font-weight:700;
    color:rgba(255,255,255,.3);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.sec--01 .pagination .swiper-pagination-bullet-active {
    background-color:rgba(255,255,255,1);
}

.sec--01 .pagination .swiper-pagination-bullet-active span {
    color:rgba(255,255,255,1);
}

.sec--01 .pc {
    display: block;
}

.sec--01 .mo {
    display: none;
}

.sec--01 .background {
    position: relative;
    width:100%;
    height:0;
    padding-top:calc(1000/1920*100%);
    /* height:100vh; */
    overflow: hidden;
}

.sec--01 .background video,
.sec--01 .background img {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:100%;
    height:auto;
    object-fit: cover;
}

@media screen and (max-width:1200px) {
    .sec--01 {
        width:100%;
        /* height: 100%; */
        /* height:100vh; */
        padding:0px;
    }
    
    .sec--01 .visual {
        height: fit-content;
    }
    
    
    .sec--01 .pagination {
        bottom:6%;
    }

    .sec--01 .pagination .swiper-pagination-bullet span {
        font-size:1.4rem;
    }
}
@media screen and (max-width:992px) {
    .sec--01 .pc {
        display: none;
    }

    .sec--01 .mo {
        display: block;
    }

    .sec--01 .pagination .swiper-pagination-bullet {
        width:60px;
    }

    .sec--01 .background {
        padding-top: calc(1240/992*100%);
        /* padding-top:100%; */
    }
}
@media screen and (max-width:768px) {
    .sec--01 .pagination {
        bottom:5%;
    }

    .sec--01 .pagination .swiper-pagination-bullet span {
        -webkit-transform: translateY(-26px);
        transform: translateY(-26px);
    }
}
@media screen and (max-width:576px) {
    .sec--01 .pagination {
        bottom:4%;
    }

    .sec--01 .pagination .swiper-pagination-bullet {
        width:40px;
    }

    .sec--01 .pagination .swiper-pagination-bullet span {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
    }
}


/* Intro */
.sec--02 {
    position: relative;
    background-color: #f5f5f5;
    overflow:hidden;
}

.sec--02::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/en/img/main/sec02_bg.png') no-repeat center / cover;
    transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
    transform-origin: top;
    transform: scale(1.1);
    opacity: 0;
}

.sec--02 .din {
    display: flex;
    position: relative;
    z-index:1;
}

.sec--02 .lt {
    width:800px;
}

.sec--02 .rt {
    width:calc(100% - 800px);
    padding-left:20px;
}

.sec--02 .subtit {
    font-family: 'Montserrat', sans-serif;
    font-size:2.8rem;
    font-weight:700;
    line-height: 1;
    color:#0068b7;
    margin-bottom:18px;
}

.sec--02 .tit {
    position: relative;
    font-size:5.4rem;
    font-weight:700;
    color:#191919;
}

.sec--02 .tit::after {
    content:"";
    display: block;
    position: absolute;
    top:50%;
    right:0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width:160px;
    height:1px;
    background-color: #808080;
}

.sec--02 .txt {
    margin:60px 0px 30px;
}

.sec--02 .txt .t01 {
    font-size:2rem;
    line-height:1.6;
    color:#191919;
}

.sec--02 .link {
    display:flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size:1.8rem;
    font-weight:700;
    color:#0068b7;
}

.sec--02 .link::after {
    content:"";
    display:inline-block;
    width:20px;
    height:14px;
    background:url('/en/img/main/sec04_arrow.png') no-repeat center;
    margin-left:10px;
}

.sec--02.aos-animate::before {
    transform: scale(1);
    opacity: 1;
}

@media screen and (max-width:1200px) {
    .sec--02 .lt {
        width:650px;
    }

    .sec--02 .rt {
        width:calc(100% - 650px);
    }

    .sec--02 .subtit {
        font-size:2.4rem;
    }

    .sec--02 .tit {
        font-size:4.2rem;
    }

    .sec--02 .tit::after {
        width:140px;
    }

    .sec--02 .txt .t01 {
        font-size:1.8rem;
    }

    .sec--02 .link {
        font-size:1.6rem;
    }
}
@media screen and (max-width:992px) {
    .sec--02 .din {
        flex-wrap: wrap;
    }

    .sec--02 .lt {
        width:100%;
    }

    .sec--02 .rt {
        width:100%;
        padding-left:0;
    }

    .sec--02 .subtit {
        margin-bottom:12px;
    }

    .sec--02 .tit::after {
        display: none;
    }

    .sec--02 .txt {
        margin:24px 0px;
    }
}
@media screen and (max-width:768px) {
    .sec--02 .subtit {
        font-size:2rem;
        margin-bottom:8px;
    }

    .sec--02 .tit {
        font-size:3.2rem;
    }

    .sec--02 .txt {
        margin:18px 0px;
    }

    .sec--02 .txt .t01 {
        font-size:1.6rem;
    }

    .sec--02 .link {
        font-size:1.5rem;
    }
}
@media screen and (max-width:576px) {
    .sec--02::before {
        background-position: center left -250px;
    }

    .sec--02 .subtit {
        font-size:1.8rem;
        margin-bottom:4px;
    }

    .sec--02 .tit {
        font-size:2.6rem;
    }

    .sec--02 .txt {
        margin:12px 0px;
    }

    .sec--02 .txt .t01 {
        font-size:1.5rem;
    }

    .sec--02 .link {
        font-size:1.4rem;
    }
}


/* Brand */
.sec--03 .top {
    margin-bottom:80px;
}

.sec--03 .sec-tit {
    margin-bottom:40px;
}

.sec--03 .sec_pc {
    display:block;
}

.sec--03 .sec_mo {
    display: none;
}

.sec--03 .list {
    display: flex;
    flex-wrap: wrap;
    margin:-40px -14px
}

.sec--03 .list li {
    flex:1 1 33.33%;
    max-width:33.33%;
    padding:40px 14px;
}

.sec--03 .thumb {
    position: relative;
    width:100%;
    height:0;
    padding-top: calc(448/448*100%);
    border:1px solid #a0a0a0;
    overflow: hidden;
    cursor: pointer;
}

.sec--03 .thumb::before {
    content:"";
    display: block;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity:0;
    -webkit-transition:opacity 1s ease;
    transition:opacity 1s ease;
}

.sec--03 .thumb--01::before {
    background-image: url('/en/img/main/sec03_img01.png');
}

.sec--03 .thumb--02::before {
    background-image: url('/en/img/main/sec03_img02.png');
}

.sec--03 .thumb--03::before {
    background-image: url('/en/img/main/sec03_img03.png');
}

.sec--03 .thumb--04::before {
    background-image: url('/en/img/main/sec03_img04.png');
}

.sec--03 .thumb--05::before {
    background-image: url('/en/img/main/sec03_img05.png');
}

.sec--03 .thumb--06::before {
    background-image: url('/en/img/main/sec03_img06.png');
}

/* .sec--03 .thumb::after {
    content:"";
    display: block;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    background-color: #191919;
    border-radius:50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition:all 1s ease;
    transition:all 1s ease;
} */

.sec--03 .thumb-img {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width:100%;
    height:100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition:background-image 1s ease .1s;
    transition:background-image 1s ease .1s;
}

.sec--03 .txt {
    text-align: center;
    padding-top:40px;
}

.sec--03 .txt .t01 {
    font-size:1.8rem;
    line-height:1.5;
    color:#191919;
}

.sec--03 .txt .t01 b {
    font-weight:700;
}

.sec--03 .swiper-container {
    height:100%;
}

.sec--03 .swiper-wrapper {
    height:100%;
}

.sec--03 .swiper-slide {
    height:100%;
    overflow: hidden;
}

.sec--03 .pagination {
    display: flex;
    justify-content: center;
    margin-top:18px;
}

.sec--03 .pagination .swiper-pagination-bullet {
    width:6px;
    height:6px;
    margin:0px 3px;
}

.sec--03 .pagination .swiper-pagination-bullet-active {
    background-color: #0068b7;
}

@media screen and (min-width:1201px) {

    .sec--03 .list li:hover .thumb::before {
        opacity:1;
    }

    /* .sec--03 .list li:hover .thumb::after {
        -webkit-transform: scale(2);
        transform: scale(2);
    } */

    .sec--03 .thumb-img--01 {
        background-image: url('/en/img/main/sec03_logo01.png');
    }

    .sec--03 .thumb-img--02 {
        background-image: url('/en/img/main/sec03_logo02.png');
    }

    .sec--03 .thumb-img--03 {
        background-image: url('/en/img/main/sec03_logo03.png');
    }

    .sec--03 .thumb-img--04 {
        background-image: url('/en/img/main/sec03_logo04.png');
    }

    .sec--03 .thumb-img--05 {
        background-image: url('/en/img/main/sec03_logo05.png');
    }

    .sec--03 .thumb-img--06 {
        background-image: url('/en/img/main/sec03_logo06.png');
    }

    .sec--03 .list li:hover .thumb-img {
        opacity:0;
    }

    /* .sec--03 .list li:hover .thumb-img--01 {
        background-image: url('/en/img/main/sec03_logo01--on.png');
    }

    .sec--03 .list li:hover .thumb-img--02 {
        background-image: url('/en/img/main/sec03_logo02--on.png');
    }

    .sec--03 .list li:hover .thumb-img--03 {
        background-image: url('/en/img/main/sec03_logo03--on.png');
    }

    .sec--03 .list li:hover .thumb-img--04 {
        background-image: url('/en/img/main/sec03_logo04--on.png');
    }

    .sec--03 .list li:hover .thumb-img--05 {
        background-image: url('/en/img/main/sec03_logo05--on.png');
    }

    .sec--03 .list li:hover .thumb-img--06 {
        background-image: url('/en/img/main/sec03_logo06--on.png');
    } */
}
@media screen and (max-width:1200px) {
    .sec--03 .top {
        margin-bottom:60px;
    }

    .sec--03 .sec-tit {
        margin-bottom:30px;
    }

    .sec--03 .list {
        margin:-30px -8px;
    }

    .sec--03 .list li {
        padding:30px 8px;
    }

    .sec--03 .thumb::before {
        opacity:1;
    }

    .sec--03 .thumb-img {
        opacity:0;
    }

    /* .sec--03 .thumb-img--01 {
        background-image: url('/en/img/main/sec03_logo01--on.png');
    }

    .sec--03 .thumb-img--02 {
        background-image: url('/en/img/main/sec03_logo02--on.png');
    }

    .sec--03 .thumb-img--03 {
        background-image: url('/en/img/main/sec03_logo03--on.png');
    }

    .sec--03 .thumb-img--04 {
        background-image: url('/en/img/main/sec03_logo04--on.png');
    }

    .sec--03 .thumb-img--05 {
        background-image: url('/en/img/main/sec03_logo05--on.png');
    }

    .sec--03 .thumb-img--06 {
        background-image: url('/en/img/main/sec03_logo06--on.png');
    } */


    .sec--03 .txt .t01 {
        font-size:1.6rem;
    }

    .sec--03 .txt {
        padding-top:30px;
    }
}
@media screen and (max-width:992px) {
    .sec--03 .top {
        margin-bottom:40px;
    }

    .sec--03 .sec-tit {
        margin-bottom:24px;
    }

    .sec--03 .list {
        margin:-24px -8px;
    }

    .sec--03 .list li {
        flex:1 1 50%;
        max-width:50%;
        padding:24px 8px;
    }

    .sec--03 .txt {
        padding-top:24px;
    }
}
@media screen and (max-width:768px) {
    .sec--03 .top {
        margin-bottom:30px;
    }

    .sec--03 .sec-tit {
        margin-bottom:18px;
    }

    .sec--03 .list {
        margin:-18px -4px;
    }

    .sec--03 .list li {
        flex:1 1 50%;
        max-width:50%;
        padding:18px 4px;
    }

    .sec--03 .txt {
        padding-top:18px;
    }

    .sec--03 .txt .t01 {
        font-size:1.5rem;
    }
}
@media screen and (max-width:576px) {
    .sec--03 .top {
        margin-bottom:24px;
    }

    .sec--03 .sec-tit {
        margin-bottom:12px;
    }

    .sec--03 .sec_pc {
        display:none;
    }

    .sec--03 .sec_mo {
        display:block;
    }

		.sec--03 .thumb--03::before {
			background-image: url('/en/img/main/sec03_img03_mo.png');
		}

    .sec--03 .txt {
        padding-top:12px;
    }

    .sec--03 .txt .t01 {
        font-size:1.4rem;
    }
}



/* News */
.sec--04 {
    background-color: #f5f5f5;
}

.sec--04 .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom:80px;
}

.sec--04 .top .link {
    display:flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size:1.8rem;
    font-weight:700;
    color:#0068b7;
}

.sec--04 .top .link::after {
    content:"";
    display:inline-block;
    width:20px;
    height:14px;
    background:url('/en/img/main/sec04_arrow.png') no-repeat center;
    margin-left:10px;
}

.sec--04 .layer-inner {
    position: relative;
}

.sec--04 .layer-inner .swiper-container {
    height:100%;
}

.sec--04 .layer-inner .swiper-wrppaer {
    height:100%;
}

.sec--04 .layer-inner .swiper-slide {
    height:100%;
    overflow: hidden;
}

.sec--04 .layer-inner .prev,
.sec--04 .layer-inner .next {
    position: absolute;
    top:50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width:74px;
    height:74px;
    border:1px solid #808080;
    border-radius:50%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    -webkit-transition:all .3s;
    transition:all .3s;
}

.sec--04 .layer-inner .prev {
    left:-160px;
    background-image: url('/en/img/main/sec04_prev--off.png');
}

.sec--04 .layer-inner .next {
    right:-160px;
    background-image: url('/en/img/main/sec04_next--off.png');
}

.sec--04 .layer-inner .pagination {
    position: relative;
    width:100%;
    height:4px;
    border-radius:100px;
    background-color:#d2d2d2;
    margin-top:80px;
}

.sec--04 .layer-inner .pagination .swiper-pagination-progressbar-fill {
    background-color:#191919;
}

.sec--04 .layer-inner .box {
    position: relative;
    border-top:2px solid #808080;
    padding-top:30px;
}

.sec--04 .layer-inner .box::before {
    content:"";
    display: block;
    position: absolute;
    top:-2px;
    left:0;
    width:0;
    height:2px;
    background-color: #0068b7;
    -webkit-transition:all .5s ease-out;
    transition:all .5s ease-out;
}

.sec--04 .layer-inner .brand {
    display: inline-flex;
    align-items: center;
    padding:4px 8px;
    background-color:#0068b7;
    border-radius:5px;
}

.sec--04 .layer-inner .brand span {
    display: inline-block;
    font-size:1.8rem;
    font-weight:700;
    line-height:1;
    color:#fff;
}

.sec--04 .layer-inner .title {
    width:100%;
    height:76px;
    font-size:2.4rem;
    font-weight:700;
    line-height:1.6;
    color:#191919;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin:24px 0px 44px;
}

.sec--04 .layer-inner .thumb {
    display: block;
    position: relative;
    width:100%;
    height:0;
    padding-top:calc(298/448*100%);
    overflow: hidden;
}

.sec--04 .layer-inner .thumb-img {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%,-50%) scale(1);
    width:100%;
    height:100%;
    background-size:cover;
    background-repeat:no-repeat;
    background-position: center;
    -webkit-transition:all .5s ease-out;
    transition:all .5s ease-out;
}

.sec--04 .layer-inner .data {
    font-size:1.8rem;
    line-height:1;
    color:#808080;
    margin-top:30px;
}

@media screen and (min-width:1201px) {
    .sec--04 .layer-inner .prev:hover {
        border-color:#000;
        background-color: #000;
        background-image: url('/en/img/main/sec04_prev--on.png');
    }

    .sec--04 .layer-inner .next:hover {
        border-color:#000;
        background-color: #000;
        background-image: url('/en/img/main/sec04_next--on.png');
    }

    .sec--04 .layer-inner .box:hover::before {
        width:100%;
    }

    .sec--04 .layer-inner .box:hover .thumb-img {
        -webkit-transform: translate(-50%,-50%) scale(1.05);
        transform: translate(-50%,-50%) scale(1.05);
    }
}
@media screen and (max-width:1536px) {
    .sec--04 .layer-inner .prev,
    .sec--04 .layer-inner .next {
        display: none;
    }
}
@media screen and (max-width:1200px) {
    .sec--04 .top {
        margin-bottom:60px;
    }

    .sec--04 .top .link {
        font-size: 1.6rem;
    }

    .sec--04 .layer-inner .brand span {
        font-size:1.6rem;
    }

    .sec--04 .layer-inner .title {
        height:64px;
        font-size:2rem;
        margin:18px 0px 34px;
    }

    .sec--04 .layer-inner .data {
        font-size:1.6rem;
        margin-top:24px;
    }

    .sec--04 .layer-inner .pagination {
        margin-top:60px;
    }
}
@media screen and (max-width:992px) {
    .sec--04 .top {
        margin-bottom:40px;
    }

    .sec--04 .layer-inner .pagination {
        margin-top:40px;
    }

    .sec--04 .layer-inner .box {
        padding-top:24px;
    }
}
@media screen and (max-width:768px) {
    .sec--04 .top {
        margin-bottom:30px;
    }

    .sec--04 .top .link {
        font-size: 1.5rem;
    }

    .sec--04 .layer-inner .pagination {
        height:3px;
        margin-top:30px;
    }

    .sec--04 .layer-inner .box {
        padding-top:18px;
    }

    .sec--04 .layer-inner .brand {
        padding:3px 6px 4px;
    }

    .sec--04 .layer-inner .brand span {
        font-size:1.5rem;
    }

    .sec--04 .layer-inner .title {
        height:52px;
        font-size:1.8rem;
        line-height:1.4;
        margin:12px 0px 28px;
    }

    .sec--04 .layer-inner .data {
        font-size:1.5rem;
        margin-top:18px;
    }
}
@media screen and (max-width:576px) {
    .sec--04 .top {
        margin-bottom:24px;
    }

    .sec--04 .top .link {
        font-size: 1.4rem;
    }

    .sec--04 .layer-inner .swiper-container {
        overflow: visible;
    }

    .sec--04 .layer-inner .swiper-slide {
        opacity:0.4;
        -webkit-transition:opacity 0.3s;
        transition:opacity 0.3s;
    }

    .sec--04 .layer-inner .swiper-slide-active {
        opacity:1;
    }

    .sec--04 .layer-inner .pagination {
        height:2px;
        margin-top:24px;
    }

    .sec--04 .layer-inner .box {
        padding-top:14px;
    }

    .sec--04 .layer-inner .brand span {
        font-size:1.4rem;
    }

    .sec--04 .layer-inner .title {
        height:46px;
        font-size:1.6rem;
        margin:8px 0px 20px;
    }

    .sec--04 .layer-inner .data {
        font-size:1.4rem;
        margin-top:14px;
    }
}


/* Contact */
.sec--05 .din {
    display: flex;
    position: relative;
}

.sec--05 .lt {
    width:calc(100% - 330px);
    padding:70px 120px;
    background-color: #f5f5f5;
}

.sec--05 .rt {
    position: absolute;
    top:0;
    right:0;
    width:330px;
    height:100%;
    padding:50px;
    background-color: #d9d9d9;
    -webkit-transition:all .35s ease-out;
    transition:all .35s ease-out;
}

.sec--05 .sec-tit {
    margin-bottom:40px;
}

.sec--05 .link {
    display: block;
    width:100%;
    height:100%;
    position: relative;
}

.sec--05 .link::after {
    content:"";
    display: block;
    position: absolute;
    right:0;
    bottom:0;
    width:101px;
    height:94px;
    background:url('/en/img/main/sec05_icon--off.png') no-repeat center;
}

.sec--05 .txt {
    font-size:2.4rem;
    font-weight:700;
    line-height:1;
    color:#191919;
    margin-bottom:40px;
    -webkit-transition:all .35s ease-out;
    transition:all .35s ease-out;
}

.sec--05 .arrow {
    display: block;
    width:49px;
    height:14px;
    background:url('/en/img/main/sec05_arrow--off.png') no-repeat center;
    -webkit-transition:all .35s ease-out;
    transition:all .35s ease-out;
}

@media screen and (min-width:1201px) {
    .sec--05 .rt:hover {
        background-color:#191919;
    }

    .sec--05 .rt:hover .link::after {
        background-image: url('/en/img/main/sec05_icon--on.png');
    }

    .sec--05 .rt:hover .txt {
        color:#fff;
    }

    .sec--05 .rt:hover .arrow {
        background-image: url('/en/img/main/sec05_arrow--on.png');
        -webkit-transform: translateX(15px);
        transform: translateX(15px);
    }
}
@media screen and (max-width:1200px) {
    .sec--05 .lt {
        width: calc(100% - 300px);
        padding:70px 80px;
    }

    .sec--05 .rt {
        width:300px;
        padding:38px;
    }

    .sec--05 .sec-tit {
        margin-bottom:30px;
    }

    .sec--05 .link::after {
        background-size:auto 84px;
    }

    .sec--05 .txt {
        font-size:2rem;
        margin-bottom:30px;
    }

}
@media screen and (max-width:992px) {
    .sec--05 .lt {
        padding:50px 80px;
    }

    .sec--05 .rt {
        padding:32px;
    }

    .sec--05 .sec-tit {
        margin-bottom:24px;
    }

    .sec--05 .txt {
        margin-bottom:24px;
    }
}
@media screen and (max-width:768px) {
    .sec--05 .din {
        flex-wrap: wrap;
    }

    .sec--05 .lt {
        width:100%;
        padding:38px 26px;
    }

    .sec--05 .rt {
        position: relative;
        top:unset;
        right:unset;
        width:100%;
        padding:26px;
    }

    .sec--05 .sec-tit {
        margin-bottom:18px;
    }

    .sec--05 .link::after {
        width:52px;
        height:48px;
        background-size:auto 48px;
    }

    .sec--05 .txt {
        font-size:1.8rem;
        margin-bottom:18px;
    }

    .sec--05 .arrow {
        width:39px;
        background-size:39px auto;
    }
}
@media screen and (max-width:576px) {
    .sec--05 .lt {
        padding:26px 20px;
    }

    .sec--05 .rt {
        padding:20px;
    }

    .sec--05 .link::after {
        width:42px;
        height:40px;
        background-size:auto 40px;
    }

    .sec--05 .sec-tit {
        margin-bottom:12px;
    }

    .sec--05 .txt {
        font-size:1.6rem;
        margin-bottom:12px;
    }
}



/* Popup */

#popup {
    position: relative;
}

.popup-layer {
    z-index: 10000;
    position: absolute;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
    animation: popup-fade .65s ease-in-out .35s forwards;
    opacity: 0;
    max-width:800px;
}

@keyframes popup-fade {
    0% { opacity: 0;
        -webkit-transform: translateY(25px);
        -ms-transform: translateY(25px);
        transform: translateY(25px); }
    100% { opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0); }
}
.popup-layer__body {
    background: #fff;
}

.popup-layer__body img {
    display: block;
    margin: 0 auto;
    border: none;
    max-width: 100%;
}

.popup-layer__foot {
    background: #424242;
}

.popup-layer__foot ul {
    display:flex;
    flex-wrap: wrap;
}

.popup-layer__foot li {
    width:50%;
    padding:10px;
}

.popup-layer__foot li:first-child {
    padding-right:0;
}

.popup-layer__foot li:last-child {
    text-align: right;
}

.popup-layer__foot button {
    background-color: transparent;
    border:0px;
}

.popup-layer__foot span {
    font-size:15px;
    /* font-size: 1.5rem; */
    color: #fff;
    cursor: pointer;
    transition:all 0.3s ease;
}

.popup-layer__foot label:hover span { opacity: .7; }

/* .popup-layer-foot { background: #424242; }
.popup-layer-foot span { font-size: 15px; color: #fff; }
.popup-layer-foot label:hover span { opacity: .7; }
.popup-layer-foot li:first-child { padding-right: 0; }
.popup-layer-foot li:last-child { text-align: right; } */


@media (max-width: 1024px){
    /* .popup-layer { z-index: 999; } */
    .popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
}
@media (max-width: 768px){

    .popup-layer {
        width:calc(100% - 10px);
    }

    .popup-layer img {
        max-width: none;
        width:100%;
        height: auto !important;
    }
    .popup-layer-foot span { font-size: 14px; }

}
@media (max-width: 375px){
    .popup-layer-foot li { width: 100%; }
    .popup-layer-foot li:last-child { text-align: left; }
}




