html {
    font-family: "Noto Sans JP", sans-serif;
    color: #0a0a0a;
}

body {
    min-width: 375px;
}

body.js-active {
    overflow: hidden;
}

main {
    overflow: hidden;
}

@media screen and (max-width: 900px) {
    main {
        padding-top: 0;
    }
}

span {
    display: inline-block;
}

picture {
    display: block;
}

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

a {
    display: inline-block;
}

@media screen and (min-width: 901px) {
    a.--nomal {
        transition: opacity .5s;
    }

    a.--nomal:hover {
        opacity: 0.6;
    }
}

/* utility */
.u-en {
    font-family: "Barlow", sans-serif;
}

.--orange {
    color: #ff6e00;
}

/* layout */
.l-wrapper {
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    margin: 0 auto;
    max-width: 1000px;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .l-inner {
        margin: 0 auto;
        max-width: 500px;
    }
}

/* common */
.pc-only {
    display: block;
}

.br-pc-only {
    display: inline-block;
}

.sp-only {
    display: none;
}

.br-sp-only {
    display: none;
}

@media screen and (max-width: 900px) {
    .pc-only {
        display: none;
    }

    .br-pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    .br-sp-only {
        display: inline-block;
    }
}

/*===========================================================================*/
/*  header  */
/*===========================================================================*/
.p-head {
    padding: 15px 30px;
    position: fixed;
    z-index: 90;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
}

.p-head__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-logo {
    display: flex;
    width: 350px;
}

.p-head__navs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.p-head__btn01 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 252px;
    height: 54px;
    border-radius: 100vh;
    background-color: #FF6E00;
    padding-left: 37px;
}
.p-head__btn01::before {
    background: url('../img/icon-check.webp') no-repeat center center/contain;
    content: '';
    height: 43px;
    left: -35px;
    position: absolute;
    top: 50%;
    width: 30px;
    transform: translate(0, -50%);
}
.p-head__btn01::after {
    content: '';
    height: calc(100% - 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 4px);
    transform: translate(-50%, -50%);
    border: #fff solid 1px;
    border-radius: 100vh;
}

.p-head__btn01 .--orange {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #FFEE00;
    border-radius: 100vh;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.05;
    position: absolute;
    left: 8px;
    top: 6px;
}

.p-head__btn01 .--txt {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    padding-bottom: 2px;
}

.p-head__btn02 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 54px;
    border-radius: 100vh;
    background-color: #41A338;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}
.p-head__btn02::after {
    content: '';
    height: calc(100% - 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 4px);
    transform: translate(-50%, -50%);
    border: #fff solid 1px;
    border-radius: 100vh;
}

.p-head__btn02 span {
    position: relative;
    padding-left: 25px;
}
.p-head__btn02 span::before {
    background: url('../img/icon-mail.png') no-repeat center center/contain;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    top: 1px;
    width: 20px;
}

@media screen and (max-width: 900px) {
    .p-head {
        padding: 11px 15px;
        position: relative;
    }
    
    .p-head__inner {
        display: block;
    }
    
    .p-logo {
        width: 228px;
    }
    
    .p-head__navs {
        display: none;
    }
    
    .p-head__btn01 {
        width: 205px;
        height: 44px;
        padding-left: 30px;
    }
    .p-head__btn01::before {
        display: none;
    }
    
    .p-head__btn01 .--orange {
        width: 34px;
        height: 34px;
        font-size: 10px;
        left: 6px;
        top: 5px;
    }
    
    .p-head__btn01 .--txt {
        font-size: 19px;
        padding-bottom: 1px;
    }
    
    .p-head__btn02 {
        width: 146px;
        height: 44px;
        font-size: 13px;
    }
    
    .p-head__btn02 span {
        padding-left: 22px;
    }
    .p-head__btn02 span::before {
        height: 12px;
        top: 1px;
        width: 16px;
    }
}

/*===========================================================================*/
/*  footer  */
/*===========================================================================*/
.p-footer {
    background-color: #fff;
    padding-top: 32px;
    padding-bottom: 12px;
}

.p-footer__logo {
    max-width: 498px;
    margin: 0 auto;
}

.p-footer__copyRight {
    margin-top: 13px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.86;
}

@media screen and (max-width: 900px) {
    .p-footer {
        padding-top: 24px;
        padding-bottom: 20px;
        margin-bottom: 75px;
    }
    
    .p-footer__logo {
        max-width: 337px;
    }
    
    .p-footer__copyRight {
        margin-top: 12px;
        font-size: 10px;
    }
}

/*===========================================================================*/
/*  float  */
/*===========================================================================*/
.p-float {
    display: none;
}

@media screen and (max-width: 900px) {
    .p-float {
        display: flex;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 50;
        background-color: #fff;
        padding: 5px;
    }

    .p-float__contact {
        width: 56px;
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 4px;
    }
    .p-float__contact::before {
        background-color: #4C953E;
        content: '';
        height: calc(100% - 4px);
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 1;
    }
    .p-float__contact::after {
        background-color: #2F6C23;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 0;
    }

    .p-float__contact img {
        width: 22px;
        position: relative;
        z-index: 2;
    }

    .p-float__tel {
        width: calc(100% - 61px);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 4px;
        height: 60px;
        color: #FFF;
        font-size: 19px;
        font-weight: 800;
        line-height: 1.45;
        letter-spacing: -.04em;
    }
    .p-float__tel::before {
        background-color: #F04327;
        content: '';
        height: calc(100% - 4px);
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 1;
    }
    .p-float__tel::after {
        background-color: #973B2B;
        content: '';
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 0;
    }

    .p-float__tel span {
        position: relative;
        z-index: 2;
        padding-left: 26px;
    }
    .p-float__tel span::before {
        background: url('../img/icon-tel-white02.svg') no-repeat center center/contain;
        content: '';
        height: 20px;
        left: 0;
        position: absolute;
        top: 4px;
        width: 20px;
    }
}

/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv {
    margin-top: 91px;
    border-bottom: #0a0a0a solid 5px;
}

@media screen and (max-width: 900px) {
    .p-mv {
        margin-top: 0;
        border-bottom: #0a0a0a solid 3px;
    }
}

/*===========================================================================*/
/*  cta  */
/*===========================================================================*/
.p-cta {
    padding-top: 35px;
    padding-bottom: 110px;
}

.p-cta__staff--wrapper {
    margin-top: 30px;
    border-radius: 25px;
    overflow: hidden;
    background: url('../img/cta-staff-bg.webp') no-repeat center center/cover;
    padding-top: 40px;
    padding-bottom: 55px;
    position: relative;
}

.p-cta__staff--subHead {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 917px;
    position: relative;
    z-index: 2;
}

.p-cta__staff--timeWrapper {
    padding: 0 20px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

.p-cta__staff--time {
    max-width: 888px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px 17px;
    position: relative;
}
.p-cta__staff--time::after {
    content: '';
    height: calc(100% - 6px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 6px);
    border: #0a0a0a solid 3px;
    border-radius: 17px;
    transform: translate(-50%, -50%);
}

.p-cta__staff--time .u-en {
    font-size: 80px;
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1;
    margin-right: 10px;
    white-space: nowrap;
    width: 89px;
    text-align: center;
}

.p-cta__staff--hour {
    width: 46px;
    margin-right: 10px;
    transform: translate(0px, 6px);
}

.p-cta__staff--min {
    width: 46px;
    margin-right: 10px;
    transform: translate(0px, 6px);
}

.p-cta__staff--sec {
    width: 48px;
    margin-right: 14px;
    transform: translate(0px, 6px);
}

.p-cta__staff--staff {
    width: 382px;
    transform: translate(0px, 4px);
}

.p-cta__staff--txt {
    margin-top: 17px;
    margin-left: 16px;
    max-width: 668px;
    position: relative;
    z-index: 2;
}

.p-cta__staff--payWrapper {
    padding: 0 20px;
    max-width: 926px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.p-cta__staff--pay {
    max-width: 570px;
}

.p-cta__staff--illust {
    position: absolute;
    width: 348px;
    bottom: 37px;
    right: 7px;
}

.p-cta__bnr {
    margin-top: 17px;
}

.p-cta__btn--wrapper {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.p-cta__btn--wrapper.--sp {
    display: none;
}

.p-cta__btn--click {
    width: 68px;
}

.p-cta__btn {
    width: 580px;
    height: 112px;
    background-color: #FF3719;
    border-radius: 100vh;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding-left: 77px;
}
.p-cta__btn::after {
    content: '';
    height: calc(100% - 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 4px);
    transform: translate(-50%, -50%);
    border: #fff solid 2px;
    border-radius: 100vh;
}

.p-cta__btn .--orange {
    color: #FF3719;
    width: 87px;
    height: 87px;
    background-color: #FFEE00;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05; 
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
}

.p-cta__btn .--txt {
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    padding-bottom: 4px;
}

@media screen and (max-width: 900px) {
    .p-cta {
        padding-top: 25px;
        padding-bottom: 80px;
    }
    
    .p-cta__staff--wrapper {
        margin-top: 20px;
        border-radius: 12px;
        background: url('../img/cta-staff-bg-sp.webp') no-repeat center center/cover;
        padding: 20px 15px;
    }
    
    .p-cta__staff--subHead {
        padding: 0;
    }
    
    .p-cta__staff--timeWrapper {
        padding: 0;
        margin-top: 7px;
    }
    
    .p-cta__staff--time {
        border-radius: 10px;
        flex-wrap: wrap;
        padding: 15px 4px 20px;
        z-index: 2;
    }
    .p-cta__staff--time::after {
        height: calc(100% - 4px);
        width: calc(100% - 4px);
        border: #0a0a0a solid 2px;
        border-radius: 8px;
    }
    
    .p-cta__staff--time .u-en {
        font-size: 52px;
        margin-right: 7px;
        white-space: nowrap;
        width: 58px;
    }
    
    .p-cta__staff--hour {
        width: 30px;
        margin-right: 5px;
        transform: translate(0px, 5px);
    }
    
    .p-cta__staff--min {
        width: 32px;
        margin-right: 5px;
        transform: translate(0px, 5px);
    }
    
    .p-cta__staff--sec {
        width: 32px;
        margin-right: 0;
        transform: translate(0, 5px);
    }
    
    .p-cta__staff--staff {
        width: 100%;
        transform: translate(0, 0);
        margin-top: 8px;
        padding: 0 10px;
    }
    
    .p-cta__staff--txt {
        margin-top: 7px;
        margin-left: 0;
        max-width: 250px;
        position: relative;
        z-index: 3;
    }
    
    .p-cta__staff--payWrapper {
        padding: 0;
        margin-top: 5px;
        z-index: 3;
    }
    
    .p-cta__staff--illust {
        position: absolute;
        width: 186px;
        bottom: 22px;
        right: -60px;
        z-index: 2;
    }
    
    .p-cta__bnr {
        margin-top: 17px;
    }
    
    .p-cta__btn--wrapper {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .p-cta__btn--wrapper.--pc {
        display: none;
    }
    .p-cta__btn--wrapper.--sp {
        display: flex;
    }

    .p-cta__btn--sp {

    }

    .p-cta__btn--sp {
        width: 100%;
        /* margin: 13px auto 0; */
        /* height: 57px;
        padding-bottom: 5px;
        font-size: 14px;
        line-height: 1.3;
        letter-spacing: .04em;
        color: #fff;
        font-weight: 700;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 5px !important; */
    }

    /* .p-cta__btn--sp span {
        position: relative;
        z-index: 3;
        padding-left: 26px;
    }
    .p-cta__btn--sp span::before {
        background: url('../img/icon-tel-white.svg') no-repeat center center/contain;
        content: '';
        height: 20px;
        left: 0;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 19px;
    }
    
    .p-cta__btn--sp::before {
        background-color: #FF3719;
        content: '';
        height: calc(100% - 5px);
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 1;
        transition: transform .4s;
    }
    .p-cta__btn--sp::after {
        background-color: #A93B2A;
        content: '';
        height: calc(100% - 5px);
        left: 0;
        position: absolute;
        bottom: 0;
        width: 100%;
        border-radius: 5px;
        z-index: 0;
    } */
}

/*===========================================================================*/
/*  case  */
/*===========================================================================*/
.p-case {
    position: relative;
    padding-top: 90px;
    padding-bottom: 150px;
    background-color: #FEF1C4;
    border-top: #0a0a0a solid 3px;
}

.p-case__deco,
.p-strengths__deco,
.p-step__deco,
.p-range__deco,
.p-voice__deco {
    position: absolute;
    width: 143px;
    left: calc(50% - 72px);
    top: -93px;
}

.p-case__head {
    max-width: 725px;
    margin: 0 auto;
}

.p-case__list {
    margin-top: 30px;
    width: calc(100% + 10px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 26px;
}

.p-case__list li {
    width: 48.8%;
}

@media screen and (max-width: 900px) {
    .p-case {
        padding-top: 60px;
        padding-bottom: 75px;
        border-top: #0a0a0a solid 2px;
    }
    
    .p-case__deco,
    .p-strengths__deco,
    .p-step__deco,
    .p-range__deco,
    .p-voice__deco {
        width: 90px;
        left: calc(50% - 45px);
        top: -57px;
    }
    
    .p-case__head {
        max-width: 338px;
    }
    
    .p-case__list {
        margin-top: 10px;
        width: calc(100% + 5px);
        row-gap: 10px;
    }
    
    .p-case__list li {
        width: 48.8%;
    }
}

/*===========================================================================*/
/*  strengths  */
/*===========================================================================*/
.p-strengths {
    position: relative;
    border-top: #0a0a0a solid 3px;
    background: url('../img/strengths-bg.webp') no-repeat center center/cover;
    padding-top: 100px;
    padding-bottom: 90px;
}

.p-strengths__head {
    max-width: 980px;
    margin: 0 auto;
}

.p-strengths__list {
    margin-top: 30px;
}

.p-strengths__list li {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.p-strengths__list li:nth-of-type(1) {
    margin-top: 0;
}
.p-strengths__list li:nth-of-type(2n) {
    flex-direction: row-reverse;
}

.p-strengths__list--txts {
    width: 44%;
}

.p-strengths__list--img {
    width: 52.2%;
}

.p-strengths__list--num {
    font-size: 23px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.025em;
}

.p-strengths__list--head {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.23;
    letter-spacing: -.01em;
    color: #fff;
    margin-top: 15px;
    padding-bottom: 25px;
    border-bottom: #fff solid 1px;
}

.p-strengths__list--head span.--yellow {
    display: inline;
    color: #FFEE00;
}

.p-strengths__list--txt {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
}

.p-strengths__list--txt span.--yellow {
    display: inline;
    color: #FFEE00;
}

@media screen and (max-width: 900px) {
    .p-strengths {
        border-top: #0a0a0a solid 2px;
        background: url('../img/strengths-bg-sp.webp') no-repeat center center/cover;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    
    .p-strengths__head {
        max-width: 370px;
    }
    
    .p-strengths__list {
        margin-top: 20px;
    }
    
    .p-strengths__list li {
        margin-top: 30px;
        flex-direction: column-reverse;
    }
    .p-strengths__list li:nth-of-type(2n) {
        flex-direction: column-reverse;
    }
    
    .p-strengths__list--txts {
        width: 100%;
        margin-top: 15px;
    }
    
    .p-strengths__list--img {
        width: calc(100% + 5px);
    }
    
    .p-strengths__list--num {
        font-size: 16px;
    }
    
    .p-strengths__list--head {
        font-size: 26px;
        margin-top: 10px;
        padding-bottom: 10px;
    }
    
    .p-strengths__list--txt {
        margin-top: 10px;
    }
}

/*===========================================================================*/
/*  desc  */
/*===========================================================================*/
.p-desc {
    padding-top: 50px;
    padding-bottom: 100px;
    background: url('../img/desc-bg.webp') no-repeat center center/cover;
    border-top: #0a0a0a solid 3px;
    border-bottom: #0a0a0a solid 3px;
}

.p-desc__head {
    max-width: 765px;
    margin: 0 auto;
}

.p-desc__content {
    margin-top: 25px;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: 10px 10px 0px 0px rgba(10, 10, 10, .25);
    padding: 28px 20px 50px;
}

.p-desc__content--img {
    max-width: 667px;
    padding-left: 10px;
    margin: 0 auto;
}

.p-desc__content--txt {
    font-size: 23px;
    text-align: center;
    line-height: 1.8;
    font-weight: 700;
    margin-top: 15px;
    font-feature-settings: 'palt' on;
}
.p-desc__content--txt.--02 {
    margin-top: 17px;
}

.p-desc__content--txt .--red {
    color: #ff3719;
    display: inline;
    background: linear-gradient(transparent 60%, #FFEE00 60%);
    font-weight: 900;
}

@media screen and (max-width: 900px) {
    .p-desc {
        padding-top: 30px;
        padding-bottom: 45px;
        background: url('../img/desc-bg-sp.webp') no-repeat center center/cover;
        border-top: #0a0a0a solid 2px;
        border-bottom: #0a0a0a solid 2px;
    }
    
    .p-desc__head {
        max-width: 380px;
    }
    
    .p-desc__content {
        margin-top: 10px;
        border-radius: 15px;
        box-shadow: 5px 5px 0px 0px rgba(10, 10, 10, .25);
        padding: 25px 20px 25px;
    }
    
    .p-desc__content--img {
        max-width: 320px;
        padding-left: 0;
    }
    
    .p-desc__content--txt {
        font-size: 15px;
        margin-top: 10px;
        text-align: left;
        padding: 0 8px;
    }
    .p-desc__content--txt.--02 {
        margin-top: 15px;
    }
}

/*===========================================================================*/
/*  step  */
/*===========================================================================*/
.p-step {
    position: relative;
    background-color: #FEF1C4;
    border-top: #0a0a0a solid 3px;
    padding-top: 100px;
    padding-bottom: 125px;
}

.p-step__head {
    max-width: 783px;
    margin: 0 auto;
}

.p-step__list {
    margin-top: 35px;
}

.p-step__list li {
    margin-top: 30px;
    background-color: #fff;
    padding: 10px 35px 10px 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 10px 10px 0px 0px rgba(10, 10, 10, .25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.p-step__list li:nth-of-type(1) {
    margin-top: 0;
}

.p-step__list li::before {
    background: url('../img/step-arrow.png') no-repeat center center/contain;
    content: '';
    height: 24px;
    left: 50%;
    position: absolute;
    top: 100%;
    width: 67px;
    transform: translate(-50%, 0);
}
.p-step__list li:last-of-type:before {
    display: none;
}

.p-step__list li::after {
    background: url('../img/step-num01.png') no-repeat center center/contain;
    content: '';
    height: 98px;
    left: -15px;
    position: absolute;
    top: -15px;
    width: 98px;
}
.p-step__list li:nth-of-type(2):after {
    background: url('../img/step-num02.png') no-repeat center center/contain;
}
.p-step__list li:nth-of-type(3):after {
    background: url('../img/step-num03.png') no-repeat center center/contain;
}

.p-step__list--img {
    width: 38.6%;
}

.p-step__list--txts {
    width: 56.7%;
}

.p-step__list--head {
    font-size: 40px;
    line-height: 1.23;
    font-weight: 900;
    letter-spacing: .02em;
    font-feature-settings: 'palt' on;
    padding-bottom: 22px;
    border-bottom: #C2C2C2 dashed 1px;
}

.p-step__list--head span.--orange {
    display: inline;
}

.p-step__list--txt {
    margin-top: 21px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (max-width: 900px) {
    .p-step {
        border-top: #0a0a0a solid 2px;
        padding-top: 60px;
        padding-bottom: 75px;
    }
    
    .p-step__head {
        max-width: 362px;
    }
    
    .p-step__list {
        margin-top: 32px;
    }
    
    .p-step__list li {
        margin-top: 42px;
        padding: 10px 10px 23px 10px;
        border-radius: 10px;
        box-shadow: 5px 5px 0px 0px rgba(10, 10, 10, .25);
        display: block;
    }
    .p-step__list li:nth-of-type(1) {
        margin-top: 0;
    }
    
    .p-step__list li::before {
        display: none;
    }
    
    .p-step__list li::after {
        background: url('../img/step-num01-sp.png') no-repeat center center/contain;
        height: 72px;
        left: 50%;
        top: -26px;
        width: 72px;
        transform: translate(-50%, 0);
    }
    .p-step__list li:nth-of-type(2):after {
        background: url('../img/step-num02-sp.png') no-repeat center center/contain;
    }
    .p-step__list li:nth-of-type(3):after {
        background: url('../img/step-num03-sp.png') no-repeat center center/contain;
    }
    
    .p-step__list--img {
        width: 100%;
    }
    
    .p-step__list--txts {
        width: calc(100% - 30px);
        margin: 15px 15px 0;
    }
    
    .p-step__list--head {
        font-size: 24px;
        padding-bottom: 14px;
    }
    
    .p-step__list--txt {
        margin-top: 14px;
    }
}

/*===========================================================================*/
/*  range  */
/*===========================================================================*/
.p-range {
    position: relative;
    border-top: #0a0a0a solid 3px;
    padding-top: 95px;
    padding-bottom: 120px;
    background-color: #FFEE00;
}
.p-range::before {
    background: url('../img/range-bg.webp') no-repeat center center/cover;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.p-range__inner {
    position: relative;
    z-index: 2;
}

.p-range__head {
    max-width: 607px;
    margin: 0 auto;
}

.p-range__subHead {
    max-width: 430px;
    margin: 17px auto 0;
}

.p-range__list {
    margin: 7px auto 0;
    max-width: 879px;
    padding-left: 20px;
}

@media screen and (max-width: 900px) {
    .p-range {
        border-top: #0a0a0a solid 2px;
        padding: 60px 0 80px;
    }
    .p-range::before {
        background: url('../img/range-bg-sp.webp') no-repeat center center/cover;
    }
    
    .p-range__inner {
        position: relative;
        z-index: 2;
    }
    
    .p-range__head {
        max-width: 313px;
    }
    
    .p-range__subHead {
        max-width: 345px;
        margin: 15px auto 0;
    }
    
    .p-range__list {
        margin: 10px auto 0;
        max-width: 371px;
        padding-left: 20px;
    }
}

/*===========================================================================*/
/*  vocie  */
/*===========================================================================*/
.p-voice {
    position: relative;
    border-top: #0a0a0a solid 3px;
    background-color: #FEF1C4;
    padding-top: 100px;
    padding-bottom: 115px;
}

.p-voice__head {
    max-width: 631px;
    margin: 0 auto;
}

.p-voice__subHead {
    max-width: 414px;
    margin: 20px auto 0;
}

.p-voice__slide--wrapper {
    padding-top: 7px;
    padding-bottom: 30px;
    position: relative;
}

.p-voice__slide--content {
    padding: 10px 40px 10px 10px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 10px 10px 0px 0px rgba(10, 10, 10, .25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 840px;
    margin: 0 10px;
}

.p-voice__slide--img {
    width: 39.1%;
}

.p-voice__slide--txts {
    width: 55.6%;
}

.p-voice__slide--head {
    font-size: 26px;
    line-height: 1.23;
    font-weight: 900;
}

.p-voice__slide--info {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
}

.p-voice__slide--info span {
    background-color: #FEF1C4;
    padding: 6px;
    border-radius: 3px;
}

.p-voice__slide--txt {
    margin-top: 18px;
    padding-top: 16px;
    border-top: #C2C2C2 solid 1px;
    font-size: 15px;
    line-height: 1.8;
    font-feature-settings: 'palt' on;
}

.swiper .swiper-slide {
	height: auto;
}

.swiper-pagination {
    position: absolute;
    width: 100%;
    left: 0 !important;
    bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    width: 36px !important;
    height: 8px !important;
    border-radius: 100vh !important;
    opacity: 1 !important;
    background: #FFC496 !important;
    margin: 0 2px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #FF6E00 !important;
}

@media screen and (max-width: 900px) {
    .p-voice {
        border-top: #0a0a0a solid 2px;
        padding-top: 60px;
        padding-bottom: 90px;
    }
    
    .p-voice__head {
        max-width: 265px;
    }
    
    .p-voice__subHead {
        max-width: 320px;
        margin: 15px auto 0;
    }
    
    .p-voice__slide--wrapper {
        padding-top: 7px;
    }
    
    .p-voice__slide--content {
        padding: 10px 10px 20px;
        border-radius: 12px;
        box-shadow: 5px 5px 0px 0px rgba(10, 10, 10, .25);
        display: block;
        width: 330px;
        margin: 0 8px;
    }
    
    .p-voice__slide--img {
        width: 100%;
    }
    
    .p-voice__slide--txts {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding-top: 10px;
    }
    
    .p-voice__slide--head {
        font-size: 20px;
    }
    
    .p-voice__slide--info {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1;
        font-weight: 900;
    }
    
    .p-voice__slide--info span {
        background-color: #FEF1C4;
        padding: 6px;
        border-radius: 3px;
    }
    
    .p-voice__slide--txt {
        margin-top: 18px;
        padding-top: 16px;
        border-top: #C2C2C2 solid 1px;
        font-size: 15px;
        line-height: 1.8;
        font-feature-settings: 'palt' on;
    }
}

/*===========================================================================*/
/*  faq  */
/*===========================================================================*/
.p-faq {
    position: relative;
    border-top: #0a0a0a solid 3px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-faq__deco {
    width: 151px;
    padding-left: 12px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    top: -72px;
}

.p-faq__head {
    max-width: 360px;
    margin: 0 auto;
}

.p-faq__list {
    padding-top: 20px;
    max-width: 840px;
    margin: 0 auto;
}

.p-faq__list li {
    margin-top: 20px;
}

.p-faq__list--question {
    position: relative;
    padding: 28px 87px;
    background-color: #F7F3E9;
    border-radius: 15px;
    cursor: pointer;
}

.p-faq__list--question .u-en {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #FF6E00;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 2px;
    top: 23px;
    left: 28px;
}

.p-faq__list--question .--txt {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.44;
}

.p-faq__list--question .--plus {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 30px;
    top: 34px;
}

.p-faq__list--question .--plus::before {
    background-color: #ff6e00;
    content: '';
    height: 3px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.p-faq__list--question .--plus::after {
    background-color: #ff6e00;
    content: '';
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 3px;
    transform: translate(-50%, -50%);
}

.p-faq__list li.js-active .p-faq__list--question .--plus::after {
    opacity: 0;
}

.p-faq__list--answer {
    position: relative;
    padding: 28px 0 20px 87px;
    display: none;
}

.p-faq__list--answer .u-en {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #41A338;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 2px;
    top: 19px;
    left: 28px;
}

.p-faq__list--answer .--txt {
    font-size: 16px;
    line-height: 1.8;
    font-feature-settings: 'palt' on;
}

@media screen and (max-width: 900px) {
    .p-faq {
        border-top: #0a0a0a solid 2px;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    
    .p-faq__deco {
        width: 101px;
        padding-left: 10px;
        top: -59px;
    }
    
    .p-faq__head {
        max-width: 233px;
    }
    
    .p-faq__list {
        padding-top: 20px;
        max-width: 840px;
        margin: 0 auto;
    }
    
    .p-faq__list li {
        margin-top: 20px;
    }
    
    .p-faq__list--question {
        display: flex;
        align-items: center;
        padding: 10px 45px 10px 53px;
        border-radius: 10px;
        min-height: 75px;
    }
    
    .p-faq__list--question .u-en {
        width: 28px;
        height: 28px;
        font-size: 18px;
        padding-bottom: 2px;
        top: 50%;
        left: 15px;
        transform: translate(0, -50%);
    }
    
    .p-faq__list--question .--txt {
        font-size: 16px;
        font-weight: 900;
        line-height: 1.44;
    }
    
    .p-faq__list--question .--plus {
        width: 15px;
        height: 15px;
        right: 16px;
        top: 50%;
        transform: translate(0, -50%);
    }
    
    .p-faq__list--question .--plus::before {
        height: 2px;
    }
    
    .p-faq__list--question .--plus::after {
        width: 2px;
    }
    
    .p-faq__list li.js-active .p-faq__list--question .--plus::after {
        opacity: 0;
    }
    
    .p-faq__list--answer {
        position: relative;
        padding: 15px 0 15px 53px;
    }
    
    .p-faq__list--answer .u-en {
        width: 28px;
        height: 28px;
        font-size: 18px;
        padding-bottom: 2px;
        top: 15px;
        left: 15px;
    }
    
    .p-faq__list--answer .--txt {
        font-size: 14px;
    }
}

/*===========================================================================*/
/*  contact  */
/*===========================================================================*/
.p-contact {
    padding-top: 100px;
    padding-bottom: 100px;
    border-top: #0a0a0a solid 3px;
    background-color: #FEF1C4;
}

.p-contact__head {
    max-width: 607px;
    margin: 0 auto;
}

.p-contact__subHead {
    max-width: 555px;
    margin: 20px auto 0;
}

.p-contact .p-cta__btn--wrapper {
    margin-top: 15px;
}

.p-contact__form {
    max-width: 900px;
    margin: 33px auto 0;
    background-color: #fff;
    border-radius: 20px;
    padding: 65px 20px;
    box-shadow: 10px 10px 0px 0px rgba(10, 10, 10, .25);
}

.p-contact__form--inner {
    max-width: 650px;
    margin: 0 auto;
}

.p-contact__form--table dl {
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}
.p-contact__form--table dl:nth-of-type(1) {
    margin-top: 0;
}

.p-contact__form--table dl dt {
    width: 182px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    padding-top: 19px;
}

.p-contact__form--table dl dt .--required {
    color: #ff3719;
    margin-left: 4px;
}

.p-contact__form--table dl dt .--small {
    font-size: 12px;
}

.p-contact__form--table dl dd {
    width: calc(100% - 182px);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.p-contact__form--table dl.--radio dd {
    padding-top: 19px;
    padding-bottom: 19px;
    font-weight: 500;
}

.p-contact__form--table dl dd input[type=text],
.p-contact__form--table dl dd input[type=email],
.p-contact__form--table dl dd input[type=tel],
.p-contact__form--table dl dd input[type=date],
.p-contact__form--table dl dd input[type=time],
.p-contact__form--table dl dd textarea {
    background-color: #F8F8F8;
    width: 100%;
    border-radius: 15px;
    padding: 19px 20px;
    border: #DADADA solid 1px;
}

.p-contact__form--table dl dd textarea {
    min-height: 160px;
    resize: vertical;
}

.p-contact ::placeholder {
    color: #a9a9a9;
}

.p-contact__form--table dl.--radio dd label {
    margin-right: 28px;
}
.p-contact__form--table dl.--radio dd label:last-of-type {
    margin-right: 0;
}

.p-contact__form--table dl.--radio dd label input {
    display: none;
}

.p-contact__form--table dl.--radio dd label span {
    position: relative;
    padding-left: 25px;
}

.p-contact__form--table dl.--radio dd label span::before {
    background-color: #f8f8f8;
    border: #a9a9a9 solid 1px;
    border-radius: 100vh;
    content: '';
    height: 20px;
    left: 0;
    position: absolute;
    top: 3px;
    width: 20px;
}

.p-contact__form--table dl.--radio dd label span::after {
    background-color: #FF6E00;
    border-radius: 100vh;
    content: '';
    height: 14px;
    left: 3px;
    position: absolute;
    top: 6px;
    width: 14px;
    opacity: 0;
}
.p-contact__form--table dl.--radio dd label input:checked+span::after {
    opacity: 1;
}

.p-contact__form--table dl.--date dd {
    display: flex;
    justify-content: space-between;
}

.p-contact__form--table dl.--date dd input {
    width: calc(50% - 5px);
}

.p-contact__privacy {
    overflow-y: scroll;
    background-color: #fff;
    border: 1px solid #d2d2d2;
    height: 120px;
    padding: 14px 15px 15px;
    font-weight: 500;
    font-size: 13px;
    line-height: 190%;
    border-radius: 15px;
    max-width: 677px;
    margin: 25px auto 0;
}

.p-contact__agreement {
    margin-top: 35px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.p-contact__agreement label input {
    display: none;
}

.p-contact__agreement label span {
    position: relative;
    padding-left: 27px;
}

.p-contact__agreement label span::before {
    background-color: #f8f8f8;
    border: 1px solid #d2d2d2;
    content: '';
    height: 18px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 18px;
    border-radius: 3px;
}
.p-contact__agreement label span::after {
    background: url('../img/check.svg') no-repeat center center/contain;
    content: '';
    height: 16px;
    left: 1px;
    position: absolute;
    top: 6px;
    width: 16px;
    opacity: 0;
}

.p-contact__agreement label input:checked + span::after {
    opacity: 1;
}

.p-contact__btn--wrapper {
    text-align: center;
    margin-top: 33px;
}

.p-contact__btn--wrapper button {
    width: 282px;
    height: 64px;
    background-color: #FF6E00;
    border-radius: 100vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    position: relative;
    transition: opacity .5s;
}

.p-contact__btn--wrapper button::before {
    content: '';
    height: calc(100% - 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 4px);
    transform: translate(-50%, -50%);
    border: #fff solid 2px;
    border-radius: 100vh;
}

@media screen and (min-width: 901px) {
    .p-contact__btn--wrapper button:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 900px) {
    .p-contact {
        padding-top: 45px;
        padding-bottom: 50px;
        border-top: #0a0a0a solid 2px;
    }
    
    .p-contact__head {
        max-width: 345px;
        margin: 0 auto;
    }
    
    .p-contact__subHead {
        max-width: 340px;
        margin: 13px auto 0;
    }
    
    .p-contact .p-cta__btn--wrapper {
        margin-top: 8px;
    }
    
    .p-contact__form {
        margin: 20px auto 0;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 5px 5px 0px 0px rgba(10, 10, 10, .25);
    }
    
    .p-contact__form--inner {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .p-contact__form--table dl {
        display: block;
        margin-top: 20px;
    }
    
    .p-contact__form--table dl dt {
        width: 100%;
        font-size: 15px;
        padding-top: 0;
    }
    
    .p-contact__form--table dl dt .--required {
        margin-left: 3px;
    }
    
    .p-contact__form--table dl dt .--small {
        font-size: 10px;
    }
    
    .p-contact__form--table dl dd {
        width: 100%;
        font-size: 15px;
        margin-top: 10px;
    }
    
    .p-contact__form--table dl.--radio dd {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .p-contact__form--table dl dd input[type=text],
    .p-contact__form--table dl dd input[type=email],
    .p-contact__form--table dl dd input[type=tel],
    .p-contact__form--table dl dd input[type=date],
    .p-contact__form--table dl dd input[type=time],
    .p-contact__form--table dl dd textarea {
        border-radius: 10px;
        padding: 16px 15px;
    }
    
    .p-contact__form--table dl dd textarea {
        min-height: 150px;
    }
    
    .p-contact__form--table dl.--radio dd label {
        margin-right: 18px;
    }
    
    .p-contact__form--table dl.--radio dd label input {
        display: none;
    }
    
    .p-contact__form--table dl.--radio dd label span {
        position: relative;
        padding-left: 18px;
    }
    
    .p-contact__form--table dl.--radio dd label span::before {
        height: 14px;
        top: 4px;
        width: 14px;
    }
    
    .p-contact__form--table dl.--radio dd label span::after {
        height: 10px;
        left: 2px;
        top: 6px;
        width: 10px;
    }
    
    .p-contact__form--table dl.--date dd {
        display: flex;
        justify-content: space-between;
    }
    
    .p-contact__form--table dl.--date dd input {
        width: calc(50% - 5px);
    }
    
    .p-contact__privacy {
        overflow-y: scroll;
        background-color: #fff;
        border: 1px solid #d2d2d2;
        height: 120px;
        padding: 14px 15px 15px;
        font-weight: 500;
        font-size: 13px;
        line-height: 190%;
        border-radius: 10px;
        max-width: 677px;
        margin: 25px auto 0;
    }
    
    .p-contact__agreement {
        margin-top: 20px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        text-align: center;
    }
    
    .p-contact__agreement label input {
        display: none;
    }
    
    .p-contact__agreement label span {
        position: relative;
        padding-left: 27px;
        text-align: left;
    }
    
    .p-contact__agreement label span::before {
        top: 3px;
    }
    .p-contact__agreement label span::after {
        top: 5px;
    }
    
    .p-contact__agreement label input:checked + span::after {
        opacity: 1;
    }
    
    .p-contact__btn--wrapper {
        text-align: center;
        margin-top: 20px;
    }
    
    .p-contact__btn--wrapper button {
        width: 282px;
        height: 68px;
        font-size: 18px;
    }
    
    .p-contact__btn--wrapper button::before {
        height: calc(100% - 3px);
        width: calc(100% - 3px);
        transform: translate(-50%, -50%);
        border: #fff solid 1px;
    }
}

/*===========================================================================*/
/*  thanks  */
/*===========================================================================*/
.p-thanks {
    margin-top: 91px;
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    background-color: #FEF1C4;
}
.p-thanks::before {
    background: url('../img/thanks-bg.webp') no-repeat center center/contain;
    content: '';
    height: 1282px;
    left: 50%;
    position: absolute;
    top: -649px;
    width: 1231px;
    transform: translate(-50%, 0px);
}

.p-thanks__inner {
    position: relative;
    z-index: 2;
}

.p-thanks__subHead {
    max-width: 699px;
    margin: 0 auto;
}

.p-thanks__head {
    font-size: 24px;
    font-weight: 900;
    line-height: 2.13;
    text-align: center;
    margin-top: 20px;
}

.p-thanks__txt {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.86;
}

.p-thanks__btn--wrappr {
    text-align: center;
    margin-top: 33px;
}

.p-thanks__btn {
    width: 282px;
    height: 64px;
    background-color: #FF6E00;
    border-radius: 100vh;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    position: relative;
}

.p-thanks__btn::before {
    content: '';
    height: calc(100% - 4px);
    left: 50%;
    position: absolute;
    top: 50%;
    width: calc(100% - 4px);
    transform: translate(-50%, -50%);
    border: #fff solid 2px;
    border-radius: 100vh;
}

@media screen and (max-width: 900px) {
    .p-thanks {
        margin-top: 0;
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .p-thanks::before {
        height: 1137px;
        top: -580px;
        width: 1092px;
    }
    
    .p-thanks__subHead {
        max-width: 261px;
    }
    
    .p-thanks__head {
        font-size: 16px;
        margin-top: 14px;
    }
    
    .p-thanks__txt {
        margin-top: 10px;
        font-size: 12px;
    }
    
    .p-thanks__btn--wrappr {
        text-align: center;
        margin-top: 30px;
    }
    
    .p-thanks__btn {
        width: 202px;
        height: 56px;
        font-size: 16px;
        font-weight: 900;
    }
    
    .p-thanks__btn::before {
        height: calc(100% - 3px);
        width: calc(100% - 3px);
        border: #fff solid 1px;
    }
}

/*===========================================================================*/
/*  company  */
/*===========================================================================*/
.p-company {
    padding-top: 100px;
    padding-bottom: 100px;
}

.p-company__inner {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: .05em;
    font-weight: 500;
}

.p-company__table {
    max-width: 757px;
    margin: 40px auto 0;
}

.p-company__table dl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: #d2d2d2 solid 1px;
}

.p-company__table dl dt {
    width: 195px;
}
.p-company__table dl dd {
    width: calc(100% - 195px);
}

@media screen and (max-width: 900px) {
    .p-company {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .p-company__inner {
        font-size: 14px;
    }
    
    .p-company__table {
        max-width: 757px;
        margin: 20px auto 0;
    }
    
    .p-company__table dl {
        display: block;
        padding: 16px 0;
    }
    
    .p-company__table dl dt {
        width: 100%;
    }
    .p-company__table dl dd {
        width: 100%;
        margin-top: 7px;
    }
}

/* text */
.c-subHead {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #FF6E00;
}

.c-subHead span {
    position: relative;
}
.c-subHead span::before {
    background: url('../img/txt-deco.svg') no-repeat center center/contain;
    content: '';
    height: 24px;
    left: -35px;
    position: absolute;
    top: -2px;
    width: 15px;
}
.c-subHead span::after {
    background: url('../img/txt-deco.svg') no-repeat center center/contain;
    content: '';
    height: 24px;
    right: -35px;
    position: absolute;
    top: -2px;
    width: 15px;
}

.c-head {
    font-size: 56px;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    margin-top: 20px;
    color: #FF6E00;
}

@media screen and (max-width: 900px) {
    .c-subHead {
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }
    
    .c-subHead span {
        position: relative;
    }
    .c-subHead span::before {
        height: 16px;
        left: -20px;
        top: -3px;
        width: 9px;
    }
    .c-subHead span::after {
        height: 16px;
        right: -20px;
        top: -3px;
        width: 9px;
    }
    
    .c-head {
        font-size: 34px;
        margin-top: 12px;
    }
}
