@charset "UTF-8";

.tab_nav.info {
    grid-template-columns: 1fr 1fr 1fr;
}

.info_box {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.info_box>dl {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 10px;
    line-height: 27px;
    background: #fff;
    border-radius: 20px 0 20px 0;
    padding: 30px;
}

.info_flow {
    display: flex;
    flex-flow: column;
    gap: 35px;
    margin-bottom: 10px;
}

.info_flow>li {
    display: flex;
    justify-content: center;
    color: #0027B5;
    font-weight: 600;
    background: #eee;
    border-radius: 20px 0 20px 0;
    position: relative;
    padding: 10px;
}

.info_flow>li::after {
    content: "";
    width: 10px;
    height: 35px;
    background: #0027B5;
    position: absolute;
    bottom: -35px;
}

.info_flow>li:last-of-type::after {
    display: none;
}

.info_qa {
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.info_qa>dl {
    line-height: 27px;
    background: #fff;
    border-radius: 20px 0 20px 0;
    cursor: pointer;
    padding: 30px;
    transition: 0.3s;
}

.info_qa>dl:hover {
    opacity: 0.5;
}

.info_qa>dl.active {
    opacity: 1;
}

.info_qa>dl>dt {
    display: flex;
    align-items: center;
    color: #0027B5;
    font-weight: 600;
    position: relative;
}

.info_qa>dl>dt::before {
    content: "";
    width: 24px;
    height: 3px;
    background: #0027B5;
    position: absolute;
    right: 0;
}

.info_qa>dl>dt::after {
    content: "";
    width: 3px;
    height: 24px;
    background: #0027B5;
    position: absolute;
    right: 10px;
    transition: 0.3s;
}

.info_qa>dl.active>dt::after {
    transform: rotate(90deg);
    opacity: 0;
}

.info_qa>dl>dd {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.3s;
}

.info_qa>dl.active>dd {
    height: auto;
    opacity: 1;
    padding-top: 30px;
}

@media (max-width: 1024px) {
    .tab_nav.info {
        grid-template-columns: 1fr 1fr;
    }

    .info_box>dl {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .info_qa>dl {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .tab_nav.info {
        grid-template-columns: 1fr;
    }

    .info_qa>dl>dt {
        padding-right: 30px;
    }

}