/* service */
/* 共通 */
.pc {
    display: none;
}

.tb {
    display: none;
}

.sp {
    display: block;
    width: 100%;
}

.btn {
    width: 250px;
    display: block;
    color: #333;
    border: 1px solid #999;
    margin: 5px auto;
    padding: 10px 5%;
    text-decoration: none;
    text-align: center;
    font-weight: 300;
    font-size: 15px;
}

.btn:hover {
    border: 1px solid #000;
    text-decoration: none;
    color: #fff;
    background: #000;
    transition:  0.6s;
}

.detail {
    margin-top: 10px;
    text-align: center;
}

.service__contents_title {
    margin: 20px 0;
    text-align: center;
}

.sv__content01{
    margin-bottom: 60px;
    padding: 20px;
}

.sv__content02 {
    padding-top: 20px;
}

/* トップ */
.service__top {
    background: url(../images/pic-service-top-SP.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.service__categories_list {
    margin-top: 30px;
}

.service__categories_item {
    display: block;
    position: relative;
    color: #333;
    border-bottom:  1px solid #ccc;
    text-decoration: none;
}

.service__categories_item:nth-child(1) {
    border-top: 1px solid #ccc;
}

.service__categories_item::after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    color: #333;
    top: 40%;
    bottom: 0;
    right: 30px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

.service__categories_link {
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    color: #000;
}

/* SES */
.service__contents_ses {
    margin: 0 auto;
    width: 90%;
}

.service__contents_ses-group-description {
    border: 1px solid #ccc;
    text-align: center;
    box-shadow: 10px 20px 0px 0 #dcdcdc;
}

.service__contents_ses-title {
    padding: 20px;
}

.service__contents_ses_message {
    text-align: left;
}

/* アミューズメント */
.service__contents_am {
    margin: 0 auto;
    width: 90%;
}

.service__contents_am-group {
    border: 1px solid #ccc;
    box-shadow: 10px 20px 0px 0 #dcdcdc;
}

/* 自社サービス */
.service__contents_co {
    margin: 0 auto;
    width: 90%;
}

.service__contents_co-group {
    display: flex;
    flex-direction: column-reverse;
    border: 1px solid #ccc;
    box-shadow: 10px 20px 0px 0 #dcdcdc;
}

@media screen and (min-width:600px){
    .sp {
        display: none;
    }
    .pc {
        display: none;
    }

    .tb {
        display: block;
        width: 100%;
    }

    /* トップ */
    .service__top {
        background-image: url(../images/pic-service-top-TB.webp);
    }
}
@media screen and (min-width:1200px){
    /* service */
    /* 共通 */
    .sp {
        display: none;
    }

    .tb {
        display: none;
    }

    .pc {
        display: block;
    }

    .service__contents_title {
        margin: 60px;
        text-align: center;
    }

    .sv__content01 {
        margin-bottom: 0;
        margin-right: 35px;
    }

    .sv__content01:last-child {
        margin-right: 0;
    }

    .sv__content02 {
        padding: 60px;
    }

    .btn {
        padding: 10px 40px;
    }

    /* トップ */
    .service__top {
        background-image: url(../images/pic-service-top-PC.webp);
    }

    .service__categories {
        margin: 0 auto;
        width: 1200px;
    }

    .service__categories_list {
        display: flex;
        margin-top: 50px;
    }

    .service__categories_item {
        border: 1px solid #ccc;
        border-right: none;
        position: relative;
        padding: 0px;
        text-align: center;
        width: 50%;
    }

    .service__categories_item::after {
        top: 35%;
        right: 20px;
    }

    .service__categories_item:last-child {
        border-right: 1px solid #ccc;
    }

    .service__categories_item:hover::after {
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
    }

    .service__categories_link:hover {
        text-decoration: none;
        color: #fff;
        background: #000;
        transition:  0.6s;
    }

    /* SES */
    .service__contents_ses {
        width: 1200px;
        margin-bottom: 130px;
    }

    .service__contents_ses-group {
        display: flex;
        justify-content: space-between;
    }

    .ses__detail01 {
        margin-top: 50px;
    }

    /* アミューズメント */
    .service__contents_am {
        width: 1200px;
        margin-bottom: 130px;
    }

    .service__contents_am-group {
        display: flex;
        background: #fff;
    }

    /* 自社サービス */
    .service__contents_co {
        width: 1200px;
        margin-bottom: 130px;
    }

    .service__contents_co-group {
        flex-direction: row;
    }

    }
