@charset "UTF-8";

/* フォントサイズ */
:root {
    --root-font-size: 16;
}

/* span fontsize */

.fz-24-18 {
    font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
}

.fz-32-20 {
    font-size: clamp(1.25rem, 0.986rem + 1.127vw, 2rem);
}

.fz-32-24 {
    font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
}

.fz-48-18 {
    font-size: clamp(1.125rem, 0.465rem + 2.817vw, 3rem);
}

.fz-50-24 {
    font-size: clamp(1.5rem, 0.928rem + 2.441vw, 3.125rem);
}

.fz-60-50 {
    font-size: clamp(3.125rem, 2.905rem + 0.939vw, 3.75rem);
}

.fz-64-32 {
    font-size: clamp(2rem, 1.296rem + 3.005vw, 4rem);
}

.fz-64-48 {
    font-size: clamp(3rem, 2.648rem + 1.502vw, 4rem);
}

/* span fontweight */

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}

/* span line-height */

.height-1 {
    line-height: 1;
}

/* span italic */

.font-italic {
    font-style: italic;
    line-height: 1;
}

/* span fontfamily */

.family-zen {
    font-family: "Zen Kaku Gothic New", serif;
}

/* span color */

.color-blue {
    color: #0065BA;
}

.color-orange {
    color: #F15F0E;
}

.color-red {
    color: #F10E12;
}



/* 共通設定 */

body {
    color: #474747;
    font-size: calc(16 / var(--root-font-size) * 1rem);
    font-family: "Noto Sans JP", serif;
    line-height: 1.5;
    font-feature-settings: "palt";
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* br */
.pc-only {
    display: none;

    @media(min-width: 768px) {
        display: block;
    }
}

.sp-only {
    display: block;

    @media(min-width: 768px) {
        display: none;
    }
}


/* header */

.header {
    padding-top: 15px;
    padding-bottom: 13.58px;
    padding-left: 29px;

    @media(min-width: 768px) {
        padding-top: 9px;
        padding-bottom: 9px;
        padding-left: 20px;
    }
}

.logo {
    width: 22.133333vw;

    @media(min-width: 768px) {
        width: 260px;
    }
}

.logo__img {
    width: 100%;
}

/* mainvsiaul */

.mainvisual__line-top {
    height: 50px;
    background-color: #0065BA;

    @media(min-width: 768px) {
        height: 80px;
    }
}

.mainvisual__inner {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 260px;
    background-color: #fff;
    position: relative;

    @media(min-width: 300px) {
        height: 300px;
    }
}

.mainvisual__img-women-wrapper {
    display: block;
    width: min(45.866666vw, 300px);
    position: absolute;
    bottom: 0;
    left: -5.333333vw;

    @media(min-width: 768px) {
        display: none;
    }
}

.mainvisual__img-women {
    width: 100%;
}


.mainvisual__title {
    text-align: center;
    font-size: clamp(1.125rem, 0.729rem + 1.69vw, 2.25rem);
    font-weight: 900;
    line-height: 1.2;
    margin-top: 20px;


    @media(min-width: 768px) {
        text-align: left;
        margin-top: 0;
        margin-top: 5vw;
    }
}


.mainvisual__img-cars-wrapper {
    width: 350px;
    position: absolute;
    top: 70%;
    top: auto;
    bottom: -40px;
    right: 0;
    z-index: 1;

    @media(min-width: 768px) {
        width: 90%;
        width: 44%;
        top: 41%;
        bottom: auto;
    }
}

.mainvisual__img-cars {
    width: 100%;
}

.mainvisual__text-group {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    padding-top: 13vw;
    padding-right: 16px;
    padding-bottom: 48px;
    padding-left: 16px;
    position: relative;
    z-index: 0;
    text-align: center;

    @media(min-width: 768px) {
        text-align: left;
        padding-top: 16px;
        padding-right: 0;
        padding-bottom: 16px;
        padding-left: 23.333333vw;
    }
}

.mainvisual__text-group__img-wrapper {
    position: absolute;
    width: 377px;
    width: max(26.180555vw, 280px);
    display: none;
    bottom: 0;
    right: 71%;


    @media(min-width: 768px) {
        display: block;
    }
}

.mainvisual__text-group__img {
    width: 100%;
}

.mainvisual__text-sub {
    text-align: center;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 700;
    line-height: 1.448;
    color: #FE7E17;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    paint-order: stroke;
    font-family: "M PLUS 1p", serif;
    background-color: #FEFA5D;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-top: 3.5px;
    padding-right: 47.5px;
    padding-bottom: 3.5px;
    padding-left: 47.5px;

    @media(min-width: 768px) {
        width: 380px;
        padding-top: 0;
        padding-right: 40px;
        padding-bottom: 0;
        padding-left: 40px;
    }
}

.mainvisual__text-main {
    color: #fff;
    font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
    letter-spacing: 0.2em;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}


.mainvisual__line-bottom {
    display: flex;
    justify-content: center;
    align-items: first baseline;
    background-color: #0065BA;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
}

.mainvisual__check-wrapper {
    width: 40px;
    height: 40px;

    @media(min-width: 768px) {
        width: 50px;
        height: 50px;
    }
}

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

.mainvisual__text {
    color: #fff;
    font-size: clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.2em;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 0;
}

.fz-64-50 {
    font-size: clamp(3.125rem, 2.795rem + 1.408vw, 4.063rem);
}

.color-yellow {
    letter-spacing: 0;
    color: #FEFA5D;
}

/* section-heading */

.section-heading {
    text-align: center;
}

.section-heading-logo {
    width: clamp(12.25rem, 10.842rem + 6.009vw, 16.25rem);
    margin-inline: auto;
}

.section-heading-logo__img {
    width: 100%;
}

.section-heading__text {
    color: #FE7E17;
    font-size: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.section-heading__text--blue {
    color: #0065BA;
}

/* cta */

.cta {
    background-color: #0065BA;
    padding-top: 24px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 51px;
        padding-bottom: 52px;
    }
}

.cta__inner {
    text-align: center;
    width: min(100% - 40px, 1040px);

    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-inline: auto;
}

.cta__title {
    color: #fff;
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding-bottom: 8px;
}

.cta__body {
    background-color: #fff;
    padding-top: 20px;
    padding-right: 18px;
    padding-bottom: 40px;
    padding-left: 17px;
    border-right: 4px solid #FE881C;
    border-bottom: 4px solid #FE881C;
    border-left: 4px solid #FE881C;

    @media(min-width: 768px) {
        padding-top: 8px;
        padding-bottom: 21px;
    }
}

.cta__img-wrapper {
    width: 200px;
    margin-inline: auto;
}

.cta__img {
    width: 100%;
}

.btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20.68px;

    @media(min-width: 768px) {
        flex-direction: row;
        gap: 39.82px;
        margin-top: 5.68px;
    }
}

.btn {
    width: 100%;
    color: #fff;
    font-size: calc(32 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background: linear-gradient(0deg, #219EE5 0%, #A9DAF6 100%);
    border: 3px solid #FFFFFF;
    border-radius: 40px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding-top: 14.5px;
    padding-right: 30px;
    padding-bottom: 14.5px;
    padding-left: 30px;

    &:hover {
        opacity: 0.7;
    }

    @media(min-width: 768px) {
        width: max-content;
    }
}

.btn--accent {
    background: linear-gradient(360deg, #3BB93F 0%, #42E246 46%, #9FF6A1 100%);
}



/* feature */

.feature {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 20px;

    @media(min-width: 768px) {
        flex-direction: row;
        padding-bottom: 0;
    }
}

.feature__img-wrapper {
    width: 214px;
    position: relative;
    margin-right: 0;
    margin-bottom: 20.22px;

    @media(min-width: 768px) {
        width: 315px;
        margin-right: 5%;
        margin-bottom: 0;
    }
}

.feature__img {
    object-fit: contain;
}

.feature__desc {
    width: max-content;
    color: #FE7E17;
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 800;
    line-height: 1.447916;
    background-color: #FEFA5D;
    border: 3px solid #FE7E17;
    border-radius: 10px;
    padding: 10.89px 16.05px;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    @media(min-width: 768px) {
        top: 250px;
        bottom: auto;
    }
}

.feature__text {
    text-align: center;
    color: #FEFA5D;
    font-family: "M PLUS 1p", serif;
    font-size: clamp(1.5rem, 1.368rem + 0.563vw, 1.875rem);
    font-weight: 800;
    line-height: 1.448;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border: 3px solid #FEFA5D;
    border-radius: 50%;
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    @media(min-width: 768px) {
        width: 200px;
        height: 200px;
    }

    &:first-of-type {
        margin-right: 0;
        margin-bottom: 10px;

        @media(min-width: 768px) {
            margin-right: 30px;
            margin-bottom: 0;
        }
    }
}

/* reason */

.reason {
    background-color: #0065BA;
    padding-top: 30px;
    padding-bottom: 10px;

    @media(min-width: 768px) {
        padding-bottom: 30px;
    }
}

.reason__inner {
    width: min(100% - 45px, 1040px);
    margin-inline: auto;
}

.reason__title {
    color: #fff;
    text-align: center;
}

.reason__title-sub {
    font-size: clamp(1.25rem, 0.986rem + 1.127vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.reason__title-main {
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-top: 5px;
}

.reason__text-area {
    position: relative;
    z-index: 2;
    margin-top: 125px;

    @media(min-width: 768px) {
        margin-top: 35px;
    }
}

.reason__img-wrapper {
    width: min(38.666666vw, 145px);
    position: absolute;
    bottom: 6.666666vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;

    @media(min-width: 768px) {
        width: 15%;
        bottom: 0;
        left: 7%;
        transform: none;
        z-index: 1;
    }
}

.reason__img {
    position: relative;
    width: 100%;
}

.reason__text {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-top: 3.5px;
    padding-right: 31.5px;
    padding-bottom: 3.5px;
    padding-left: 31.5px;
    text-align: center;
    font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
    font-weight: 500;
    line-height: 1.44791;

    @media(min-width: 768px) {
        padding-top: 15px;
        padding-bottom: 15px;
        margin-top: 30px;
    }
}

/* question */
.question {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-bottom: 50px;
    }
}

.question__inner {
    width: min(100% - 36px, 1040px);
    margin-inline: auto;
}

.question__title {
    width: 290px;
    max-width: 100%;
    color: #fff;
    text-align: center;
    background-color: #0065BA;
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    margin-inline: auto;
    position: relative;

    @media(min-width: 768px) {
        width: 400px;
        padding-top: 14px;
        padding-right: 40px;
        padding-bottom: 14px;
        padding-left: 40px;
    }
}

.question__title-sub {
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 500;
    line-height: 1.2;
}

.question__title-main {
    font-size: clamp(1.5rem, 1.324rem + 0.751vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
}

.question__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "M PLUS 1p", serif;
    border: 6px solid #0065BA;
    border-radius: 10px;
    margin-top: -20px;
    gap: 43px;

    @media(min-width: 768px) {
        flex-direction: row;
        justify-content: space-around;
        gap: 67px;
        padding-right: 55px;
        padding-left: 55px;
    }
}

.question__list {
    width: 100%;
    padding-top: 48px;
    padding-left: 28px;
    padding-bottom: 0;
    padding-right: 28px;

    @media(min-width: 678px) {
        width: 50%;
        padding-top: 67px;
        padding-bottom: 68px;
    }
}

.question__item {
    width: max-content;
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 700;

    &::before {
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        background-image: url(../img/check-img.png);
        background-size: cover;
        margin-right: 0.5em;

        @media(min-width: 768px) {
            width: 30px;
            height: 30px;
        }
    }

    &:not(:last-of-type) {
        margin-bottom: 20px;
    }
}

.question__img-wrapper {
    width: 314px;
    margin-top: auto;

    @media(min-width: 768px) {
        width: 500px;
    }
}

.question__img {
    width: 100%;
    object-fit: cover;
}


/* motive */

.motive {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.motive__inner {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.motive__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
    gap: 20px;
    margin-top: 30px;

    @media(min-width: 768px) {
        gap: 40px;
        margin-top: 40.58px;
    }
}

.motive__item {
    height: auto;
    text-align: center;
    border: 4px solid #F10E12;
    border-radius: 10px;
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-left: 20px;

    @media(min-width: 768px) {}
}

.motive__title {
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-family: "M PLUS 1p", serif;
    font-weight: 700;
    line-height: 1.447916;
}

.motive__title-number {
    font-size: calc(32 / var(--root-font-size) * 1rem);
}

.motive__img-wrapper {
    width: 100px;
    height: 100px;
    margin-inline: auto;
    margin-top: 20px;
}

.motive__item:nth-of-type(2) .motive__img-wrapper {
    margin-top: 0;
}

.motive__img {
    width: 100%;
    object-fit: cover;
}

.motive__text {
    font-weight: 500;
    line-height: 1.448125;
    margin-top: 20px;
}

.motive-invite__area {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 150px;

    @media(min-width: 768px) {
        margin-top: 80px;
    }
}

.motive-invite__img-wrapper {
    width: min(38.666666vw, 145px);
    position: absolute;
    bottom: 6.666666vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;

    @media(min-width: 768px) {
        width: 15%;
        bottom: 0;
        left: 7%;
        transform: none;
        z-index: 1;
    }
}

.motive-invite__img {
    position: relative;
    width: 100%;
}

.motive-invite__text {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: 4px solid #FE7E17;
    text-align: center;
    font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
    font-weight: 500;
    line-height: 1.44791;
    padding-top: 7px;
    padding-bottom: 7px;

    @media(min-width: 768px) {
        padding-top: 32px;
        padding-bottom: 33px;
    }
}

/* support */

.support {
    padding-top: 30px;
    padding-bottom: 11px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.support__inner {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.support__title {
    text-align: center;
    color: #0065BA;
    font-size: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.support__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;

    @media(min-width: 768px) {
        gap: 30px;
        margin-top: 50px;
    }
}

.support__item {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 244px;
    max-width: 100%;
    height: 237px;
    max-height: 100%;
    background: linear-gradient(180deg, #219EE5 0%, #A9DAF6 100%);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.support__header {
    color: #fff;
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-family: "M PLUS 1p", serif;
    font-weight: 700;
    border-bottom: 2px solid #0065BA;
}

.support__text {
    color: #0065BA;
    font-family: "M PLUS 1p", serif;
    font-weight: 900;
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.9);
}

.support__item:nth-of-type(1) .support__text {
    font-size: clamp(1.875rem, 1.831rem + 0.188vw, 2rem);
}

.support__item:nth-of-type(2) .support__text,
.support__item:nth-of-type(3) .support__text {
    font-size: calc(40 / var(--root-font-size) * 1rem);
    margin-top: 15px;
}

.support__item:nth-of-type(4) .support__text {
    font-size: calc(30 / var(--root-font-size) * 1rem);
    line-height: 1.233333;
    margin-top: 9px;
}

.support__item:nth-of-type(5) .support__text {
    font-size: calc(30 / var(--root-font-size) * 1rem);
    line-height: 1.448;
}

.support-invite__area {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 150px;

    @media(min-width: 768px) {
        margin-top: 80px;
    }
}

.support-invite__img-wrapper {
    width: min(38.666666vw, 145px);
    position: absolute;
    bottom: 6.666666vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;

    @media(min-width: 768px) {
        width: 15%;
        bottom: 0;
        left: 7%;
        transform: none;
        z-index: 1;
    }
}

.support-invite__img {
    position: relative;
    width: 100%;
}

.support-invite__text {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: 4px solid #0065BA;
    text-align: center;
    font-size: clamp(1rem, 0.824rem + 0.751vw, 1.5rem);
    font-weight: 500;
    line-height: 1.44791;
    padding-top: 7px;
    padding-right: 40px;
    padding-bottom: 7px;
    padding-left: 40px;

    @media(min-width: 768px) {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* voice */

.voice {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.voice__cards {
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 50px;
    }
}

.voice__inner {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.voice__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-inline: auto;
}

.voice__item {
    flex: 1 1 auto;
    max-width: 100%;
    text-align: center;
    background-color: #fff;
    font-family: "M PLUS 1p", serif;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 20px;

    @media(min-width: 768px) {
        flex: 1 1 auto;
        max-width: 340px;
    }
}

.voice__title {
    color: #FE7E17;
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.448;
}

.voice__img-wrapper {
    width: 140px;
    height: 140px;
    margin-top: 20px;
    margin-inline: auto;
}

.voice__img {
    width: 100%;
}

.voice__img-title {
    width: 160px;
    color: #fff;
    font-size: calc(20 / var(--root-font-size) * 1rem);
    font-weight: 500;
    line-height: 1.448;
    background-color: #0065BA;
    padding-top: 5px;
    padding-right: 27px;
    padding-bottom: 5px;
    padding-left: 27px;
    margin-top: 20px;
    margin-inline: auto;
}

.voice__text {
    text-align: left;
    font-size: calc(18 / var(--root-font-size) * 1rem);
    font-weight: 500;
    line-height: 1.558888;
    margin-top: 20px;
}

/* slider */

.slider-area {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.splide__slide {
    max-width: 300px;
    height: 300px;
}

.slider__img-wrapper {
    width: 300px;
    height: 240px;
}

.slider__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider__body {
    text-align: center;
    display: grid;
    grid-template-columns: auto auto;
    border: 1px solid #323232;
}

.slider__head {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    line-height: 1.125;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    border-right: 1px solid #323232;
}

.slider-invite__inner {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.slider-invite__area {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    margin-top: 150px;

    @media(min-width: 768px) {
        margin-top: 100px;
    }
}

.slider-invite__img-wrapper {
    width: min(38.666666vw, 145px);
    position: absolute;
    bottom: auto;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;

    @media(min-width: 768px) {
        width: 15%;
        top: auto;
        bottom: 0;
        left: -1vw;
        left: auto;
        right: 85%;
        transform: none;
        z-index: 1;
    }
}

.slider-invite__img {
    position: relative;
    width: 100%;
}

.slider-invite__text {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    border: 4px solid #FE7E17;
    text-align: center;
    font-size: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
    font-weight: 500;
    line-height: 1.44791;
    padding-top: 7px;
    padding-right: 40px;
    padding-bottom: 7px;
    padding-left: 40px;

    @media(min-width: 768px) {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* consultation */

.consultation {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.consultation__title {
    text-align: center;
    color: #0065BA;
    font-size: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.consultation__title-sub {
    text-align: center;
    color: #fff;
    font-size: clamp(1.125rem, 0.993rem + 0.563vw, 1.5rem);
    font-weight: 700;
    font-family: "M PLUS 1p", serif;
    background: linear-gradient(180deg, #219EE5 0%, #A9DAF6 100%);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding-top: 22.5px;
    padding-bottom: 22.5px;
    position: relative;
    margin-top: 30px;

    @media(min-width: 768px) {
        margin-top: 50px;
    }

    &::after {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background-color: #77aff1;
        clip-path: polygon(50% 40px, 0% 0%, 40px 0%);
        background-color: #9DD5F4;
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);

        @media(min-width: 768px) {
            width: 80px;
            height: 36px;
            clip-path: polygon(50% 36px, 0% 0%, 80px 0%);
        }
    }
}

/* consultation */

.consultation__container {
    width: min(100% - 54px, 1040px);
    border: 4px solid #0065BA;
    border-radius: 10px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    margin-top: 37px;
    margin-inline: auto;

    @media(min-width: 768px) {
        margin-top: 40px;
    }
}

.consultation__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    @media(min-width: 768px) {
        flex-direction: row;
        align-items: flex-end;
    }
}

.consultation__check {
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 700;
    line-height: 1.448;
    font-family: "M PLUS 1p", serif;

    &::before {
        content: '';
        display: inline-block;
        width: 20px;
        height: 20px;
        background-image: url(../img/check-img.png);
        background-size: cover;
        margin-right: 0.5em;

        @media(min-width: 768px) {
            width: 40px;
            height: 40px;
        }
    }

    &:not(:last-of-type) {
        margin-bottom: 10px;

        @media(min-width: 768px) {
            margin-bottom: 20px;
        }
    }
}

.consultation__picture-wrapper {
    width: 202px;
}

.consultation__picture {
    width: 100%;
}

.dotted-line__container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.dotted-line {
    border-left: 2px dotted #0065BA;
    height: 70px;
}

.consultation-info__inner {
    text-align: center;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto;
    justify-content: center;
    place-content: center;
    gap: 30px;

    @media(min-width: 768px) {
        grid-template-columns: auto auto;
        grid-template-rows: auto;
        gap: 0;
    }
}

.consultation-info__text {
    color: #0065BA;
    font-size: clamp(1.25rem, 1.162rem + 0.376vw, 1.5rem);
    font-weight: 700;
    line-height: 1.447916;
    font-family: "M PLUS 1p", serif;
}

.consultation__img-wrapper {
    place-self: center;
    width: 100%;

    @media(min-width: 768px) {
        width: 80%;
    }
}

.consultation__img {
    width: 100%;
}

/* flow */

.flow {
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-bottom: 50px;
    }
}

.flow__container {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.flow__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;

    @media(min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }

    @media(min-width: 1024px) {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flow__item {
    place-self: center;
    width: 250px;
    max-width: 100%;

    @media(min-width: 768px) {
        width: 100%;
    }
}

.flow__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 5px;
    padding-right: 25px;
    padding-bottom: 5px;
    padding-left: 25px;
}

.flow__number {
    color: #fff;
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
}

.flow__img-wrapper {
    max-width: 60px;
    aspect-ratio: 1;
    object-fit: cover;
}

.flow__img {
    width: 100%;
}

.flow__body {
    text-align: center;
    display: grid;
    border-right: 4px solid #FE7E17;
    border-bottom: 4px solid #FE7E17;
    border-left: 4px solid #FE7E17;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 35px;
    padding-right: 15px;
    padding-bottom: 35px;
    padding-left: 15px;
    min-height: 240px;
}

.flow__title {
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
}

.flow__text {
    font-weight: 500;
    line-height: 1.2;
    margin-top: 18px;
}

.flow__title-sub {
    color: #FE7E17;
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 700;
}

.flow__annotation {
    font-size: calc(12 / var(--root-font-size) * 1rem);
}

.guidance {
    padding-top: 30px;
}

.guidance__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100% - 40px, 900px);
    margin-inline: auto;
    margin-top: 30px;

    @media(min-width: 768px) {
        flex-direction: row;
        margin-top: 0;
    }
}

.guidance__img-wrapper {
    width: 50%;
}

.guidance__img {
    width: 100%;
}

.guidance__text {
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 500;
    line-height: 1.448;
    font-family: "M PLUS 1p", serif;
}

.guidance__picture-wrapper {
    width: 60%;
    margin-top: auto;
}

.guidance__picture {
    width: 100%;
}

/* cars */

.cars {
    width: 100%;
    height: 118px;
    background-image: url(../img/cars-img.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    @media(min-width: 768px) {
        height: 270px;
    }
}

/* info */

.info {
    padding-top: 30px;
    padding-bottom: 45px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.info__inner {
    width: min(100% - 40px, 1040px);
    margin-inline: auto;
}

.info__title {
    text-align: center;
    color: #F24822;
    font-size: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.info__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 36.5px;

    @media(min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
        gap: 20px;
    }

    @media(min-width: 1024px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info__item {
    border: 4px solid #F10E12;
    border-radius: 10px;
    padding-top: 40px;
    padding-right: 26px;
    padding-bottom: 40px;
    padding-left: 26px;
}

.info__header {
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
}

.info__category {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
    background-color: #F10E12;
    border-radius: 5px;
    padding-top: 0.188em;
    padding-right: 1em;
    padding-bottom: 0.188em;
    padding-left: 1em;
}

.info__text {
    font-weight: 500;
    line-height: 1.2;

    &:nth-of-type(1) {
        margin-top: 30px;
    }
}

/* contact */

.contact {
    background-color: #0065BA;
    padding-top: 30px;
    padding-bottom: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.contact__inner {
    width: min(100% - 60px, 1045px);
    margin-inline: auto;
}

.contact__title {
    text-align: center;
    color: #fff;
    font-size: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}

.form {

    background-color: #fff;
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 30px;

    @media(min-width: 768px) {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 50px;
    }
}

.form__inner {
    width: min(100% - 12px, 820px);
    margin-inline: auto;
}

.form__annotation {
    text-align: center;
    max-width: 657px;
    font-size: clamp(1rem, 0.912rem + 0.376vw, 1.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-inline: auto;
}

.form__item {
    &:nth-of-type(1) {
        margin-top: 30px;

        @media(min-width: 768px) {
            margin-top: 50px;
        }
    }

    &:not(:last-of-type) {
        margin-bottom: 20px;
    }
}

.form__item--checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.form__title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: calc(16 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
    gap: 5px;
    margin-bottom: 10px;
}

.label-required {
    display: inline-block;
    color: #F24822;
    font-size: calc(14 / var(--root-font-size) * 1rem);
    font-weight: 400;
    line-height: 1.2;
    background-color: #FFE7D3;
    padding-top: 2px;
    padding-right: 7px;
    padding-bottom: 2px;
    padding-left: 7px;
}

.label-required--not {
    color: #474747;
    background-color: #EDEDED;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    height: 60px;
    background-color: #C2E9FF;
    padding: 10px;
}

select {
    font-size: calc(20 / var(--root-font-size) * 1rem);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: right;
    text-align-last: right;
    direction: rtl;
    width: 120px;
    max-width: 100%;
    height: 60px;
    background-color: #C2E9FF;
    padding: 10px 5px;

    @media(min-width: 768px) {
        padding: 10px;
    }
}

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

.form__text {
    font-size: calc(14 / var(--root-font-size) * 1rem);
    font-weight: 500;
    line-height: 1.2;
}

.form__btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form__btn {
    text-align: center;
    width: 327px;
    max-width: 100%;
    color: #fff;
    font-size: calc(24 / var(--root-font-size) * 1rem);
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(180deg, #EB5B33 0%, #EF6E38 52%, #FF955B 100%);
    border: 2px solid #FFFFFF;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 50px;
    margin-inline: auto;

    &:hover {
        opacity: 0.7;
    }
}

/* footer */

.footer {
    text-align: center;
    background-color: #fff;
    padding-top: 38px;
    padding-bottom: 34px;

    @media(min-width: 768px) {
        padding-top: 58px;
        padding-bottom: 24px;
    }
}

.copyright__inner {
    font-size: calc(16 / var(--root-font-size) * 1rem);
    font-weight: 500;
    line-height: 1.75;
}