<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&amp;family=Noto+Serif+JP:wght@400;600&amp;family=Playfair+Display:wght@600&amp;display=swap');

body {
    background: #F7F9FC;
    /* 背景 */
    color: #374f2d;
    /* 文字色 */
    font-family: "YuGothic", "Yu Gothic", "Noto Sans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2.0;
}

.serif {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", 'Noto Serif JP', "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* -------------------------------------------------------------
link
------------------------------------------------------------- */
a {
    color: #374f2d;
    /* カラー */
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a:hover {
    opacity: 0.4;
    filter: alpha(opacity=60);
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        /* TEL無効 */
    }
}


/* -------------------------------------------------------------
page-top
------------------------------------------------------------- */
#page-top {
    line-height: 1;
    position: fixed;
    z-index: 9999;
}

#page-top a {
    background: #4f8680;
    display: block;
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    z-index: 999;
    color: #FFF;
    text-align: center;
    line-height: 2.5vw;
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 20px;
        right: 15px;
        font-size: 1.2em;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 15px;
        right: 10px;
        font-size: 1.1em;
    }

    #page-top a {
        width: 5vw;
        height: 5vw;
        line-height: 5vw;
    }
}

@media screen and (max-width: 535px) {
    #page-top a {
        width: 7vw;
        height: 7vw;
        line-height: 7vw;
    }
}

/* -------------------------------------------------------------
header
------------------------------------------------------------- */
header {
    background: #fff;
    display: flex;
    align-items: center;
    height: 70px;
}

header h1 {
    width: 20%;
    text-align: center;
    font-size: 1.25vw;
}

header h1 img {
    width: auto;
    height: 70px;
}

@media screen and (max-width: 767px) {
    button {
        margin: 0;
    }

    button span {
        color: #fff;
    }

    header {
        display: block;
        height: auto;
    }

    header h1 {
        padding: 5px 0;
        text-align: center;
        line-height: 1;
        width: 100%;
        font-size: 1.25em;
    }

    header h1 img {
        width: auto;
        height: 50px;
    }
}


/* -------------------------------------------------------------
footer
------------------------------------------------------------- */
footer small {
    display: block;
    font-size: 12px;
}

footer {
    background: #fff;
    padding: 60px 10%;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo {
    margin-bottom: 20px;
}

footer .logo img {
    width: 120px;
    height: auto;
}

.footer-inner &gt; *:last-of-type &gt; div a {
    padding: 20px 40px;
    background-color: #4f8680;
    display: block;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.footer-inner &gt; *:last-of-type &gt; div a::before {
    content: "";
    background: url(../img/ico_gnav6.png) no-repeat;
    background-size: 18px 14px;
    width: 18px;
    height: 14px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: -2px;
}

address {
    font-style: normal;
}

@media screen and (max-width: 767px) {
    footer {
        background: #fff;
        padding: 40px 5%;
    }

    .footer-inner {
        display: block;
    }

    footer .logo {
        margin-bottom: 20px;
        text-align: center;
    }

    footer .logo img {
        width: 20vw;
    }

    .footer-inner &gt; *:last-of-type &gt; div a {
        padding: 20px 40px;
        background-color: #4f8680;
        display: block;
        color: #fff;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-inner &gt; *:last-of-type &gt; div a::before {
        content: "";
        background: url(../img/ico_gnav6.png) no-repeat;
        background-size: 18px 14px;
        width: 18px;
        height: 14px;
        margin-right: 10px;
        display: inline-block;
        vertical-align: -2px;
    }

    address {
        font-style: normal;
        text-align: center;
    }

    small {
        text-align: center;
        margin-bottom: 40px;
    }
}


/* -------------------------------------------------------------
detail
------------------------------------------------------------- */
dl.detail dd {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

@media screen and (min-width: 768px) {
    dl.detail dt {
        border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    }

    dl.detail {
        display: flex;
        flex-wrap: wrap;
    }

    dl.detail dt {
        font-weight: bold;
        padding: 15px;
        width: 30%;
        box-sizing: border-box;
        font-size: 15px;
    }

    dl.detail dd {
        padding: 15px;
        width: 70%;
        box-sizing: border-box;
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    dl.detail dt {
        font-weight: bold;
        padding: 15px 15px 0 15px
    }

    dl.detail dd {
        padding: 0 15px 15px 15px
    }
}


/* -------------------------------------------------------------
style
------------------------------------------------------------- */
.btn {
    width: 240px;
    color: #fff;
    font-size: 1.214em;
    line-height: 1;
    transition: all .3s;
    display: block;
    background: url(../img/arrow.png) no-repeat;
    background-size: 10px auto;
    background-position: center right 20px;
    background-color: #4f8680;
    padding: 0 24px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.08em;
}

.btn:hover {
    background-position: center right 15px;
}

@media screen and (max-width: 767px) {
    .btn {
        width: auto;
    }
}

.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 10px 0 15px 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 3px #4f8680;
    /*太い下線*/
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}




/* -------------------------------------------------------------
gallery
------------------------------------------------------------- */
.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}


/* -------------------------------------------------------------
fade
------------------------------------------------------------- */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}

.delay6 {
    animation-delay: 0.95s;
    -moz-animation-delay: 0.95s;
    -webkit-animation-delay: 0.95s;
    -o-animation-delay: 0.95s;
}


/* -------------------------------------------------------------
class
------------------------------------------------------------- */
.ta-center {
    text-align: center;
}

.fit {
    width: 100%;
    height: auto;
}

.mbnone {
    margin-bottom: 0 !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}
</pre></body></html>