.wrap {
    padding: 118px 40px 0px;
}

.button-white {
    line-height: 1.5;
    color: #4B5D92;
}

.single-main {
    width: 100%;
}

.single-cont {
    display: flex;
    gap: 60px;
    margin-top: 43px;
}

.read-sentence {
    color: #4B5D92;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 52px;
}

.h1-pseudo {
    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-pseudo::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%);
}

.single-article {
    padding-bottom: 50px;
}

.single-title::after {
    content: "";
    border-bottom: 2px solid #4B5D92;
    margin-top: 16px;
    width: 100%;
    display: block;
}

.single-info {
    display: flex;
    gap: 23px;
    align-items: center;
    margin-bottom: 22px;
}

.single-date {
    font-size: 12px;
    line-height: 2.75;
    color: #4A4A4A;
}

.single-category-link {
    font-size: 12px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: #4B5D92;
    color: #fff89F !important;
    font-weight: 500;
    line-height: 1;
}

button {}

/* ==================================================
   記事本文全体
================================================== */

.single-content,
.editor-styles-wrapper {
    /* 本文全体の指定 */
    font-size: 16px;
    line-height: 2;
    color: #4A4A4A;
    font-family: "Noto Sans JP", sans-serif;
}


/* ==================================================
   見出し
================================================== */

/* 記事本文では通常使用しない */
.single-content h1,
.single-title,
.editor-styles-wrapper h1 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
    margin: 0 0 18px;
    color: #4B5D92;
}

/* 大見出し */
.single-content h2,
.editor-styles-wrapper h2 {
    font-family: "Zen Maru Gothic", sans-serif;
    text-align: left;
    color: #4B5D92;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    line-height: 1.15;
    padding: 22px 27px;
    width: 100%;
    background-color: #FDDCE0;
    border-radius: 20px;
    margin: 63px 0 35px;
    letter-spacing: 0.05em;
}

.single-content h2::before {
    content: unset;
}

/* 中見出し */
.single-content h3,
.editor-styles-wrapper h3 {
    border-left: 8px #F88A95 solid;
    padding-left: 19px;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 20px;
    font-weight: bold;
    position: relative;
    line-height: 1.6;
    width: 100%;
    margin: 50px 0 39px;
    letter-spacing: 0.1em;
}

/* 小見出し */
.single-content h4,
.editor-styles-wrapper h4 {
    border-left: 4px #4B5D92 solid;
    padding-left: 23px;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    line-height: 1.55;
    width: 100%;
    margin: 60px 0 51px;
    letter-spacing: 0.1em;
}

.single-content h5,
.editor-styles-wrapper h5 {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4B5D92;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    line-height: 1.5;
    width: 100%;
    margin: 35px 0 34px;
    letter-spacing: 0.1em;
}

.single-content h6,
.editor-styles-wrapper h6 {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    line-height: 1.5;
    width: 100%;
    margin: 32px 0 26px;
    letter-spacing: 0.1em;
}


/* ==================================================
   段落・文章
================================================== */

.single-content p,
.editor-styles-wrapper p {
    margin-bottom: 28px;
}

/* ==================================================
   箇条書き・番号付きリスト
================================================== */

/* ========================================
   番号付きリスト ol
======================================== */

.single-content ol,
.editor-styles-wrapper ol {
    counter-reset: list-counter;
    list-style: none;
    margin: 28px 0;
    padding-left: 0;
}

.single-content ol>li,
.editor-styles-wrapper ol>li {
    counter-increment: list-counter;
    position: relative;
    margin-bottom: 12px;
    padding-left: 42px;
    line-height: 1.75;
}

/* 丸数字部分 */
.single-content ol>li::before,
.editor-styles-wrapper 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;
}


/* ========================================
   箇条書きリスト ul
======================================== */

.single-content ul,
.editor-styles-wrapper ul {
    margin: 28px 0;
    padding-left: 24px;
}

.single-content ul>li,
.editor-styles-wrapper ul>li {
    margin-bottom: 10px;
    line-height: 1.75;
    list-style: disc;
}

/* ●の色だけ変更 */
.single-content ul>li::marker,
.editor-styles-wrapper ul>li::marker {
    color: #4B5D92;
}


/* ==================================================
   画像
================================================== */

.single-content .wp-block-image,
.editor-styles-wrapper .wp-block-image {
    margin-bottom: 44px;
}

.single-content .wp-block-gallery,
.editor-styles-wrapper .wp-block-gallery {
    --wp--style--gallery-gap-default: 21px !important;
    --gallery-block--gutter-size: 21px !important;
    --wp--style--unstable-gallery-gap: 21px !important;

    gap: 21px !important;
    margin-bottom: 44px;
}

/* ==================================================
   表
================================================== */

.single-content thead,
.editor-styles-wrapper thead {
    border-bottom: unset !important;
}

.single-content th,
.editor-styles-wrapper th {
    border: 1px solid #C4CBDF !important;
    padding: 14px 21px !important;
}

.single-content td,
.editor-styles-wrapper td {
    border: 1px solid #C4CBDF !important;
    padding: 14px 21px !important;
    text-align: center;
}

.single-content tr td:first-child,
.editor-styles-wrapper tr td:first-child {
    background-color: #F2FAFF;
    color: #4B5D92;
    font-weight: 500;
    text-align: start;
}

.single-navigation-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 0px;
    border-top: 1px #4B5D92 solid;
    border-bottom: 1px #4B5D92 solid;
    font-size: 14px;
    line-height: 1.5;
}

.single-navigation-inner>div {
    flex: 1;
    width: 100%;
}

.single-navigation-inner a {
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.single-navigation-prev a::before {
    content: "";
    border-bottom: 1px solid;
    border-left: 1px solid;
    position: relative;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    display: inline-block;
}

.single-navigation-next a::after {
    content: "";
    border-top: 1px solid;
    border-right: 1px solid;
    position: relative;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    display: inline-block;
}

.single-navigation-prev .single-navigation-title {
    margin-left: 30px;
}

.single-navigation-next .single-navigation-link {
    justify-content: end;
}

.single-navigation-next .single-navigation-title {
    margin-right: 30px;
}

.single-navigation-inner a:hover {
    color: #F88A95;
}

.password-form {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    color: #4B5D92;
}

.password-form h3 {
    font-size: 24px;
    font-weight: 500;
    font-family: "Zen Maru Gothic", sans-serif;
}

form {
    margin-top: 10px;
}

input {
    height: 40px;
}

@media screen and (max-width: 1023px) {
    .single-cont {
        gap: 30px;
    }
}

@media screen and (max-width: 767px) {

    .wrap {
        padding: 130px 28px 0px;
    }

    .single-cont {
        gap: 89px;
        margin-top: 26px;
        flex-wrap: wrap;
    }

    .password-form {
        text-align: center;
        font-size: 16px;
        line-height: 1.5;
        color: #4B5D92;
    }

    .password-form h3 {
        font-size: 20px;
        font-weight: 500;
        font-family: "Zen Maru Gothic", sans-serif;
    }


    input {
        height: 40px;
        
    }


    button{
        margin-top: 10px !important;
    }
    .read-sentence {
        font-size: 14px;
        text-align: left;
        margin-bottom: 38px;
    }

    .h1-pseudo {
        font-size: 30px;
        margin: 100px auto 64px;
        line-height: 1.2;
    }

    .h1-pseudo::before {
        background-image: url("../images/h1_sp.svg");
        width: 373px;
        height: 92px;
        top: -110px;
    }

    .single-info {
        display: flex;
        gap: 23px;
        align-items: center;
        margin-bottom: 22px;
    }

    .single-date {
        font-size: 12px;
        line-height: 2.75;
        color: #4A4A4A;
    }

    .single-category-link {
        font-size: 12px;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 999px;
        background: #4B5D92;
        color: #fff89F !important;
        font-weight: 500;
        line-height: 1;
    }

    /* ==================================================
   記事本文全体
================================================== */

    .single-content,
    .editor-styles-wrapper {
        /* 本文全体の指定 */
        font-size: 16px;
        line-height: 1.75;
        color: #4A4A4A;
        font-family: "Noto Sans JP", sans-serif;
    }


    /* ==================================================
   見出し
================================================== */

    /* 記事本文では通常使用しない */
    .single-content h1,
    .single-title,
    .editor-styles-wrapper h1 {
        font-size: 18px;
        line-height: 1.44;
        margin: 0 0 28px;
    }

    /* 大見出し */
    .single-content h2,
    .editor-styles-wrapper h2 {
        font-size: 20px;
        line-height: 1.4;
        padding: 8px 12px;
        width: 100%;
        border-radius: 12px;
        margin: 45px 0 34px;
        letter-spacing: 0.05em;
    }

    .single-content h2::before {
        content: unset;
    }

    /* 中見出し */
    .single-content h3,
    .editor-styles-wrapper h3 {
        border-left: 4px #F88A95 solid;
        padding-left: 14px;
        font-size: 20px;
        font-weight: bold;
        position: relative;
        line-height: 1.4;
        width: 100%;
        margin: 50px 0 39px;
        letter-spacing: 0.05em;
    }

    /* 小見出し */
    .single-content h4,
    .editor-styles-wrapper h4 {
        border-left: 2px #4B5D92 solid;
        padding-left: 14px;
        font-weight: bold;
        position: relative;
        line-height: 1.33;
        margin: 54px 0 31px;
        letter-spacing: 0.05em;
    }

    .single-content h5,
    .editor-styles-wrapper h5 {
        margin: 51px 0 32px;
        letter-spacing: 0.05em;
    }

    .single-content h6,
    .editor-styles-wrapper h6 {
        margin: 50px 0 29px;
        letter-spacing: 0.05em;
    }


    /* ==================================================
   段落・文章
================================================== */

    .single-content p,
    .editor-styles-wrapper p {
        margin-bottom: 24px;
    }

    /* ==================================================
   箇条書き・番号付きリスト
================================================== */

    /* ========================================
   番号付きリスト ol
======================================== */

    .single-content ol,
    .editor-styles-wrapper ol {
        counter-reset: list-counter;
        list-style: none;
        margin: 24px 0;
        padding-left: 0;
    }

    .single-content ol>li,
    .editor-styles-wrapper ol>li {
        counter-increment: list-counter;
        position: relative;
        margin-bottom: 14px;
        padding-left: 30px;
    }

    /* 丸数字部分 */
    .single-content ol>li::before,
    .editor-styles-wrapper 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
======================================== */

    .single-content ul,
    .editor-styles-wrapper ul {
        margin: 24px 0;
        padding-left: 24px;
    }

    .single-content ul>li,
    .editor-styles-wrapper ul>li {
        margin-bottom: 14px;
        list-style: disc;
    }

    /* ●の色だけ変更 */
    .single-content ul>li::marker,
    .editor-styles-wrapper ul>li::marker {
        color: #4B5D92;
    }


    /* ==================================================
    画像
    ================================================== */



    .single-content .wp-block-gallery.has-nested-images {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 22px;
    }

    .single-content .wp-block-gallery.has-nested-images figure.wp-block-image {
        width: 100% !important;
        max-width: 100% !important;
        flex-basis: 100% !important;
        margin: 0;
    }

    .single-content .wp-block-gallery.has-nested-images figure.wp-block-image img {
        width: 100%;
        height: auto;
    }


    /* ==================================================
   表
================================================== */

    .single-content .wp-block-table table,
    .single-content .wp-block-table tbody,
    .single-content .wp-block-table tr {
        display: block;
        width: 100%;
    }

    .single-content .wp-block-table th,
    .single-content .wp-block-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: start;
        padding: 10px 15px;
    }

    .single-content .wp-block-table table {
        border-bottom: 1px solid #C4CBDF;
    }

    .single-content .wp-block-table th,
    .single-content .wp-block-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: start;
        padding: 10px 15px;
        border: none !important;
        border-top: 1px solid #C4CBDF !important;
        border-left: 1px solid #C4CBDF !important;
        border-right: 1px solid #C4CBDF !important;
    }

    .single-content .wp-block-table tr td:first-child {
        width: 100%;
    }

    .single-navigation-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0px;
        padding: 0px;
        border-top: 1px #4B5D92 solid;
        border-bottom: 1px #4B5D92 solid;
        font-size: 14px;
        line-height: 1.5;
        flex-direction: column;
    }

    .single-navigation-inner>div+div {
        border-top: 1px solid #4B5D92;
    }

    .single-navigation-inner a {
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
    }

    .single-navigation-prev a::before {
        content: "";
        border-bottom: 1px solid;
        border-left: 1px solid;
        position: relative;
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
        display: inline-block;
    }

    .single-navigation-next a::after {
        content: "";
        border-top: 1px solid;
        border-right: 1px solid;
        position: relative;
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
        display: inline-block;
    }

    .single-navigation-prev .single-navigation-title {
        margin-left: 21.5px;
        padding: 20px 0;
    }

    .single-navigation-next .single-navigation-title {
        margin-right: 21.5px;
        padding: 20px 0;
    }

    .single-navigation-inner a:hover {
        color: #F88A95;
    }

}