@charset "Shift_JIS";

/* advantage Style */
.sec-title {
    text-align: center;
    font-size: 30px;
    line-height: 180%;
    font-weight: 600;
    margin-bottom: 30px;
}

.sec-comment {
    text-align: center;
    font-size: 16px;
    line-height: 240%;
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    .sec-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .sec-comment {
        font-size: 100%;
    }
}

#feature {
    margin-top: 114px;
}

.block-aspect {
    max-width: 980px;
    margin: 100px auto 0;
    gap: 60px 0;
}

.block-aspect-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 0;
}

.block-aspect-item .img {
    width: 50%;
}

.block-aspect-item .txt {
    padding-right: 10%;
    width: 50%;
}

.block-aspect-item:nth-of-type(even) .img {
    order: 1;
}

.block-aspect-item:nth-of-type(even) .txt {
    order: 2;
    padding-right: 0;
    padding-left: 10%;
}

.block-aspect-item .txt .title {
    font-size: 32px;
    line-height: 160%;
    font-weight: 600;
    text-align: left;
    margin-bottom: 66px;
}

.block-aspect-item .txt .sub-title {
    font-size: 20px;
    line-height: 140%;
    font-weight: 600;
    text-align: left;
    position: relative;
    margin-bottom: 30px;
    padding-left: 18px;
}

.block-aspect-item .txt .sub-title:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d9d9d9;
    position: absolute;
    top: 10px;
    left: 0;
}

.block-aspect-item .txt .comment {
    font-size: 15px;
    line-height: 200%;
}

/*==== mobile スマフォ横?用css ===*/
@media screen and (max-width: 768px) {
    .block-aspect-item .txt .title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .block-aspect-item .txt .sub-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px) {
    #feature {
        margin-top: 60px;
    }
    .block-aspect {
        margin: 50px auto 0;
        gap: 40px 0;
    }
    .block-aspect-item .img,
    .block-aspect-item .txt{
        width: 100%;
    }
    .block-aspect-item .img,
    .block-aspect-item:nth-of-type(even) .img{
        order: 1;
    }
    .block-aspect-item .txt,
    .block-aspect-item:nth-of-type(even) .txt{
        order: 2;
        padding: 0;
    }
}