@charset "UTF-8";

.qa_box {
    position: relative;
    background: url('../../img/common/pc_bg.png') no-repeat top center / cover;
    overflow-y: hidden;
    z-index: 1;
}
.qa_box::before,
.qa_box::after {
    content: '';
    position: absolute;
    width: 45vw;
    height: 100%;
    z-index: -1;
}
.qa_box::before {
    top: -25%;
    left: 0;
    background: url(../../img/common/pc_sec_back01.png) no-repeat center center / contain;
}
.qa_box::after {
    bottom: -40%;
    right: 0;
    background: url(../../img/common/pc_sec_back02.png) no-repeat center center / contain;
}
.qa_box .items {
    padding-bottom: 75px;
}
.qa_box .item:not(:last-child) {
    padding-bottom: 30px;
}
.qa_box .q_contents {
    position: relative;
    background-color: var(--color_bk);
    display: flex;
    align-items: center;
    padding: 20px 30px;
    padding-left: 103px;
    border-radius: 10px;
    line-height: 1.5;
    z-index: 1;
    transition: all .5s;
}
.qa_box .q_contents::before {
    content: 'Q';
    position: absolute;
    font-weight: bold;
    text-align: center;
    top: 49%;
    left: 36px;
    font-size: 25px;
    transform: translateY(-50%);
    font-family: 'Lato', sans-serif;
}
.qa_box .q_contents::after {
    content: '';
    position: absolute;
    width: 53px;
    height: 53px;
    background-color: var(--color_wt);
    border-radius: 50%;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: -1;
}
.qa_box .q_contents.radius {
    border-radius: 10px 10px 0 0;
}
.qa_box .q_txt {
    color: var(--color_wt);
    font-size: 24px;
}
.qa_box .q_icon {
    position: relative;
    width: 24px;
    height: 24px;
    margin-left: auto;
}
.qa_box .q_icon.is-open::after {
    top: 0;
    left: 0;
    transform: rotate(90deg) translateY(-50%);
}
.qa_box .q_icon::before,
.qa_box .q_icon::after {
    content: '';
    position: absolute;
    background-color: var(--color_wt);
}
.qa_box .q_icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.qa_box .q_icon::after {
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s;
}
.qa_box .q_icon:hover {
    cursor: pointer;
}
.qa_box .a_contents {
    background-color: var(--color_wt);
    padding: 30px 45px;
    border-radius: 0 0 10px 10px;
    display: none;
}
.qa_box .a_contents a {
    color: var(--color1);
}
.qa_box .btn a {
    max-width: 50%;
}
@media screen and (max-width: 1229px) {
    .qa_box .q_contents {
        padding-left: 93px;
    }
    .qa_box .q_contents::before {
        left: 34px;
        font-size: 18px;
    }
    .qa_box .q_contents::after {
        width: 43px;
        height: 43px;
    }
    .qa_box .q_txt {
        font-size: 18px;
        width: calc(100% - 39px);
    }
}
@media screen and (max-width: 767px) {
    .qa_box .items {
        padding-bottom: 45px;
    }
    .qa_box .item:not(:last-child) {
        padding-bottom: 15px;
    }
    .qa_box .q_contents {
        padding: 10px;
        padding-left: 57px;
    }
    .qa_box .q_contents::before {
        left: 24px;
        top: 48%;
        font-size: 16px;
    }
    .qa_box .q_contents::after {
        width: 32px;
        height: 32px;
        left: 15px;
    }
    .qa_box .q_icon {
        width: 16px;
        height: 16px;
    }
    .qa_box .q_txt {
        font-size: 16px;
        width: calc(100% - 24px);
    }
    .qa_box .a_contents {
        padding: 15px;
    }
    .qa_box .btn a {
        max-width: 100%;
    }
}