<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(icon.css);
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&amp;display=swap');

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:root {
	--container-width-xl: 1440px;
	--container-width-lg: 1160px;
	--container-width-md: 980px;
	--container-width-sm: 767px;
	--container-width-xs: 320px;

	--cl-gold: #DDC4A1;
	--cl-orange: #da6300;
	--cl-light-orange: #ff9945;
	--cl-pink: #D16B69;
	--cl-light-pink: #e38482;
	--cl-ul-pink: #ffdfdf;
	--cl-light-gray: #efefef;
	--cl-alert: #ff5050;

	--cl-topics-border: var(--cl-light-gray);

	--font-serif: 'Zen Old Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'Meiryo', serif;
	--font-sans-serif: 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', 'Meiryo', sans-serif;

	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.75rem;
	--text-4xl: 2rem;
	--text-5xl: 2.25rem;

	--topics-thumb-width: 90px;
	--topics-thumb-width-sm: 90px;
	--topics-thumb-width-xs: 80px;

	--ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
	--ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}


body {
	margin: 0;
	padding: 0;
	background: #111;
	line-height: 1.6;
	font-family: var(--font-serif);
	color: #fff;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.list {
	margin: 0 0 1em;
	padding-left: 20px;
}

ul.list&gt;li {
	margin: 0 0 .3em;
	list-style: disc;
}

figure {
	display: block;
	margin: 0;
	padding: 0;
}

img {
	border: 0;
}

img.fluid {
	max-width: 100%;
}

img.left {
	float: left;
	margin: 0 10px 10px 0;
}

a {
	outline: 0;
	color: #fff;
}

a:hover {
	color: var(--cl-orange);
}


#wrapper {
	position: relative;
	overflow: hidden;
	max-width: 1440px;
	margin: 0 auto;
	background: #222;
}

.clearfix:after {
	content: '';
	display: table;
	clear: both;
}

.indent {
	text-indent: -0.5em;
}

.br {
	display: block;
}

.nowrap {
	white-space: nowrap;
}

.center {
	text-align: center;
}


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

.row {
	margin-left: -20px;
	margin-right: -20px;
}

.row.tile {
	margin-left: -2px;
	margin-right: -2px;
}

.row:after {
	content: '';
	display: table;
	clear: both;
}

.row .column {
	padding: 0 20px;
}

.row.tile .column {
	padding: 0;
	border-left: 2px solid #222;
	border-right: 2px solid #222;
}


.container {
	width: var(--container-width-lg);
	margin-right: auto;
	margin-left: auto;
}

.container.sm {
	max-width: 960px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
	content: " ";
	display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
	clear: both;
}


.col-xs-3,
.col-xs-4,
.col-xs-6,
.col-xs-8,
.col-sm-3,
.col-sm-4,
.col-sm-6,
.col-sm-8,
.col-md-3,
.col-md-4,
.col-md-6,
.col-md-8,
.col-lg-3,
.col-lg-4,
.col-lg-6,
.col-lg-8 {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: 20px;
	padding-right: 20px;
}

.col-xs-8,
.col-sm-8,
.col-md-8 {
	width: 66.66666667%;
}

.col-xs-6,
.col-sm-6,
.col-md-6 {
	width: 50%;
}

.col-xs-4,
.col-sm-4,
.col-md-4 {
	width: 33.33333333%;
}

.col-xs-3,
.col-sm-3,
.col-md-3 {
	width: 25%;
}





.font-l {
	font-size: 28px;
	line-height: 1.4;
}

.font-m {
	font-size: 24px;
	line-height: 1.4;
}

.font-s {
	font-size: 16px;
}

.font-ss {
	font-size: 15px;
	font-family: var(--font-sans-serif);
}

.cap {
	display: block;
	margin: .5em 0 0;
	font-family: var(--font-sans-serif);
	font-size: 13px;
}

.br-xs,
.br-sm {
	display: none;
}

.nobr-xs,
nobr-sm {
	display: block;
}

.visible-xs-block,
.visible-sm-block {
	display: none;
}


@media (max-width: 1180px) {
	.container {
		width: 960px;
	}
}

@media (max-width: 980px) {

	.container,
	.container.sm {
		width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.col-sm-3,
	.col-sm-4,
	.col-sm-6,
	.col-sm-8 {
		width: 100%;
	}

	.col-xs-3 {
		width: 25%;
	}

	.col-xs-4 {
		width: 33.33333333%;
	}

	.col-xs-6 {
		width: 50%;
	}

	.col-xs-8 {
		width: 66.66666667%;
	}

	.br-sm {
		display: inline;
	}

	.nobr-sm {
		display: none;
	}

	.block-sm {
		display: block;
	}

	.visible-sm-block {
		display: block;
	}
}

@media (max-width: 767px) {

	.container,
	.container.sm,
	.container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}

	.col-xs-3,
	.col-xs-4,
	.col-xs-6,
	.col-xs-8 {
		width: 100%;
	}

	.visible-xs-block {
		display: block;
	}

	.br-xs {
		display: inline;
	}

	.nobr-xs {
		display: none;
	}

	.visible-xs {
		display: block;
	}

	.hidden-xs {
		display: none;
	}

	.font-l {
		font-size: 24px;
	}

}



a.button {
	display: block;
	clear: both;
	box-sizing: border-box;
	max-width: 400px;
	/*height: 50px;*/
	margin: 0 auto;
	padding: 14px 20px 12px;
	border: 2px solid var(--cl-orange);
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	font-family: 'YuGothic', 'Hiragino Kaku Gothic ProN', 'Yu Gothic Medium', sans-serif;
	font-size: 16px !important;
	font-weight: bold;
	color: var(--cl-orange);
}

a.button.black {
	border-color: #fff;
	color: #fff;
}

a.button.fluid {
	width: 100%;
}

a.button:hover {
	opacity: .7;
}

a.button.black:hover {
	border-color: var(--cl-orange);
	color: var(--cl-orange);
}

a.button.strong {
	padding: 10px 0 0;
	border-color: var(--cl-orange);
	background: var(--cl-orange);
	font-size: 20px;
	color: #fff;
}

a.button.strong:hover {
	opacity: .7;
}



/** Global Header
-----------------------------------------*/
#global_header {
	position: fixed;
	z-index: 10;
	width: 100%;
	max-width: 1440px;
	height: 60px;
	box-sizing: border-box;
	padding: 0 40px;
	background: rgba(0, 0, 0, .85);
}

#global_header h1 {
	float: left;
	margin: 6px 0 0;
}

#global_header h1 a {
	display: block;
	width: 127px;
	height: 46px;
	background: url(../images/common/header_logo.png) no-repeat;
	background-size: 127px auto;
	text-indent: -9999px;
}

html.ie8 #global_header h1 a {
	background-image: url(../images/common/header_logo@1x.png);
}

#global_nav {
	display: table;
	float: right;
}

#global_nav a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	height: 60px;
	padding: 0 15px;
	line-height: 1.3;
	text-decoration: none;
	font-size: 16px;
	color: #fff;
}

#global_nav a.hide {
	display: none;
}

#global_nav a:hover {
	background: #444;
	background: rgba(255, 255, 255, .2);
}

#global_nav #global_nav_inquiry span {
	display: block;
	padding: 4px 15px 5px;
	border: 1px solid #fff;
	border-color: rgba(255, 255, 255, .7);
	font-size: 14px;
}

#global_header .nav_toggle {
	display: none;
	position: absolute;
	right: 13px;
	top: 5px;
	font-size: 24px;
	color: #fff;
}

#global_header .nav_toggle .icon-cross {
	display: none;
}

#global_header .nav_toggle.open .icon-cross {
	display: inline;
}

#global_header .nav_toggle.open .icon-menu {
	display: none;
}

#global_nav #nav_home {
	display: none;
}



/** Layout
-----------------------------------------*/
#local_header {
	background-image: url(../images/topics_header_image.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#local_header_shadow {
	width: 100%;
	height: 300px;
	background: url(../images/common/local_header_bg.png) repeat-x;
}

#local_header_label {
	padding: 200px 0 0;
	background: transparent !important;
	line-height: 1.4;
	text-align: center;
	font-size: var(--text-4xl);
	font-weight: normal;
	color: #fff;
}

#local_header_label small {
	display: block;
	font-size: 18px;
}

.social {
	box-sizing: border-box;
	min-height: 40px;
	background: #fff;
}

.social ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 10px 30px 0 0;
	text-align: right;
}

.social ul li {
	height: 25px;
	margin: 0 10px 0 0;
	vertical-align: bottom;
	line-height: 1;
}

.fb_iframe_widget {
	display: inline-block;
	position: relative;
	overflow: hidden;
}


.section {
	background: #fff;
	padding: 60px 0 80px;
	color: #000;
}

.section.black {
	background: #222;
	color: #fff;
}



/** Reservation Section
-----------------------------------------*/
.reservation {
	padding: 60px 0;
	background: #f5f5f1;
	color: #333;
}

.reservation h2 {
	margin: 0 0 40px;
	text-align: center;
	font-size: 30px;
	color: var(--cl-orange);
}

.reservation p {
	margin: 0 0 1em;
}

.reservation .box {
	padding: 20px;
	text-align: center;
	border: 1px solid var(--cl-orange);
	font-weight: bold;
}

.reservation .box a.button {
	margin: 10px 0;
}

.reservation a.tel {
	display: block;
	font-size: 28px;
	color: var(--cl-orange);
}


/**
-----------------------------------------*/
.page_topics {
	background: var(--cl-topics-border);
}

.topics {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}

.topics&gt;li {
	display: flex;
	padding: 0 !important;
	border: 5px solid var(--cl-topics-border);
	background: #fff;
}

.topics&gt;li a {
	box-sizing: border-box;
	display: flex;
	width: 100%;
	padding: 10px;
	border: 5px solid #fff;
	text-decoration: none;
	line-height: 1.4;
	font-family: var(--font-sans-serif);
	font-size: 16px;
	font-weight: bold;
	color: #000;
	transition: all .3s ease-out;
}

.topics&gt;li a:hover {
	border-color: rgba(218, 99, 0, .3);
}

.topics .topics_image {
	width: var(--topics-thumb-width);
	margin: 0 20px 0 0;
	line-height: 1;
}

.topics&gt;li a figure {
	display: block;
	position: relative;
	width: 100%;
	margin: 0;
	padding-top: 100%;
}

.topics&gt;li a figure img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.topics&gt;li a span.date {
	display: block;
	margin: .3em 0 0;
	font-size: 14px;
	color: #999;
}

.topics&gt;li .topic_body {
	flex: 1;
}

.topics&gt;li a span.headline_label {
	display: block;
	margin-bottom: 10px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--cl-alert);
	color: var(--cl-alert);
}

.topics&gt;li a span.event {
	display: inline-block;
	margin-bottom: 3px;
	padding: 2px 10px 1px;
	border-radius: 50px;
	background: var(--cl-light-orange);
	line-height: 1.3;
	font-size: var(--text-sm);
	font-weight: bold;
	color: #fff;
}

.topics.local_topics {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	padding: 5px;
}

.topics.local_topics&gt;li {
	display: flex;
	width: 33.333333%;
}


@media screen and (max-width: 1279px) {
	.topics .topics_image {
		width: var(--topics-thumb-width-sm);
	}
}

@media screen and (max-width: 980px) {
	.topics.local_topics {
		scroll-snap-type: x mandatory;
		overflow-x: auto;
	}

	.topics.local_topics&gt;li {
		width: 45vw;
		max-width: 45%;
		scroll-snap-align: start;
	}

	.topics.local_topics&gt;li a {
		width: inherit;
	}

	.topics .topics_image {
		width: var(--topics-thumb-width-xs);
		margin-right: 15px;
	}
}

@media screen and (max-width: 767px) {
	.topics&gt;li a figure {
		padding-top: 100%;
	}

	.topics.local_topics&gt;li {
		width: 90vw;
		max-width: 90%;
		scroll-snap-align: center;
	}
}



/** Footer
-----------------------------------------*/
#footer_top {
	padding: 0 0 40px;
	background: url(../images/common/paper_bg.png);
}

#pagetop {
	margin: 0 0 50px;
	border-bottom: 1px solid #666;
}

#pagetop span {
	display: block;
	text-align: right;
}

#pagetop span a {
	display: inline-block;
	padding: 15px 40px 15px 0;
	background: url(../images/common/footer_pagetop_allow.png) right center no-repeat;
	background-size: 24px auto;
	text-decoration: none;
	font-size: 14px;
}

#footer_info {
	float: left;
	width: 540px;
}

#footer_info .banner {
	margin: 0 0 30px;
}

#footer_info .banner li {
	margin: 0 0 10px;
	font-size: 1px;
}

#footer_nav {
	width: 100%;
}

#footer_nav a {
	display: inline-block;
	box-sizing: border-box;
	width: 49%;
	padding: 3px 10px;
	border-right: 10px solid transparent;
	border-bottom: 1px dotted #666;
	text-decoration: none;
	font-size: 14px;
}

#footer_fb {
	float: right;
	width: 360px;
}

#footer_logo {
	width: 100px;
	margin: 0 auto 5px;
}

#footer_id {
	padding: 40px 0 15px;
	background: #000;
	text-align: center;
	font-size: 13px;
}

#footer_id a {
	text-decoration: none;
	color: #fff !important;
}

#footer_copyright {
	padding: 10px 0 60px;
	background: #fff;
	text-align: center;
	font-size: 14px;
	color: #333;
}

.footer_alert {
	margin: 40px auto 0;
	text-align: center;
}

.footer_alert p {
	display: inline-block;
	padding: 2px 10px;
	border: 1px solid var(--cl-orange);
	background-color: var(--cl-orange);
	color: #fff;
}

@media screen and (max-width: 767px) {
	.footer_alert {
		padding: 0 20px;
	}
}


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


	#global_header {
		padding: 0 20px 0 40px;
	}

	#global_nav a {
		padding: 0 10px;
		font-size: 15px;
	}


}

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


	.hide-s {
		display: none;
	}

	.row-m .column {
		float: none;
		width: 100%;
		margin: 0 0 40px;
	}

	#global_header {
		height: 50px;
		padding: 0 10px 0 20px;
	}

	#global_header h1 {
		margin-top: 10px;
	}

	#global_header h1 a {
		background-size: 90px auto;
	}

	#global_nav {
		display: none;
		position: fixed;
		z-index: 1000;
		left: 0;
		top: 50px;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, .85);
	}

	#global_nav a,
	#global_nav a.hide {
		display: block;
		width: 100%;
		padding: 10px 0 0;
		margin: 1px;
		height: 40px;
		font-size: 18px;
	}

	#global_nav_inquiry span {
		border: 0 !important;
		font-size: inherit !important;
		padding: 0 !important;
	}

	#global_header .nav_toggle {
		display: block;
	}

	.topics.local&gt;li a figure {
		width: 100%;
		height: auto;
		margin: 0 0 10px 0;
		padding: 56.25% 0 0;
	}

	#footer_info {
		width: 60%;
		padding-right: 20px;
	}

	#footer_fb {
		width: 40%;
	}



}

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

	.section {
		padding: 40px 0 60px;
	}

	a.button {
		width: 100%;
	}

	#local_header_shadow {
		height: 240px;
	}

	#local_header_label {
		padding-top: 160px;
		background-size: 80px auto !important;
		font-size: var(--text-3xl);
	}

	.social ul {
		padding: 12px 10px 8px;
		text-align: center;
	}

	#footer_info {
		float: none;
		width: 100%;
		padding-right: 0;
	}

	#footer_fb {
		float: none;
		width: 100%;
		margin: 30px 0 0;
	}

	#footer_nav a {
		display: block;
		width: auto;
		text-align: center;
	}


}



@media print {
	#global_header {
		display: none;
	}
}</pre></body></html>