@charset "UTF-8";

/* header
--------------------------------------------------------------------- */
#RthCustomizeW .header {
	width: 100%;
	height: 85px;
	margin: 0;
	padding: 0 20px;
	z-index: 9999;
	background: rgba(15,55,89,1);
}

#RthCustomizeW .header .inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.head_inner{
	width: 70%;
	display: flex;
	justify-content: normal;
}
.h_tel{
	display: flex;
	width: 551px;
	color: #fff;
	height: 50px;
	float: right;
	text-align: center;
	background: #0f3759;
	vertical-align: middle;
	padding: 0 0 0 30px;
	border-radius: 0 0 0 20px;
}
.h_tel p{
	font-size: 0.875rem;
	padding: 10px 0;
}
.h_tel a{
	color: #fff;
	height: 25px;
	font-size: 1.625rem;
	position: relative;
	padding: 0 0 0 20px;
	margin: -3px 0 0 10px;
}
.h_tel a::before{
	width: 13px;
	height: 20px;
	content: "";
	top: 18px;
	left: 0;
	position: absolute;
	background: url("../images/icon-phone.png")no-repeat;
	background-size: contain;
}

.logo {
	width: 25%;
	margin-left: 10px;
}

.logo a {
	display: block;
	width: fit-content;
}

.logo img {
	max-width: none;
	width: 100%;
}

.nav {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header .head_inner .nav .gNav {
	width: 70%;
	margin-right: 30px;
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 0 0;
	justify-content: space-between;
}
.header .head_inner .nav .gNav li {
	width: auto;
}
#RthCustomizeW .gNav li a {
	color: #fff;
	padding: 0 0 0 0;
	font-size: 16px;
}
	
/* 言語切替 */
.language_menu {
	width: 11.5%;
	float: left;
	margin: 35px 0 0 20px;
	border-left: 1px solid rgba(255,255,255,0.5);
}
.language_menu i{
	margin-left: 8px;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(135deg);
}
.language_menu > li {
	width: 100%;
	position: relative;
	cursor: pointer;
}
.language_menu > li a {
	display: block;
	width: 100%;
	padding: 1px 0 2px;
	font-size: 0.875rem;
	line-height: 20px;
	position: relative;
}
.language_menu > li > a {
	color: #fff;
	text-align: center;
}
.language_menu > li:hover a {
	opacity: 1; 
}
.language_menu > li ul {
	left: 0; 
	width: 100%;
	position: absolute;
	z-index: 9999;
	margin-top: 10px;
}
.language_menu > li ul li {
	overflow: hidden;
	height: 0;
	transition: 0.2s;
	position: relative;
	margin-bottom: 10px;
}
.language_menu > li ul li:before {
	content: "";
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	position: absolute;
	top: 0;
	left: 0;
}
.language_menu > li:hover > ul > li {
	width: 100%;
    height: 30px;
    line-height: 30px;
    overflow: visible;
}
.language_menu > li ul li a {
    display: block;
    position: relative;
    height: 35px;
    line-height: 30px;
    text-align: center;
    color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
}
.language_menu > li:hover ul li a:hover {
    background: #0f3759;
    color: #fff;
}

#RthCustomizeW .h_reservation	a{
	color: #fff;
	display: block;
	padding: 5px 20px;
	font-size: 18px;
	border: 1px solid rgba(255,255,255,0.5);
	transition: 0.3s ease-in-out;
}
#RthCustomizeW .h_reservation	a:hover{
    color: #fff;
	background: #0f3759;
}
	
.hNav {
	float: right;
}
.nameMenu{display: none;}
.navtoggle {
  display: block;
  position: fixed;
  top: 20px;
  right: 10px;
  width: 55px;
  height: 55px;
  z-index: 9999;
}
.navtoggle__line {
  content: " ";
  position: absolute;
  left: 28%;
  width: 44%;
  height: 1px;
  display: block;
  transition-property: transform,top,bottom,opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
  transform-origin: center;
}
.navtoggle:before,
.navtoggle:after{
  content: " ";
  position: absolute;
  left: 28%;
  width: 44%;
  height: 1px;
  background: #fff;
  display: block;
  transition-property: transform,top,bottom,opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
  transform-origin: center;
}
.navtoggle:before {
  top: calc(40% - 1px);
}
.navtoggle__line {
  top: calc(50% - 1px);
}
.navtoggle:after {
  bottom: calc(40% - 1px);
}
body[data-nav="1"] .navtoggle:before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
body[data-nav="1"] .navtoggle__line {
  opacity: 0;
}
body[data-nav="1"] .navtoggle:after {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}
/* globalnav */
.globalnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 56%;
  height: 100%;
  min-width: 320px;
  z-index: 8000;
  background: #0f3759;
  transition-property: transform,opacity;
  transition-duration: 400ms;
  transition-timing-function: ease;
  opacity: 0;
  transform: translate(-100%,0);
}
.globalnav__inner {
  position: absolute;
  right: 50%;
  bottom: 45%;
  width: 100%;
  max-width: 480px;
  max-height: 100%;
  transform: translate(50%,50%);
  text-align: left;
}
.globalnav__list,
.globalnav__list02{
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.globalnav__list02{
	margin-top: 50px;
}
.globalnav__list .globalnav__list__item {
  width: 50%;
  font-size: 1.875rem;
  font-weight: 600;
}
.globalnav__list .globalnav__list__anchor {
  display: block;
  text-align: left;
  color: #fff;
  text-decoration: none;
  padding: 0 0 1em 0;
}
.globalnav__list02 .globalnav__list__item {
  font-size: 16px;
  font-weight: 600;
}
.globalnav__list02 .globalnav__list__anchor {
  display: block;
  text-align: left;
  color: #fff;
  text-decoration: none;
  padding: 0 20px 1em 0;
}
body[data-nav="1"] .globalnav {
    transform: translate(0,0);
    opacity: 1;
    pointer-events: auto;
}

.h_instagram{
	width: 25px;
	height: 25px;
	display: block;
	margin: 0 0 0 10px;
}

/* footer
--------------------------------------------------------------------- */
#RthCustomizeW .footer {
	color: #fff;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 100px 0;
	background: #0f3759;
	text-align: left;
}

#RthCustomizeW .footer .main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.f_reservation	{
	margin: 0 auto 16px;;
}
.f_reservation	a{
	color: #fff;
	display: block;
	padding: 5px 0;
	font-size: 18px;
	text-align: center;
	border: 1px solid #fff;
	position: relative;
	transition: 0.3s ease-in-out;
}
#RthCustomizeW  .f_reservation	a:hover{
	color: #0f3759;
	background: #fff;
}
.f_reservation	a:hover::after{
	top: 45%;
	right: 15px;
	content: "";
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	color: #0f3759;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
}
.f_reservation a::after{
	top: 45%;
	right: 15px;
	content: "";
	position: absolute;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 8px;
	height: 8px;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
}

.infoarea {
	width: 45%;
	padding-left: 30px;
}

.f_logo {
	width: 360px;
}

.f_logo a {
	width: fit-content;
}

.f_logo img {
	max-width: none;
	width: 100%;
}
.f_tel a{
	color: #fff;
	font-size: 1.75rem;
}
.f_add {
	font-size: 16px;
}

.menuarea {
	width: 50%;
	padding-right: 30px;
}
.menuarea ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.menuarea ul li a{
	color: #fff;
}
.menuarea .list1 {
	width: 100%;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
.menuarea ul.list1 li {
	width: 25%;
	display: flex;
	font-size: 16px;
	text-align: left;
	justify-content: flex-start;
}	
.menuarea .list2 {
	width: 100%;
	padding: 20px 0 10px;
}
.menuarea ul.list2 li {
	width: 25%;
	display: flex;
	font-size: 16px;
	text-align: left;
	justify-content: flex-start;
}
.menuarea ul.list2 li.list2_s{
	width: 30%;
}
.f_instagram{
	width: 25px;
	height: 25px;
	display: block;
}

	

	/* pagetop */
	#pagetop {
		position: fixed;
		z-index: 9998;
		right: 20px;
		bottom: 20px;
		display: block;
	}

	#pagetop a {
		width: 60px;
		height: 60px;
		display: block;
		border: 1px solid rgba(255,255,255,0.5);
		background: #0f3759 url(../images/pagetop.png) center no-repeat;
		background-size: 22px 12px;
	}
}
