@charset "UTF-8";
/* service tape_process CSS */
.sec-tape_process {
    container-type: inline-size;
    container-name: tape_process;
}

/* about */
.about-area{
    gap: 20px;
}
.has-border{
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.about-area .txt-area{
    flex: 1;
}
.about-area .img-area{
    width: 45%;
    max-width: 380px;
    border-radius: 5px;
    overflow: hidden;
}

.about-ttl{
    color: #ff5b00;
}


/* merit */
.tape-meritlist{
    gap: 15px;
}
.tape-meritlist>li{
    width: calc(33.3333% - 10px);
    background-color: #fff6cc;
    padding: 30px 10px 10px;
    border-radius: 10px;
    position: relative;
}
.tape-meritlist>li::before{
    font-family: "Font Awesome 5 Free";
    content: '\f058';
    color: #ff5b00;
    font-weight: 900;
    font-size: 36px;
    line-height: 36px;
    background-color: #fff;
    border-radius: 100px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.merit-txt{
    text-align: center;
    white-space: nowrap;
}

/* contact */
.contact-ttl{
    color: #ff5b00;
    width: fit-content;
    margin: 0 auto;
}
.contact-itemlist{
    background-color: var(--bg-page);
    border: 1px solid var(--color-border);
    padding: 20px 30px;
    border-radius: 10px;
    max-width: 300px;
    margin: 0 auto 30px;
}
.contact-itemlist>li{
    padding-left: 10px;
    margin-bottom: 5px;
    position: relative;
}
.contact-itemlist>li:last-of-type{
    margin-bottom: 0;
}
.contact-itemlist>li::before{
    content: "";
    display: block;
    background-color: var(--text-main);
    width: 5px;
    height: 5px;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.contact-note{
    width: fit-content;
    margin: 0 auto;
}

@container tape_process (max-width:630px){
    .tape-meritlist {
        gap: 20px 15px;
        justify-content: center;
    }
    .tape-meritlist>li {
        width: calc(50% - 7.5px);
    }
}

@container tape_process (max-width:550px){
    .about-area .txt-area {
        flex: auto;
    }
    .about-area .img-area {
        width: 100%;
        margin: 0 auto;
    }
}

@container tape_process (max-width:400px){
    .tape-meritlist>li {
        width: 100%;
        padding: 30px 15px 15px;
    }
    .merit-txt {
        font-size: 16px;
    }
    .contact-itemlist{
        max-width: none;
    }
}