<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* --------------------------------------------

    施設詳細ページ

---------------------------------------------- */

#contents_header.memberData nav {
    font-size: var(--fz-s);
    max-width: 800px;
    width: 90%;
    margin: 1rem auto 3rem;
}

#contents_detail_title {
    padding: 3rem 0 4rem;
    margin-bottom: 5rem;
    background-color: var(--c-main-pale);
}

#contents_detail_title h1 {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    font-size: var(--fz-2x);
    font-weight: var(--fw-bold);
    line-height: 1.4;
}

#contents_detail_title h2 {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding-top: 0.5em;
    font-size: var(--fz-xl);
    font-weight: var(--fw-bold);
    line-height: 1.4;
}

#contents_detail_title .title_en {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding-top: 0.8em;
    font-weight: var(--fw-bold);
    line-height: 1.4;
}

#contents_detail_title .title_en {
    display: none;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding-top: 0.8em;
    font-weight: var(--fw-bold);
    line-height: 1.4;
}

html.translated-ltr #contents_detail_title .title_en {
    display: block;
}

/* --------------------------------------------

    施設概要

---------------------------------------------- */

#contents_detail_outline h3 {
    margin-bottom: 2em;
}


.detailOutline_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 4rem;
}

.detailOutline_table tr {
    display: flex;
    align-items: center;
}

.detailOutline_table tr:not(:has(td)) {
    display: none;
}

.detailOutline_table th,
.detailOutline_table td {
    align-self: stretch;
    border-bottom: 1px solid var(--c-gray);
    padding: 1em;
    line-height: 1.5;
}

.detailOutline_table th {
    border-bottom: 3px solid var(--c-main-light);
    font-weight: var(--fw-bold);
    width: 30%;
    min-width: 4em;
    letter-spacing: 0em;
}

.detailOutline_table td {
    position: relative;
    display: flex;
    align-items: center;
}

.detailOutline_table td a {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-color: var(--c-main-light);
    text-decoration-thickness: 1px;
    transition: 0.3s;
}

.detailOutline_table td a[target='_blank']::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 0.8em;
    margin-left: 0.3em;
    vertical-align: text-bottom;
    background-image: url(../img/common/icon_blank.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.detailOutline_table td.detailOutline_map a::after {
    content: "";
    display: inline-block;
    width: 6em;
    height: 1em;
    margin-left: 0.5em;
    vertical-align: text-bottom;
    background-image: url(../img/common/icon_googlemap.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.detailOutline_table td.detailOutline_url {
    font-size: var(--fz-s);
}

.detailOutline_table tr:first-child th {
    border-top: 3px solid var(--c-main-light);
}

.detailOutline_table tr:first-child td {
    border-top: 1px solid var(--c-gray);
}

.detailOutline_table td {
    width: 70%;
}

@media (hover) {

    .detailOutline_table td a:hover {
        opacity: 0.6;
    }

}

@media only screen and (max-width: 640px) {

    .detailOutline_table th,
    .detailOutline_table td {
        padding: 0.8em 0.2em;
    }

    .detailOutline_table th {
        width: 35%;
    }

    .detailOutline_table td {
        width: 65%;
    }

    .detailOutline_table td.detailOutline_map a::after {
        content: "";
        display: block;
        width: 6em;
        height: 1em;
        margin-top: 0.6em;
        margin-left: 0;
        background-image: url(../img/common/icon_googlemap.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

}
</pre></body></html>