@charset "UTF-8";

/* 共通 */
body {
    font-family: var(--primary-font-set);
    font-size: 16px;
    color: var(--primary-font-color);
    background-color: var(--bg-primary-color);
    margin: 0;
    padding: 0px;
    list-style: none;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* 電話番号SP時のみリンク */
@media screen and (min-width: 767px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}

.vw_l {
    display: block!important;
}
.vw_s {
    display: none!important;
}
@media screen and (max-width: 767px) {
    .vw_l {
        display: none!important;
    }
    .vw_s {
        display: block!important;
    }
}

.sp {
    display: none;
}

.wcont {
    width: min(100% - 30px, 1000px * 12 / 12);
    margin-inline: auto;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    width: 100%;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.ttl {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.ttl::before {
    background: var(--secondary-color);
    border-radius: 64px;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    width: 64px;
}

.btn {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-font-color);
    align-items: center;
    background-color: #c11250;
    border-radius: 12px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px, rgba(0, 0, 0, .14) 0 6px 10px 0, rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    position: relative;
    text-align: center;
    z-index: 0;
    transition: all ease-in-out 0.3s;
}

.btn:hover {
    background: var(--secondary-font-color);
    color: #c11250;
}

@media screen and (max-width: 767px) {
    .wcont {
        width: 96%;
    }

    .pc {
        display: none;
    }

    h2 {
        font-size: 24px;
    }

    .ttl {
        margin-bottom: 30px;
    }

    .ttl::before {
        width: 48px;
    }

    .btn {
        font-size: 16px;
    }
}

/* HEADER */
#wrapper {
    width: 100%;
    height: 94px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg-tertiary-color);
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 999;
}

#header {
    max-width: 1000px;
    width: 96%;
    height: 94px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    float: left;
    width: 294px;
    height: 94px;
}

.logo img {
    width: 100%;
}

.header_right {
    display: flex;
    align-items: center;
    float: right;
    width: 227px;
    height: 94px;
}

.header_right img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    #wrapper {
        height: 60px;
    }

    #header {
        height: 60px;
    }

    .logo {
        width: 200px;
        height: 60px;
    }

    .header_right {
        display: none;
    }
}

/* MV */
.mv {
    width: 100%;
    height: 480px;
    padding-top: 94px;
    position: relative;
    background-image: url(../../src/img/mv_img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mv_inner {
    width: 96%;
    height: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.mv_inner_txt {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.mv_inner_txt .mv_txt01 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 25px;
    text-shadow: 0px 0px 7px rgba(255, 255, 255, 1);
}

.mv_inner_txt .mv_txt02 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
    .mv {
        height: 40vh;
        min-height: 240px;
        background-image: url(../../src/img/mv_img_sp.jpg);
        padding-top: 0;
        margin-top: 60px;
    }
    .mv_inner {
        justify-content: center;
    }

    .mv_inner_txt {
        right: initial;
        padding-top: 0;
        text-align: center;
    }

    .mv_inner_txt .mv_txt01 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .mv_inner_txt .mv_txt02 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .mv_cta {
        display: none;
    }
}

/* MV_CTAボタン */
.mv_inner_txt .mv_cta {
    width: 300px;
    height: 48px;
    padding: 2px 24px;
}

.mv_inner_txt .mv_cta .fa-caret-right {
    padding-right: 16px;
    padding-top: 3px;
    text-align: center;
    color: var(--secondary-font-color);
}

.mv_inner_txt .mv_cta:hover .fa-caret-right {
    color: #c11250;
}

/* INTRO */
.intro {
    padding-top: 90px;
    padding-bottom: 60px;
}
.intro_inner {

}
.intro_inner_cont {
    position: relative;
    display: flex;
    justify-content: end;
}

.intro_img_gradation {
    width: 70%;
}
.intro_img_gradation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro_inner_cont_txt {
    font-size: 30px;
    font-weight: 500;
    position: absolute;
    bottom: 10%;
    left: 0;
    text-align: center;
    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.intro_inner_cont_txt .-fs_l {
    font-size: 36px;
    font-weight: 600;
}
.intro_inner_cont_txt_in {
    padding: 20px 60px;
    position: relative;
}
.intro_inner_cont_txt_in::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    border: 2px solid #fff;
    top: 8px;
    left: 8px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
    .intro {
        width: 100%;
        padding-top: 65px;
        padding-bottom: 30px;
    }
    .intro_inner_cont {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .intro_img_gradation {
        width: 100%;
    }
    .intro_inner_cont_txt {
        font-size: 20px;
        display: flex;
        justify-content: center;
        position: static;
        width: 90%;
        margin-top: -20px; 
    }
    .intro_inner_cont_txt .-fs_l {
        font-size: 24px;
    }
    .intro_inner_cont_txt_in {
        padding: 20px 0;
        width: 100%;
    }
}

/* REASON */
.reason {
    padding-top: 60px;
    padding-bottom: 90px;
}

.reason_inner {
    max-width: 1000px;
    width: 96%;
}

.reason_list {
    display: flex;
    justify-content: space-between;
}

.reason_list li {
    background: var(--bg-tertiary-color);
    border-radius: 8px;
    padding: 48px;
    width: 45%;
    position: relative;
}

.reason_list_ttl {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.reason_list_ttl img {
    width: 2em;
}

.reason_list_txt {
    display: block;
    font-size: 20px;
    position: relative;
    padding-left: 2rem;
}

.reason_list_txt::before {
    content: "";
    width: 20px;
    height: 20px;
    background-image: url(../img/reason_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 6px;
}

.reason_list_txt:not(:last-child) {
    margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
    .reason {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .reason_inner {
        width: 96%;
    }

    .reason_list {
        flex-direction: column;
        align-items: center;
    }

    .reason_list li {
        padding: 30px;
        width: 100%;
    }

    .reason_list li:not(:last-child) {
        margin-bottom: 15px;
    }

    .reason_list_ttl {
        font-size: 18px;
        margin-bottom: 20px;
        padding-left: 14px;
    }

    .reason01::before {
        width: 28px;
        height: 28px;
        top: -13%;
    }

    .reason02::before {
        width: 28px;
        height: 28px;
        top: -13%;
    }

    .reason_list_txt {
        font-size: 16px;
        padding-left: 1.5rem;
    }

    .reason_list_txt::before {
        content: "";
        width: 16px;
        height: 16px;
        top: 9%;
    }
}

/* SUPPORT */
.support {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--bg-secondary-color);
}

.support_inner {
    max-width: 1000px;
    width: 96%;
}

.support_inner_cont {
    display: flex;
    gap: 60px;
}

.support_list {
    width: 450px;
}

.support_inner_cont .-image {
    aspect-ratio: 1.618 / 1;
    width: calc(100% - 510px);
}
.support_inner_cont .-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.support_list li {
    font-size: 22px;
    position: relative;
    padding-left: 3rem;
    margin: 20px 0;
}

.support_list li::before {
    content: "";
    width: 34px;
    height: 34px;
    background-image: url(../img/support_check.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .support {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .support_inner {
        width: 100%;
    }

    .support_inner_cont {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap:  20px;
        width: 100%;
    }

    .support_inner_cont .-image {
        aspect-ratio: 1.732 / 1;
        width: 94%;
    }
    
    .support_list {
        width: 94%;
    }

    .support_list li {
        font-size: 18px;
        padding-left: 2.5rem;
        margin: 10px 0;
    }

    .support_list li::before {
        width: 28px;
        height: 28px;
    }
}

/* AREA */
.area {
    padding-top: 120px;
    padding-bottom: 90px;
}

.area_inner {
    background-image: url(../../src/img/area_01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.area_inner .ttl {
    position: absolute;
    top: -30px;
    z-index: 1;
}

.area_inner_cont {
    display: flex;
    justify-content: center;
    padding: 90px 0;
}

.area_inner_cont_txt {
    font-size: 20px;
    padding: 24px;
    border-radius: 4px;
    background-color: rgb(93 133 186 / 20%);
    backdrop-filter: blur(5px);
}

@media screen and (max-width: 767px) {
    .area {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .area_inner {
        background-image: url(../../src/img/area_01_sp.jpg);
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        width: 100%;
    }

    .area_inner .ttl {
        position: relative;
        top: 0;
        z-index: 0;
    }

    .area_inner_cont {
        display: flex;
        justify-content: center;
        padding: 0;
        width: 90%;
    }

    .area_inner_cont_txt {
        font-size: 16px;
        padding: 24px;
        border-radius: 4px;
        background-color: rgb(93 133 186 / 20%);
        backdrop-filter: blur(5px);
    }
}

/* VOICE */
.voice {
    padding-top: 90px;
    padding-bottom: 90px;
}

.voice_inner_cont {
    background-color: var(--bg-tertiary-color);
    border-radius: 8px;
    padding: 32px;
    display: flex;
}

.voice_inner_cont img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    width: 300px;
}

.voice_inner_cont_txt_box {
    padding-top: 12px;
    padding-left: 48px;
    padding-right: 12px;
}

.voice_inner_cont_txt01 {
    font-size: 22px;
    margin-bottom: 22px;
}

.voice_inner_cont_txt02 {
    line-height: 1.8;
}

@media screen and (max-width: 767px) {
    .voice {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .voice_inner_cont {
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }
    .voice_inner_cont img {
        aspect-ratio: 1.618 / 1;
        background-size: cover;
        width: 70%;
    }

    .voice_inner_cont_txt_box {
        padding-left: 4px;
        padding-right: 4px;
    }

    .voice_inner_cont_txt01 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

/* INQUIRY */
.inquiry {
    padding-top: 60px;
    padding-bottom: 60px;
    background: linear-gradient(160deg, rgb(12 30 98), rgb(93, 133, 186));
}

.inquiry_inner {
    max-width: 900px;
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry_ttl {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-font-color);
    margin-bottom: 45px;
}

.inquiry_box {
    max-width: 900px;
    width: 96%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inquiry_cta_btn {
    padding: 30px 100px;
}

.inquiry_ad {
    color: var(--secondary-font-color);
    line-height: 1.5;
}

.ad_company {
    font-size: 20px;
}

.ad_txt {
    display: flex;
}

@media screen and (max-width: 767px) {
    div.inquiry_ad {
        display: flex;
        align-items: center;
        flex-direction: column;
        color: var(--secondary-font-color);
        background-color: var(--bg-footer-color);
        padding: 20px;
    }

    .ad_company {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .ad_txt {
        font-size: 14px;
    }
}


@media screen and (max-width: 767px) {
    .bottom-card {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 5px 0px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--secondary-font-color);
    }
    .bottom-card_list {
        display: flex;
    }
    .bottom-card_item {
        width: 50%;
        border-right: 1px solid #dddddd;
    }
    .bottom-card_item:last-of-type {
        border-right: none;
    }
    .bottom-card_item .-link {
        height: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .bottom-card_item .-link.-form {
        color:  var(--tertiary-color);
    }
    .bottom-card_item .-link i {
        font-size: 24px;
    }
    .bottom-card_item .-link span {
        font-size: 14px;
        font-weight: 500;
    }
}

/* FOOTER */
footer {
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer_box {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 16px;
        padding-bottom: calc(70px + 16px);
    }

    .footer_box {
        flex-direction: column;
        align-items: center;
    }

    .privacy_menu {
        margin-bottom: 10px;
    }
}