@charset "UTF-8";
.c-wrap.is-verSP section + section {
    margin-top: 7em;
}
section h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    border-left: 5px solid #c3012f;
    padding: 0 0 0 20px;
    margin-bottom: 20px;
}
details {
    border: 1px solid #ccc;
}
details:not(:last-child) {
    margin-bottom: 10px;
}
/**
 * list-style: none; ←デフォルト三角削除（Chrome非対応）
 * cursor: pointer; ←カーソルをポインターに
**/
details summary {
    list-style: none;
    cursor: pointer;
    padding: 8px;
    background: #F7F7F7;
    font-size: 20px;
    font-weight: bold;
    color: #001f6b;
    display: flex;
    align-items: center;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
    display: none;
}
/**
 * Unicodeプラス「＋」'\ff0b'
**/
details summary::before {
    content: '\ff0b';
    margin-right: 20px;
    flex-shrink: 0;
    display: inline-block;
    width: 20px; /* アイコンの幅を固定 */
    text-align: center;
}
/**
 * アコーディオンがオープン時はマイナス「－」に変更
**/
details[open] summary::before {
    content:"\ff0d";
    margin-right: 20px;
}
details p {
    margin: 0;
    padding: 15px 15px 15px 50px;
    font-size: 18px;
}
details p+p {
    padding: 0 15px 15px 50px;
}
details ul {
    padding: 0 15px 15px 50px;
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}
details ul li {
    position: relative;
}
details ul li::after {
    position: absolute;
    content: "";
    border-top: 20px solid #001f6b;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    width: 0px;
    height: 0px;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: auto;
}
details ul li:last-child::after {
    display: none;
}
details ul img{
    width: 100%;
    /* box-shadow: 0px 1px 5px rgb(0 0 0 / 50%); */
    border: 1px solid #001f6b;
    /* border-radius: 10px; */
}
.faq-Q {
    padding: 15px 15px 15px 50px;
    position: relative;
}
.faq-Q span {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9;
    color: #001f6b;
    font-weight: bold;
}
.faq-A {
    padding: 0 15px 15px 50px;
    position: relative;
}
.faq-A span {
    position: absolute;
    top: 0;
    left: 20px;
    z-index: 9;
    color: #c3012f;
    font-weight: bold;
}
@media only screen and (max-width: 896px) {
    section h1 {
        font-size: 17px;
        line-height: 1.4;
        border-left: 3px solid #c3012f;
        padding: 0 0 0 12px;
        margin-bottom: 10px;
    }
    details summary {
        font-size: 16px;
    }
    details summary::before {
        margin-right: 10px;
    }
    details[open] summary::before {
        margin-right: 10px;
    }
    details p {
        padding: 10px;
        font-size: 14px;
    }
    details p+p {
        padding: 0 10px 10px;
    }
    details ul {
        padding: 0 10px 10px;
    }
    .faq-Q {
        padding: 10px 10px 10px 30px;
    }
    .faq-Q span {
        top: 10px;
        left: 10px;
    }
    .faq-A {
        padding: 0 10px 10px 30px;
    }
    .faq-A span {
        left: 10px;
    }
}
