@charset "utf-8";

.reqarea {
    background-color: #ececec;
    margin-block: 20px;
    padding: 20px 5px;
}

/* =====================================================
#　acd-label
===================================================== */
.acd-label {
    display: block;
    background-color: #dddddd;
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    margin: auto;
    cursor: pointer;
    position: relative;
}

/* =====================================================
#　openclose
===================================================== */
.openclose {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 11px;
    font-weight: bold;
    color: #333;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    width: 2.5rem;
    height: 2.8rem;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
}

.openclose::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #333;
    width: 1.5rem;
    height: 2px;
    top: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.openclose::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #333;
    width: 2px;
    height: 1.5rem;
    top: 40%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* =====================================================
#　doc_wrap
===================================================== */
.doc_wrap {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 20px auto;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.08));
}

.doc_box2 {
    width: calc(100% / 4 - 23px);
    background-color: #fff;
    margin: 10px 0 0;
    border: solid 1px #ccc;
}

.box_set {
    width: 60%;
}

.box_set_2 {
    width: 45%;
}

.doc_box2.active {
    border: solid 2px #318be5;
}

.doc_box2.invisible {
    visibility: hidden;
    margin: 0;
}

.doc_box2>label {
    padding: 15px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    border: solid 2px transparent;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.doc_box2>label>* {
    width: 100%;
}

.doc_box2>label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: solid 1px #ccc;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: -10px;
}

.doc_box2>label.active {
    background-color: #e0edf6;
}

.doc_box2>label.active::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: solid 1px #318be5;
    border-radius: 3px;
    background-color: #91c4ff;
    position: absolute;
    top: -10px;
    left: -10px;
}

.doc_box2>label.active::after {
    content: "";
    display: block;
    width: 6px;
    height: 13px;
    border-right: solid 3px #fff;
    border-bottom: solid 3px #fff;
    position: absolute;
    top: -10px;
    left: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.doc_box2>label>span {
    line-height: 1.3;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.doc_box2>label>span.central {
    height: 3.5rem;
}

.doc_box2>label img {
    width: 100%;
}

.doc_box2 input[type="text"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
}


/* =====================================================
#　acd-content
===================================================== */
.acd-content {
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: 0.5s;
    visibility: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.acd-check:checked+.doc_wrap>.acd-label>.openclose::after {
    opacity: 0;
}

.acd-check:checked+.doc_wrap>.acd-content {
    height: auto;
    opacity: 1;
    padding: 10px;
    visibility: visible;
}


/* =====================================================
#　cart
===================================================== */
#cart {
    border: solid 1px #00A9C9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 20px;
    width: 90%;
    max-width: 700px;
    margin: 20px auto 30px;
}

#cart>p {
    font-weight: bold;
    border-bottom: solid 1px #00A9C9;
    color: #000;
}

#cart ul {
    list-style: decimal;
    list-style-position: inside;
    padding: 10px 0;
}

#cart li {
    line-height: 1.3;
    padding: 7px 0;
}



/* レスポンシブ */
@media screen and (max-width: 767px) {

    .doc_box2 {
        width: calc(100% / 2 - 15px);
    }

    .box_set {
        width: 100%;
    }

    .doc_box2>label {
        padding: 15px 5px;
    }

    .doc_box2>label>span {
        font-size: 12px;
    }

    .doc_box2>label>span.central {
        height: 6rem;
    }

    .doc_box2>label img {
        width: 100%;
    }

    .box_set>label img {
        width: 90%;
    }

    .doc_wrap {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 20px 10px;
    }

    .acd-label {
        font-size: 16px;
        padding: 10px 15px;
    }

    .acd-content {
        padding: 0;
    }

    .acd-check:checked+.doc_wrap>.acd-content {
        padding: 15px 0 0;
    }

    .box_set_2 {
        width: 100%;
    }
}