@charset "UTF-8";

/* pankuzu */
/* .footer_pankuzu_wrap{
    width: 100%;
    padding: 10px 0;
}
.footer_pankuzu{
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer_pankuzu .link a{
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
}
.footer_pankuzu .stay{
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
} */
/* footer */
footer {
    width: 100%;
}

.footer_banner_wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--gray200);

    @media screen and (max-width: 768px) {
        gap: 16px;
    }
}

.footer_banner {
    width: calc(50% - 10px);

    img {
        width: 100%;
    }

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.footer_line_link {
    display: flex;
    padding: 18px 24px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 10px;
    background: #F4F6FB;
    width: 100%;
    justify-content: space-between;

    @media screen and (max-width: 560px) {
        flex-flow: column;
        padding: 16px;
    }
}

.footer_line_link_left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer_line_icon {
    width: 80px;
    height: 80px;

    @media screen and (max-width: 560px) {
        width: 70px;
        height: 70px;
    }
}

.footer_line_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    /* 30px */
    padding-bottom: 4px;

    @media screen and (max-width: 560px) {
        font-size: 18px;
    }
}

.footer_line_desc {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    /* 24px */
    @media screen and (max-width: 560px) {
        font-size: 14px;
    }
}

.footer_line_button {
    display: flex;
    width: 210px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 34px;
    border: 1px solid#D1D1D1;
    background: #FFF;

    span {
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 21px;
        /* 150.096% */
    }
}

@media (hover: hover) and (pointer: fine) {
    .footer_line_button:hover {
        opacity: 0.8;
    }
}

.footer_inner {
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 100px;
    margin: 0 auto;
    justify-content: start;
    border-top: 1px solid#E6E6E6;
}

.footer_navi .title {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer_navi .link {
    margin-bottom: 10px;
}

.footer_navi .link a {
    color: #1A1A1A;
    font-size: 15px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .footer_inner {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .footer_navi {
        width: calc(50% - 10px);
    }

    .footer_navi .link a {
        font-size: 14px;
    }
}


/* cta */
:root {
    --bp: 768px;
    --bl_wd: 1080px;
    --pbm_primary: #0078D7;
    --text-body: #1A1A1A;
    /* --border: var(--gray300); */
}

.bl_wd {
    max-width: var(--bl_wd);
    width: 100%;
    margin: 0 auto;
}

.footer_cta_wrap {
    display: flex;
    flex-flow: column;
    gap: 40px;

    @media screen and (max-width: 768px) {
        gap: 30px;
    }
}

.footer_cta_title {
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;

    /* 36px */
    @media screen and (max-width: 768px) {
        font-size: 20px;
    }
}

.footer_cta_online {
    width: 100%;
}

/* footer_cta_online は main cta と同一クラスを使うため、個別CSSは持たない */
.footer_cta_list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;

    @media screen and (max-width: 768px) {
        gap: 20px;
        flex-wrap: wrap;
    }

    @media screen and (max-width: 560px) {
        flex-flow: column;
    }
}

.footer_cta {
    width: calc(100%/3 - 20px);
    border-radius: 10px;
    background: #FFF;
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 20px;

    @media screen and (max-width: 768px) {
        width: calc(50% - 10px);
    }

    @media screen and (max-width: 560px) {
        width: 100%;
    }
}

.footer_cta_list_img {
    width: auto;
    height: 100px;
    margin: 0 auto;
    display: block;
}

.footer_cta_list_inner {
    padding: 20px;
}

.footer_cta_list_title {
    text-align: center;
    font-size: 20px;
    font-style: normal;
    line-height: 150%;
    /* 30px */
}

.footer_cta_list_desc {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 22.5px */
    padding: 4px 0 20px;
}

.footer_cta_list_link {
    display: flex;
    width: 100%;
    max-width: 210px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    border-radius: 34px;
    background: #333;

    span {
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 21.013px;
        /* 131.334% */
    }
}

@media (hover: hover) and (pointer: fine) {
    .footer_cta_list_link:hover {
        opacity: .9;
    }
}

.footer_inner_small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer_inner_small_link {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.copy {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}
