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

/**=====================================
* html5-doctor-reset-stylesheet.min.css
======================================= */
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;box-sizing:border-box;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
ul li{list-style:none}
img{vertical-align:bottom;}

input, textarea{
	line-height: 120%;
}
body{
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 15px;
	line-height: 2;
	color: #fff;
	background-color: #000;
	-webkit-text-size-adjust: 100%;
}

a{
	color: #3e3a39;
	text-decoration: none;
	box-sizing: border-box;
}
a:hover,
button:hover{
	opacity: 0.8;
	transition: opacity .5s ease;
}

img{
	max-width: 100%;
}
button{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background-color: transparent;
	cursor: pointer;
	box-sizing: border-box;
	font-size: 16px;
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

.for_sp{
	display: none;
}
.for_pc{
	display: block;
}

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

.main-visual{
	position: relative;
}
.main-visual h1{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.inner{
	width: 1000px;
	margin: 0 auto;
	padding: 80px 0;
}
section h2{
	margin-bottom: 50px;
}
section h3{
	font-size: 30px;
	margin-bottom: 20px;
}
section .btn{
	text-align: center;
	margin-top: 50px;
}

/*---------------------------------------------*/
/* nav */

.nav .inner{
	padding-top: 60px;
	padding-bottom: 0;
}
.nav ul{
	display: flex;
	justify-content: space-between;
}
.nav li{
	flex: 1;
}
.nav li:not(:last-child){
	border-right: 1px solid #fff;
}
.nav li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10px;
}

/*---------------------------------------------*/
/* story */

.section-story h2{
	margin-bottom: 30px;
}
.section-story .txt{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}
.section-story .txt &gt; div{
	width: 45%;
}
.section-story .movie{
	position: relative;
	cursor: pointer;
}
.section-story .movie:before,
.section-story .movie:after{
	content: '';
	display: block;
	width: 80px;
	height: 62px;
	background: url(../img/movie_off.png) no-repeat 0 0;
	background-size: 100% 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -31px;
	margin-left: -40px;
	z-index: 2;
}
.section-story .movie:before{
	opacity: 0;
	background-image: url(../img/movie_on.png);
}
.section-story .movie:hover:after{
	opacity: 0;
	transition: opacity .5s ease;
}
.section-story .movie:hover:before{
	opacity: 1;
}

.movie-popup{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(50, 50, 50, 0.7);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
}
.movie-popup-inner{
	width: 100%;
	max-width: 800px;
	height: 50%;
	max-height: 100%;
}
.movie-popup iframe{
	transform: scale3d(0,0,0);
	width: 100% !important;
	height: 100% !important;
}
.movie-popup iframe.complete{
	transform: scale3d(1,1,1);
	transition: transform 1s ease;
}

/*---------------------------------------------*/
/* about */

.section-about{
	background: url(../img/about_bg.png) repeat 0 0;
	text-align: center;
}
.section-about p{
	margin: 20px 0 50px;
}
.section-about img + h3{
	margin-top: 50px;
}

/*---------------------------------------------*/
/* history */

.section-history{
	text-align: center;
}
.history-slide-txt{
	margin-bottom: 50px;
}
.history-slide-img .img{
	margin-bottom: 10px;
}
.history-slide-img img{
	width: auto;
	max-width: initial;
}

/* slide */

.slick-arrow{
	position: absolute;
	bottom: calc(50% - 1rem);
	width: 31px;
	height: 63px;
	background-repeat: no-repeat;
	background-position: 0 0;
	text-indent: -9999px;
	z-index: 10;
}
.slick-prev{
	left: 0;
	background-image: url(../img/arrow_prev.png);
}
.slick-next{
	right: 0;
	background-image: url(../img/arrow_next.png);
}

/* scrollbar */

.os-theme-round-dark &gt; .os-scrollbar {
    padding: 0;
}
.os-theme-round-dark &gt; .os-scrollbar-horizontal {
    right: 20px !important;
    left: 20px !important;
    bottom: 20px !important;
    height: 30px;
}
.os-theme-round-dark &gt; .os-scrollbar-vertical {
    bottom: 20px;
    width: 20px;
}
.os-theme-round-dark.os-host-rtl &gt; .os-scrollbar-horizontal {
    left: 20px;
    right: 0;
}
.os-theme-round-dark &gt; .os-scrollbar-corner {
    height: 20px;
    width: 20px;
    background-color: transparent;
}
.os-theme-round-dark &gt; .os-scrollbar &gt; .os-scrollbar-track {
    background: transparent;
}
.os-theme-round-dark &gt; .os-scrollbar-horizontal &gt; .os-scrollbar-track:before,
.os-theme-round-dark &gt; .os-scrollbar-vertical &gt; .os-scrollbar-track:before {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
}
.os-theme-round-dark &gt; .os-scrollbar-horizontal &gt; .os-scrollbar-track:before {
    left: 3px;
    right: 3px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
}
.os-theme-round-dark &gt; .os-scrollbar-vertical &gt; .os-scrollbar-track:before {
    top: 3px;
    bottom: 3px;
    width: 2px;
    left: 50%;
    margin-left: -1px;
}
.os-theme-round-dark &gt; .os-scrollbar &gt; .os-scrollbar-track &gt; .os-scrollbar-handle {
    background: transparent;
}
.os-theme-round-dark &gt; .os-scrollbar &gt; .os-scrollbar-track &gt; .os-scrollbar-handle:before {
    content: '';
    display: block;
    position: absolute;
    background: #c62316;
    border-radius: 100%;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    transform: scale(1);
}
.os-theme-round-dark &gt; .os-scrollbar &gt; .os-scrollbar-track &gt; .os-scrollbar-handle:hover:before,
.os-theme-round-dark &gt; .os-scrollbar &gt; .os-scrollbar-track &gt; .os-scrollbar-handle.active:before {
    transform: scale(1.3);
}
.os-theme-round-dark &gt; .os-scrollbar-horizontal &gt; .os-scrollbar-track &gt; .os-scrollbar-handle {
    height: 100%;
    min-width: 30px;
    max-width: 30px;
}
.os-theme-round-dark &gt; .os-scrollbar-vertical &gt; .os-scrollbar-track &gt; .os-scrollbar-handle {
    width: 100%;
    min-height: 30px;
    max-height: 30px;
}
.os-theme-round-dark.os-host-transition &gt; .os-scrollbar &gt; .os-scrollbar-track &gt; .os-scrollbar-handle:before {
    transition: transform 0.3s;
}

/*---------------------------------------------*/
/* spot */

.section-spot{
	text-align: center;
	background: url(../img/spot_bg.png) repeat 0 0;
}
.section-spot h2 + img{
	margin-bottom: 30px;
}
.spot-imgs{
	margin-top: 40px;
	margin-bottom: 80px;
}
.spot-imgs li{
	margin-bottom: 40px;
}
.spot-imgs img{
	opacity: 0;
}
.spot-imgs li.active img{
	transition: opacity 1s .3s;
	opacity: 1;
}
.spot-map{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 10px 50px 60px;
	position: relative;
}
.spot-map-img li{
	position: absolute;
	z-index: 2;
	text-indent: -9999px;
	width: 43px;
	height: auto;
	background: url(../img/spot_pin_w.png) no-repeat 0 0 transparent;
	list-style: none;
	cursor: pointer;
}
.spot-map-img li:nth-of-type(1){
	top: 365px;
	left: 8px;
}
.spot-map-img li:nth-of-type(2){
	top: 280px;
	left: 105px;
}
.spot-map-img li:nth-of-type(3){
	top: 50px;
	left: 200px;
}
.spot-map-img li:nth-of-type(4){
	top: 143px;
	left: 150px;
}
.spot-map-img li:nth-of-type(5){
	top: 353px;
	left: 167px;
}
.spot-map-img li:nth-of-type(6){
	top: 283px;
	left: 153px;
}
.spot-map-img li:nth-of-type(7){
	top: 133px;
	left: 257px;
}
.spot-map-img li:nth-of-type(8){
	top: 313px;
	left: 190px;
}
.spot-map-img li.active,
.spot-map-img li:hover{
	background-image: url(../img/spot_pin_r.png);
}
.spot-map-item{
	background: url(../img/spot_item_bg.png) no-repeat 0 0;
	width: 486px;
	height: 542px;
	padding: 25px 20px;
}
.spot-map-item img{
	opacity: 0;
}
.spot-map-item.active img{
	opacity: 1;
	transition: opacity .3s ease;
}
.spot-map-item a{
	display: block;
	color: #fff;
	background-color: #000;
	padding: 10px;
	margin: 20px 20px 0;
}
.spot-map-item a small{
	font-size: 75%;
	margin-left: 5px;
}
.spot-detail{
	margin-bottom: 70px;
}
.spot-detail h3{
	text-align: left;
	background: url(../img/spot_detail_icon.png) no-repeat left center;
	padding-left: 30px;
}
.spot-detail h3 small{
	font-size: 60%;
	margin-left: 10px;
	white-space: nowrap
}
.spot-detail img{
	opacity: 1;
	transition: opacity .3s ease;
	margin-bottom: 30px;
}
.spot-detail img.active{
	opacity: 0;
}

/*--------------------------------------------------*/
/* info */

.info-spot,
.info-food{
	border: 1px solid #868686;
	padding: 30px 25px;
}
.info-spot{
	margin-bottom: 60px;
}
.section-info .info-body{
	display: none;
	text-align: center;
}
.section-info .info-body.active{
	display: block;
}
.section-info .info-body &gt; div{
	margin-top: 50px;
}
.section-info .info-body img{
	margin-bottom: 30px;
}
.section-info .info-body a{
	display: block;
	color: #fff;
	background-color: #c62316;
	font-size: 20px;
	padding: 15px;
	margin: 30px auto;
	width: 400px;
}
.info-trigger{
	height: 50px;
	margin-top: 20px;
	background: url(../img/arrow_down.png) no-repeat center center;
	cursor: pointer;
}
.info-trigger.active{
	background-image: url(../img/arrow_up.png);
}
.info-head{
	display: flex;
	align-items: center;
}
.info-spot .info-head &gt; img{
	margin-right: 30px;
}
.info-food .info-head{
	justify-content: space-between;
}
.info-food .info-head &gt; img{
	order: 1;
}

/*--------------------------------------------------*/
/* footer */

.banner .inner{
	padding-top: 0;
	padding-bottom: 0;
}
.banner ul{
	display: flex;
	justify-content: space-between;
}

.footer{
	text-align: center;
	padding: 20px;
	font-size: 14px;
}

/*--------------------------------------------------*/
/* language＋SNS */

.head_area {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1em;
    padding-bottom: 1em;
	font-size: 0.9em;
	    text-align: right;
}
.head_area a{
	color: #fff;
}
.head_area .snsarea {
    display: inline-block;
	    width: 11%;
	margin-left: 0.5em;
}
.head_area .snsarea a {
    width: 19%;
	display: inline-block;
	margin-left: 0.5em;
    margin-right: 0.5em;
}


/*//////////////*/
/* sp */
/*//////////////*/

@media screen and (max-width: 1173px) {
	.head_area .snsarea {
    width: 13%;
}
}
@media screen and (max-width: 992px){
.head_area .snsarea {
    width: 18%;
}
	}

@media screen and (max-width: 768px) {
	html, body{
		font-size: 4vw;
	}
	.for_sp{
		display: block;
	}
	.for_pc{
		display: none;
	}

	.inner{
		width: auto;
		margin: 1rem;
		padding: 2.5rem 0;
	}
	section .btn{
		margin-top: 1.5rem;
	}
	section h2{
		margin-bottom: 2rem;
		line-height: 1;
	}
	section h3{
		font-size: 1.3rem;
		line-height: 1;
		margin-bottom: 1rem;
	}

	.nav .inner{
		flex-direction: column;
		padding-top: 1rem;
	}
	.nav li{
		border: 1px solid #fff;
		margin-bottom: 1rem;
	}
	.nav li:nth-child(1) img{
		width: 51%;
	}
	.nav li:nth-child(2) img{
		width: 25%;
	}
	.nav li:nth-child(3) img{
		width: 15%;
	}
	.nav li a{
		padding: 20px;
	}

	.main-visual .slick-slide img{
		width: auto;
		height: 100vw;
		object-fit: cover;
	}

	.movie-popup-inner{
		width: 100%;
		max-width: 100%;
		height: 50%;
		max-height: 100%;
	}

	.section-story{
		text-align: center;
	}
	.section-story .txt{
		flex-direction: column;
		margin-bottom: 2rem;
	}
	.section-story .txt &gt; div{
		width: 100%;
	}
	.section-story h2{
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
	.section-story h2 img{
		width: 20%;
	}
	.section-story p{
		text-align: left;
		padding: 0 1rem;
	}
	.section-story .btn img{
		width: 80%;
	}

	.section-about h2 img{
		width: 50%;
	}
	.section-about p{
		text-align: left;
		margin: 1rem 0 2rem;
	}
	.section-about img + h3{
		margin-top: 3rem;
	}
	.section-about .inner &gt; img:nth-of-type(1){
		width: 90%;
	}

	.section-history h2 img{
		width: 25%;
	}
	.section-history p{
		padding: 0 1rem;
		text-align: left;
	}
	.history-slide-img{
		margin: 0 -1rem 1rem;
	}
	.history-slide-img .img-inner{
		height: 70vw;
	}
	.history-slide-img img{
		height: 100%;
	}
	.history-slide-txt{
		margin-top: 20px;
	}
	.history-slide-txt p{
		padding: 0 3rem;
	}
	.slick-arrow{
		width: 2rem;
		height: 4rem;
		background-size: 100% 100%;
	}

	.section-spot h2 + img{
		margin-bottom: 2rem;
	}
	.section-spot h2 img{
		width: 78%;
	}
	.section-spot .inner &gt; p{
		text-align: left;
		padding: 0 1rem;
	}

	.spot-imgs{
		margin-top: 2rem;
		margin-bottom: 4rem;
	}
	.spot-imgs li{
		margin-bottom: 1rem;
	}
	.spot-map{
		flex-direction: column;
		margin: 0;
	}
	.spot-map-img{
		width: 60vw;
		margin: 2rem auto;
	}
	.spot-map-img li{
		width: 8vw;
		background-size: 100% auto;
	}
	.spot-map-img li:nth-of-type(1){
		top: 15rem;
		left: 4rem;
	}
	.spot-map-img li:nth-of-type(2){
		top: 12rem;
		left: 7.5rem;
	}
	.spot-map-img li:nth-of-type(3){
		top: 3rem;
		left: 11rem;
	}
	.spot-map-img li:nth-of-type(4){
		top:6.8rem;
		left: 9.5rem;
	}
	.spot-map-img li:nth-of-type(5){
		top: 15rem;
		left: 10rem;
	}
	.spot-map-img li:nth-of-type(6){
		top: 12.5rem;
		left: 9rem;
	}
	.spot-map-img li:nth-of-type(7){
		top: 7rem;
		left: 14rem;
	}
	.spot-map-img li:nth-of-type(8){
		top: 13.5rem;
		left: 11rem;
	}
	.spot-map-item{
		width: 100%;
		height: auto;
		background-size: 100% 100%;
	}
	.spot-map-item a small{
		display: block;
		margin-left: 0;
		font-size: .5rem;
	}
	.spot-detail{
		margin-top: 2rem;
		margin-bottom: 0;
	}
	.spot-detail img{
		margin-bottom: .75rem;
	}
	.spot-detail p{
		text-align: left;
	}

	.info-head{
		flex-direction: column;
	}
	.info-head h2{
		margin-bottom: 1rem;
	}
	.info-head &gt; img{
		margin: 0 0 1.5rem 0;
	}
	.info-spot,
	.info-food{
		padding: 1rem;
	}
	.info-spot{
		margin-bottom: 2rem;
	}
	.info-spot .info-head img{
		margin-right: 0;
	}
	.info-food .info-head &gt; img{
		order: 0;
	}
	.section-info .info-body a{
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
	}
	.section-info h3{
		font-size: 1.2rem;
	}
	.info-food .info-body p{
		border-top: 1px solid #fff;
		padding-top: 1rem;
		text-align: left;
	}

	.banner ul{
		flex-direction: column;
	}
	.banner li{
		margin-bottom: 1rem;
	}
	.banner li img{
		width: 100%;
		height: auto;
	}

	.footer{
		font-size: .5rem;
	}
	
		/*--------------------------------------------------*/
/* language＋SNS */

.head_area .snsarea {
    width: 46%;
	margin-top:0.7em;
}
}</pre></body></html>