@charset "utf-8";

/****************************
共通
*****************************/

.inner {
    max-width: 1280px;
    margin: 0px auto;
    letter-spacing: 0.05em;
}

img {
    width: 100%;
    height: 100%;
}

* {
    color: #333;
}

.flex {
    display: flex;
}

body {
    position: relative;
    background-color: #F8F8F8;
    overflow-x: hidden;
}

/*
body::before {
    content: "";
    display: block;
    position: fixed;
    /* ← absoluteよりfixedの方が"常に"表示される */
/***
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: 10px solid #05BBB1;
    box-sizing: border-box;
    /* ← borderを含めて100%にする */
/***
    z-index: 9999;
    /* 必要に応じてもっと前に */
/***
    pointer-events: none;
    /* ← クリックできなくする（必要なら） */
/***
}
    */

.page-node-type-webform section:not(.node) {
    padding-left: 20px;
    padding-right: 20px;
}

/****************************
ボタンホバー
*****************************/

@media (hover: hover) {

    /*バナーのボタン*/
    .page-node-type-webform .banner_btn .contact:hover {
        transform: translateY(-6px);
    }

    .page-node-type-webform .banner_btn .download:hover {
        transform: translateY(-6px);
    }

    /*フッターのボタン*/
    .footer_btn:hover {
        transform: translateY(6px);
    }

    .footer_btn a:hover {
        box-shadow: none;
        background-color: #18A29F;
        color: #fff;
    }
}

/****************************
header
*****************************/

header {
    position: absolute;
    z-index: 10;
    background-color: #fff;
    padding: 10px;
    margin-left: 10px;
    margin-top: 10px;
    width: 180px;
}

/*
レスポンシブ
**************************************/
@media screen and (max-width:768px) {
    header {
        width: 150px;
    }
}

@media screen and (max-width:550px) {
    header {
        width: 100px;
        padding: 5px;
    }
}

/****************************
メインビジュアル
*****************************/
.mv {
    position: relative;
}

.page-node-type-webform section.mv {
    padding: 0;
}

.mv::before,
.mv::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50vw;
    z-index: 0;
}

.mv::before {
    left: 0;
    background-color: #05BBB1;
    /* background-image: url(../img/left_back.webp); */
}

.mv::after {
    right: 0;
    background-color: #F8F8F8;
}

.mv .inner {
    max-height: 100vh;
}

/*左側*/

.visual {
    width: 52%;
    position: relative;
    z-index: 1;
    background-image: url(../img/left_back.webp);
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}

.visual>picture {
    position: relative;
    display: inline-block;
    /* background-color: #05BBB1; */
    height: 100%;
    width: 92%;
}

/* .visual>picture::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -75px;
    width: 80px;
    height: 100%;
    background-image: url(../img/mv_left_before.webp);
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
} */

.visual.left::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 200px;
    height: 180px;
    background-image: url(../img/mv_track.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.visual>picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    object-position: center;
}

@media screen and (max-width:1040px) {
    .visual>picture img {
        object-position: center;
    }
}

/*右側フォーム*/

div#mvdl {
    width: calc(50% - 65px);
    position: relative;
    z-index: 1;
    margin-left: auto;
    background-color: #F8F8F8;
    padding: 10px 20px 10px;
}

form .webform-element--title-inline label {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    width: 35%;
}

form .webform-element--title-inline {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.hs-input {
    border: none;
    width: 100%;
    height: 3rem;
    padding: 10px;
    border: 1px solid #333;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}

#edit-flexbox-01 {
    padding: 10px;
    background: #e5e7e9;
    border-radius: 5px;
    margin-top: 10px;
}

.js-form-item-policy>input,
.js-form-item-policy>label {
    margin: 10px 0;
}

.js-form-item-policy>label {
    margin-left: 10px;
}

.js-form-item-policy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* チェックボックスをカスタム */
input[type="checkbox"].form-checkbox {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #05BBB1;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #fff;
}

/* チェックされたときの背景 */
input[type="checkbox"].form-checkbox:checked {
    background-color: #05BBB1;
}

/* チェックマークの線を描く */
input[type="checkbox"].form-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.js-form-item-policy .description {
    width: 100%;
}

.hs-button {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.download-btn {
    background-color: #fff;
    border: 3px solid #18A29F;
    width: 300px;
    height: 55px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 10px auto 0px;
}

.download-btn input {
    color: #18A29F;
    font-weight: bold;
}

#edit-flexbox-01 .webform-flex--container label {
    font-size: 14px;
    font-weight: 600;
}

form .description {
    font-size: 12px;
}


/*
レスポンシブ
**************************************/

@media screen and (max-width:992px) {
    .mv .flex {
        flex-direction: column;
        /* align-items: stretch;  */
    }

    div#mvdl {
        width: 100%;
        margin-top: 20px;
    }

    .visual {
        width: 60%;
        margin: 0 auto;
        background-image: none;
    }

    .mv .inner {
        max-height: 100%;
    }

    .mv::before,
    .mv::after {
        content: none;
    }

    .mv .visual,
    .mv .mv-form {
        position: relative;
    }

    .mv .visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background-color: #05BBB1;
        margin: calc(50% - 50vw);
        margin-top: 0;
        background-image: url(../img/sp_mv_back.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    /* 
    .mv .mv-form::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background-color: #F8F8F8;
        margin: calc(50% - 50vw);
        margin-top: 0;
        z-index: -1;
    } */

    /* .visual>picture::after {
        content: none;
    } */

    /* .mv .visual::after {
        content: '';
        display: block;
        position: absolute;
        bottom: -30px;
        left: 50%;
        width: 100vw;
        height: 90px;
        background-image: url(../img/mv_sp_before.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
        transform: translateX(-50%);
    } */

    .visual.left::after {
        width: 150px;
        height: 135px;
    }

    .visual>picture {
        padding: 20px;
        width: 100%
    }

}

@media screen and (max-width: 768px) {
    .visual {
        width: 80%;
    }

    .visual>picture {
        padding: 70px 20px 0;
    }
}

@media screen and (max-width: 550px) {
    div#mvdl {
        padding: 0 20px;
    }

    .visual {
        width: 100%;
    }


    .visual.left::after {
        right: 5px;
        width: 25%;
        height: 28%;
    }

    .visual>picture {
        padding: 50px 20px 0;
    }

    /* 
    .visual>picture {
        margin-top: 10px;
    } */
}

/****************************
 banner comment
*****************************/
.banner_comment {
    background-color: #F8F8F8;
    padding-top: 50px;
}


.banner_comment .inner>div {
    max-width: 1014px;
    margin: 0px auto 0;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.bc_box {
    padding: 33px 30px 30px;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
}

.bc_box>div {
    width: fit-content;
    margin: 0 auto;
}

.banner_comment .inner>div::before,
.bc_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px;
    /* 枠の太さ */
    background: linear-gradient(to bottom,
            #A17F29 0%,
            #CB9E32 26%,
            #BA9130 53%,
            #CB9E32 77%,
            #A38228 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    /* 背景に回す */
}

.bc_box::before {
    padding: 2px;
    /* 枠の太さ */
}

.bc_box span {
    padding-left: 115px;
    position: relative;
    margin-left: 10px;
}

.bc_box span::before {
    content: '';
    display: inline-block;
    background-image: url(../img/30minute.webp);
    width: 120px;
    height: 53px;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
}

.bc_box div:nth-of-type(2) {
    background-color: #FFDC00;
    color: #013E2E;
    width: fit-content;
    font-size: 24px;
    padding: 5px 10px;
    margin: 10px 0px;
}

.bc_box br {
    display: none;
}

/*
レスポンシブ
**************************************/

@media screen and (max-width:992px) {
    .bc_box {
        font-size: 1.4rem;
        padding: 33px 30px 20px;
    }

    .bc_box div div {
        width: fit-content;
        margin: 0 auto;
    }

    .bc_box div:nth-of-type(2) {
        font-size: 1.3rem;
    }

    .bc_box span::before {
        width: 100px;
        height: 45px;
    }

    .bc_box span {
        padding-left: 100px;
    }
}

@media screen and (max-width:768px) {
    .bc_box {
        font-size: 20px;
        padding: 19px 20px 20px;
    }

    .bc_box span::before {
        width: 80px;
        height: 31px;
    }

    .bc_box span {
        padding-left: 72px;
    }
}

@media screen and (max-width:600px) {
    .bc_box br {
        display: block;
    }

    .bc_box span {
        line-height: 50px;
    }
}

@media screen and (max-width:550px) {

    .bc_box>div:first-child {
        line-height: 40px;
    }

    .bc_box span::before {
        bottom: 0;
    }

    .bc_box span {
        margin-left: 0;
    }
}

/****************************
services
*****************************/

.page-node-type-webform .services .inner {
    border: solid 6px #d8eff3;
    padding: 35px 60px 0px;
    border-radius: 10px;
    background-color: #fff;
    margin: 0px auto;
    position: relative;
    top: 50px;
}

.page-node-type-webform .services .flex {
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.page-node-type-webform .services .section-lead {
    background-color: #05bbb1;
    color: #fff;
    text-align: center;
    width: fit-content;
    border-radius: 9999px;
    margin: 0 auto;
    padding: 5px 30px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

/* p.section-lead:before {
    position: absolute;
    top: 100%;
    left: 50%;
    height: 15px;
    width: 15px;
    border-right: 3px solid #05bbb1;
    content: "";
    transform: translateX(-50%) skew(-40deg);
} */

.page-node-type-webform .services .section-heading {
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
}

.page-node-type-webform .services .section-heading p {
    text-align: left;
    font-size: 20px;
    margin: 0px;
}

.page-node-type-webform .services .section-heading span {
    font-size: 40px;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #c8a630 70%, #DAAF08 85%, #B67B03 90% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.page-node-type-webform .services .section-heading h2 {
    font-size: 32px;
}

.premium-features {
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
    margin: 30px 15px 60px;
}

.page-node-type-webform .services ul {
    font-size: 24px;
    padding: 0px;
}

.page-node-type-webform .services ul li:first-child::before {
    content: "01";
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    margin-right: 5px;
    color: #05BBB1;
    font-weight: 500;
}

.page-node-type-webform .services ul li:nth-child(2)::before {
    content: "02";
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    margin-right: 5px;
    color: #05BBB1;
    font-weight: 500;
}

.page-node-type-webform .services ul li:nth-child(3)::before {
    content: "03";
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    margin-right: 5px;
    color: #05BBB1;
    font-weight: 500;
}

.page-node-type-webform .services ul li:nth-child(4)::before {
    content: "04";
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    margin-right: 5px;
    color: #05BBB1;
    font-weight: 500;
}

.page-node-type-webform .services div.flex {
    margin-top: 25px;
    align-items: stretch;
}

.page-node-type-webform .services .feature-item {
    border: 3px solid #13CAC6;
    background-color: #fff;
    border-radius: 15px;
    flex: 1;
    padding: 20px;
    max-width: calc(33.33% - 13.33px);
    margin-bottom: 45px;
    /* height: 430px; */
    position: relative;
    box-shadow: 4px 4px 23px rgba(121, 121, 121, 0.15);
}

.page-node-type-webform .services .feature-item div {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    height: 90px;
    border-bottom: 1px solid;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    padding-bottom: 15px;
}

.page-node-type-webform .services .feature-item p {
    line-height: 27px;
    margin-top: 20px;
}

.page-node-type-webform .services .feature-item:before {
    content: "";
    background-image: url(../img/check-mark.webp);
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 63px;
    height: 63px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -27px;
}

/*
レスポンシブ
**************************************/
@media only screen and (max-width: 992px) {
    .page-node-type-webform .services div.flex {
        flex-direction: column;
    }

    .page-node-type-webform .services div.feature-item {
        max-width: 100%;
    }

    .page-node-type-webform .services .flex {
        gap: 20px;
        font-size: 18px;
        align-items: baseline;
    }

    .page-node-type-webform .services .feature-item div {
        height: auto;
        width: fit-content;
    }

    .page-node-type-webform .services .feature-item div>br {
        display: none;
    }
}


@media only screen and (max-width: 768px) {
    .page-node-type-webform .services ul.flex {
        /* flex-direction: column; */
        flex-wrap: wrap;
        width: fit-content;
        margin: 0 auto;
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .page-node-type-webform .services ul.flex li {
        width: fit-content;
    }

    .page-node-type-webform .services .section-heading span {
        font-size: 30px;
    }

    .page-node-type-webform .services .section-heading h2 {
        font-size: 20px;
    }

    .page-node-type-webform .services .section-lead {
        font-size: 18px;
    }

    .page-node-type-webform .services .feature-item div {
        /* height: 85px; */
        font-size: 20px;
        width: fit-content;
    }
}

@media only screen and (max-width: 500px) {
    .page-node-type-webform .services .section-lead {
        padding: 5px 10px;
    }

    .page-node-type-webform .services .section-heading span {
        font-size: 24px;
    }

    .page-node-type-webform .services .section-heading h2 {
        font-size: 18px;
    }

    .page-node-type-webform .services .feature-item p,
    .page-node-type-webform .services .flex {
        font-size: 16px;
    }

    .page-node-type-webform .services .section-heading p {
        font-size: 18px;
    }

    .page-node-type-webform .services .section-lead {
        font-size: 15px;
    }

    .page-node-type-webform .services ul.flex {
        flex-direction: column;
    }
}





/****************************
reason
*****************************/
.reason {
    padding-top: 75px;
    padding-bottom: 70px;
    background-color: #05bbb1;
}

.reason_ttl p {
    color: #fff;
    font-size: 20px;
    width: fit-content;
    font-weight: 600;
    border-top: solid 1px;
    border-bottom: solid 1px;
    padding: 7px 0px;
    margin: 0 auto;
}

.reason_ttl div {
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    margin-top: 25px;
}

.reason_ttl div span {
    color: #ffea47;
    font-size: 32px;
    font-weight: 600;
    padding: 10px;
    margin: 0 5px;
}

.reason .inner h2 {
    color: #fff;
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    /* margin: 25px 0px 30px; */
    margin: 0px 0px 50px;
    letter-spacing: 3.2px;
}

.reason .inner h2 span {
    font-size: 40px;
    color: #fff;
}

.reason_box>div {
    box-shadow: 1.5px 3.5px 8px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    border: 0.86px solid #d5d5d5;
    font-size: 20px;
    position: relative;
    /* font-weight: 600; */
}

.flex.reason_box {
    gap: 35px;
}

.reason_box.above>div {
    flex: 1;
    padding: 20px;
    max-width: calc(33.33% - 13.33px);
    margin-bottom: 50px;
    height: 240px;
}

.reason_box.under>div {
    flex: 1;
    padding: 20px;
}

.reason_box>div>div {
    font-size: 40px;
}

.reason_box>div::before {
    content: '';
    display: inline-block;
    width: 108px;
    height: 108px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -40px;
    right: 30px;
}

.r_01::before {
    background-image: url(../img/icon/01reason.svg);
    /*right: 0 !important;*/
}

.r_02::before {
    background-image: url(../img/icon/02reason.svg);
}

.r_03::before {
    background-image: url(../img/icon/03reason.svg);
}

.r_04::before {
    background-image: url(../img/icon/04reason.svg);
}

.r_05::before {
    background-image: url(../img/icon/05reason.svg);
}

/*
レスポンシブ
**************************************/

@media screen and (max-width:992px) {

    .reason_ttl h2,
    .reason_box>div>div {
        font-size: 1.5rem;
    }

    .reason_ttl div {
        font-size: 20px;
    }

    .reason_box>div::before {
        width: 68px;
        height: 68px;
        top: -30px;
    }

}

@media screen and (max-width:768px) {
    .flex.reason_box {
        flex-direction: column;
        gap: 25px;
    }

    .reason_ttl {
        margin-bottom: 30px;
    }

    .reason_box.above>div,
    .reason_box.under>div {
        max-width: 90%;
        margin: 0 auto;
        width: 100%;
    }

    .reason_box>div::before {
        width: 85px;
        height: 85px;
        top: -20px;
    }

    .flex.reason_box.under {
        margin-top: 25px;
    }

    .reason_box>div {
        font-size: 16px;
    }

    .reason_ttl {
        width: fit-content;
        margin: 0 auto 10px;
    }

    .reason_ttl div span,
    .reason .inner h2 {
        font-size: 24px;
    }

    .reason .inner h2 span {
        font-size: 30px;
    }


}

@media only screen and (max-width: 570px) {

    .reason_ttl div {
        font-size: 16px;
    }

    .reason_ttl div span {
        font-size: 20px;
    }

    .reason .inner h2 {
        font-size: 18px;
    }

    .reason .inner h2 span {
        font-size: 1.5rem;
    }

}

@media only screen and (max-width: 500px) {

    .reason_ttl span {
        width: 100%;
        display: block;
    }

    .reason_ttl div span {
        padding: 0;
    }

    .page-node-type-webform .services .inner {
        padding: 50px 20px 0px;
    }

    .reason .inner h2 {
        margin: 0 0 30px;
    }

    /* .reason .inner h2 {
        font-size: 24px;
    } */

    /* .reason .inner h2 span {
        font-size: 28px;
    } */
}

/****************************
 バナーボタン
*****************************/
.page-node-type-webform .banner_btn {
    background-image: url(../img/check_back.webp);
    padding-top: 50px;
    padding-bottom: 50px;

}

.page-node-type-webform .banner_btn .inner {
    background-color: #05BBB1;
    padding: 10px;
}

.page-node-type-webform .banner_btn .flex {
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-bottom: 15px;
}

.page-node-type-webform .banner_btn .inner .wrap-border {
    border: #fff solid 2px;
    padding: 20px;
}

.page-node-type-webform .banner_btn .wrap-border p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.page-node-type-webform .banner_btn .wrap-border p span {
    font-size: 24px;
    color: red;
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
    font-weight: bold;
    margin-left: 5px;
}

.page-node-type-webform .banner_btn .contact {
    background-color: #fff;
    border: solid #18A29F 2px;
    box-shadow: 3px 3px 0 #fff;
    transition: transform 0.3s ease;
}

.page-node-type-webform .banner_btn .contact a,
.page-node-type-webform .banner_btn .download a {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    width: 400px;
    height: 80px;
    padding: 15px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-node-type-webform .banner_btn .contact a {
    color: #18A29F;
}

.page-node-type-webform .banner_btn .download {
    background-color: #FBA637;
    border: solid #FBA637 2px;
    box-shadow: 3px 3px 0 #fff;
    transition: transform 0.3s ease;
}

.page-node-type-webform .banner_btn .download a {
    color: #fff;
}

/*
レスポンシブ
**************************************/
@media only screen and (max-width: 992px) {

    .page-node-type-webform .banner_btn .contact a,
    .page-node-type-webform .banner_btn .download a {
        width: 300px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .page-node-type-webform .banner_btn .flex {
        flex-direction: column;
    }

    .page-node-type-webform .banner_btn .contact a,
    .page-node-type-webform .banner_btn .download a {
        width: 370px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 500px) {

    .page-node-type-webform .banner_btn .contact a,
    .page-node-type-webform .banner_btn .download a {
        width: 260px;
        font-size: 16px;
    }
}


/****************************
 price
*****************************/
.page-node-type-webform section.price {
    background-color: #EBF9F8;
    padding-top: 50px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}

.page-node-type-webform .price .inner::before {
    content: '';
    position: absolute;
    background-color: #D8EFF3;
    width: 600px;
    height: 300px;
    border-radius: 0px 0px 9999px 9999px;
    z-index: -1;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.page-node-type-webform .price h2 span {
    border-bottom: solid 2px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.page-node-type-webform .price h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.page-node-type-webform .price .subtitle {
    text-align: center;
    font-size: 20px;
    color: #05BBB1;
    font-weight: bold;
}

.page-node-type-webform .price .price-txt {
    text-align: center;
}

/*-------------------料金表---------------------*/

/*共通*/

.page-node-type-webform .price-box {
    width: 400px;
    position: relative;
}

.page-node-type-webform .price .flex {
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-node-type-webform .price .inner>.flex {
    gap: 50px;
    padding: 20px;
}

.page-node-type-webform .back-white {
    background-color: #fff;
    height: 200px;
}

.basic-price-txt {
    background-color: #05BBB1;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    height: 63px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.basic-price-txt:after {
    content: "";
    position: absolute;
    border: 15px solid transparent;
    border-bottom-color: #05BBB1;
    z-index: 1;
    top: -25px;
}

/*基本料金*/
.page-node-type-webform .basic-price .back-white {
    gap: 20px;
}

.page-node-type-webform .basic-price .flex::before {
    content: '今だけ';
    position: absolute;
    left: -40px;
    top: -40px;
    background-color: #FFCE00;
    width: 90px;
    height: 90px;
    border-radius: 9999px 9999px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

/* .price_zero {
    display: flex;
} */

.price_zero {
    width: 110px;
}

.per-year::before {
    content: '';
    background-image: url(../img/price_0.webp);
    width: 123px;
    height: 154px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
}

.page-node-type-webform .basic-price .flex div {
    font-size: 20px;
    font-weight: bold;

}

.basic-price-txt span {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-left: 30px;
    position: relative;
}

.basic-price-txt span::before {
    content: "";
    position: absolute;
    top: 50%;
    /* 真ん中あたりに重ねる */
    left: 0;
    width: 100%;
    height: 2px;
    /* 線の太さ */
    background-color: red;
    /* 好きな色でOK */
    transform: translateY(-50%);
    /* 縦中央に調整 */
    z-index: 2;
    /* 文字の上にしたいなら、文字より大きい値に */
    transform: rotate(-30deg);
}

.plus {
    font-size: 40px;
    color: #05BBB1;
    text-align: center;
    font-weight: bold;
}

.page-node-type-webform .reason h2>br {
    display: none;
}


/*オプション料金*/
.movie-price .back-white .flex {
    gap: 20px;
}

.movie-price .back-white>div {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #05BBB1;
}

.page-node-type-webform .movie-price .back-white {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-node-type-webform .movie-price .flex {
    padding: 0px;
}

.page-node-type-webform .movie-price .flex div {
    color: #000;
    font-size: 20px;
}

.big-number span {
    font-size: 64px;
    font-weight: bold;
}

.movie-price.price-box:after {
    content: "※プレミアムプランだけ";
    position: absolute;
    right: 0px;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.7px;
    margin-top: 10px;

}


/*
レスポンシブ
**************************************/
@media only screen and (max-width: 992px) {
    .page-node-type-webform .price .inner>.flex {
        gap: 30px;
    }

    .per-year::before {
        width: 93px;
        height: 124px;
    }

    .basic-price-txt span {
        margin-left: 10px;
    }

    .basic-price-txt {
        font-size: 16px;
    }

    .basic-price-txt span {
        font-size: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .page-node-type-webform .price .inner>.flex {
        gap: 20px;
        flex-direction: column;
    }

    .page-node-type-webform .price .inner::before {
        width: 500px;
        height: 250px;
    }

    .page-node-type-webform .price h2 {
        font-size: 1.5rem;
    }

    .page-node-type-webform .price h2 span {
        font-size: 14px;
    }

    .big-number span {
        font-size: 40px;
    }

    .per-year::before {
        width: 80px;
        height: 95px;
    }

    .page-node-type-webform .back-white {
        height: 150px;
    }
}

@media only screen and (max-width: 500px) {
    /* .page-node-type-webform .price h2 {
        font-size: 28px;
    } */

    .page-node-type-webform .reason h2>br {
        display: block;
    }

    .page-node-type-webform .price .inner::before {
        width: 320px;
        height: 160px;
    }

    .page-node-type-webform .price-box {
        width: 330px;
    }

    .page-node-type-webform .basic-price .flex::before {
        font-size: 16px;
        width: 70px;
        height: 70px;
        left: -5px;
    }
}

/****************************
 premium-start
*****************************/
section.premium-start {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
}

.premium-start .subtitle {
    text-align: center;
    border-bottom: solid 2px;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 2em;
}

.premium-start-ttl-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    margin-bottom: 15px;
}

.premium-start-ttl {
    font-size: 32px;
    font-weight: bold;
    margin-left: 10px;
    letter-spacing: 0.05em;
    line-height: 50px;
}

.premium-start-ttl span {
    font-size: 18px;
    border: solid 1px;
    border-radius: 9999px;
    padding: 10px;
    margin-right: 10px;
    color: #fff;
    font-weight: 800;
}

.premium-start-ttl span.gold {
    background: linear-gradient(225deg, #B67B03 0%, #DAAF08 15%, #c8a630 30%, #DAAF08 55%, #B67B03 100%);
}

.premium-start-ttl span.silver {
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #b6b6b6 70%, #9E9E9E 85%, #757575 100%)
}

.premium-plan-wrap,
.standard-plan-wrap {
    border: solid 1px #05BBB1;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

.standard-plan-wrap .premium-start-mv img {
    width: 600px;
}

.premium-start h3 {
    /* background-color: #05bbb1; */
    background: linear-gradient(225deg, #B67B03 0%, #DAAF08 15%, #c8a630 30%, #DAAF08 55%, #B67B03 100%);
    width: fit-content;
    margin: auto;
    color: #fff;
    padding: 5px 10px;
    border-radius: 9999px;
    font-weight: 800;
}

.standard-plan-wrap h3 {
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #b6b6b6 70%, #9E9E9E 85%, #757575 100%)
}

.premium-start-mv {
    /* position: relative; */
    width: fit-content;
    margin: 0 auto;
    width: 900px;
}

.premium-start-mv img {
    width: 900px;
    height: auto;
    /* ← これが大事。縦横比キープされる */
    display: block;
    margin: 0 auto;
    margin-top: 100px;
}

.premium-start-mv::before {
    content: "";
    max-width: 1280px;
    width: 100%;
    /* height: 180px; */
    height: 220px;
    background-image: url(../img/seal.webp);
    display: inline-block;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    margin: 0 auto;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 60px;
    margin-right: 20px;
    /* border: 1px solid; */
}

/* 
.standard-plan-wrap .premium-start-mv::before {
    top: 60px;
} */

.premium-start-txt {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.number {
    color: #05BBB1;
    font-size: 36px;

}

.number span {
    color: #05BBB1;
    /* font-size: 125px; */
    font-size: 80px;
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

/*自社の運送車両の下　ふきだしborder*/

.number-label {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    position: absolute;
    width: fit-content;
    padding: 10px 0px;
    border-bottom: 2px solid #05BBB1;
    top: -35px;
}

.number-label::before {
    content: "";
    position: absolute;
    top: 97%;
    left: 71px;
    border: 6px solid transparent;
    border-top-color: #ffffff;
    border-left-color: #ffffff;
    z-index: 2;
}

.number-label::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 69px;
    border: 8px solid transparent;
    border-top-color: #05BBB1;
    border-left-color: #05BBB1;
    z-index: 1;
}

/*
レスポンシブ
**************************************/


@media only screen and (max-width: 992px) {
    .premium-start-mv {
        width: 675px;
    }

    .premium-start-mv img {
        width: 675px;
    }

    /* .premium-start-mv::before {
        width: 155px;
        height: 155px;
        right: 25px;
        top: -70px;
    } */

    .standard-plan-wrap .premium-start-mv img {
        width: 500px;
    }

    /* 
    .standard-plan-wrap .premium-start-mv::before {
        top: -70px;
    } */

    .premium-start-mv::before {
        /* height: 160px; */
        height: 190px;
        top: 80px;
    }

    .premium-start-mv img {
        margin-top: 140px;
    }

    /* 
    .standard-plan-wrap .premium-start-mv::before {
        top: 50px;
    } */

    .premium-start-txt {
        font-size: 24px;
    }

    .number {
        font-size: 30px;

    }
}

@media only screen and (max-width: 768px) {
    .premium-start-mv {
        width: 100%;
    }

    .premium-start-mv::before {
        background-image: url(../img/sp_seal.webp);
        top: 85px;
        max-width: 100%;
        height: 200px;
        margin-right: 0;
        background-position: center;
    }

    .premium-start-mv img {
        width: 100%;
        margin-top: 225px;
        margin-bottom: 20px;
    }

    /* .standard-plan-wrap .premium-start-mv img {
        margin-top: 120px;
    } */

    /* .standard-plan-wrap .premium-start-mv::before {
        top: 90px;
    } */

    /* .premium-start-mv::before {
        width: 100px;
        height: 100px;
        right: 15px;
        top: -50px;
    } */

    .standard-plan-wrap .premium-start-mv img {
        width: 400px;
    }

    /* 
    .standard-plan-wrap .premium-start-mv::before {
        top: -45px;
    } */

    .premium-start-ttl {
        font-size: 1.5rem;
    }

    .price_zero {
        width: 80px;
    }
}

@media only screen and (max-width: 600px) {
    .standard-plan-wrap .premium-start-mv img {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .premium-start .subtitle {
        font-size: 14px;
    }

    .standard-plan-wrap {
        margin-bottom: 0px;
    }

    .premium-start-ttl-wrap {
        margin: 0px;
        height: 100px;
    }

    .premium-start-ttl {
        font-size: 20px;
        line-height: 30px;
    }

    .premium-start-ttl span {
        font-size: 12px;
        padding: 8px;
        border: none;
        margin: 0px;
    }

    .premium-start-ttl span.gold {
        margin-right: 5px;
    }

    .price_zero {
        width: 55px;
    }

    .premium-start h3 {
        font-size: 16px;
    }

    /* .premium-start-mv {
        width: 265px;
    } */

    /* .premium-start-mv img {
        width: 265px;
        padding-bottom: 25px;
    }

    .standard-plan-wrap .premium-start-mv img {
        width: 200px;
    } */

    /* .premium-start-mv::before {
        width: 75px;
        height: 75px;
        right: -10px;
        top: -40px;
    }

    .standard-plan-wrap .premium-start-mv::before {
        top: -40px;
    } */
    .premium-plan-wrap,
    .standard-plan-wrap {
        padding: 20px;
    }

    .premium-start-mv::before {
        top: 75px;
        height: 160px;
    }

    .premium-start-mv img {
        margin-top: 195px;
    }

    /* .standard-plan-wrap .premium-start-mv::before {
        top: 70px;
    } */

    /* .standard-plan-wrap .premium-start-mv img {
        margin-top: 175px;
    } */

    .number-label::before {
        left: 47px;
    }

    .number-label::after {
        left: 45px;
    }

    .number-label {
        font-size: 14px;
        padding: 2px 0px;
        top: -20px;
    }

    .number {
        font-size: 20px;
    }

    .number span {
        font-size: 40px;
    }

    .premium-start-txt {
        font-size: 16px;
    }
}

/****************************
flow
*****************************/
.flow {
    background-color: #F0F7FA;
    padding-bottom: 140px;
}

.flow h2 {
    text-align: center;
    font-size: 40px;
    border-bottom: 1px solid #333;
    width: 400px;
    margin: 0px auto;
    padding-top: 50px;
}

.flow p {
    margin: 0;
}

.flow .flex {
    justify-content: center;
    align-items: stretch;
    /* gap: 40px; */

}

.flow_tx1 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 16px;
    line-height: 1.8;
    padding: 5px;
    background: linear-gradient(to bottom,
            #FFFFFF 0%,
            #E9F6F6 43%,
            #B9E6E5 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 4px;
    margin-bottom: 25px;
    left: 30px;
}

.flow_tx2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 16px;
    line-height: 1.8;
    padding: 5px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #E9F6F6 43%, #B9E6E5 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 4px;
}

.flow_tx1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 10px solid #B9E6E5;
}

.flow_tx2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 0;
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 10px solid #B9E6E5;
}

.flow_content p:first-child {
    font-size: 18px;
    font-weight: bold;
    line-height: 130%;
}


.flow_content {
    position: relative;
    /* padding-inline-start: 35px; */
}

.flow_content::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: 1px solid #05BBB1;
    position: absolute;
    top: 6px;
    left: 14px;
    background-color: #fff;
    z-index: 3;
}

.flow_left .flow_content::before {
    left: -14px;
}

.flow_content.maru_none::before {
    content: none;
}

.flow_content .flow_color {
    color: #05BBB1;
}

/* .flow_content.flow_maru::before {
    background-color: #05BBB1;
} */

.flow_flex_wrap {
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.flow_wrap {
    width: 100%;
    max-width: 616px;
}

.flow_content:not(:last-child),
.flow_content_photo {
    margin-bottom: 20px;
}

/* .flow_content:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 6px;
    width: 2px;
    height: calc(100% + 20px);
    border-radius: 9999px;
    background-color: #05BBB1;
} */

.flow_content_photo::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 6px;
    width: 2px;
    height: calc(100% + 20px);
    border-radius: 9999px;
    background-color: #05BBB1;
}

/* .flow .flex {
    padding: 0px 20px;
} */

.flow-flex {
    display: flex;
    gap: 20px;
}

.flow-flex-left,
.flow-flex-right {
    flex: 1;
}

.flow-flex-title {
    text-align: center;
    margin-top: -20px;
}

.flow-flex-title1,
.flow-flex-title2 {
    font-weight: 600;
    /* display: inline-block; */
    /* height: 25px; */
    border-radius: 15px;
    line-height: 25px;
    padding: 5px 15px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-size: 20px;
    width: fit-content;
}

.flow-flex-title1 {
    background: #ffea47;
}

.flow-flex-title2 {
    background: #05bbb1;
    color: #fff;
}

.flow_content a {
    text-decoration: underline;
}

.pb30 {
    padding-bottom: 30px;
}

.pt30 {
    padding-top: 30px;
}

.flow_left {
    width: 50%;
    /* border: 1px solid; */
}

.flow_right {
    width: 50%;
}

.flow_left .flow_wrap {
    width: 380px;
    margin-left: auto;
    /* border: 1px solid; */
}

.flow_right .flow_wrap {
    width: 380px;
    margin-right: auto;
    /* border: 1px solid; */
}

.flow_flex_wrap>.flex {
    gap: 20px;
}

.flow_left .flow_content {
    padding-inline-end: 20px;
}

.flow_right .flow_content {
    padding-inline-start: 30px;
}

.flow_right.application {
    padding-inline-start: 40px;
}

.sticker_ttl {
    max-width: 380px;
    width: 100%;
    margin-left: auto;
    position: relative;
    left: -15px;
    /* border: 1px solid; */
    margin-right: 40px;
}

.keisai_ttl {
    max-width: 380px;
    width: 100%;
}

.flow_flex_wrap>.flex.top {
    margin-bottom: 10px;
}

.flow_flex_wrap>.flex.bottom>.flow_right .flex {
    height: 100%;
}

.flow_flex_wrap>.flow_content {
    width: fit-content;
    margin: 0 auto 30px;
}

/*
レスポンシブ
**************************************/


@media screen and (max-width:992px) {
    .flow h2 {
        font-size: 1.4rem;
        width: 200px;
    }


    .flow_right,
    .flow_left {
        width: 45%;
    }
}

@media screen and (max-width:920px) {
    .sticker_ttl {
        padding-inline-end: 52px;
        left: -13px;
    }

}

@media screen and (max-width:768px) {
    .flow_flex_wrap>.flex.top {
        margin-bottom: 20px;
    }

    .flow_flex_wrap>.flex {
        gap: 10px;
    }

    .flow_content p:first-child {
        font-size: 16px;
    }

    .flow-flex-title1,
    .flow-flex-title2 {
        font-size: 18px;
    }

    .flow p {
        font-size: 14px;
    }

    .flow_tx1 {
        left: 23px;
    }

}



@media screen and (max-width:550px) {

    .flow {
        padding-bottom: 70px;
    }

    .sticker_ttl {
        padding-inline-end: 35px;
        left: -13px;
    }

    .flow-flex-title1,
    .flow-flex-title2 {
        font-size: 13px;
        /* height: 60px; */
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 5px 0px;
    }

    .flow_left .flow_content {
        padding-inline-end: 15px;
    }

    .flow_right .flow_content {
        padding-inline-start: 20px;
    }

    .flow_content p:first-child,
    .flow_tx1,
    .flow_tx2 {
        font-size: 13px;
    }

    .flow p {
        font-size: 12px;
    }

    .flow_tx1 {
        left: 20px;
    }

    .flow_tx2::after,
    .flow_tx1::after {
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
    }

    .flow_flex_wrap>.flow_content p:first-child {
        font-size: 16px;
    }

    .flow_flex_wrap>.flow_content p:last-child {
        font-size: 14px;
    }

    .flow_content::before {
        top: 3px;
        left: 9px;
        width: 7px;
        height: 7px;
    }

    .flow_left .flow_content::before {
        left: -11px;
    }
}

/****************************
campaign
*****************************/
.campaign {
    background-color: #F6FBFA;
}

.campaign h2 {
    font-size: 40px;
    text-align: center;
    color: #05BBB1;
    margin-bottom: 3%;
}


.campaign_ttl {
    background-color: #05BBB1;
    padding: 10px;
    max-width: 170px;
    width: 100%;
    border-radius: 5px 0 0 5px;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: center;
}

.campaign_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.campaign_ex {
    width: calc(100% - 170px);
    background-color: #fff;
    padding: 19px 19px;
    line-height: 24px;
    border-radius: 0 5px 5px 0;
}

.campaign_wrap .flex:not(:last-child) {
    margin-bottom: 20px;
}

.note {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px solid #FCDB3C;
    margin-top: 60px;
}

.note h3 {
    padding-left: 50px;
    margin-left: 40px;
    padding-top: 20px;
    position: relative;
}

.note h3::before {
    content: '';
    background-image: url(../img/icon/note.webp);
    width: 37px;
    height: 33px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.note ul li {
    line-height: 24px;
    margin-bottom: 10px;
}

.note ul {
    margin-bottom: 20px;
}

/*追加*********/
* section.campaign {
    position: relative;
}

.campaign::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 125px;
    max-width: 100vw;
    background-image: url(../img/campaign_before.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: 1;
    top: -122px;
    right: 0px;
}

/*
レスポンシブ
**************************************/

@media screen and (max-width:992px) {
    .campaign h2 {
        font-size: 1.4rem;
    }

    .campaign_ex {
        padding: 10px 20px;
    }
}

@media screen and (max-width:768px) {
    .note ul {
        padding-inline-start: 20px;
        padding-right: 20px;
    }

    .note h3 {
        margin-left: 20px;
    }
}

@media screen and (max-width:550px) {
    .campaign_wrap .flex {
        flex-direction: column;
    }

    .campaign_ex {
        width: 100%;
    }

    .campaign_ttl {
        border-radius: 0;
    }

    .campaign h2 {
        margin-bottom: 30px;
    }

    .campaign::before {
        height: 80px;
        top: -77px;
    }
}

/****************************
footer
*****************************/

footer .inner {
    padding: 0px 20px;
}

.footer_btn {
    margin: 60px auto;
    text-align: center;
    transition: transform 0.1s ease;
}

.footer_btn a {
    color: #18A29F;
    font-size: 2rem;
    font-weight: bold;
    width: 100%;
    margin: 60px auto;
    background-color: #fff;
    border: 4.5px solid #18A29F;
    padding: 25px 40px;
    border-radius: 9999px;
    box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.25);
    transition: background-color 0.1s ease, color 0.1s ease;
}

small {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    background-color: #000000;
    padding: 10px;
}

/*
レスポンシブ
**************************************/

@media screen and (max-width:992px) {
    .footer_btn a {
        font-size: 1.8rem;
    }

    .footer_btn {
        max-width: 430px;
    }
}

@media screen and (max-width:550px) {
    .footer_btn {
        max-width: 380px;
    }

    .footer_btn a {
        font-size: 24px;
        padding: 25px 15px;
    }
}





/*
ホバー
**************************************/
@media (hover: hover) {
    .download-btn:hover {
        background-color: #18A29F;
    }

    .download-btn:hover input {
        color: #fff;
    }
}