@charset "UTF-8";
@media screen and (max-width: 768px) {
    .form {
        margin-top: 6em !important;
    }
}
.price-list {
    max-width: 1080px;
    width: 100%;
    margin: 100px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 40px;
}

.price-list .frame {
    border: #1E78C8 2px solid;
    background: #FFF;
    border-radius: 1em;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.price-list .frame .details {
    width: 100%;
    padding: 50px;
}
.price-list .frame .details h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
}
.price-list .frame .details .buttons {
    margin: 2em 0 2em;
}
.price-list .frame .details .buttons a {
    width: auto;
    border: #1E78C8 1px solid;
    border-radius: 9999px;
    padding: 1.3em 4em;
    line-height: 1;
    display: inline-block;
    color: #1E78C8;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s;
}
.price-list .frame .details .buttons a:hover {
    text-decoration: none;
    background: #1E78C8;
    color: #FFF;
}
.price-list .frame .details ul {
    display: flex;
    flex-wrap: wrap;
}
.price-list .frame .details ul li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: #CDD6DD 1px solid;
    padding: 1em;
    font-size: 14px;
}
.price-list .frame .details ul li:last-of-type {
    border-bottom: #CDD6DD 1px solid;
}
.price-list .frame .details ul li label {
    color: #1E78C8;
    width: 8em;
}
.price-list .frame .details ul li span {
    min-width: calc( 100% - 9em );
    text-align: left;
}
.price-list .frame .details ul li span > span.en.font-large {
    font-family: Montserrat;
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}
.price-list .frame .details ul li .notice {
    width: 100%;
}
.price-list .frame .map {
    width: 520px;
}
.price-list .frame .map iframe {
    border-radius: 0 1em 1em 0;
}
@media screen and (max-width:1080px) {
    .price-list {
        width: 90%;
    }
    .price-list .frame {
        flex-wrap: wrap;
    }
    .price-list .frame .details {
        width: 100%;
    }
    .price-list .frame .map {
        width: 100%;
        height: 400px;
    }
    .price-list .frame .map iframe {
        border-radius: 0 0 1em 1em;
    }
    .price-list .frame .details .buttons {
        text-align: center;
    }

}
@media screen and (max-width:767px) {
    .price-list .frame .map {
        width: 100%;
        height: auto;
    }
    .price-list .frame .details {
        width: 100%;
        padding: 5vw;
    }
    .price-list .frame .map iframe {
        border-radius: 0 0 1em 1em;
        height: 100%;
        aspect-ratio: 1/1;
    }
    .price-list .frame .details ul li {
        flex-wrap: wrap;
    }
    .price-list .frame .details ul li label {
        width: 100%;
    }
    .price-list .frame .details ul li span {
        width: 100%;
    }
}



