main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 750px;
}
img {
    width: 100%;
}
h2 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 30px;
}
h3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 0;
    font-size: 22px;
    font-weight: 600;
    background: #555e87;
    color: #fff;
    border-radius: 2vw;
}
p {
    font-size: 18px;
    line-height: 1.5;
}
p > span {
    font-weight: 600;
}
.mtb30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.mb30 {
    margin-bottom: 30px;
}
.mt30 {
    margin-top: 30px;
}

.table {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.table li {
    width: 100%;
    font-size: 18px;
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.table li:not(:last-child) {
    margin-bottom: 10px;
}
.table li span {
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.table li span::after {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background: #000;
    margin: 0 10px;

}
.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-list li {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 20px;
}
.faq-list li span {
    display: block;
    width: 100%;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
}
.faq-list li a {
    color: #0067C0;
}


@media screen and (max-width: 580px) {
    .container {
        width: 100%;
        max-width: 580px;
    }
    h2 {
        font-size: 17px;
        box-sizing: border-box;
        padding: 0 2.5%;
    }
    h3 {
        width: 95%;
        margin: 0 auto;
        font-size: 20px;
        border-radius: 5vw;
    }
    p {
        box-sizing: border-box;
        padding: 0 2.5%;
        font-size: 14px;
    }
    .mtb30 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .mb30 {
        margin-bottom: 40px;
    }
    .mt30 {
        margin-top: 30px;
    }

    .table {
        width: 95%;
        margin: 0 auto;
    }
    .table li {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    .table li:not(:last-child) {
        margin-bottom: 15px;
    }
    .table li span {
        flex-direction: column;
        align-items: flex-start;
    }
    .table li span::after {
        width: 100%;
        height: 1px;
        margin: 5px 0px;

    }
    .table li:nth-child(5) span:last-child {
        margin-top: 15px;
    }
    .faq-list {
        width: 95%;
        margin: 0 auto;
    }
    .faq-list li {
        font-size: 14px;
    }
    .faq-list li span {
        font-size: 15px;
    }
}


/* アニメーション　css */
.under-in {
    opacity: 0;
    transform: translateY(50px); /* 下から浮かび上がる */
    transition: opacity 1s ease, transform 1s ease;
}
.under-in.visible {
    opacity: 1;
    transform: translateY(0); /* 最終位置に配置 */
}
.under-in.active {
    opacity: 1; /* 表示 */
    transform: translateY(0); /* 元の位置に移動 */
}