@charset "utf-8";
/*==========================================================================

   base width

==========================================================================*/
body {
	min-width: var(--container-width); /*幅狭時のスクロールで見切り調整*/
}
.l-container {
	position: relative;
	width: var(--container-width);
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--container-side-space);
	padding-left: var(--container-side-space);
}

 
/*==========================================================================

   base frame

==========================================================================*/
body {
	padding-top: var(--header-height);
}
body.home {
	padding-top: 0;
}
#header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 17px 0;
    z-index: 10000;
	transition: background .5s;
}
#header.active {
    background: #fff;
}
#main {
	margin: 0 auto;
}
#footer {
    padding: 40px 0 30px;
	font-size: 12px;
	color: #fff;
    background: var(--bg-color) url("../img/bg_footer01.jpg") no-repeat center top / cover;
}


/*==========================================================================

   header

==========================================================================*/
.header-logo {
    width: 157px;
    height: 23px;
    margin-top: 0;
	z-index: 2;
}
.header-logo svg {
    transition: 1s;
}
.gnav-btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    width: 36px;
    height: 22px;
    transition: all .5s;
    cursor: pointer;
    z-index: 2;
}
.gnav-btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
	background: #fff;
    transition: transform .5s, background-color 1s;
}
.gnav-btn span:nth-child(1) {
    top: 0;
    left: 3px;
}
.gnav-btn span:nth-child(2) {
    top: 10px;
    left: 3px;
}
.gnav-btn span:nth-child(3) {
    bottom: 0;
    left: 3px;
}
body.active .gnav-btn span,
body.active #header.active .gnav-btn span {
	background-color: #fff;
}
body.active .gnav-btn span:nth-child(1) {
    top: 4px;
    left: 3px;
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}
body.active .gnav-btn span:nth-child(2) {
  opacity: 0;
}
body.active .gnav-btn span:nth-child(3) {
    top: 24px;
    left: 3px;
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}
#header.active .header-logo svg {
    color: #000;
}
body.home .header-logo svg {
	color: #fff;
}
#header.active .header-reserve {
	color: #000;
	border-color: #000;
}
#header.active .header-reserve a {
	color: #000;
}
#header.active .gnav-btn span {
	background-color: #000;
}
.gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
	color: #fff;
    background: rgba(0, 0, 0, .9);
    visibility: hidden;
    opacity: 0;
    transition: ease-in-out .7s;
}
.gnav a {
	color: #fff;
}
body.active .gnav {
	height: 100vh;
    visibility: visible;
    opacity: 1;
}
#header.is-other {
    background: #fff;
}

#header.is-other .gnav-btn span {
	background: #000;
}
body.active #header.is-other .gnav-btn span {
    background: #fff;
}
.gnav-row {
	display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    visibility: hidden;
	transition: ease-in-out visibility .7s;
}
body.active .gnav-row {
	visibility: visible;
}
/*
.gnav-col-inner {
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.gnav-col {
    justify-content: center;
    align-items: center;
}
*/
.gnav-col + .gnav-col {
    margin-left: 38px;
    padding-left: 40px;
    border-left: 1px solid #fff;
}
.gnav-col.col--logo {
    padding: 39px 0;
}
.gnav-col.col--logo svg {
    width: 110px;
    height: 197px;
	margin-right: 20px;
}
.gnav__list {
	font-size: 24px;
    text-align: center;
}
.gnav__item.item--reservation {
	width: 200px;
    font-size: 18px;
}
.gnav__item a {
    display: block;
    padding: 12px 20px;
}


@media screen and (min-width: 769px) {
	.header-logo {
		width: 223px;
		height: 34px;
	}
	.l-container.is-full {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
	}

	#header > .l-container {
		display: flex;
		align-items: center;
		width: 100%;
		min-width: var(--container-width);
	}
	.gnav {
		position: relative;
		width: auto;
		height: auto;
		background: none;
		opacity: 1;
		flex: 1;
	}
	.gnav-btn {
		display: none;
	}
	.gnav-row {
		position: relative;
		flex-direction: row;
		transform: none;
		top: auto;
		left: 0;
		visibility: visible;
	}
	.gnav-col {
		margin-left: auto;
	}
	.gnav-col-inner {
		display: flex;
		gap: 10px;
	}
	.gnav__list {
		display: flex;
		gap: 0 10px;
		font-size: 16px;
	}
	.gnav__item.item--reservation {
		font-size: 16px;
	}
	#header.active .gnav__item a {
		color: #000;
	}
	#header.active .gnav__item a.m-btn01 {
		color: #fff;
	}
	#header.active .gnav__item a.m-btn01:hover {
		color: #000;
	}
	#header.is-other .gnav a {
		color: #000;
	}
	#header.is-other .gnav a.m-btn01 {
		color: #fff;
	}
	#header.is-other .gnav a.m-btn01:hover {
		color: #000;
	}
}


/*==========================================================================

   body

==========================================================================*/
.l-page {
    padding: 50px 0;
}
.l-page.is-nokv {
    padding-top: 25px;
}
@media screen and (min-width: 769px) {
	.l-page {
		padding: 110px 0 150px;
	}
.l-page.is-nokv {
    padding-top: 35px;
}
}


/*==========================================================================

   footer

==========================================================================*/
#footer a {
	color: #fff;
}
.footer-row {
	display: flex;
	flex-direction: column;
}
.footer-col.col--header {
    margin-bottom: 35px;
    text-align: center;
}
.footer-logo {
    width: 190px;
    height: 29px;
    margin: 0 auto 18px;
}
.footer-menu {
    display: flex;
    gap: 0 36px;
}
.footer-menu__list {
    width: calc((100% - 36px) / 2);
}
.footer-menu__item + .footer-menu__item {
	margin-top: 1.25em;
}
.footer-social-icon__item .m-jamd-icon {
    font-size: 18px;
}
.footer-copyright {
	display: block;
	margin-top: 40px;
	font-size: 10px;
	text-align: center;
}


@media screen and (min-width: 769px) {
	#footer {
		padding: 75px 0 50px;
		font-size: 14px;
		background-position: 0 -12vw;
	}
	.footer-row {
		flex-direction: row;
		gap: 95px;
	}
	.footer-col {
		width: calc((100% - 95px) / 2);
	}
	.footer-col.col--header {
		text-align: left;
	}
	.footer-address {
		text-align: left;
	}
	.footer-logo {
		width: 261px;
		height: 39px;
		margin: 0 auto 30px 0;
	}
	.footer-copyright {
		margin-top: 200px;
		font-size: 11px;
	}






}
