@charset "UTF-8";
/* CSS Document */
.kv {
    position: relative;
}

.kv img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    -ms-filter: blur(3px);
    filter: blur(3px);
}

.kv-text {
    position: absolute;
    left: 160px;
    bottom: 100px;
    line-height: 1.3;
}

.kv-text p {
    text-indent: -3.5em;
}

.kv-label-title {
    font-size: 3.2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.kv-label-text {
    font-size: 2.0rem;
}

@media screen and (max-width: 790px) {
    .kv img {
        height: 200px;
    }

    .kv-text {
        left: 50px;
        bottom: 50px;
    }
}

.details {
    max-width: 800px;
    margin: 80px auto;
}

.details table {
    width: 100%;
    font-size: 1.6rem;
    font-family: "Montserrat", sans-serif;
}

.details table tr:first-child {
    border-top: 1px solid #ccc;
}

.details table th,
.details table td {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.details table th {
    width: 30%;
}

.details table td {
    width: 70%;
}

.details table td a {
    color: var(--sub);
}

.details table td a:hover {
    opacity: 0.8;
}

.details .margin {
    border: 1px solid var(--sub);
    width: fit-content;
    margin-left: 30%;
    margin-top: 20px;
}

.details .margin a {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--sub);
    display: block;
    padding: 8px;
}

.details .margin a img {
    padding: 0 0 5px 5px;
}

@media screen and (max-width: 790px) {
    .details {
        margin: 50px auto;
    }

    .details .margin {
        margin: 20px auto 0;
    }
}