<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.header-image {
    background-image: url("../img/hospital-2.jpg");
    background-position: center center;
}
.access {
    margin-bottom: 150px;
}
.box {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 100px;
}
.box .map {
    width: 48%;
    display: flex;
    justify-content: space-between;
}
.map .image {
    width: 100%;
}
.map img {
    width: 100%;
}
.map &gt; p {
    writing-mode: vertical-rl;
    margin-right: 40px;
    color: #777;
}
.map .border {
    /*border-left: 1ps solid #eee;*/
    padding-left: 10px;
    padding-bottom: 35px;
    position: relative;
    height: 150px;
    width: 1px;
}
.border::before {
    content: '';
    width: 1px;
    height: 150px;
    margin: 0px auto;
    background-color: #ddd;
    position: absolute;
    top: 0px;
    left: 0;
    -webkit-animation: scroll 2s ease 0s infinite normal;
    animation: scroll 2s ease 0s infinite normal;
}
@keyframes scroll{
    0%{
        
    }
    50%{
        
        background-color: #777;
    }
    100%{
        
    }
}
.box .detail {
    width: 35%;
    margin-top: 50px;
    margin-left: 50px;
}
.box .detail a {
    color: #f19eb4;
}
.detail h3 {
    letter-spacing: 0.15em;
    font-size: 1.5em;
    font-weight: normal;
    margin-bottom: 15px;
}
.detail .name {
    font-size: 0.7em;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: 0.1em;
}
.detail .name::after {
    content: "";
    display: block;
    margin-top: 15px;
    height: 1px;
    width: 40px;
    border-bottom: 1px solid #1f1f1f;
}
.detail p {
    line-height: 2.2;
}

.access-map {
    text-align: center;
    margin-bottom: 100px;
}
.access-map img {
    width: 90%;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .header-image {
        margin-bottom: 100px;
    }
    .box {
        margin-bottom: 50px;
    }
    .box .map {
        width: 100%;
        flex-wrap: wrap;
    }
    .box .detail {
        width: 100%;
        margin: 30px auto 0;
    }
    .map &gt; p {
        margin-right: 0;
        writing-mode: horizontal-tb;
        margin-bottom: 40px;
    }
    .map span {
        border-left: none;
        border-bottom: 1px solid #777;
        padding-left:0;
        padding-bottom: 10px;
    }
    .map .border {
        padding-bottom: 15px;
        padding-left: 0;
    }
    .border::before {
        display: none;
    }


    .access-map img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .access {
        margin-bottom: 100px;
    }
}</pre></body></html>