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

/* Sec01
---------------------------*/
#sec01{
    padding-top: 2rem;
    padding-bottom: 6rem;
}
@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;
    }
}

/* Sec02
---------------------------*/
#sec02{
    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;
    }
}