@charset "utf-8";

/* 装飾 */
.fv-title {
    position: relative;
}
.decoration-item01 {
    position: absolute;
    top: 0;
}



/* サービスの特徴 */
.features .features-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 800px;
}
.features .features-wrap p {
    z-index: 10;
}
.features .features-wrap img {
    position: absolute;
    top: 0;
}
.features-wrap ul {
    display: flex;
    flex-direction: column;
    max-width: 350px;
    margin: 0 auto;
}
.features-wrap ul li {
    position: relative;
    padding: 0 0 0 13px;
    display: inline-block;
    color: #2e2e2e;
}

.features-wrap ul li:before {
    content: none;
}

.features-sub {
    margin-bottom: 10px;
}

.features-wrap ul li:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}

/* モーダル */
.modal-1__wrap,.modal-2__wrap,.modal-3__wrap{
    display: flex;
}
.modal-1__wrap input,.modal-2__wrap input,.modal-3__wrap input {
    display: none;
}

.modal-1__open-label,
.modal-1__close-label,
.modal-2__open-label,
.modal-2__close-label,
.modal-3__open-label,
.modal-3__close-label {
    cursor: pointer;
}

.modal-1__open-label,.modal-2__open-label,.modal-3__open-label {
    font-size: clamp(14px, 2.5vw, 16px);
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 15px 5px;
    border-radius: 15px;
    min-width: 230px;
}
.modal-1__open-label img,.modal-2__open-label img,.modal-3__open-label img {
    max-width: 65%;
    max-height: 65%;
}
.modal-1__open-label:before,.modal-2__open-label:before,.modal-3__open-label:before {
    content: "CHECK";
    position: absolute;
    bottom: 4px;
    right: 0px;
    color: #fff;
    transform: rotate(-45deg);
    z-index: 10;
    font-size: 12px;
    font-weight: bold;
}
.modal-1__open-label:after,.modal-2__open-label:after,.modal-3__open-label:after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: -26px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 40px solid transparent;
    border-left: 40px solid transparent;
    border-bottom: 42px solid #91d2f1;
    border-top: 0;
    transform: rotate(135deg);
}

.modal-1__open-label:hover,.modal-2__open-label:hover,.modal-3__open-label:hover {
    opacity: 1;
    background-color: #c8c8c8;
}


.modal-1,.modal-2,.modal-3 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-1__open-input:checked + label + input + .modal-1,
.modal-2__open-input:checked + label + input + .modal-2,
.modal-3__open-input:checked + label + input + .modal-3 {
    display: block;
    animation: modal-2-animation .6s;
}

.modal-1__content-wrap,.modal-2__content-wrap,.modal-3__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 20px;
}

.modal-1__close-label,.modal-2__close-label,.modal-3__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -15px;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-1__content,.modal-2__content,.modal-3__content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 39px 45px 40px;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    border-radius: 20px;
}
.modal-1__content .service-image,
.modal-2__content .service-image,
.modal-3__content .service-image {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    height: 280px;
    align-items: center;
    display: grid;
}
.modal-1__content .service-image p,
.modal-2__content .service-image p,
.modal-3__content .service-image p {
    text-align: center;
}
.modal-1__content .service-text,
.modal-2__content .service-text,
.modal-3__content .service-text {
    text-align: center;
    padding-left: 20px;
}
.modal-1__content .service-text ul li,
.modal-2__content .service-text ul li,
.modal-3__content .service-text ul li {
    position: relative;
    padding: 0 0 0 30px;
}
.modal-1__content .service-text ul li:before,
.modal-2__content .service-text ul li:before,
.modal-3__content .service-text ul li:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 19px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}

.modal-1__background,
.modal-2__background,
.modal-3__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@media only screen and (max-width: 890px) {
    .service-image img {
        max-width: 110px;
    }
    .modal-1__open-label, .modal-2__open-label, .modal-3__open-label {
        font-size: clamp(14px, 2.5vw, 16px);
        position: relative;
        display: grid;
        align-items: center;
        text-align: center;
        height: 100%;
        background: #fff;
        padding: 15px 5px;
        border-radius: 15px;
        min-width: auto;
    }
    .modal-1__open-label:before, .modal-2__open-label:before, .modal-3__open-label:before {
        bottom: 10px;
    }
    .modal-1__open-label img, .modal-2__open-label img, .modal-3__open-label img {
        width: 60%;
    }
    label.modal-1__open-label,label.modal-2__open-label,label.modal-3__open-label {
        width: 160px;
        height: 160px;
        font-size: clamp(12px, 2.5vw, 13px);
        line-height: 1.4;
    }
    .modal-1__content, .modal-2__content, .modal-3__content {
        padding: 20px;
        display: block;
    }
    .modal-1__content .service-image,
    .modal-2__content .service-image,
    .modal-3__content .service-image {
        height: 200px;
        display: inline-grid;
    }
    .modal-1__content .service-text,
    .modal-2__content .service-text,
    .modal-3__content .service-text {
        padding: 20px 0;
    }
}


/* イテロの提供内容について */
.features .features-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features .features-wrap img.bg-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    height: auto;
    z-index: 0;
    object-fit: contain;
}
.features .features-text {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.features .features-text p {
    color: #2e2e2e;
    text-align: center;
    padding: 15px 0px;
}
.features .features-text ul li:before {
    content: "";
    position: absolute;
    top: 17px;
    left: -13px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}

.features-lead {
    display: inline-block;
    padding-bottom: 2px;
    text-align: center;
    font-weight: bold;
}



@media only screen and (max-width: 890px) {
    .features .features-wrap {
        padding: 40px 15px;
    }
    .features .features-wrap img.bg-blob {
        object-fit: none;
        height: 420px;
    }
    .features .features-text p {
        text-align: left;
    }
    .features-wrap ul li {
        font-weight: normal;
        padding: 0 0 2px 25px;
    }
    .features .features-text ul li:before {
        left: 12px;
    }
}


/* イテロの提供内容３つ */
.three-features {
    margin: 0 auto;
}
.three-featuress .features-wrap img {
    position: absolute;
    top: -60px;
}
.three-features .features-list{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 15px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 860px;
}
.three-features .features-list li {
    display: block;
}
.three-features .features-list li a{
    font-size: clamp(14px, 2.5vw, 16px);
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 15px 5px;
    border-radius: 15px;
}
.three-features .features-list li a img {
    max-width: 100px;
}
.three-features .features-list li a:before{
    content: "CHECK";
    position: absolute;
    bottom: 7px;
    right: 5px;
    color: #fff;
    transform: rotate(-45deg);
    z-index: 10;
    font-size: 12px;
    font-weight: bold;
}
.three-features .features-list li a:after{
    content: "";
    position: absolute;
    bottom: -7px;
    right: -32px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-bottom: 50px solid #91d2f1;
    border-top: 0;
    transform: rotate(135deg);
}
.three-features .features-list li a:hover{
    opacity: 1;
    background-color: #c8c8c8;
}
@media only screen and (max-width: 890px) {
    .three-features .features-list {
        justify-content: flex-start;
    }
}


/*サービス内容と料金について */
.service-menu .service-menu-wrap {
    padding: 50px;
    border-radius: 20px;
    background-color: #ffffff8c!important;
    margin-bottom: 50px;
    box-shadow: 2px 4px 5px rgb(5 5 5 / 5%);
    position: relative;
}
.service-menu .service-menu-wrap .text div {
        display: flex;
    }

.service-menu h3 {
    font-size: clamp(18px, 3.5vw, 22px);
    font-weight: 400;
    padding-bottom: 16px;
    line-height: 1.6;
    padding-top: 15px;
}

.service-menu .text {
    display: ruby;
}
.corp,.ind {
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 0 10px;
    margin-left: 5px;
}
.corp {
    background-color: #91d2f1;
}
.ind {
    background-color: #efc1bd;
}
.service-menu-wrap .left ul li {
    position: relative;
    padding: 0 0 0 13px;
    display: flex;
}
.service-menu-wrap .left ul li:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0px;
    transform: translateY(-60%) translateX(0%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #91d2f1;
}
.service-menu-wrap .left p small {
    line-height: 1.6;
    display: block;
    margin-top: 20px;
}
.service-menu-wrap .right img {
    border-radius: 20px;
    object-fit: cover;
    max-height: 310px;
}
.service-menu-wrap .preparing  {
    background-color: #878787;
    border-radius: 20px 0 0 0;
    padding: 5px 20px;
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(12px, 3.5vw, 14px);
}

@media only screen and (max-width: 890px) {
    .service-menu-wrap {
        padding: 40px 30px!important;
        margin: 20px 10px;
    }
    .service-menu .service-menu-wrap .text div {
        position: absolute;
        top: 13px;
        right: 30px;
    }
    .service-menu-wrap .left {
        padding-top: 10px;
    }
    .service-menu-wrap .contents {
        flex-direction: column-reverse;
        display: flex;
    }
}

/* Q&A */
.accordion {
    margin-bottom: 7px;
    border: 1px solid #2e2e2e;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1em 1em 5em;
    color: #2e2e2e;
    cursor: pointer;
    transition: .4s;
    background-color: #fff;
}
.accordion summary::before {
    content: "Q";
    color: #fff;
    background-color: #91d2f1;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: clamp(20px, 3.5vw, 25px);
    text-align: center;
    position: absolute;
    left: 20px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 1px solid #2e2e2e;
    border-right: 1px solid #2e2e2e;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 4em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
    background-color: #fff;
}

@media only screen and (max-width: 890px) {
    .accordion summary::before {
        width: 35px;
        height: 35px;
        left: 15px;
    }
}