@charset "utf-8";

/*------------------------------------------------------------
------------------------------------------------------------*/
.main {
    padding-top: 200px;
    border-radius: 0 0 40px 40px;
    background: #fff;
}

.main .section01 {
    padding: 0 80px 118px;
}

.main .section01 .inner {
    display: flex;
}

.main .section01 .inner .titleBox {
    padding: 8px 40px 0 0;
    width: 33.64%;
    box-sizing: border-box;
    line-height: 1.2;
}

.main .section01 .inner .titleBox .title {
    margin-bottom: 47px;
    font-family: 'SourceHanSerifCNSB';
    font-size: 64px;
}

.main .section01 .inner .titleBox .text {
    white-space: pre-line;
}

.main .section01 .inner .swiperBox {
    min-width: 1px;
    flex: 1;
}

.main .section01 .inner .swiperBox .swiper-slide {
    display: flex;
}

.main .section01 .inner .swiperBox .photo {
    width: 60.45%;
}

.main .section01 .inner .swiperBox .photo img {
    width: 100%;
    height: 455px;
    display: block;
    object-fit: cover;
    border-radius: 40px;
}

.main .section01 .inner .swiperBox .textBox {
    margin-left: 40px;
    min-width: 1px;
    flex: 1;
}

.main .section01 .inner .swiperBox .textBox .date {
    font-size: 20px;
}

.main .section01 .inner .swiperBox .textBox .ttl {
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .section01 .inner .swiperBox .textBox .text {
    margin-bottom: 40px;
    opacity: 0.5;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main .section01 .inner .swiperBox .swiper-pagination {
    padding-left: 40px;
    width: auto;
    left: 60.45%;
    bottom: 0;
    display: flex;
}

.main .section01 .inner .swiperBox .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 16px 0 0;
    opacity: 0.2;
    background: #222;
}

.main .section01 .inner .swiperBox .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.main .section02 {
    padding: 0 80px 160px;
}

.main .section02 .inner {
    padding-top: 14px;
    border-top: 4px solid #000;
}

.main .section02 .inner .naviBox {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main .section02 .inner .naviBox .tabNavi {
    padding: 4px 2px;
    display: flex;
    justify-content: space-between;
    border-radius: 32px;
    background: #F6F6F6;
    backdrop-filter: blur(20px);
}

.main .section02 .inner .naviBox .tabNavi li {
    padding: 0 2px;
}

.main .section02 .inner .naviBox .tabNavi li a {
    width: 240px;
    display: block;
    color: rgba(34, 34, 34, 0.4);
    font-size: 20px;
    line-height: 64px;
    text-align: center;
    border-radius: 32px;
}

.main .section02 .inner .naviBox .tabNavi li a:hover,
.main .section02 .inner .naviBox .tabNavi li.on a {
    color: #fff;
    background: #222;
}

.main .section02 .inner .naviBox select {
    padding: 0 22px;
    width: 156px;
    height: 53px;
    font-size: 18px;
    line-height: 50px;
    border-radius: 40px;
    border: 1px solid rgba(34, 34, 34, 0.20);
    box-sizing: border-box;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff url("../images/common/arrow01.png") no-repeat right 24px center;
}

.main .section02 .inner .tabPanel {
    display: none;
}

.main .section02 .inner .tabPanel .list {
    margin: 0 -10px 20px;
    display: flex;
    flex-wrap: wrap;
}

.main .section02 .inner .tabPanel .list li {
    width: 25%;
    padding: 0 10px 20px;
    box-sizing: border-box;
}

.main .section02 .inner .tabPanel .list li a {
    display: block;
}

.main .section02 .inner .tabPanel .list li a .photo {
    margin-bottom: 22px;
    height: 320px;
    overflow: hidden;
    border-radius: 40px;
}

.main .section02 .inner .tabPanel .list li a .photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s;
}

.main .section02 .inner .tabPanel .list li a:hover .photo img {
    transform: scale(1.1);
}

.main .section02 .inner .tabPanel .list li a .name {
    margin-bottom: 48px;
    color: #111;
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main .section02 .inner .tabPanel .list li a .date {
    color: #999;
    background: url("../images/common/arrow13.png") no-repeat right center;
    background-size: 12px auto;
}

.main .section02 .inner .tabPanel .more a {
    display: flex;
    justify-content: center;
    color: #111;
    font-size: 20px;
    line-height: 60px;
    border: 1px solid #999;
    border-radius: 40px;
}

.main .section02 .inner .tabPanel .more a span {
    padding: 0 22px;
    background: url("../images/common/arrow14.png") no-repeat right center;
    background-size: 12px auto;
}

.main .section02 .inner .tabPanel .more a:hover {
    background: #222;
    color: #fff;
}

.main .section02 .inner .tabPanel .more a:hover span {
    background-image: url("../images/common/arrow14_on.png");
}

.enBody .main .productBox .topBox select {
    padding-right: 52px;
    width: auto;
    min-width: 156px;
}

@media all and (max-width: 1499px) {}

@media all and (max-width: 1399px) {}

@media all and (min-width: 768px) and (max-width: 1240px) {
    .main {
        padding-top: 200px;
    }

    .main .section01 {
        padding: 0 40px 80px;
    }

    .main .section01 .inner {
        display: block;
    }

    .main .section01 .inner .titleBox {
        padding: 0 0 84px;
        width: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main .section01 .inner .titleBox .title {
        margin: 0;
        font-size: 56px;
    }

    .main .section01 .inner .titleBox .text {
        font-size: 24px;
    }

    .main .section01 .inner .swiperBox .swiper-slide {
        display: block;
    }

    .main .section01 .inner .swiperBox .photo {
        margin-bottom: 44px;
        width: auto;
    }

    .main .section01 .inner .swiperBox .photo img {
        height: 434px;
        border-radius: 32px;
    }

    .main .section01 .inner .swiperBox .textBox {
        margin: 0;
        padding-bottom: 100px;
    }

    .main .section01 .inner .swiperBox .textBox .date {
        font-size: 28px;
    }

    .main .section01 .inner .swiperBox .textBox .ttl {
        margin-bottom: 32px;
        font-size: 40px;
    }

    .main .section01 .inner .swiperBox .textBox .text {
        margin-bottom: 72px;
        font-size: 28px;
    }

    .main .section01 .inner .swiperBox .swiper-pagination {
        padding: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        justify-content: center;
    }

    .main .section02 {
        padding: 0 40px 100px;
    }

    .main .section02 .inner .tabPanel .list li {
        width: 50%;
    }
    
    .enBody .main .section01 .inner .titleBox {
        display: block;
    }
    .enBody .main .section01 .inner .titleBox .title {
        margin-bottom: 20px;
    }

}

@media all and (min-width: 0) and (max-width: 767px) {
    .main {
        padding-top: 100px;
        border-radius: 0 0 16px 16px;
    }

    .main .section01 {
        padding: 0 20px 40px;
    }

    .main .section01 .inner {
        display: block;
    }

    .main .section01 .inner .titleBox {
        padding: 0 0 42px;
        width: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main .section01 .inner .titleBox .title {
        margin: 0;
        font-size: 28px;
    }

    .main .section01 .inner .titleBox .text {
        font-size: 12px;
    }

    .main .section01 .inner .swiperBox .swiper-slide {
        display: block;
    }

    .main .section01 .inner .swiperBox .photo {
        margin-bottom: 22px;
        width: auto;
    }

    .main .section01 .inner .swiperBox .photo img {
        height: 217px;
        border-radius: 16px;
    }

    .main .section01 .inner .swiperBox .textBox {
        margin: 0;
        padding-bottom: 50px;
    }

    .main .section01 .inner .swiperBox .textBox .date {
        font-size: 14px;
    }

    .main .section01 .inner .swiperBox .textBox .ttl {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .main .section01 .inner .swiperBox .textBox .text {
        margin-bottom: 36px;
        font-size: 14px;
    }

    .main .section01 .inner .swiperBox .swiper-pagination {
        padding: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        justify-content: center;
    }

    .main .section02 {
        padding: 0 20px 60px;
    }

    .main .section02 .inner {
        padding-top: 14px;
        border-width: 2px;
    }

    .main .section02 .inner .naviBox {
        margin-bottom: 24px;
    }

    .main .section02 .inner .naviBox .tabNavi li a {
        width: 88px;
        font-size: 14px;
        line-height: 33px;
    }

    .main .section02 .inner .naviBox select {
        padding: 0 15px;
        width: 96px;
        height: 38px;
        font-size: 12px;
        line-height: 36px;
        background-size: 9px auto;
        background-position: right 14px center;
    }

    .main .section02 .inner .tabPanel .list {
        margin: 0 -5px 20px;
    }

    .main .section02 .inner .tabPanel .list li {
        padding: 0 5px 10px;
        width: 50%;
    }

    .main .section02 .inner .tabPanel .list li a .photo {
        margin-bottom: 8px;
        height: 122px;
        border-radius: 16px;
    }

    .main .section02 .inner .tabPanel .list li a .name {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .main .section02 .inner .tabPanel .list li a .date {
        font-size: 12px;
        background-size: 9px auto;
    }

    .main .section02 .inner .tabPanel .more a {
        font-size: 14px;
        line-height: 43px;
    }

    .main .section02 .inner .tabPanel .more a span {
        padding: 0 20px;
        background-size: 10px auto;
    }
    
    .enBody .main .section01 .inner .titleBox {
        display: block;
    }
    .enBody .main .section01 .inner .titleBox .title {
        margin-bottom: 10px;
    }
    .enBody .main .section02 .inner .naviBox .tabNavi li a {
        width: auto;
        padding: 0 7px;
    }
}

@media all and (min-width: 1241px) {}