.breadcrump a {
    transition: color 0.3s ease;
}

.button-white {
    margin-top: 36px;
}

.img404 {
    display: block;
    margin-bottom: 15px;
    margin: 0 auto;
}

.wrap {
    padding: 118px 40px 0px;
}

iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

h1 {
    margin: 205px auto 110px;
    text-align: center;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 44px;
    font-weight: bold;
    position: relative;
    line-height: 0.75;
}

h1::before {
    content: "";
    background-image: url("../images/h1_pc.svg");
    background-repeat: no-repeat;
    position: absolute;
    width: 1552px;
    height: 232px;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
}

.page-inner-link {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 124px;
}

.page-inner-link a {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    width: 139px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 14px 0 12px;
    font-weight: 500;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.page-inner-link a::after {
    content: "";
    border-bottom: 1px solid;
    border-right: 1px solid;
    position: relative;
    width: 6px;
    height: 6px;
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    display: block;
    margin-top: 4px;
}

.page-inner-link a:hover {
    color: #ffffff;
    background-color: #4B5D92;
}


.read-sentence {
    color: #4B5D92;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 52px;
    letter-spacing: 0.05em;
}

.sentence_note {
    color: #F88A95;
    font-weight: bold;
}


.content-block {
    margin-bottom: 80px;
}

.content-block>p {
    line-height: 2;
}


.content-block.mb0 {
    margin-bottom: 0px;
}

.content-block:last-child {
    margin-bottom: 0px;
}

.content-block h3 {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    line-height: 1.15;
    padding: 22px 29px;
    width: 100%;
    background-color: #FDDCE0;
    border-radius: 20px;
    margin: 0 0 24px;
}

.content-block h4 {
    border-left: 4px #4B5D92 solid;
    padding-left: 17px;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    line-height: 1.55;
    width: 100%;
    margin: 36px 0 26px;
    letter-spacing: 0.1em;
}

/* ========================================
   番号付きリスト ol
======================================== */

.page-ol {
    counter-reset: list-counter;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.page-ol>li {
    counter-increment: list-counter;
    position: relative;
    margin-bottom: 12px;
    padding-left: 42px;
    line-height: 1.75;
}

/* 丸数字部分 */
.page-ol>li::before {
    content: counter(list-counter);
    position: absolute;
    top: 0.15em;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* 丸の背景色 */
    background-color: #4B5D92;
    /* 数字の文字色 */
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

.bold-blue {
    color: #4B5D92;
    margin-bottom: 9px;
    font-size: 20px;
    line-height: 2;
    font-weight: bold;
}


/* ========================================
   箇条書きリスト ul
======================================== */

.page-ul {
    margin: 0;
    padding-left: 24px;
}

.page-ul.mt28 {
    margin-top: 28px;
}

.page-ul.flex-box {
    display: flex;
    gap: 50px;
}

.page-ul>li {
    margin-bottom: 10px;
    line-height: 1.75;
    list-style: disc;
}

/* ●の色だけ変更 */
.page-ul>li::marker {
    color: #4B5D92;
}

/* ==================================================
   表
================================================== */
table {
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 18px;
}

thead {
    border-bottom: unset;
}

th {
    border: 1px solid #C4CBDF;
    padding: 14px 21px;
}

td {
    border: 1px solid #C4CBDF;
    padding: 14px 21px;
    text-align: center;
}

td.left {
    text-align: left;
}

tr td:first-child {
    background-color: #F2FAFF;
    color: #4B5D92;
    font-weight: 500;
    text-align: start;
    width: 220px;
}

.closed {
    display: block;
    margin: 0 auto;
    color: #ffffff;
    background-color: #E85382;
    font-size: 20px;
    font-weight: bold !important;
    line-height: 1.25;
    padding: 18px 30px;
    letter-spacing: 0.05em;
    border-radius: 100px;
    text-align: center;
    width: fit-content;
}

@media screen and (max-width: 767px) {

    .content-block {
        margin-bottom: 60px;
    }

    .content-block h3 {
        font-size: 20px;
        line-height: 1.3;
        padding: 10px 16px;
        width: 100%;
        background-color: #FDDCE0;
        border-radius: 12px;
        margin: 0 0 20px;
    }

    .content-block h4 {
        border-left: 2px #4B5D92 solid;
        padding-left: 11px;
        line-height: 1.25;
        margin: 26px 0 22px;
    }

    .wrap {
        padding: 120px 28px 0px;
    }

    h1 {
        font-size: 30px;
        margin: 100px auto 80px;
        line-height: 1.2;
    }

    h1.mb40 {
        margin-bottom: 40px;
    }

    h1::before {
        background-image: url("../images/h1_sp.svg");
        width: 373px;
        height: 92px;
        top: -110px;
    }

    iframe {
        width: 100%;
        height: 500px;
        border-radius: 0px;
    }

    .page-inner-link {
        flex-wrap: wrap;
        margin-bottom: 77px;
    }

    .read-sentence {
        font-size: 14px;
        text-align: left;
        margin-bottom: 38px;
    }

    .bold-blue {
        font-size: 18px;
        line-height: 1.75;

    }

    /* ==================================================
   箇条書き・番号付きリスト
================================================== */

    /* ========================================
   番号付きリスト ol
======================================== */

    .page-ol {
        counter-reset: list-counter;
        list-style: none;
        margin: 24px 0;
        padding-left: 0;
    }

    .page-ol>li {
        counter-increment: list-counter;
        position: relative;
        margin-bottom: 14px;
        padding-left: 30px;
    }

    /* 丸数字部分 */
    .page-ol>li::before {
        content: counter(list-counter);
        position: absolute;
        top: 0.15em;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        /* 丸の背景色 */
        background-color: #4B5D92;
        /* 数字の文字色 */
        color: #ffffff;
        font-size: 16px;
        line-height: 1.5;
    }


    /* ========================================
   箇条書きリスト ul
======================================== */

    .page-ul {
        margin: 0;
        padding-left: 24px;
    }

    .page-ul>li {
        margin-bottom: 14px;
        list-style: disc;
    }

    .page-ul>li:last-child {
        margin-bottom: 0px;
    }

    /* ●の色だけ変更 */
    .page-ul>li::marker {
        color: #4B5D92;
    }

    .page-ul.flex-box {
        display: block;
    }

    /* ==================================================
   表
================================================== */

    table,
    tbody,
    tr {
        display: block;
        width: 100%;
    }

    table {
        border-bottom: 1px solid #C4CBDF;
    }

    th,
    td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: start;
        padding: 10px 15px;
        border: none;
        border-top: 1px solid #C4CBDF;
        border-left: 1px solid #C4CBDF;
        border-right: 1px solid #C4CBDF;
    }

    tr td:first-child {
        width: 100%;
    }

    .closed {
        font-size: 16px;
        line-height: 1.5;
        padding: 10px 26.5px;
    }

}