/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-feature-settings: 'palt';
	color: #333333;
}
body {
	line-height: 1;
	font-size: 1rem;
	-webkit-text-size-adjust: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
input, button, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
strong, .bold {
	font-weight: bold;
}




/* CommonStyles */

body {
	padding-top: 74px;
}
.wrapper {
	padding: 0 24px;
}

@media screen and (max-width: 767px)
{
	.pc-only {
		display: none;
	}
}

@media screen and (min-width: 768px)
{
	body {
		padding-top: 0;
	}
	.wrapper {
		max-width: 1080px;
		padding: 0 40px;
		margin: 0 auto;
	}
	.sp-only {
		display: none;
	}
}





.header {
	position: fixed;
	width: 100%;
	height: 74px;
	z-index: 999;
	top: 0;
}
.header:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0,0,0,1);
}

.header #sp-nav-logo {
	position: relative;
	width: 250px;
	margin: 20px 0 20px 16px;
	z-index: 2;
}
.header #sp-nav-logo a {
	display: block;
}

#header #gnav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding-top: 74px;
	z-index: 1;
}
.header #gnav a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 16px 24px;
}
.header #gnav-main li,
.header #gnav-sub li {
	font-size: 16px; font-size: 1.6rem;
	line-height: 24px; line-height: 2.4rem;
	border-top: solid 1px rgba(255,255,255,0.05);
	background-color: rgba(0,0,0,1);
}

.header #sp-nav-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 17px;
	margin: auto 0;
	display: block;
	width: 30px;
	height: 30px;
	z-index: 1;
	cursor: pointer;
}
.header #sp-nav-toggle:before,
.header #sp-nav-toggle:after {
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 1px;
	background-color: #fff;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-transition: .2s;
	transition: .2s;
}
.header #sp-nav-toggle:before {
	-webkit-transform: translate(0, -4px);
	transform: translate(0, -4px);
}
.header #sp-nav-toggle:after {
	-webkit-transform: translate(0, 3px);
	transform: translate(0, 3px);
}
.header.open #sp-nav-toggle:before {
	-webkit-transform: translate(0, 0) rotate(45deg);
	transform: translate(0, 0) rotate(45deg);
}
.header.open #sp-nav-toggle:after {
	-webkit-transform: translate(0, 0) rotate(-45deg);
	transform: translate(0, 0) rotate(-45deg);
}

@media screen and (max-width: 767px)
{
	.header #gnav {
		pointer-events: none;
	}
	.header.open #gnav {
		pointer-events: auto;
	}

	.header #gnav-main li,
	.header #gnav-sub li {
		opacity: 0;
		-webkit-transform: translate(0,-16px);
		transform: translate(0,-16px);
		-webkit-transition: .2s;
		transition: .2s;
	}
	.header.open #gnav-main li,
	.header.open #gnav-sub li {
		opacity: 1;
		-webkit-transform: translate(0,0);
		transform: translate(0,0);
	}

	.header #gnav-main li:nth-of-type(1) {
		-webkit-transition-delay: .4s;
		transition-delay: .4s;
	}
	.header #gnav-main li:nth-of-type(2) {
		-webkit-transition-delay: .35s;
		transition-delay: .35s;
	}
	.header #gnav-main li:nth-of-type(3) {
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
	}
	.header #gnav-main li:nth-of-type(4) {
		-webkit-transition-delay: .25s;
		transition-delay: .25s;
	}
	.header #gnav-main li:nth-of-type(5) {
		-webkit-transition-delay: .2s;
		transition-delay: .2s;
	}
	.header #gnav-main li:nth-of-type(6) {
		-webkit-transition-delay: .15s;
		transition-delay: .15s;
	}
	.header #gnav-sub li:nth-of-type(1) {
		-webkit-transition-delay: .1s;
		transition-delay: .1s;
	}
	.header #gnav-sub li:nth-of-type(2) {
		-webkit-transition-delay: .05s;
		transition-delay: .05s;
	}

	.header.open #gnav-main li:nth-of-type(1) {
		-webkit-transition-delay: .05s;
		transition-delay: .05s;
	}
	.header.open #gnav-main li:nth-of-type(2) {
		-webkit-transition-delay: .1s;
		transition-delay: .1s;
	}
	.header.open #gnav-main li:nth-of-type(3) {
		-webkit-transition-delay: .15s;
		transition-delay: .15s;
	}
	.header.open #gnav-main li:nth-of-type(4) {
		-webkit-transition-delay: .2s;
		transition-delay: .2s;
	}
	.header.open #gnav-main li:nth-of-type(5) {
		-webkit-transition-delay: .25s;
		transition-delay: .25s;
	}
	.header.open #gnav-main li:nth-of-type(6) {
		-webkit-transition-delay: .3s;
		transition-delay: .3s;
	}
	.header.open #gnav-sub li:nth-of-type(1) {
		-webkit-transition-delay: .35s;
		transition-delay: .35s;
	}
	.header.open #gnav-sub li:nth-of-type(2) {
		-webkit-transition-delay: .4s;
		transition-delay: .4s;
	}
}

@media screen and (min-width: 768px)
{
	#header {
		position: relative;
		height: auto;
		padding: 24px 40px 12px 40px;
		background-color: #000;
	}
	#header:before {
		display: none;
	}
	#header #sp-nav-logo {
		margin: 0 auto;
	}

	#header #gnav {
		position: relative;
		display: block;
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
		padding: 0;
	}
	#header #gnav a {
		display: inline-block;
		position: relative;
	}

	#header #gnav-main,
	#header #gnav-sub {
		display: flex;
	}
	#header #gnav-main li,
	#header #gnav-sub li {
		border-top: none;
		background-color: transparent;
		white-space: nowrap;
	}
	#header #gnav-main {
		width: 100%;
		margin: 20px auto 0 auto;
		justify-content: center;
	}
	#header #gnav-main li {
		position: relative;
		padding: 0 8px 0 9px;
		font-size: 14px; font-size: 1.4rem;
		line-height: 24px; line-height: 2.4rem;
		text-align: center;
		flex-grow: 1;
	}
	#header #gnav-main li:last-of-type:after,
	#header #gnav-main li:before {
		content: "";
		width: 1px;
		height: 12px;
		background-color: #444;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	#header #gnav-main li:last-of-type:after {
		right: 0;
	}
	#header #gnav-main li:before {
		left: 0px;
	}
	#header #gnav-main li a {
		display: block;
		padding: 4px;
		border-radius: 6px;
		-webkit-transition: .2s;
		transition: .2s;
	}
	#header #gnav-main li a:hover {
		background-color: #222;
	}

	#header #gnav-sub {
		position: absolute;
		top: -50px;
		right: 0;
	}
	#header #gnav-sub li {
		margin: 0;
		font-size: 14px; font-size: 1.4rem;
		line-height: 24px; line-height: 2.4rem;
		letter-spacing: 0;
		padding: 0 12px;
	}
	#header #gnav-sub li a {
		padding: 4px 4px 4px 14px;
		position: relative;
	}
	#header #gnav-sub li a:before {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 4px 0 4px 6.9px;
		border-color: transparent transparent transparent #ffffff;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	#header #gnav-sub li a:hover {
		text-decoration: underline solid #444;
	}

	.header #sp-nav-toggle {
		display: none;
	}
}

@media screen and (min-width: 1080px)
{
	#header #gnav-main {
		justify-content: space-around;
	}
	#header #gnav-main li {
		flex-grow: 2;
		flex-basis: calc(100% / 6);
	}
}





#breadcrumbs {
	overflow: auto;
	background-color: #f8f8f8;
	margin-top: 24px;
	border-top: solid 1px #f3f3f3;
}
#breadcrumbs ul {
	display: flex;
	padding: 10px 24px;
}
#breadcrumbs ul li {
	white-space: nowrap;
	position: relative;
	font-size: 11px; font-size: 1.1rem;
	line-height: 18px; line-height: 1.8rem;
}
#breadcrumbs ul li+li {
	margin-left: 8px;
	padding-left: 10px;
}
#breadcrumbs ul li+li:before {
	content: "›";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
#breadcrumbs ul li a {
	text-decoration: none;
}
#breadcrumbs ul li a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 768px)
{
	#breadcrumbs {
		margin-top: 56px;
		padding: 0 40px;
		overflow: visible;
	}
	#breadcrumbs ul {
		max-width: 1000px;
		margin: 0 auto;
		padding: 16px 0;
		flex-wrap: wrap;
	}
	#breadcrumbs ul li {
		font-size: 14px; font-size: 1.4rem;
		line-height: 22px; line-height: 2.2rem;
	}
	#breadcrumbs ul li+li {
		margin-left: 12px;
		padding-left: 14px;
	}
}





/* Content */

#main {
	padding: 24px 0 0 0;
}
.section {
	padding-top: 22px;
	padding-bottom: 22px;
}
/*#main :last-child.section {
	padding-bottom: 0;
}*/
.section-title {
	text-align: center;
	margin-bottom: 24px;
}
.section-title span {
	display: block;
}
.section-title .ja {
	font-size: 16px; font-size: 1.6rem;
	line-height: 22px; line-height: 2.2rem;
	letter-spacing: 1px; letter-spacing: 0.1rem;
	font-weight: bold;
}
.section-title .en {
	font-size: 10px; font-size: 1.0rem;
	line-height: 16px; line-height: 1.6rem;
	color: #787878;
}

@media screen and (min-width: 768px)
{
	#main {
		padding: 56px 0 0 0;
	}
	.section {
		padding-top: 56px;
		padding-bottom: 56px;
	}
	.section-title {
		margin-bottom: 64px;
	}
	.section-title .ja {
		font-size: 26px;
		line-height: 36px;
		letter-spacing: 2px;
	}
	.section-title .en {
		font-size: 14px;
		line-height: 22px;
		letter-spacing: 1px;
	}
}





#hotel-nav-container {
	background-color: #eee;
	padding: 24px 0 30px 0;
}
#hotel-nav-label {
	font-size: 13px; font-size: 1.3rem;
	line-height: 20px; line-height: 2.0rem;
	letter-spacing: 0.5px; letter-spacing: 0.05rem;
	font-weight: bold;
	margin-bottom: 6px;
}
#hotel-nav ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
#hotel-nav ul li {
	flex-shrink: 2;
	flex-basis: 50%;
	font-size: 11px; font-size: 1.1rem;
	line-height: 18px; line-height: 1.8rem;
	padding: 8px 8px 0 8px;
	position: relative;
}
#hotel-nav ul li:after {
	content: "";
	position: relative;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	border-bottom: solid 1px #d8d8d8;
}
#hotel-nav ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	position: relative;
	padding: 2px 0;
}
#hotel-nav ul li a:after {
	content: "";
	display: block;
	width: 3px;
	height: 3px;
	border: solid 1px #999;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg);
	position: absolute;
	right: 5px;
	top: 9px;
}
#hotel-nav ul li a:hover {
	font-weight: bold;
}
#hotel-nav ul li a:hover:before {
	content: "";
	width: 100%;
	border-bottom: solid 1px #d8d8d8;
	position: absolute;
	bottom: 0;
}
@media screen and (min-width: 560px)
{
	#hotel-nav ul li {
		flex-basis: 33.333%; flex-basis: calc(100% / 3);
	}
}

@media screen and (min-width: 768px)
{
	#hotel-nav-container {
		padding: 32px 0 38px 0;
	}
	#hotel-nav-label {
		font-size: 16px; font-size: 1.6rem;
		line-height: 24px; line-height: 2.4rem;
		letter-spacing: 1px; letter-spacing: 0.1rem;
		margin-bottom: 4px;
	}

	#hotel-nav ul li {
		font-size: 12px; font-size: 12px;
		line-height: 22px; line-height: 2.2rem;
		padding: 10px 8px 0 8px;
	}
	#hotel-nav ul li a:after {
		width: 4px;
		height: 4px;
		right: 6px;
		top: 10px;
	}
}

@media screen and (min-width: 880px)
{
	#hotel-nav ul li {
		flex-basis: 25%;
	}
}

@media screen and (min-width: 1080px)
{
	#hotel-nav ul li {
		flex-basis: 20%;
	}
}

/*
@media screen and (min-width: 768px)
{
#hotel-nav-container {
	background-color: #eee;
	padding: 32px 0 36px 0;
}
#hotel-nav {
}
#hotel-nav-label {
	font-size: 16px; font-size: 1.6rem;
	line-height: 24px; line-height: 2.4rem;
	letter-spacing: 1px; letter-spacing: 0.1rem;
	font-weight: bold;
	color: #111;
}
#hotel-nav ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
#hotel-nav ul li {
	flex-shrink: 2;
	flex-basis: 20%;
	font-size: 12px;
	line-height: 22px;
	padding: 12px 8px 0 8px;
	position: relative;
}
#hotel-nav ul li:after {
	content: "";
	position: relative;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	border-bottom: solid 1px #d8d8d8;
}
#hotel-nav ul li a {
	display: block;
	text-decoration: none;
	color: #111;
	position: relative;
}
#hotel-nav ul li a:after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
}
}
*/





/* Footer */

#footer {
	background-color: #323232;
	color: #949494;
	padding: 28px 0px 36px 0px;
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
	font-feature-settings: 'palt';
	font-size: 10px; font-size: 1.0rem;
}
#footer a {
	color: #949494;
	text-decoration: none;
}

#siteinfo {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#siteinfo-main {
	line-height: 16px; line-height: 1.6rem;
}
#siteinfo-main h6 {
	margin-bottom: 16px;
}
#siteinfo-logo {
	padding-top: 4px;
	width: 62px;
}
#siteinfo-logo a {
	display: block;
	position: relative;
	right: 5px;
	min-width: 62px;
}

#footer-nav {
	display: flex;
	margin: 32px 0;
}
#footer-nav > ul {
	width: 50%;
	max-width: 134px;
}
#footer-nav > ul li {
	line-height: 21px; line-height: 2.1rem;
}

#copyright {
	text-align: center;
	line-height: 16px; line-height: 1.6rem;
}

@media screen and (min-width: 480px)
{
	#footer {
		padding: 32px 0px 36px 0px;
		font-size: 11px; font-size: 1.1rem;
	}
	#siteinfo-main {
		font-size: 12px; font-size: 1.2rem;
		line-height: 18px; line-height: 2.0rem;
	}
	#siteinfo-main h6 {
		margin-bottom: 20px;
	}
	#siteinfo-logo {
		width: 78px;
	}
	#siteinfo-logo a {
		min-width: 78px;
	}
	#footer-nav {
		margin: -8px 0 30px 0;
	}
	#footer-nav > ul {
		max-width: 146px;
	}
	#footer-nav > ul li {
		line-height: 23px; line-height: 2.3rem;
	}
}

@media screen and (min-width: 768px)
{
	#footer {
		padding: 45px 0px 36px 0px;
	}
	#footer a:hover {
		text-decoration: underline;
	}

	#footer-primary-container {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: flex-end;
	}
	#siteinfo {
		align-items: center;
		white-space: nowrap;
	}
	#siteinfo-main {
		padding-top: 20px;
	}
	#siteinfo-logo {
		padding-top: 0;
	}
	#siteinfo-logo a {
		right: 0;
	}

	#footer-nav {
		display: block;;
		margin: 0 40px 31px 0;
	}
	#footer-nav > ul {
		width: auto;
		max-width: none;
		display: flex;
		flex-wrap: wrap;
		padding: 5px 0;
	}
	#footer-nav > ul li {
		margin-right: 16px;
		white-space: nowrap;
	}

	#copyright {
		text-align: left;
		margin-top: -10px;
	}
}
