/* pc/mobile */
.mobile{
    display: none;
}
@media screen and (max-width:550px) {
    .pc{display: none;}
    .mobile{display: block;}
}

.border{
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin: 5rem auto !important;
}

/* main */
main{
    padding: 5rem 10px !important;
}
.impor{
    width: 80%;
    margin: auto;
    background-color: #eee;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-sizing: border-box;
}
.impor>div{
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1rem;
}
.impor>div p{
    font-size: 1.5rem;
    font-weight: 700;
}
.impor>div img{
    width: 50px;
}
.impor>div span{
    color: red;
}

.impor>ul li{
    margin-bottom: 0.5rem;
}
.impor>ul li:last-child{
    margin-bottom: 0;
}
.more{
    font-size: 0.9rem;
    color: #555;
}
/* //main */

/* section */
section{
    margin: 100px auto !important;
}
.title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    margin-bottom: 3rem;
}
.title img{
    width: 100px;
}
.title p{
    font-size: 2rem;
    font-weight: 700;
    color: #23674e;
}

.left-b{
    width: 100%;
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.left-b01{
    background-image: url(../../img/section01-1.jpg);
}
.left-b02{
    background-image: url(../../img/section01-2.jpg);
}
.left-b03{
    background-image: url(../../img/section01-3.jpg);
}
.left-b04{
    background-image: url(../../img/section01-4.jpg);
}
.left-b05{
    background-image: url(../../img/section01-5.jpg);
}
.left-b06{
    background-image: url(../../img/section01-6.jpg);
}

.bus{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}
.bus h4{
    font-size: 2rem;
    color: #60ab82;
}
.right-b{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}
.right-b>ul{
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    background-color: #eee;
}
.right-b>ul li{
    font-size: 0.9rem;
}
.right-b>ul>li{
    margin-bottom: 1rem;
}
.right-b>ul>li:last-child{
    margin-bottom: 0;
}
/* //section */


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

    .bus {
        grid-template-columns: 1fr;
    }
    .left-b{
        height: 350px;
    }
    .right-b{
        gap: 1rem;
    }
    section {
        margin: 50px auto 100px !important;
    }
    .left-b{
        border-radius: 1rem;
    }
    .right-b>ul{
        border-radius: 1rem;
    }
    .bus h4{
        text-align: center;
        font-size: 2.5rem;
    }
}
@media screen and (max-width:550px) {
    .mobile{
        text-align: center;
    }
    .impor{
        width: 100%;
    }
    .title{
        flex-direction: column;
    }
    .title p{
        font-size: 1.7rem;
        line-height: 2.2rem;
    }
    .bus h4{
        font-size: 1.3rem;
    }
    .left-b{
        height: 200px;
        display: none;
    }
    .bg02{
        background-image: url(../../img/sub/bg02-m.jpg);
    }

    .impor>div{
        gap: 0.5rem;
        justify-content: center;
    }
    .impor>div img{
        width: 25px;
    }
    .impor>div p{
        font-size: 1.1rem;
    }
}
@media screen and (max-width:375px) {
    main{
        padding: 5rem 10px 2rem 10px !important;
    }

    .title p{
        font-size: 1.4rem;
        line-height: 1.6rem;
    }
    .title img{
        width: 50px;
    }
}