<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
#wrapper {
    background-color: #000;
}

/*スライドショー----------------------------------*/
.main_image {
    background-color: #000;
    margin-top: 80px;
	width: 100%;
    height: calc(100vh - 80px);
    margin-bottom: 0;
    position: relative;
}

@media (max-width: 769px){
    .main_image {
        margin-top: 60px;
        height: calc(35vh - 60px);
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
}
  
.swiper-slide {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
  
/*スライド内テキスト*/
.slide_caption {
	color: #fff;
    font-size: 20px;
    height: 35vh;
	position: relative;
    padding: 0 20px;
}

.slide_caption h1 {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 10px;
    margin-top: -90px;
    margin-bottom: 0;
    width: 100%;
}

.slide_caption h1 span {
    display: none;
}

.slide_caption h1 img {
    width: 100%;
}

.scroll {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -25px;
    z-index: 100;
}
.scroll a {
    background-color: transparent;
    border-radius: 50%;
    border: 1.5px solid#fff;
    color:#fff;
    font-size: 1.5rem;
    display: block;
    line-height: 50px;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
}

.scroll a:hover {
    background-color: rgba(173, 50, 50, 0.7);
}

@media (min-width: 768px){
    .scroll {
        width: 70px;
        height: 70px;
        bottom: 30px;
        margin-left: -35px;
    }
    .scroll a {
        font-size: 2rem;
        line-height: 70px;
    }
}

@media (min-width: 992px){
    .slide_caption h1 img {
        width: 60%;
        max-width: 700px;
    }
}

#main {
    margin-top: -60px;
    padding-top: 60px;
}

/*article*/
article {
    background-color: #F0F0F0;
    padding: 50px 0;
}

h2 {
    font-size: 2rem;
    text-align: center;
}

/*TOPICS--------------------------------------*/
.topic {
    background: #fff;
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
}

.topic a {
    transition: all .2s ease-in-out;
}

.topic a:hover {
    opacity: .8;
}

.topic img {
    height: auto;
    width: 100%;
}

.topic_detail {
    color: #333;
    margin-bottom: 0;
    width: 100%;
}

.topic_detail p {
    color: #555;
    font-size: .9rem;
    line-height: 1.3;
    margin-bottom: 0;
    transition: all .2s ease-in-out;
}

.topic_detail .date {
    font-weight: bold;
    margin: 5px 0;
}

.topic a:hover p {
    color: #000;
}


@media (min-width: 768px){
    .topics {
        display:-webkit-box;
  	    display:-ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .topic {
        width: 49%;
    }
}

@media (min-width: 992px){
    .topic {
        width: 24%;
    }
}

.articles a {
/*
    background: #009fa8;
    border: 5px solid #009fa8;
*/
    background: #BBB;
    border: 5px solid #BBB;
    color: #fff;
    display: block;
    padding: 10px;
    margin-top: 30px;
    text-align: center;
    transition: all .2s ease-in-out;
}

.articles a:hover {
    background: #fff;
    color: #BBB;
}

@media (min-width: 768px) {
    .articles a {
        margin: 30px auto 0;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .articles a {
        width: 30%;
    }
}

.eapps-instagram-feed-title {
    font-size: 18px!important;
    line-height: 24px!important;
    padding: 0 10px 15px!important;
}

.eapps-instagram-feed .eapps-instagram-feed-title a {
    color: #fff!important;
}

.eapps-instagram-feed a {
    color: #555!important;
}

.facebook,
.blog_link {
    width: 100%;
    margin-bottom: 50px;
}

.blog_link {
	padding: 0;
}
.blog_thum {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    border: 1px solid #DDD;
}

@media (min-width: 768px){
	.blog_link {
		padding: 0 20px;
	}
    .fb_blg {
        display:-webkit-box;
        display:-ms-flexbox;
        display: flex;
    }
    .facebook {
    }

}

@media (min-width: 1200px){
    .facebook {
        padding-left: calc((50% - 500px) / 2);
        padding-right: calc((50% - 500px) / 2);
    }
}

.blog {
/*
    background-color: #4d4d4d;
    border: 5px solid#4d4d4d;
*/
    background-color: #FFF;
    border: 2px solid #BBB;
    color: #BBB;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    transition: all .2s ease-in-out;
}

@media (min-width: 768px){
    .blog {
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (min-width: 992px){
    .blog {
        max-width: 500px;
        margin: 0 auto 10px;
    }
}

.blog:hover {
    background-color: #BBB;
    color: #FFF;
}

.blog p {
    line-height: 1.3;
    margin-bottom: .5rem;
}

.blog_sub {
    font-size: .8rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0;
}

.furusato_link {
	display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
}
.furusato_link a {
	margin: 0 auto;
	display: block;
	width: 200px;
}
.furusato_link a img {
	width: 100%;
	height: auto;
}

.notice {
    background-color: #fff;
    border: 5px solid #ad0003;
    color:  #ad0003;
    display: block;
    margin: 0 auto 25px;
    padding: 10px;
    position: relative;
    text-align: left;
    width: 100%;
    transition: all .2s ease-in-out;
}

@media (min-width: 576px ) {
    .notice {
        width: 300px;
    }
}

.notice::before {
    border: 10px solid transparent;
    border-top: 15px solid #ad0003;
    content: "";
    display: block;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -10px;
    z-index: 1;
}

.notice::after {
    border: 10px solid transparent;
    border-top: 15px solid #fff;
    content: "";
    display: block;
    position: absolute;
    bottom: -22px;
    left: 50%;
    margin-left: -10px;
    z-index: 2;
}

.notice span {
    display: block;
}

.notice .title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.notice .detail_1 {
    color: #4d4d4d;
    font-size: .9rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

.notice .detail_2 {
    color: #4d4d4d;
    font-size: .75rem;
    margin-bottom: 5px;
    text-align: center;
}

.notice .go {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
}

.notice:hover,
.notice:hover .title,
.notice:hover .go {
    color: #ad0003;
}

.link img {
    width: 100%!important;
    height: auto;
    opacity: .8;
    transition: all .2s ease-in-out;
}

.link img:hover {
    opacity: 1;
}

@media (min-width: 576px ){
    .link img {
        width: 300px!important;
        height: auto;
    }
    
}

/*movie---------------------------------------*/
.movie h2 {
    text-align: center;
}

.item_container {
    width: 100%;
}

@media (min-width: 768px){
    .item_container {
        width: 60%;
        margin: 0 auto 30px;
    }
}

.flex {
    margin-bottom: 30px;
}

@media (min-width: 992px){
    .flex {
        display:-webkit-box;
  	    display:-ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .item_container {      
        width: 65%;
        margin: 0 0 30px 2%;
    }

    .item_container:nth-last-of-type(odd) {
        margin-left: 0;
    }
}

.item {
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

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