body {
    margin-top: 100px;
    font-family: "Noto Sans JP", sans-serif;
}

ul,
li,
a,
p {
    padding: 0;
    margin: 0;
    text-decoration: none;
    color: #000;
    list-style: none;
    line-height: normal;
}

h1 {
    position: fixed;
    top: 8px;
    left: 0;
    z-index: 105;
    color: #ccc;
    font-size: 10px;
}

h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.pc_off {
    display: none !important;
}

/*--common--*/

.common_btn a {
    width: 286px;
    height: 50px;
    position: relative;
    display: grid;
    place-content: center;
    margin: 0 auto;
    color: #FD9915;
    border: 1px solid #FD9915;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 4px 4px 4px 0px #FD9915;
    transition-duration: .3s;
    font-size: 18px;
    font-weight: bold;

    &:hover {
        background-color: #FD9915;
        color: #fff;
        box-shadow: 0px 0px 0px 0px #FD9915;

        & img {
            filter: invert(96%) sepia(1%) saturate(7484%) hue-rotate(207deg) brightness(118%);
        }
    }

    & img {
        position: absolute;
        right: 20px;
        top: 13px;
        filter: invert(66%) sepia(75%) saturate(1873%) hue-rotate(348deg) brightness(99%);
    }
}

.pc_br {
    display: inline;
}

.sp_br {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc_br {
        display: none;
    }

    .sp_br {
        display: inline;
    }
}

/*--/common--*/

/*--header--*/
.c_header_wrap {
    width: 100%;
    background: #fff;
    height: 130px;
    position: fixed;
    top: 0;
    z-index: 100;

    &::after {
        position: absolute;
        top: 0;
        content: "";
        background: url(../../test/img/h_top.webp);
        width: 100%;
        height: 3px;
    }
}

.c_header_inner {
    width: 98%;
    margin: 15px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

    & .logo a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: #000;
        font-weight: bold;
        font-size: 14px;
        text-decoration: none;
    }
}


.h_right_top {
    flex-shrink: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;

    & .right .tel {
        display: flex;
        align-items: end;
        gap: 5px;
        font-size: 11px;
        color: #CFCFCF;
        margin-bottom: 10px;

        & img {
            height: 26px;
        }

        & span {
            font-size: 23px;
            font-weight: bold;
            color: #000;
        }

    }

    & .right .map {
        display: flex;
        gap: 10px;
        align-items: center;
        font-size: 13px;
        font-weight: bold;

        & img {
            height: 30px;
        }
    }

    & .left {
        display: flex;
        gap: 23px;
    }
}

.h_right_bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;

    & li a {
        font-size: 15px;
        font-weight: bold;
        color: #000;
        transition: color 0.2s;
    }

    & li a:hover {
        color: #FD9915;
    }
}

/*--/header--*/

/*--main--*/

.main_wrap {
    position: relative;
    height: 100vh;

    & .txt {
        width: 1100px;
        display: flex;
        margin: 0 auto;
        justify-content: right;
        padding: 220px 0;
        box-sizing: border-box;

        & img {
            height: 300px;
        }
    }
}

.main_imgBox {
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    z-index: -1;
}

.main_img {
    opacity: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 24s 0s infinite;
    animation: anime 24s 0s infinite;
}

.main_img:nth-of-type(2) {
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}

.main_img:nth-of-type(3) {
    -webkit-animation-delay: 16s;
    animation-delay: 16s;
}

@keyframes anime {
    0% {
        opacity: 0;
    }

    17% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale(1.1);
        z-index: 9;
    }

    100% {
        opacity: 0;
    }
}

/*--/main--*/

/*--nayami--*/

.nayami_wrap {
    background-color: #EFF0F1;
}

.nayami_inner {
    width: 1100px;
    margin: 0 auto;
    padding: 90px 0 0px;

    & h2 {
        font-size: 40px;
        font-family: "M PLUS 1p", sans-serif;
        font-weight: bold;
        color: #000;
        text-align: center;
        letter-spacing: 2px;

        & span {
            color: #00A0EA;
            border-bottom: 3px solid #00A0EA;
            padding-bottom: 5px;
        }
    }
}

.nayami_box {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    gap: 60px;

    & li {
        & .conts {
            width: 520px;
            height: 330px;

            position: relative;
            display: grid;
            place-content: center;
            border-radius: 25px;
            background-color: #fff;

            &::after {
                position: absolute;
                width: 55px;
                height: 33px;
                background: url(../../test/img/nayami_arrow.svg)no-repeat;
                content: "";
                bottom: -30px;
                left: 0;
                right: 0;
                margin: 0 auto;

            }

            & h3 {
                width: 220px;
                height: 45px;
                position: absolute;
                top: -18px;
                display: grid;
                place-content: center;
                color: #fff;
                font-size: 27px;
                font-family: "M PLUS 1p", sans-serif;
                background-color: #FD9914;
                border-radius: 5px;
                left: 0;
                right: 0;
                margin: 0 auto;
                font-weight: bold;
            }

            & p {
                display: flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 20px;
                font-family: "M PLUS 1p", sans-serif;

                &:last-child {
                    margin-bottom: 0;
                }

                & img {
                    height: 32px;
                }

                & span {
                    font-size: 22px;
                    font-weight: bold;
                    color: #000;
                }

            }

        }

        & .img {
            text-align: center;
            margin-top: 60px;
        }

    }
}

/*--/nayami--*/

/*--mirai--*/
.mirai_wrap {
    background: url("/wp-content/themes/kasai_top/img/mirai_back.png") no-repeat;
    background-size: cover;
    background-position: right bottom;
}

.mirai_inner {
    width: 1100px;
    margin: 0 auto;
    padding-top: 100px;

    & h2 {
        text-align: center;
        font-size: 35px;
        font-weight: bold;
        font-family: "M PLUS 1p", sans-serif;
        color: #000;
        position: relative;
        letter-spacing: 1px;

        & .border_mirai {
            padding-bottom: 10px;
            border-bottom: 3px solid #FD9914;
        }

        & .box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            font-weight: bold;
            background-color: #FD9914;
            color: #fff;
            border-radius: 5px;
            padding: 5px;
            margin: 0 5px 15px 0;
            vertical-align: middle;
        }

        & .color {
            color: #FD9914;
        }

        &::after {
            position: absolute;
            width: 60px;
            height: 60px;
            background: url(../../test/img/mirai_arrow.png) no-repeat;
            content: "";
            top: -80px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

    }

    & .flex {
        margin-top: 60px;


        & .txt {
            font-size: 15px;
            font-weight: 500;
            line-height: 2;
            letter-spacing: 1.3px;
            width: 650px;
            padding-bottom: 100px;
        }



    }

}

/*--/mirai--*/

/*--tuyomi--*/
.tuyomi_wrap {
    background-color: #fffdd9;
}

.tuyomi_inner {
    width: 1100px;
    margin: 0 auto;
    padding: 100px 0;

    & h2 {
        text-align: center;
        color: #000;
        font-size: 35px;
        font-weight: bold;
        font-family: "M PLUS 1p", sans-serif;
        letter-spacing: 1px;

        & .color {
            color: #FD9914;
        }

        & .dot {
            position: relative;
            display: inline-block;
            font-weight: bold;

            &::before {
                content: "";
                display: block;
                width: 10px;
                height: 10px;
                background: #00A0EA;
                border-radius: 50%;
                position: absolute;
                left: 50%;
                top: -16px;
                transform: translateX(-50%);
            }
        }
    }
}

.tuyomi_box {
    position: relative;
    margin: 90px auto 80px;
    width: 1080px;
    height: 780px;

    &::after {
        width: 500px;
        height: 500px;
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 210px;
        z-index: 0;
        background: transparent;
        border-radius: 50%;
        border: 8px solid #FFD600;
        box-sizing: border-box;
    }

    &::before {
        background: url(../../test/img/strong_logo.png) no-repeat;
        width: 220px;
        height: 100px;
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 390px;
        margin: 0 auto;
    }

    & li {
        width: 400px;
        height: 400px;
        border-radius: 100%;
        display: grid;
        place-content: center;
        z-index: 1;
        position: relative;

        & .img {
            height: 90px;
            width: 120px;
            margin: 0 auto;

            & img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        & .title {
            font-size: 25px;
            font-weight: bold;
            background-color: #fff;
            padding: 10px 20px;
            display: block;
            margin: 15px auto 0;
            box-sizing: border-box;
            width: 270px;
            border-radius: 5px;
        }

        & .title02 {
            font-size: 25px;
            font-weight: bold;
            background-color: #fff;
            padding: 10px 20px;
            display: block;
            margin: 5px auto 0;
            box-sizing: border-box;
            width: 270px;
            text-align: center;
            border-radius: 5px;
        }

        & .txt {
            font-size: 15px;
            font-weight: 500;
            text-align: center;
            color: #fff;
            line-height: 1.8;
            display: block;
            width: 275px;
            margin: 15px auto 0;
        }


    }

    & li:nth-child(1) {
        background-color: #FD9914;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: 0 auto;

        & .title {
            color: #FD9914;
        }
    }

    & li:nth-child(2) {
        background-color: #00A0EA;
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0 auto;

        & .title,
        & .title02 {
            color: #00A0EA;
        }
    }

    & li:nth-child(3) {
        background-color: #16C459;
        position: absolute;
        bottom: 0;
        right: 0;
        margin: 0 auto;

        & .title,
        & .title02 {
            color: #16C459;
        }

        & .title {
            width: 290px;
        }
    }

}



/*--/tuyomi--*/

/*--form--*/
.form_wrap {
    margin: 100px 0 80px;
}

.form_inner {
    width: 1100px;
    margin: 100px auto 0 auto;

    & .form_stl {
        text-align: center;
        color: #FD9915;
        font-weight: bold;
        font-size: 25px;
        font-family: "M PLUS 1p", sans-serif;
        display: block;
        margin-bottom: 15px;
    }

    & h2 {
        position: relative;
        font-size: 35px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 50px;
        padding-bottom: 20px;

        &::after {
            background: url(../../test/img/icon.png) no-repeat;
            content: "";
            position: absolute;
            bottom: -29px;
            width: 111px;
            height: 8px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }
    }

    & .form_txt {
        font-size: 16px;
        font-weight: 400;
        line-height: 2;
        text-align: center;
        display: block;
        margin-bottom: 100px;
        letter-spacing: 1.3px;
    }

    & .form_box {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 60px;
        margin: 0;
        padding: 0;

        li {
            position: relative;
            width: 450px;
            min-height: 270px;
            background: #fff;
            box-sizing: border-box;
            border-radius: 5px;
            padding: 100px 30px 50px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 5px solid transparent;
            transition: border-color 0.3s;

            &:nth-child(1) {
                border-color: #FD9914;
            }

            &:nth-child(2) {
                border-color: #6dcbe5;
            }

            h4 {
                position: absolute;
                top: -55px;
                left: 50%;
                transform: translateX(-50%);
                width: 200px;
                height: 130px;
                border-radius: 5px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 2;
                border: none;
                margin: 0;
                padding: 0;
                text-align: center;
            }

            &:nth-child(1) h4 {
                background: #FD9914;
                color: #fff;
            }

            &:nth-child(2) h4 {
                background: #6dcbe5;
                color: #fff;
            }

            p {
                font-size: 14px;
                line-height: 2;
                text-align: left;
                display: block;
                color: #222;
                border: none;
                padding: 0;
                border-radius: 0;
                font-family: "M PLUS 1p", sans-serif;
            }
        }
    }
}

.form_box li img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0 auto 20px auto;
    object-fit: contain;
}

.form_box li h4 .min {
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    vertical-align: baseline;
    font-weight: bold;
}

.form_box li h4 .title_1on1,
.form_box li h4 .title_1on2 {
    font-family: "M PLUS 1p", sans-serif;
    font-size: 30px;
    vertical-align: baseline;
    font-weight: bold;
    letter-spacing: 10px;
}

/*--/form--*/

/*--course--*/
.course_wrap {
    background-color: #eff0f1;
}

.course_inner {
    width: 1100px;
    margin: 0 auto;
    padding: 100px 0 150px;

    & h2 {
        position: relative;
        font-size: 40px;
        font-weight: bold;
        text-align: center;

        &::after {
            background: url(../../test/img/icon.png) no-repeat;
            content: "";
            position: absolute;
            bottom: -29px;
            width: 111px;
            height: 8px;
            left: 0;
            right: 0;
            margin: 0 auto;
        }
    }
}

.course_box {
    margin-top: 100px;

    & li {
        margin-bottom: 50px;
    }

    & li:nth-child(2) a .left h3 {
        background-color: #6dcbe5;
    }

    & li:last-child {
        margin-bottom: 0;

        & a .left h3 {
            background-color: #FF716A;
        }
    }

    & li a {
        display: flex;
        background-color: #fff;
        border-radius: 20px;
        box-sizing: border-box;
        overflow: hidden;
        align-items: center;
        height: 330px;

        & .left {
            width: 530px;
            box-sizing: border-box;
            display: grid;
            place-content: center;
            padding: 0 70px;

            & h3 {
                width: 405px;
                height: 60px;
                background-color: #FD9915;
                border-radius: 5px;
                color: #fff;
                font-size: 27px;
                font-weight: bold;
                display: grid;
                place-content: center;
                margin: 0 auto 15px;
            }

            & .txt {
                font-size: 14px;
                line-height: 2;
                display: block;
                margin-bottom: 15px;
            }

            & .btn {
                font-size: 14px;
                display: flex;
                justify-content: right;
                gap: 10px;
                align-items: center;
                color: #FD9915;

                & img {
                    filter: invert(66%) sepia(75%) saturate(1873%) hue-rotate(348deg) brightness(99%);
                }
            }


        }

        & .right {
            height: 100%;
            flex-grow: 1;

            & img {
                height: 100%;
                object-fit: cover;
                width: 100%;
            }
        }

    }
}

/*--/course--*/

/*--toku--*/
.toku_wrap {
    margin: 60px 0 50px;
}

.toku_inner {
    width: 1100px;
    margin: 0 auto;

    & h2 {
        text-align: center;
        font-size: 35px;
        font-weight: bold;
        font-family: "M PLUS 1p", sans-serif;
        color: #000;
        position: relative;
        letter-spacing: 1px;

        & .box {
            background-color: #00A0EA;
            color: #fff;
            padding: 5px;
            border-radius: 5px;
            margin: 0px 5px 10px 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            font-weight: bold;
        }

        & .maru {
            position: relative;

            &::after {
                width: 8px;
                height: 8px;
                border-radius: 100%;
                position: absolute;
                top: -15px;
                content: "";
                background-color: #00A0EA;
                left: 0;
                right: 0;
                margin: 0 auto;
            }
        }

    }

    & .txt {
        font-size: 15px;
        font-weight: 400;
        line-height: 2;
        text-align: center;
        display: block;
        margin: 45px 0 55px;
    }

}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;

    & li {
        width: 295px;
        height: 75px;
        display: grid;
        place-content: center;
        background-image: linear-gradient(345deg, rgba(240, 134, 34, 1) 49%, rgba(243, 149, 33, 1) 51%);

        & p {
            color: #fff;
            font-size: 18px;
            font-weight: bold;

            & span {
                font-size: 27px;
                color: #FFF005;
                font-weight: bold;
            }
        }

    }
}

/* --- 特典詳細エリア全体 --- */
.toku_syosai {
    margin: 35px auto;
    background-color: #FFFBB3;
    /* 薄い黄色の背景 */
    width: 930px;
    height: 360px;
    display: grid;
    place-content: center;
    /* 中央寄せ */
}

/* --- タイトル部分 --- */
.toku_syosai .title {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    display: inline-block;
    color: #000;
    font-family: "M PLUS 1p", sans-serif;
}

/* タイトルの左右に《 》を装飾として表示 */
.toku_syosai .title::before,
.toku_syosai .title::after {
    color: #FD9914;
    /* オレンジ色 */
    font-size: 40px;
    /* 大きめのサイズ */
    vertical-align: middle;
    font-weight: normal;
}

.toku_syosai .title::before {
    content: "《";
    margin-right: 30px;
}

.toku_syosai .title::after {
    content: "》";
    margin-left: 30px;
}

/* --- 特典アイテムのリスト --- */
.toku_syosai ul {
    display: flex;
    justify-content: center;
    height: 120px;
    gap: 40px;
    /* アイテム同士の間隔 */
}

/* --- 各特典アイテム --- */
.toku_syosai ul li {
    background-color: #fff;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    /* 丸い形 */
    display: grid;
    place-content: center;
    /* 中央寄せ */
}

/* アイコン画像部分 */
.toku_syosai ul li span {
    text-align: center;
    height: 40px;
    display: block;
}

.toku_syosai ul li span img {
    height: 100%;
    object-fit: contain;
}

/* 特典名テキスト */
.toku_syosai ul li p {
    font-size: 23px;
    font-weight: bold;
    color: #00A0EA;
    /* 青色 */
    text-align: center;
    line-height: 1.5;
}


/*--/toku--*/

/*--inq--*/
.inq_wrap {
    background-color: #FD9915;
    /* オレンジ背景 */
}

.inq_inner {
    margin: 0 auto;
    padding: 100px 0;
}

.inq_inner h2 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #FD9915;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.inq_inner h2 span {
    color: #FD9915;
}

/* --- 中身の中央寄せ・余白 --- */
.inq_inner .conts {
    width: 1080px;
    height: 570px;
    display: grid;
    place-content: center;
    background-color: #fff;
    margin: 0 auto 40px;
}

/* --- 説明文 --- */
.inq_inner .conts p {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    text-align: center;
    display: block;
    width: 700px;
    margin-bottom: 40px;
}

/* --- 問い合わせボタンのリスト --- */
.inq_inner .conts ul {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 700px;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
}

/* --- 各ボタン（li） --- */
.inq_inner .conts ul li {
    width: 258px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* --- LINEボタン（左端） --- */
.inq_inner .conts ul li:nth-child(1) {
    align-items: flex-start;
}

.inq_inner .conts ul li:nth-child(1) a {
    border: 2px solid #16C459;
    /* 緑色の枠 */
    color: #16C459;
}

/* --- 電話ボタン（中央） --- */
.inq_inner .conts ul li:nth-child(2) {
    margin-bottom: 20px;
    /* メールボタンとの間隔 */
}

.inq_inner .conts ul li:nth-child(2) a {
    border: none;
    background: none;
    box-shadow: none;
    color: #000;
    font-size: 25px;
    font-weight: bold;
    height: 110px;
    padding-top: 25px;
    margin: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
}

.inq_inner .conts ul li:nth-child(2) a p {
    font-size: 10px;
    font-weight: bold;
    color: #0090ea;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* --- メールボタン（右端） --- */
.inq_inner .conts ul li:nth-child(3) a {
    border: 2px solid #FD9915;
    /* オレンジ色の枠 */
    color: #FD9915;
}

/* --- ボタン共通 --- */
.inq_inner .conts ul li a {
    width: 260px;
    box-sizing: border-box;
    text-align: left;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 55px;
    font-size: 14px;
    font-weight: bold;
    background-color: #fff;
    position: relative;
}

/* --- アイコンの位置調整 --- */
.inq_inner .conts ul li a .icon {
    left: 20px;
    top: 10px;
    position: absolute;
}

.inq_inner .conts ul li a .color {
    right: 20px;
    top: 13px;
    position: absolute;
}

/*--/inq--*/

/*--footer--*/
.footer_wrap {
    border-top: 4px solid #FD9915;
}

.footer_inner {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
}

.footer_left,
.footer_center {
    width: 340px;

    & .logo {
        margin-bottom: 15px;
    }

    & .map {
        display: flex;
        align-items: center;
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 10px;

        & img {
            height: 15px;
        }
    }

    & .btn {
        padding: 0;
    }

    & .btn a {
        width: 285px;
        height: 50px;
        position: relative;
        border: 1px solid #FD9915;
        display: grid;
        place-content: center;
        color: #FD9915;
        font-size: 16px;
        font-weight: bold;

        & img {
            right: 20px;
            top: 13px;
            position: absolute;
            filter: invert(66%) sepia(75%) saturate(1873%) hue-rotate(348deg) brightness(99%);
        }
    }

}

.footer_right {
    width: 320px;

    & .tel {
        display: flex;
        align-items: end;
        gap: 5px;
        font-size: 11px;
        color: #CFCFCF;
        margin-bottom: 10px;

        & img {
            height: 15px;
        }

        & span {
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }
    }


    & ul {
        display: flex;
        gap: 15px;
        align-items: center;
    }
}

/*--/footer--*/

.copy {
    background-color: #FD9915;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #fff;
    padding: 5px 0;
}

.inq_inner h2 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    border-bottom: 3px solid #FD9915;
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.inq_inner h2 span {
    color: #FD9915;
}

.inq_btns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    /* ボタン同士の間隔 */
    margin: 40px auto 0 auto;
    padding: 0;
    list-style: none;
}

.inq_btns li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 258px;
    padding: 0;
    margin: 0;
}

/* LINEボタン */
.inq_btns li:first-child a {
    width: 100%;
    height: 55px;
    border: 2px solid #16C459;
    color: #16C459;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px;
    background: #fff;
    gap: 12px;
    position: relative;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

/* メールボタン */
.inq_btns li:last-child a {
    width: 100%;
    height: 55px;
    border: 2px solid #FD9915;
    color: #FD9915;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 8px;
    background: #fff;
    gap: 12px;
    position: relative;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

/* 電話番号部分 */
.inq_btns .tel_li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 258px;
    padding: 0;
    margin: 0;
}

.inq_btns .tel_icon {
    margin-bottom: 5px;
}

.inq_btns .tel_icon img {
    width: 28px;
    height: 28px;
}

.inq_btns .tel_number {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    display: block;
    margin-bottom: 5px;
}

.inq_btns .tel_note {
    font-size: 13px;
    color: #aaa;
    font-weight: normal;
    display: block;
}

/* アイコンの位置調整（ボタン内） */
.inq_btns a .icon {
    width: 32px;
    height: 32px;
}

.inq_btns a .color {
    width: 24px;
    height: 24px;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.blog-list .blog-card .blog-card-link .blog-card-content .blog-card-excerpt {
    line-height: 2 !important;
}

/*--success--*/
    .success_wrap {
        margin: 100px 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 10px;
    }

.success_inner {
    width: 1100px;
    margin: 0 auto;

    & h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 35px;
        font-weight: bold;

        & span {
            color: #FD9914;
        }
    }
}

/*--/success--*/