@charset "utf-8";

/*====================
Article header
=====================*/
.container--ASCT {
    background: url(../images/tokushou_background.jpg) no-repeat;
    max-width: 100%x;
    margin: 0 auto;
    width: 100%;
    background-size: cover;
    background-position-x: 30%;
}

.section--ASCT {
    display: flex;
    padding: 200px 13.8%;
    flex-direction: column;
    align-items: center;
    gap: 200px;
    align-self: stretch;
    font-size: 1.6rem;
    line-height: 1.5;
}

.title {
    display: flex;
    align-items: center;
    margin-top: 150px;
    font-size: 4rem;
}

.ASCT__container {
    font-family: "Zen Kaku Gothic New";
    line-height: 2;
}

.ASCT--list-warp {
    display: flex;
    width: 100%;
    height: min-content;
    align-items: center;
}

.box-beige {
    background: var(--primary-beige);
    display: flex;
    width: 30%;
    padding: 2%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    border-top: 0.5px solid var(--primary-black);
}

.box-white {
    background: var(--primary-white);
    display: flex;
    padding: 52px 21px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-top: 0.5px solid var(--primary-black);
}


/* common sp(599px以下） */
@media screen and (max-width: 599px) {

    .section--ASCT {
        padding: 0 4.2% 60px;
        gap: 60px;
    }
    
    .title {
        margin-top: 0;
        padding-top: 130px;
        font-size: 2.4rem;
    }
    
    .ASCT--list-warp {
        display: flex;
        width: 100%;
        height: min-content;
        min-height: 100%;
        padding: 0;
    }
    
    .box-beige {
        width: 134px;
    }
    
    .box-white {
        padding: 20px 10px;
    }
}
/* sp 599px */