body {
    margin-top: 30px;
    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: 1;
}

h1 {
    font-size: 10px;
    color: #fff;
    z-index: 101;
    top: 0;
    font-weight: bold;
    position: fixed;
}

h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.sp_off {
    display: none !important;
}

/*--common--*/

.common_btn a {
    width: 220px;
    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;

    & 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_sp {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 100;

    & .logo {
        padding: 30px 10px;
    }

    & .logo a {
        display: flex;
        align-items: center;
        font-size: 11px;
        font-weight: bold;
        gap: 5px;

        & img {
            height: 18px;
        }
    }

    &::after {
        position: absolute;
        top: 0;
        content: "";
        background: url(../../test/img/h_top.webp);
        width: 100%;
        height: 3px;
    }
}

/*--navi--*/
.menu {
    position: fixed;
    top: 16px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50px;
    height: 50px;
    background-color: #FD9915;
    border-radius: 50%;
    transition: transform 250ms ease;
    cursor: pointer;
    z-index: 200;

    span {
        position: relative;
        display: block;
        width: 50%;
        height: 2px;
        background-color: #fff;
        float: right;
        transform-origin: center center;
        transition: transform 250ms ease;
        z-index: 200;

        &:nth-of-type(1) {
            transform: translateY(-5px);
        }

        &:nth-of-type(3) {
            transform: translateY(5px);
        }
    }
}

#menu {
    display: none;

    &:checked~.menu {
        background-color: transparent;
        transform: rotate(360deg);
        transition: transform 250ms ease;

        span {
            background-color: white;
            transition: transform 250ms ease;

            &:nth-of-type(1) {
                transform: translateY(1px) rotate(45deg);
            }

            &:nth-of-type(2) {
                display: none;
            }

            &:nth-of-type(3) {
                transform: translateY(-1px) rotate(-45deg);
            }
        }
    }

    &:checked~.nav {
        right: 0px;
        transition: right 500ms ease;
    }

    &:checked~main {
        transform: translateX(250px);
        transition: transform 500ms ease;
    }
}

.nav {
    position: fixed;
    top: 0;
    right: -310px;
    width: 220px;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #FD9915;
    transition: right 500ms ease;
    z-index: 105;

    ul {
        position: relative;
        list-style-type: none;
        margin-top: 100px;
        padding: 0;

        li {
            position: relative;
            display: block;
            border-bottom: 5px solid rgba(white, 1);

            a {
                position: relative;
                display: block;
                margin: 0;
                padding: 15px 20px;
                color: white;
                font-size: 14px;
                font-weight: bold;
                text-decoration: none;
                text-transform: uppercase;

                &:before {
                    position: absolute;
                    content: '';
                    top: 0;
                    left: 0;
                    width: 0;
                    height: 100%;
                    transition: width 250ms ease;
                    z-index: -1;
                }

                &:hover {
                    color: #444;

                    &:before {
                        width: 100%;
                        height: 100%;
                        background-color: rgba(white, 1);
                        transition: width 250ms ease;
                    }
                }
            }
        }
    }
}

.header-sns-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 0 0 0;
    width: 100%;
  }
  .header-btn {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 13px;
    font-weight: bold;
    border-radius: 6px;
    padding: 12px 25px;
    width: 175px;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
  }
  .header-btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 5px;
    display: inline-block;
  }
  .header-btn-tel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
  .header-btn-tel-icon {
    margin-right: 8px;
    flex-shrink: 0;
  }
  .header-btn-tel-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .header-btn-tel-number {
    font-size: 12px;
    font-weight: bold;
    color: #222;
    line-height: 1.2;
  }
  .header-btn-tel-note {
    font-size: 7px;
    color: #0090ea;
    font-weight: normal;
    margin-top: 2px;
    line-height: 1.2;
  }
  .header-btn-line {
    background: #06c755;
    color: #fff;

  }
  .header-btn-insta {
    background: #fff;
    color: #e1306c;
    border: 1.5px solid #e1306c;
  }
  .header-btn-contact {
    background: #fff;
    color: #fd9914;
  }
/*--/navi--*/

/*--/header--*/

/*--main--*/

.main_wrap {
    position: relative;

    & .txt {
        width: 90%;
        display: flex;
        margin: 0 auto;
        justify-content: right;
        padding: 170px 0 80px;
        box-sizing: border-box;

        & img {
            height: 110px;
        }
    }
}

.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: 90%;
    margin: 0 auto;
    padding: 50px 0 0px;

    & h2 {
        font-size: 20px;
        font-weight: bold;
        color: #000;
        text-align: center;
        letter-spacing: 2px;

        & span {
            color: #00A0EA;
            border-bottom: 3px solid #00A0EA;
            padding-bottom: 5px;
        }
    }
}

.nayami_box {
    margin-top: 70px;

    & li {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        &:last-child {
            margin-top: 50px;
        }

        & .conts {
            width: 100%;
            height: 300px;
            padding: 20px;
            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: 190px;
                height: 40px;
                position: absolute;
                top: -18px;
                display: grid;
                place-content: center;
                color: #fff;
                font-size: 20px;
                background-color: #FD9914;
                border-radius: 5px;
                letter-spacing: 3px;
                left: 0;
                right: 0;
                margin: 0 auto;
                font-weight: bold;
            }

            & p {
                display: flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 25px;

                &:last-child {
                    margin-bottom: 0;
                }

                & img {
                    height: 20px;
                }

                & span {
                    font-size: 17px;
                    font-weight: bold;
                    color: #000;
                }

            }

        }

        & .img {
            text-align: center;
            margin-top: 60px;
            width: 60%;

            & img {
                width: 100%;
            }
        }

    }
}

/*--/nayami--*/

/*--mirai--*/
.mirai_wrap {
    background: url("/wp-content/themes/kasai_top/img/mirai_back_sp.png")no-repeat;
    background-size: cover;
    background-position: center center;
}

.mirai_inner {
    width: 90%;
    margin: 0 20px;
    padding: 130px 0 250px;

    & h2 {
        text-align: center;
        font-size: 20px;
        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: 17px;
            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: 16px;
            font-weight: 500;
            line-height: 2;
            letter-spacing: 1.8px;
            width: 100%;
        }

    }

}

/*--/mirai--*/

/*--tuyomi--*/
.tuyomi_wrap {
    background-color: #fffdd9;
}

.tuyomi_inner {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;

    & h2 {
        text-align: center;
        color: #000;
        font-size: 25px;
        font-weight: bold;
        font-family: "M PLUS 1p", sans-serif;
        letter-spacing: 1.5px;
        line-height: 1.5;

        & .color {
            color: #FD9914;
        }

        & .dot {
            position: relative;
            display: inline-block;
            font-weight: bold;

            &::before {
                content: "";
                display: block;
                width: 8px;
                height: 8px;
                background: #00A0EA;
                border-radius: 50%;
                position: absolute;
                left: 50%;
                top: -4px;
                transform: translateX(-50%);
            }
        }
    }
}

.tuyomi_sp {
    width: 100%;
    margin: 20px 0;

    & img {
        width: 100%;
    }
}

.tuyomi_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin: 30px 0;
}

.tuyomi_box li {
    width: 100%;
    border-radius: 16px;
    padding: 32px 16px 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    /* 背景色はnth-childで分ける */
}

.tuyomi_box li:nth-child(1) {
    background: #fd9914;
}

.tuyomi_box li:nth-child(2) {
    background: #00a0ea;
}

.tuyomi_box li:nth-child(3) {
    background: #16c459;
}

.tuyomi_box li .img {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tuyomi_box li .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tuyomi_box li .title,
.tuyomi_box li .title02 {
    background: #fff;
    color: inherit;
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    padding: 8px 18px;
    margin: 0 auto 8px auto;
    text-align: center;
    display: inline-block;
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    letter-spacing: 1px;


}

.tuyomi_box li .title02 {
    margin-top: 0;
}

.tuyomi_box li .txt {
    color: #fff;
    font-size: 15px;
    text-align: left;
    margin-top: 12px;
    line-height: 2;
    letter-spacing: 1.5px;
    width: 100%;
    font-weight: 400;
}

/* 1つ目（オレンジ） */
.tuyomi_box li:nth-child(1) .title,
.tuyomi_box li:nth-child(1) .title02 {
    color: #fd9914;
}

/* 2つ目（青） */
.tuyomi_box li:nth-child(2) .title,
.tuyomi_box li:nth-child(2) .title02 {
    color: #00a0ea;
}

/* 3つ目（緑） */
.tuyomi_box li:nth-child(3) .title,
.tuyomi_box li:nth-child(3) .title02 {
    color: #16c459;
}

/*--/tuyomi--*/

/*--form--*/
.form_wrap {
    margin: 50px 0 80px;
}

.form_inner {
    width: 90%;
    margin: 0 auto;

    & h2 {
        position: relative;
        font-size: 24px;
        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;
        }
    }
}

.form_stl {
    text-align: center;
    color: #FD9915;
    font-weight: bold;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.form_txt {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    letter-spacing: 1.5px;
    width: 100%;
    display: block;
    margin: 70px auto 100px;
}

.form_box {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin: 0;
    padding: 0;
}

.form_box li {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 60px 20px 32px 20px;
    border: 3px solid #FD9914;
    /* デフォルトはオレンジ */
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form_box li:nth-child(2) {
    border-color: #6dcbe5;
}

/* タイトル帯（h4） */
.form_box li h4 {
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    min-width: 180px;
    max-width: 320px;
    height: 90px;
    background: #FD9914;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-bottom: none;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
}

.form_box li:nth-child(2) h4 {
    background: #6dcbe5;
}

.form_box li h4 .img {
    position: static;
    width: 38px;
    height: 38px;
    margin: 0 auto 2px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_box li h4 .img img {
    width: 300%;
    height: 300%;
    object-fit: contain;
}

.form_box li h4 .title_1on1,
.form_box li h4 .title_1on2 {
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 2px;
    font-family: "M PLUS 1p", sans-serif;
}

.form_box li h4 .min {
    font-size: 20px;
    letter-spacing: 2px;
}

.form_box li p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1.5px;
    text-align: left;
    color: #222;
    margin-top: 20px;
    font-family: "M PLUS 1p", sans-serif;
}

/*--/form--*/

/*--course--*/
.course_wrap {
    background-color: #eff0f1;
}

.course_inner {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 80px;

    & h2 {
        position: relative;
        font-size: 24px;
        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) {
        margin-top: 25px;

        & a {
            flex-wrap: wrap;
        }
    }

    & li:nth-child(3) {
        margin-top: 25px;
    }

    & li:nth-child(2) a .left h3 {
        background-color: #00A0EA;
    }

    & li:last-child {
        margin-bottom: 0;

        & a .left h3 {
            background-color: #FF716A;
        }
    }

    & li a {
        background-color: #fff;
        border-radius: 20px;
        box-sizing: border-box;
        overflow: hidden;
        align-items: center;
        display: flex;
        flex-wrap: wrap-reverse;

        & .left {
            width: 100%;
            box-sizing: border-box;
            display: grid;
            place-content: center;

            & h3 {
                width: 100%;
                height: 45px;
                background-color: #FD9915;
                color: #fff;
                font-size: 24px;
                display: grid;
                place-content: center;
                margin: 0 auto 15px;
            }

            & .txt {
                font-size: 14px;
                line-height: 2;
                display: block;
                margin-bottom: 15px;
                padding: 0 20px;
            }

            & .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: 90%;
    margin: 0 auto;

    & h2 {
        text-align: center;
        font-size: 25px;
        font-weight: bold;
        font-family: "M PLUS 1p", sans-serif;
        color: #000;
        position: relative;
        letter-spacing: 1.5px;

        & .box {
            background-color: #00A0EA;
            color: #fff;
            padding: 5px;
            border-radius: 5px;
            margin: 0px 5px 18px 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
        }

        & .maru {
            position: relative;

            &::after {
                width: 6px;
                height: 6px;
                border-radius: 100%;
                position: absolute;
                top: -10px;
                content: "";
                background-color: #00A0EA;
                left: 0;
                right: 0;
                margin: 0 auto;
            }
        }

    }

    & .txt {
        font-size: 15px;
        font-weight: 400;
        line-height: 2;
        text-align: left;
        letter-spacing: 1.5px;
        display: block;
        margin: 40px 0 35px;
    }

}

.box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

    & li {
        width: 80%;
        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: 100%;
    display: grid;
    place-content: center;
    padding: 50px 25px;
}

.toku_syosai .title {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    display: block;
    line-height: 1.5;
    letter-spacing: 1.5px;
}

.toku_syosai ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.toku_syosai ul li {
    background-color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin: 0;
    padding: 0;
}

/* アイコン画像 */
.toku_syosai ul li span {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.toku_syosai ul li span img {
    height: 32px;
    width: auto;
}

/* テキスト */
.toku_syosai ul li p {
    font-size: 13px;
    font-weight: bold;
    color: #00A0EA;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

/*--/toku--*/

/*--inq--*/
.inq_wrap {
    background-color: #FD9915;
}

.inq_inner {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 50px;

    & .common_btn a {
        background-color: #FD9915;
        color: #fff;
        border: 1px solid #fff;


        & img {
            filter: invert(96%) sepia(1%) saturate(7484%) hue-rotate(207deg) brightness(118%);
        }
    }

    & h2 {
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        border-bottom: 2px solid #FD9915;
        margin-bottom: 35px;
        padding: 20px 0;

        & span {
            color: #FD9915;
        }
    }

    & .conts {
        width: 100%;
        display: grid;
        place-content: center;
        background-color: #fff;
        margin: 0 auto 40px;

        & p {
            font-size: 15px;
            letter-spacing: 1.5px;
            line-height: 1.8;
            font-weight: 400;
            text-align: left;
            display: block;
            width: 100%;
            padding: 0 20px;
        }

        & ul {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;

            & li {
                width: 100%;
            }

            & li a {
                width: 80%;
                height: 55px;
                display: grid;
                place-content: center;
                position: relative;
                font-size: 14px;
                box-sizing: border-box;
                background-color: #fff;
                font-weight: bold;
                margin: 0 auto;

                & .icon {
                    left: 20px;
                    top: 10px;
                    position: absolute;
                }

                & .color {
                    right: 20px;
                    top: 13px;
                    position: absolute;
                }

            }

            & li:nth-child(1) a {
                border: 2px solid #16C459;
                color: #16C459;

                & .color {
                    filter: invert(55%) sepia(97%) saturate(2088%) hue-rotate(102deg) brightness(101%);
                }
            }

            & li:nth-child(2) a {
                font-size: 25px;
                letter-spacing: 1.5px;
                text-align: center;

                & p {
                    font-size: 12px;
                    letter-spacing: 1.5px;
                }
            }

            & li:nth-child(3) a {
                border: 2px solid #FD9915;
                color: #FD9915;

                & .color {
                    filter: invert(59%) sepia(64%) saturate(853%) hue-rotate(349deg) brightness(102%);
                }
            }

        }

    }
}

/*--/inq--*/

/*--footer--*/

.footer_sp_wrap {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 30px 0;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-top: 2px solid #fd9914;
}

.footer_sp_inner {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer_sp_shop{
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer_sp_shop .logo{
    margin-bottom: 6px;
}

.footer_sp_shop .logo img{
    width: 180px;
    height: auto;
    display: block;
}

.footer_sp_shop .map {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #222;
    line-height: 1.5;
    text-align: left;
}

.footer_sp_shop .map img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.footer_sp_shop .btn {
    width: 80%;
    margin: 0 auto;
    padding: 0;
    background: #fff;
    border: 2px solid #fd9914;
    border-radius: 5px;
    color: #fd9914!important;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 8px;
    box-sizing: border-box;
    transition: none;
}

.footer_sp_shop .btn img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.footer_sp_contact{
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer_sp_contact .tel-row {
    display: flex;
    align-items: center;
}

.footer_sp_contact .tel-row img {
    width: 20px;
    height: 20px;
}

.footer_sp_contact .tel-row span {
    font-size: 25px;
    font-weight: bold;
    color: #222;
    margin-left: 4px;
}

.footer_sp_contact .tel-row a {
    color: #222;
    text-decoration: none;
}

.footer_sp_contact .tel-note {
    font-size: 13px;
    color: #0090ea;
    font-weight: normal;
    margin-left: 26px;
}

.footer_sp_contact ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}

.footer_sp_contact ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_sp_contact ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    transition: none;
}

.footer_sp_contact ul li img {
    width: 40px;
    height: 40px;
    display: block;
}

.footer-text {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-text a {
    color: #222;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500px;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
}
.copy {
    background-color: #FD9915;
    width: 100vw;
    text-align: center;
    font-size: 13px;
    color: #fff;
    padding: 8px 0;
    margin: 0;
}

/*--/footer--*/

@media screen and (max-width: 768px) {
    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;
    }
}

/*--success--*/
.success_wrap {
    margin: 100px 0;
}

.success_inner {
    width: 90%;
    margin: 0 auto;

    & h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: bold;

        & span {
            color: #FD9914;
        }
    }
}

/*--/success--*/

