@charset "utf-8";

.p-point {
    display: flex;
    gap: 20px;
    margin-top: 45px;
}
.p-box--point__wrap {
    width: calc((100% - 40px) / 3);
    margin-bottom: 0;
}
.p-point .c-box--point {
    margin-bottom: 0;
    height: 100%;
}
.c-box--point__wrap .c-text--note {
    margin-top: 10px;
}
.p-point .c-box--point img {
    display: block;
    margin: 0 auto 8px;
}
@media screen and (max-width: 767.9px){
    .p-point {
       flex-direction: column;
       gap: 30px;
    }
    .p-box--point__wrap {
        width: 100%;
    }
    .p-point .c-box--point {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .p-point .c-box--point img {
        width: 65px;
        height: 60px;
        margin: 0;
    }
}
.p-function {
    display: flex;
    gap: 30px;
}
.p-function__item {
    width: calc((100% - 30px) / 2);
    background: var(--lt-beige);
    border-radius: 10px;
    padding: 20px;
}
.p-function__title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.p-function img {
    margin-bottom: 10px;
}
@media screen and (max-width: 767.9px){
    .p-function {
        flex-direction: column;
        gap: 20px;
    }
    .p-function__item {
        width: 100%;
    }
}
.p-app__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.p-app__item figcaption {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
@media screen and (max-width: 767.9px){
    .p-app__image {
        width: fit-content;
        margin: 0 auto 10px;
    }
    .p-app__image--wrap img {
        width: auto;
        height: 68px;
        cursor: pointer;
    }
}
/* cta */
.p-cta {
    z-index: 1000;
    display: none;
}
.p-cta__wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}
.p-cta__copy {
    text-align: center;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-cta .c-btn-cv,
.p-cta .c-btn {
    margin-bottom: 0;
}
.p-cta__close {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 37px;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
}
.p-cta__close:hover {
    opacity: 0.8;
}
.l-pagetop {
    z-index: 10000;
}
@media screen and (max-width: 767.9px) {
    .p-cta__wrap {
        padding: 10px 0;
        gap: 10px;
    }
    .p-cta__close {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 32px;
    margin: auto 0;
    }
   .p-cta .p-app__image {
        margin-bottom: 0;
    }
}

