@charset "utf-8";

.qa_link {
    margin-bottom: 40px;
    padding: 16px;
    border-radius: 9px;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

.qa_link ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style-type: none;
}

.qa_link ul li {
    display: flex;
    align-items: center;
    width: calc(33.33% - 6px);
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    background-color: #fff;
    line-height: 1.4;
}

.qa_link ul li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 12px 20px 12px 12px;
    color: #333;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.qa_link ul li:nth-last-of-type(n+4) {
    margin-bottom: 10px;
}

.qa_link ul li a:hover {
    background-color: #eff6ff;
}

.qa_link ul li a::before {
    content: "";
    display: inline-block;
    vertical-align: -0.1em;
    width: 1em;
    height: 1em;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path fill="%23bdcfe0" d="M0 384.662V127.338c0-17.818 21.543-26.741 34.142-14.142l128.662 128.662c7.81 7.81 7.81 20.474 0 28.284L34.142 398.804C21.543 411.404 0 402.48 0 384.662z" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.qa_list dt {
    position: relative;
    margin: 0 0 24px 0;
    padding: 24px 24px 24px 64px;
    border: 1px solid #f2f2f2;
    border-radius: 9px;
    background-color: #f8f8f8;
}

.qa_list dt::before {
    position: absolute;
    top: 24px;
    left: 24px;
    color: #0f2d86;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    font-family: "Inter", sans-serif;
    content: "Q";
}

.qa_list dd {
    position: relative;
    margin: 0 0 48px 0;
    padding: 0 24px 0 64px;
}

.qa_list dd::before {
    position: absolute;
    top: 0;
    left: 24px;
    color: #ccc;
    font-weight: 600;
    font-size: 24px;
    line-height: 1;
    font-family: "Inter", sans-serif;
    content: "A";
}

.qa_list p:not(:last-of-type) {
    margin-bottom: 1em;
}

.qa_list ul, .qa_list table {
    margin-top: 1em;
}

.text_list {
    list-style-type: none;
}

.indent li {
    margin-left: 1em;
    text-indent: -1em;
}

.note {
    font-size: 12px;
}

.qa_tbl {
    border-collapse: collapse;
}

.qa_tbl thead th {
    border-bottom: 1px solid #ccc;
    background-color: #f8f8f8;
}

.qa_tbl tbody th {
    font-weight: normal;
}

.qa_tbl tbody td {
    text-align: right;
}

.qa_tbl th, .qa_tbl td {
    padding: 8px 12px;
    border: 1px solid #ccc;
}

.qa_flow {
    padding: 16px;
    border: 1px solid #f2f2f2;
    border-radius: 9px;
    list-style-type: none;
}

.qa_flow li:not(:last-of-type)::after {
    content: "";
    display: block;
    vertical-align: -0.1em;
    width: 1em;
    height: 1em;
    margin: 1.2em auto;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23ccc" d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

#qa_ag {
    margin-top: -75px;
    padding-top: 75px;
}

@media screen and (max-width: 600px) {
    .qa_link ul li {
        width: calc(50% - 4px);
    }

    .qa_link ul li:nth-last-of-type(n+3) {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px) {
    .qa_link {
        padding: 12px;
    }

    .qa_link ul li {
        font-size: 13px;
    }

    .qa_link ul li:nth-last-of-type(n+3) {
        margin-bottom: 8px;
    }
}