@charset "utf-8";

/*==========================
works
==========================*/
.works_main {
    margin-top: 70px;
    padding: var(--contentPadding);
    text-transform: capitalize;
}

.works_icon {
    padding-top: 24px;
}

.works_icon span {
    font-size: 1.4rem;
    padding: 3px 16px;
    border: #333, solid, 1px;
    border-radius: 20px;
}

.works_title {
    border-bottom: #333, solid, 1px;
    font-size: 2.4rem;
    margin-top: 10px;
    line-height: 1;
}

.works_img {
    margin-top: 20px;
}

.works_item {
    margin-top: 30px;
}

.siteUrl {
    text-transform: none;
}

.comps {
    margin-top: 80px;
}

.works_item dt {
    font-weight: 700;
}

.works_item dd {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 10px;
}

.btn {
    margin-top: 40px;
    display: flex;
    justify-content: space-between
}

.btn_before,
.btn_after {
    font-size: 1.4rem;
    border: #333, solid, 1px;
    border-radius: 24px;
    position: relative;
    vertical-align: middle;
}

.btn_before {
    padding: 1px 14px 1px 22px;
}

.btn_after {
    padding: 1px 22px 1px 14px;
}

.btn_before::before {
    content: "";
    position: absolute;
    top: 50%;
    /* 縦軸をセンタリングする */
    left: 0;
    transform: translateY(-50%);
    /* 縦軸をセンタリングする */
    border: 5px solid transparent;
    border-right: 8px solid #555;
}

.btn_after::after {
    content: "";
    position: absolute;
    top: 50%;
    /* 縦軸をセンタリングする */
    right: 0;
    transform: translateY(-50%);
    /* 縦軸をセンタリングする */
    border: 5px solid transparent;
    border-left: 8px solid #555;
}

@media screen and (min-width:769px) {
    .works_wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 70px;
        margin-bottom: 20px;
    }

    .comps {
        display: flex;
        gap: 46px;
    }

    .works_main {
        padding: 0 12.5%;
        max-width: 1200px;
        margin: 70px auto 0;
    }

    .works_icon {
        padding-top: 30px;
    }

    .works_title {
        font-size: 3.0rem;
    }

    .works_img {
        margin-top: 30px;
        max-width: 520px;
    }

}

/* pc 769px */