@charset "UTF-8";
/*----------------------------------------------------
    Introduction
----------------------------------------------------*/

/* Sec01
---------------------------*/
#sec01 {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

#sec01 .btn_link_01 {
    padding-top: 2rem;
}

@media screen and (min-width:768px) and (max-width:991px) {
    #sec01 {
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width:767px) {
    #sec01 {
        padding-top: 0;
        padding-bottom: 4rem;
    }
}

/* Swiper
---------------------------*/
/* .swiper-slide.swiper-slide-prev a img {
    opacity: 0;
} */
.swiper-slide.swiper-slide-visible.swiper-slide-active a img {
    opacity: 1;
}

.swiper-slide a img {
    opacity: 0;
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
}

.swiper-button-next.swiper-button-disabled {
    display: none;
}

.swiper-button-prev.swiper-button-disabled {
    display: none;
}

.swiper_wrap {
    height: 600px;
    width: 800px;
    overflow: hidden;
    background-color: #f6f6f6;
    /* padding: 3rem 0; */
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
}

.slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.swiper {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.swiper-main .swiper-slide a {
    opacity: 1;
}

.swiper-thumbnail .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-main {
    height: 80%;
    width: 100%;
}

.swiper-thumbnail {
    margin-bottom: 3rem;
}

.swiper-thumbnail .swiper-slide {
    width: calc(100% / 3);
    height: 388px;
    opacity: 0.4;
    cursor: pointer;
}

.swiper_wrap .swiper-slide {
    /* width: 800px;
    height: 600px; */
    width: 100%;
    height: 600px;
    clip: rect(0px, 360px, 360px, 0px);
    transform: scale(0.5);
}


.swiper-thumbnail .swiper-slide:first-child:last-child {
    display: none;
}

.swiper-thumbnail .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    top: 30% !important;
    --swiper-navigation-color: #1d2087;
}

.swiper-button-prev {
    margin-left: 3%;
}

.swiper-button-next {
    margin-right: 3%;
}

@media screen and (max-width:767px) {
    .swiper_wrap {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .swiper-main .swiper-slide img {
        width: 100%;
    }

    .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        display: none;
    }

    .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after {
        display: none;
    }
}

/* Sec02
---------------------------*/
#sec02 {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

#sec02 .ttl_main_01 {
    margin-bottom: 0;
}

@media screen and (min-width:768px) and (max-width:991px) {
    #sec02 {
        padding-bottom: 4rem;
    }
}

@media screen and (max-width:767px) {
    #sec02 {
        padding-bottom: 3rem;
    }
}

/* category_btn
---------------------------*/
.category_btn {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.category_btn li {
    margin-right: 1rem;
}

.category_btn li:last-child {
    margin-right: 0;
}

.category_btn li a {
    border: 1px solid #1d2087;
    display: inline-block;
    color: #1d2087;
    background-color: #fff;
    padding: .6rem 1rem;
    transition: 0.5s ease-in-out;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    border-radius: 40% 0%;
}

.category_btn .active a,
.category_btn a:hover {
    color: #fff;
    background-color: #1d2087;
    opacity: 1;
}

.category_btn a:hover {
    cursor: pointer;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .category_btn {
        margin-bottom: 0;
    }
}

@media screen and (max-width:767px) {
    .category_btn {
        display: block;
        margin-bottom: 0;
    }

    .category_btn li a {
        padding: 0.4rem 0.8rem;
        margin-right: .6rem;
        margin-bottom: 1rem;
        font-size: 14px;
        display: 50%;
        float: left;
    }

    .category_btn li:last-child {
        margin-right: 0;
    }
}