@charset "UTF-8";

:root {
    --main1: #FF8000;
    --main2: #FCAA03;
    --accent1: #FE5101;
    --accent2: #F3E6C7;
    --accent3: #14A83C;
    --back1: #FFF9EE;
    --back2: #FEEABC;
    --white: #FFFFFF;
    --black: #000000;
}

/* common */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

main {
    display: block;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
}

a,
input,
textarea,
button {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover,
a:active,
a:visited {
    color: inherit;
}

button {
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

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

    .sp-only {
        display: block !important;
    }
}

.pc-only-fv {
    display: block !important;
}

.sp-only-fv {
    display: none !important;
}

@media screen and (max-width: 1024px) {
    .pc-only-fv {
        display: none !important;
    }

    .sp-only-fv {
        display: block !important;
    }
}

/* section */
.lp .fv {
    height: 85vh;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1440 / 800;
    background: url('../images/banner.jpg');
    background-size: cover;  
    background-position: center top;
    background-repeat: no-repeat; 
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .lp .fv {
        height: 90vh;
        min-height: 500px;
        background: url('../images/banner_SP.jpg');
        background-size: 100% auto;  
        background-position: right center;
        background-color: var(--back2);
    }
}

@media screen and (max-width: 767px) {
    .lp .fv {
        height: 650px;
        min-height: 500px;
        background: url('../images/banner_SP.jpg');
        background-size: 100% auto;  
        background-position: right center;
        background-color: var(--back2);
    }
}

.lp .fv-inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
    .lp .fv-inner {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        padding: 5% 5%;
        flex-direction: column;
        justify-content: space-between;
    }

    .lp .fv-inner.sp-only-fv {
        display: flex !important;
    }
}

@media screen and (max-width: 749px) {
    .lp .fv-inner {
        padding: 5% 5%;
        justify-content: space-between;
    }

    .lp .fv-inner.sp-only-fv {
        display: flex !important;
    }
}

.fv-top-sp {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.lp .fv-label {
    width: fit-content;
    margin: 2rem 0;
    padding: 0.5rem 1.5rem;
    background-color: var(--main2);
    color: var(--white);
    font-weight: bold;
    font-size: 3rem;
    border-radius: 10px;
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
    .lp .fv-label {
        font-size: 1.5rem;
        margin: 0 0 0.5em;
    }
}

@media screen and (max-width: 749px) {
    .lp .fv-label {
        font-size: 1.0rem;
        margin: 0 auto 1.0em;
    }
}

.lp .fv-title {
    margin: 2rem 0;
    font-weight: bold;
    font-size: 7rem;
    line-height: 1.2;
    letter-spacing: 0.2em;
}

.lp .fv-title .-em {
    display: block;
    font-weight: bolder;
    font-size: 12rem;
}

.lp .fv-title .-small {
    font-size: 4rem;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .lp .fv-title {
        font-size: 6.5rem;
        margin: 0 0 8.0em;
    }

    .lp .fv-title .-em {
        margin: 0.1em 0 0;
        font-size: 9.0rem;
    }

    .lp .fv-title .-small {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 750px) and (max-width: 768px) {
    .lp .fv-title {
        font-size: 6.5rem;
        margin: 0 0 3.5em;
    }

    .lp .fv-title .-em {
        margin: 0.1em 0 0;
        font-size: 9.0rem;
    }

    .lp .fv-title .-small {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 749px) {
    .lp .fv-title {
        font-size: 3rem;
        margin: 0;
        text-align: center;
    }

    .lp .fv-title .-em {
        margin: 0.1em 0 0;
        font-size: 5.5rem;
    }

    .lp .fv-title .-small {
        font-size: 2.5rem;
    }
}

.lp .fv-features {
    margin: 3rem 0;
    display: flex;
    gap: 30px;
}

.lp .fv-features-item {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-weight: bold;
    font-size: 3.0rem;
    letter-spacing: 0.3rem;
}

.lp .fv-features-image {
    inline-size: 3.2rem;
    block-size: 3.2rem;
    object-fit: contain;
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
    .lp .fv-features {
        margin: 3rem auto;
        align-items: center;
        gap: 10px;
    }

    .lp .fv-features-item {
        font-size: 2.6rem;
    }

    .lp .fv-features-image {
        inline-size: 2.5rem;
        block-size: 2.5rem;
    }
}

@media screen and (max-width: 749px) {
    .lp .fv-features {
        margin: 1rem auto;
        align-items: center;
        gap: 10px;
    }

    .lp .fv-features-item {
        font-size: 1.3rem;
    }

    .lp .fv-features-image {
        inline-size: 1.5rem;
        block-size: 1.5rem;
    }
}

.lp .fv-appeal {
    width: 100%;
    height: auto;
    margin: 3rem 0 0;
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
    .lp .fv-appeal {
        margin: auto 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 749px) {
    .lp .fv-appeal {
        margin: 1rem 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.lp .links,
.lp .pc-float {
    height: 15vh;
    background-color: var(--main2);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .lp .links {
        height: 120px;
    }
}

.lp .links-inner,
.lp .pc-float-inner {
    max-width: 960px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

@media screen and (max-width: 768px) {
    .lp .links-inner {
        flex-direction: column;
        gap: 10px
    }
}

.lp .links-button,
.lp .pc-float-button {
    width: 50%;
    height: auto;
    padding: 0 5px;
}

@media screen and (max-width: 768px) {
    .lp .links-button {
        width: 50%;
    }
}

.lp .links-image,
.lp .pc-float-image {
    width: 100%;
}

.lp .concerns {
    background-color: var(--back1);
}

.lp .concerns-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lp .concerns-title {
    margin: 80px 3% 60px;
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 1rem;
}

.lp .concerns-title .-em {
    font-size: 6rem;
}

.lp .concerns-title .-ul {
    border-bottom: 5px solid var(--accent3);
}

.lp .concerns-image {
    width: 100%;
    height: 100%;
    margin: 0 auto -4%;
}

@media screen and (max-width: 768px) {
    .lp .concerns-title {
        margin: 20px 0 40px;
        font-size: 2rem;
        letter-spacing: 0.5rem;
        text-align: center;
    }

    .lp .concerns-title .-em {
        font-size: 3rem;
    }

    .lp .concerns-title .-ul {
        border-bottom: 1px solid var(--accent3);
    }

    .lp .concerns-image {
        width: 80%;
        height: 80%;
    }
}

.lp .service {
    background-color: var(--back2);
}

.lp .service-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp .service-main {
    width: 80%;
}

@media screen and (max-width: 768px) {
    .lp .service-main {
        width: 90%;
    }
}

.lp .service-title {
    margin: 60px auto 40px;
    font-weight: bold;
    font-size: 4.0rem;
    letter-spacing: 0.5rem;
    text-align: center;
    
}

.lp .service-title-pre {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.lp .service-title-image {
    width: 4.0rem;
    height: auto;
}

.lp .service-title .-em {
    font-size: 7rem;
    letter-spacing: 1rem;
}

.lp .service-title .-ul {
    border-bottom: 5px solid var(--accent3);
}

@media screen and (max-width: 768px) {
    .lp .service-title {
        font-size: 1.5rem;
        margin: 20px auto 20px;
    }

    .lp .service-title-image {
        width: 2.0rem;
    }

    .lp .service-title .-em {
        font-size: 1.8em;
        letter-spacing: 0.3rem;
    }

    .lp .service-title .-ul {
        border-bottom: 1px solid var(--accent3);
    }
}

.lp .service-phrase {
    margin: 80px auto 0;
    color: var(--main1);
    font-weight: bold;
    font-size: 3.0rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .lp .service-phrase {
        font-size: 1.5rem;
        margin: 10px auto 0;
    }
}

.lp .service-content-0 {
    margin: 20px auto 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp .service-content-1 {
    margin: 20px auto 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp .service-content-2 {
    margin: 20px auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp .service-detail-button {
    width: 70%;
    margin: 80px auto 80px;
    padding: 1.0rem 0;
    color: var(--white);
    background-color: var(--accent3);
    font-size:  1.8rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    text-align: center;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lp .service-detail-button-text {
    text-align: center;
}

.lp .service-detail-button .--arrow {
    height: 0.8em;
    width: auto;
    position: absolute;
    right: 20px;
}

@media screen and (max-width: 768px) {
    .lp .service-detail-button {
        width: 100%;
        margin: 40px auto 40px;
        font-size:  1.0rem;
    }
}

.lp .service-plan {
    max-height: 0;
    margin: 0 0 40px;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.lp .service-plan.is-show {
    max-height: 3000px;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .lp .service-plan {
        margin: 0 0 10px;
    }
}

.lp .service-campaign-phrase {
    font-size: 2.0rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp .service-campaign-phrase-text {
    text-align: center;
}

.lp .service-campaign-phrase .-em {
    font-size: 1.3em;
    letter-spacing: 0.2em;
}

.lp .service-campaign-phrase .-red {
    color: var(--accent1);
}

.lp .service-campaign-phrase .-small {
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 0;
    margin-top: 1.0em;
}

@media screen and (max-width: 768px) {
    .lp .service-campaign-phrase {
        font-size: 1.2rem;
        letter-spacing: 0;
    }

    .lp .service-campaign-phrase .-small {
        font-size: 10px;
    }
}

.lp .service-plan-campaign {
    width: 80%;
    margin: 7% auto 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .lp .service-plan-campaign {
        width: 100%;
    }
}

.lp .plan-case {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lp .plan-case-images .-m-b-0 {
    margin-bottom: 0;
}

.lp .plan-case-images .-m-t-20 {
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .lp .plan-case {
        width: 90%;
    }

    .lp .plan-case-images {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .lp .plan-case-image {
        max-width: 100%;
        height: auto;
        margin: 0 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lp .plan-case .arrow-icon {
        width: 5.0rem;
        height: auto;
    } 
}

.lp .plan-add {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .lp .plan-add {
        width: 100%;
        font-size: 1.0rem;
    }    
}

.lp .rate-detail-button {
    width: 50%;
    background-color: var(--accent3);
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    color: var(--white);
    letter-spacing: 0.2em;
    padding: 0.8em 0;
    margin: 5% auto;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lp .rate-detail-button {
        width: 80%;
        font-size: 1.0rem;
        padding: 0.8em;
        margin: 2em auto;
    }
}

.lp .rate-detail-add {
    position: relative;
    width: 80%;
    margin: 0 auto;
    font-size: 1.3rem;
}

.lp .rate-detail-add .-em {
    color: var(--accent1);
}

.lp .rate-detail-add .-right {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .lp .rate-detail-add {
        width: 80%;
        font-size: 1.0rem;
        margin-bottom: 10px;
    }    
}

.lp .use {
    background-color: var(--white);
}

.lp .use-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp .use-title {
    width: 100%;
    margin: 15% auto 10%;
}

@media screen and (max-width: 768px) {
    .lp .use-title {
        width: 80%;
    }
}

.lp .use-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    padding: 20px;
    margin: 0 auto 15%;
}

@media screen and (max-width: 768px) {
    .lp .use-list {
        gap: 20px;
    }
}

.lp .use-item {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #EDEDED;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .lp .use-item {
        width: 100px;
        height: 100px;
    }
}

.lp .appeals {
    background-color: var(--back2);
}

.lp .appeals-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp .appeals-title {
    font-size: 5.0rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding: 0 0 10px;
    margin: 80px 0 40px;
    text-align: center;
}

.lp .appeals-title .-em {
    letter-spacing: 0;
}

.lp .appeals-title.-ul {
    border-bottom: 5px solid var(--accent3);
}

.lp .appeal-title-number {
    font-size: 3.0em;
}

@media screen and (max-width: 768px) {
    .lp .appeals-title {
        margin: 40px 0 40px;
        font-size: 2.2rem;
        line-height: 1.8em;
    }

    .lp .appeal-title-number {
        font-size: 2.0em;
    }
}

.lp .appeals-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .lp .appeals-list {
        margin-bottom: 5%;
        gap: 10px;
    }
}

.lp .appeals-item {
    padding: 16px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lp .appeals-item {
        padding: 0;
        margin: 0 7.5%;
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
    }
}

.lp .appeals-add {
    width: 100%;
    margin: 0 auto;
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .lp .appeals-add {
        font-size: 10px;
        width: 85%;
        display: block;
    }
}

.lp .appeals-button {
    width: 50%;
    text-align: center;
    background-color: var(--accent3);
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.2em;
    padding: 0.8em 0;
    margin: 5% auto;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lp .appeals-button {
        width: 80%;
        font-size: 1.5rem;
        padding: 0.8em;
    }
}

.lp .steps {
    background-color: var(--back1);
}

.lp .steps-title {
    position: relative;
    width: 100%;
    height: 3.0em;
    padding: 1.0em;
    line-height: 1.0em;
    background-color: var(--main2);
    color: var(--white);
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
}

.lp .steps-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--main2);
}

@media screen and (max-width: 768px) {
    .lp .steps-title {
        font-size: 2.0rem;
    }
}

.lp .steps-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 30px 60px;
}

@media screen and (max-width: 768px) {
    .lp .steps-inner {
        margin: 0 20px;
        padding: 60px 10px 60px;
    }
}

.lp .steps-list {
    width: 100%;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 2fr 7fr;
    grid-template-rows: auto auto auto auto auto auto;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .lp .steps-list {
        gap: 5px;
    }
}

.lp .steps-item {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.lp .steps-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75%;
    aspect-ratio: 1 / 1;
    background-color: var(--white);
    color: var(--main1);
    border: 3px solid var(--main1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media screen and (max-width: 768px) {
    .lp .steps-icon {
        border: 2px solid var(--main1);
    }
}

.lp .-line {
    position: relative;
}

.lp .-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% * 2 - 75%);
    background-color: var(--main1);
    z-index: 0;
}

@media screen and (max-width: 768px) {
    .lp .-line::after {
        width: 2px;
    }
}

.lp .steps-number {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

@media screen and (max-width: 768px) {
    .lp .steps-number {
        font-size: 1.2rem;
    }
}

.lp .steps-image-h {
    height: 40%;
    width: auto;
}

.lp .steps-image-v {
    width: 40%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .lp .steps-image-h {
        height: 40%;
        width: auto;
    }
    
    .lp .steps-image-v {
        width: 40%;
        height: auto;
    }
}

.lp .steps-text {
    font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
    .lp .steps-text {
        font-size: 1.0rem;
    }
}

.lp .steps-summery {
    font-size: 1.8em;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .lp .steps-summery {
        font-size: 1.75em;
    }
}

.lp .steps-content {
    line-height: 1.5em;
}

.lp .step1-add {
    margin-top: 0.5em;
    font-size: 0.8em;
}

.lp .open-doc {
    color: var(--accent3);
    border-bottom: 1px solid var(--accent3);
}

.lp .steps-button {
    width: 50%;
    text-align: center;
    background-color: var(--accent3);
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 0.2em;
    padding: 0.8em 0;
    margin: 5% auto;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .lp .steps-button {
        width: 80%;
        font-size: 1.0rem;
        padding: 0.8em;
    }
}

.lp .faq {
    background-color: var(--white);
}

.lp .faq-title {
    position: relative;
    width: 100%;
    height: 3.0em;
    padding: 1.0em;
    line-height: 1.0em;
    background-color: var(--main2);
    color: var(--white);
    font-size: 3.0rem;
    font-weight: bold;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .lp .faq-title {
        font-size: 2.0rem;
    }
}

.lp .faq-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--main2);
}

.lp .faq-inner {
    max-width: 1260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 60px 0 60px;
}

@media screen and (max-width: 768px) {
    .lp .faq-inner {
        margin: 0 10px;
        padding: 60px 0 60px;
    }
}

.lp .faq-list {
    width: 100%;
}

.lp .faq-item {
    margin-bottom: 30px;
}

.lp .faq-q {
    width: 100%;
    position: relative;
    padding: 14px 48px 14px 40px;
    font-size: 2.0rem;
    background-color: var(--back2);
    border: 2px solid var(--main2);
}

@media screen and (max-width: 768px) {
    .lp .faq-q {
        padding: 10px 30px 10px 20px;
        font-size: 1.5rem;
    }
}

.lp .faq-q-content {
    display: flex;
    align-items: center;
}

.lp .is-show .faq-q {
    background-color: var(--white);
    color: var(--main2)
}

.lp .qa-icon {
    color: var(--main2);
    margin-right: 10px;
}

.lp .mark {
    display: block;
    position: absolute;
    width: 20px;
    height: 40px;
    margin: auto;
    top: 0;
    right: 24px;
    font-size: 40px;
    color: var(--main2);
}

@media screen and (max-width: 768px) {
    .lp .mark {
        right: 10px;
        height: 20px;
        font-size: 30px;
    }
}

.lp .mark::before {
    content: "+";
    transition: content 0.4s;
}

.lp .is-show .mark::before {
    content: "−";
}

.lp .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.lp .is-show .faq-a {
    max-height: 400px;
}

.lp .faq-a-content {
    padding: 20px 40px;
    background: var(--back2);
    display: flex;
    font-size: 1.75rem;
}

@media screen and (max-width: 768px) {
    .lp .faq-a-content {
        font-size: 1.25rem;
    }
}

.lp .faq-a-add {
    margin-top: 10px;
    display: flex;
    font-size: 1.0rem;
    line-height: 1.5em;
}

.lp .faq-a .-em {
    font-weight: bold;
}

.lp .contact {
    background-color: var(--white);
}

.lp .contact-inner {
    max-width: 1260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 60px 0 60px;
}

@media screen and (max-width: 768px) {
    .lp .contact-inner {
        margin: 0;
        padding: 0;
    }
}

.lp .contact-box {
    position: relative;
    width: 100%;
    padding: 30px 8px 8px;
    background: var(--back2);
}

@media screen and (max-width: 768px) {
    .lp .contact-box {
        padding: 20px;
    }
}

.lp .contact-box-text {
    font-size: 3.0em;
    text-align: center;
    margin-bottom: 30px;
}

.lp .contact-box-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 16px;
    background: var(--white);
    text-align: center;
}

.lp .contact-desc {
    font-size: 3.0rem;
    color: var(--main1);
}

.lp .contact-tel {
    font-size: 9.0rem;
}

.lp .contact-add {
    font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
    .lp .contact-box-text {
        font-size: 2.0rem;
        margin-bottom: 1.0em;
    }

    .lp .contact-box-wrap {
        padding: 32px 16px;
    }

    .lp .contact-desc {
        font-size: 1.5rem;
    }

    .lp .contact-tel {
        font-size: 3.0rem;
    }

    .lp .contact-add {
        font-size: 1.0rem;
    }
}

.lp .footer {
    width: 100%;
    padding: 25px 0 15vh;
    background-color: var(--main2);
}

@media screen and (max-width: 768px) {
    .lp .footer {
        padding-bottom: 60px;
    }
}

.lp .footer-text {
    color: var(--white);
    text-align: center;
    margin: 0 0 5px;
}

@media screen and (max-width: 768px) {
    .lp .footer {
        padding-bottom: 80px;
    }
    .lp .footer-text {
        font-size: 1.0rem;
        line-height: 1.4;
        padding: 0 10px;
    }
}

.lp .sp-float {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    z-index: 9999;
    display: none;
}

@media screen and (max-width: 768px) {
    .lp .sp-float.is-show {
        display: flex;
    }
}

.lp .links-float {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 50%;
    padding: 10px;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.lp .links-apply-float {
    background-color: var(--accent3);
    color: var(--white);
}

.lp .links-simulate-float {
    background-color: var(--white);
}

.lp .links-apply-float-image {
    width: auto;
    height: 2.0rem;
}

.lp .links-simulate-float-image {
    width: 2.0rem;
    height: auto;
}

.lp .links-apply-float-phrase {
    font-size: 0.7em;
    letter-spacing: 0.2em;
    display: block;
    text-align: center;
}

.lp .links-simulate-float-phrase {
    font-size: 0.7em;
    letter-spacing: 0.2em;
    display: block;
    text-align: center;
    color: var(--accent3);
}

.lp .links-simulate-float .-small {
    font-size: 0.6em;
}


.lp .pc-float {
    width: 100%;
    height: 15vh;
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid var(--white);
}

.lp .pc-float.is-show {
    opacity: 1;
    visibility: visible;
}

