@charset "utf-8";
/*+++++++++++++++
aside
++++++++++++++++*/
#sidebar-reserve {
	background: var(--gold);
	position: fixed;
	bottom: 0;
	left: 0;
	transition: .3s;
	overflow: hidden;
	border-radius: 0;
	z-index: 13;
	max-width: var(--width-max);
	width: var(--flex-100);
}

.reserve-menu {
	cursor: pointer;
	color: var(--white);
	letter-spacing: 0;
	font-family: var(--mn);
	background: var(--gold);
	padding: 13px 20px;
	font-size: var(--font-h5);
	text-align: center;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.reserve-menu i {
	display: block;
	text-align: center;
	padding: 0;
}

/*+++++++++++++++
header
++++++++++++++++*/
header {
	position: absolute;
	top: 0;
	width: 94.2vw;
	box-sizing:border-box;
	display: flex;
	justify-content: space-between;
	z-index: 13;
}	

.drawer-open header {
	/* z-index:13; */
}
.logo {
	/* position: fixed; */
	top: 0;
	left: 0;
	display: block;
	margin: clamp(10px,50vw,15px);
	opacity: 0;
	transition: .3s;
}

header.is-animation .logo {
	opacity: 1;
	transition: .3s;	
	pointer-events: all;
}
.logo img {
	width: 160px;
}
#nav {
	/* display: none; */
}
#nav ul {
	display: flex;
	gap: 0 40px;
	width: 100%;
	align-items: center;
}
#nav li {
	display: none;
	font-family: "Noto Sans JP", sans-serif;
	justify-content: right;
}
/*言語設定*/
#nav .lang {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 25px 70px;
}
#nav .lang i{
	color: var(--opa-white05);
}
.langbox {
	position: absolute;
	top: 38px;
	right: -38px;
	margin: auto;
	width: 100px;
	max-width: max-content;
	display:none;
}
#nav .lang .langbox.active {
	display:block;
}
#nav .lang .langbox a{
	display: block;
	font-size: var(--font-mc);
	color: var(--white);
	letter-spacing: 1px;
	margin: 0 0 4px;
	background: var(--opa-black02);
	padding: 5px 20px;
	text-align: center;
}
/**/
#nav a {
	letter-spacing: 3px;
}
#nav p {
	color: var(--white);
	line-height: inherit;
	letter-spacing: 2px;	
}

	

/*+++++++++++++++
drawer
++++++++++++++++*/
.drawer .drawer-nav {
	background: none;
	display: flex;
	justify-content: space-around;
	/* height: 100%; */
	width: 13.25rem;
	right: -14.25rem;
	/* border-left: 1px solid var(--opa-white02); */
}

.drawer-open .drawer-nav {
	background: var(--black);
	padding: 0 0 100px;
}
.drawer .drawer-nav li {
	margin: 0;
	padding: 0 0 10px;
}
.drawer .drawer-nav a {
	color: #fff;
	font-family: var(--gs);
	font-weight: 100;
	letter-spacing: 3px;
}
.drawer .drawer-nav p > a {
	color: var(--opa-white05);
	letter-spacing: 1px;
	line-height: var(--lh-md);
	font-size: var(--font-h5);
}

.drawer-menu {
	width: 100%;
	padding: 16vw 0 2vw 3vw;
	display: none;
}
.drawer-open .drawer-menu {
	display: block;
	overflow-y: scroll;
	height: 900px;
}
.drawer-menu:before {
	content:"";
	background: url("../../../assets/images/common/icon_bg.png") no-repeat;
	position: absolute;
	width: 70px;
	height: 70px;
	top: 0;
	right: 0;
	background-size: 100%;
	opacity: 0.2;
	margin: 20px;
}
.drawer-menu p {
font-size:var(--font-em);
color: var(--opa-white05);
}
.drawer-menu .en {
font-family: "Jost", sans-serif;
font-size: var(--font-h4);
font-weight: 500;
}

.drawer-menu img {
width: 25px;
}

.drawer .drawer-hamburger {
	margin: 10px 10px 10px 0;
	z-index: 105;
	background: none;
	/* width: auto; */
	position: absolute;
}
.drawer-hamburger-icon{
	height: 1px;
	background: var(--white);
}
.drawer-hamburger-icon:after{background: var(--white);height: 1px;}
.drawer-hamburger-icon:before{
	background: var(--white);height: 1px;

}
.drawer--right.drawer-open .drawer-hamburger {
right: 0rem !important;
}

.drawer-open .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger-icon:before {
background: var(--white) !important;
}	


/*+++++++++++++++
sitebar
++++++++++++++++*/
#sitebar {
	/* width: 0; */
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: fixed;
	right: 0;
	top: 0;
	margin: auto;
	z-index: 0;
	padding: 0;
	box-sizing: border-box;
	z-index: 99;
	border-left: 1px solid var(--opa-white02);
}
.drawer-open #sitebar {
	border:none;
}
.drawer-open #sitebar ul {
	display:none;
}
#sitebar ul {
width: 100%;
display: none;
}
#sitebar li {writing-mode:vertical-lr;color: #fff;letter-spacing: 2px;font-family: var(--mn);margin: 0 12px 0 0;}
#sitebar img {
width:25px;
}

@media screen and (min-width: 600px) {
/*+++++++++++++++
aside
++++++++++++++++*/

.reserve-menu i {display: block;text-align: center;}

/*+++++++++++++++
header
++++++++++++++++*/
header {/* box-sizing:border-box; *//* display: grid; *//* align-items: center; *//* grid-template-columns: 15% 82%; *//* justify-content: left; */}	
#nav {
	/* width: 100%; */
}
#nav ul {
	justify-content: right;
}

/*+++++++++++++++
drawer
++++++++++++++++*/
.drawer-hamburger-icon, .drawer-hamburger-icon:before,.drawer-hamburger-icon:after {
	background:var(--white);
}	
.drawer .drawer-nav {
    /* z-index: 0; */
    /* right: -8.25rem; */
}
.drawer-open .drawer-nav {
	z-index: 98;
}	
.drawer .drawer-nav li a {
	color: #fff;
	font-family: var(--gs);
	font-weight: 100;
	letter-spacing: 3px;
}
.drawer .drawer-nav li a p {line-height: inherit;letter-spacing: 2px;font-size: var(--font-em);}

.drawer-menu {
	width: 100%;
	padding: 12vw 0 2vw 15vw;
	display: block;
}
.drawer-open .drawer-menu {
	padding: 12vw 0 2vw 3vw;
}	
.drawer-menu p {
	font-size:var(--font-mc);
	color: var(--opa-white05);
}
.drawer-menu .en {
	font-family: "Jost", sans-serif;
	font-size: var(--font-h4);
	font-weight: 500;
}

.drawer-menu img {
	width: 25px;
}
.drawer .drawer-hamburger {
}
/*+++++++++++++++
sitebar
++++++++++++++++*/
#sitebar {
}
.drawer-open #sitebar{
	background:none;
}
#sitebar ul {
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 97vh;
	align-items: flex-end;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}

#sitebar img {
	width:25px;
}	
	
}

@media screen and (min-width: 1024px) {
/*+++++++++++++++
aside
++++++++++++++++*/
#sidebar-reserve {
	border-radius: 0 5px 5px 0;
	max-width: max-content;
	bottom: 5%;
	left: -5px;
}
.reserve-menu {
	display:block;
	font-size: var(--font-h6);
	padding: 31px 20px 20px;
}	
.reserve-menu i {
display: block;
text-align: center;
padding: 0 0 15px;
}
#sidebar-reserve:hover {
	transition: .3s;
	left:0;
	padding: 0 0 0 10px;
}
/*+++++++++++++++
header
++++++++++++++++*/
header {
	/* width: 90vw; */
	padding: 0;
	background: none;
	/* height: 40px; */
	grid-template-columns: 20% 75%;
}
header .logo {
	margin: 40px 0 0 40px;
}
header .logo img {
	width: 200px;
}	
#nav {
	display: flex;
	margin: 30px 60px 0 0;
	align-items: center;
}
#nav ul {margin: 0 40px;}
#nav ul li {
	display:block;
}
#nav .lang {
	margin:0
}

#nav li a {
	position: relative;
}
#nav li a.active:before {
	content:"";
	background: var(--opa-white05);
	position: absolute;
	left: -3px;
	right: 0;
	margin: auto;
	top: -8px;
	width: 6px;
	height: 6px;
	border-radius: 100px;
}

	
		
/*+++++++++++++++
drawer
++++++++++++++++*/
.drawer .drawer-nav {width: 210px;}
.drawer .drawer-nav p > a {
	color: #fff;
	font-family: var(--gs);
	font-weight: 100;
	font-size:var(--font-em) !important;
}
	
.drawer .drawer-nav p {line-height: inherit;letter-spacing: 2px;image-rendering: inherit;}

.drawer-menu {
	width: 100%;
	padding: 8vw 0 2vw 6.5vw;
}
.drawer-open .drawer-menu {
	padding: 8vw 0 2vw 2.5vw;
}
.drawer-menu p {font-size: inherit;color: var(--opa-white05);}
.drawer-menu .en {
font-size: var(--font-h5);
}

.drawer-menu img {
width: 25px;
}	

.drawer .drawer-hamburger {
	margin: 35px 7px;	
	right: 0%;
}
.drawer-hamburger-icon{
height: 1px;
background: #fff;

}
.drawer-hamburger-icon:after{
background: #fff;
height: 1px;
}
.drawer-hamburger-icon:before{
background: #fff;
height: 1px;}

	
.drawer--right.drawer-open .drawer-hamburger {
	right: 10.5rem !important;
	left: inherit;
}


/*+++++++++++++++
sitebar
++++++++++++++++*/
#sitebar {
	/* transform: translate(calc(100% - var(--sitebar)), 0); */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 6%;
	background: var(--black);
}
.drawer-open #sitebar {background: none;}
#sitebar ul {
}
#sitebar li {
	margin: 0 0 0 0;
	}
#sitebar img {
	width:25px;
	}

}


@media screen and (min-width: 1200px) {
/*+++++++++++++++
aside
++++++++++++++++*/
#sidebar-reserve i {
	display: block;
	text-align: center;
	padding: 0 0 15px;
}
	
#sidebar-reserve:hover {}



/*+++++++++++++++
header
++++++++++++++++*/
header {grid-template-columns: 15% 82%;}	
.logo {
	/* position: fixed; */
	top: 0;left: 0;display: block;z-index: 10;margin: clamp(30px,50vw,40px);}
.logo img {
	width: 340px;
}	

#nav {margin: 40px 60px 0 0;}

#nav li a p {
	font-size: inherit;

}


/*+++++++++++++++
drawer
++++++++++++++++*/
.drawer .drawer-nav {
	width: auto;
	overflow-y: scroll;
	right: -14rem;
}
.drawer.drawer-open .drawer-nav {
	width: 250px;
}	
	
.drawer .drawer-nav li {
	padding: 0 0 10px;
}
	
.drawer .drawer-nav a {
color: #fff;
font-family: var(--gs);
font-weight: 100;
}
.drawer .drawer-nav p {
	line-height: inherit;
	}

.drawer-open .drawer-menu {
	padding: 7vw 0 2vw 2vw;
	right:0;
}
.drawer-menu:before {
	content:"";
	background: url("../../../assets/images/common/icon_bg.png") no-repeat;
	position: absolute;
	width: 100px;
	height: 100px;
	top: 0;
	right: 0;
	left: inherit;
	background-size: 100%;
	opacity: 0.2;
	margin: 20px;
}
.drawer-open .drawer-menu:before {
	left: inherit;
}
.drawer-menu .en {
font-size: var(--font-h4);
}

.drawer-menu img {
width: 25px;
}

.drawer .drawer-hamburger {
	margin: 40px 0;
	padding: 18px 20px 30px;
}
.drawer .drawer-hamburger .drawer-hamburger-icon{
	height: 1px;
}
.drawer .drawer-hamburger .drawer-hamburger-icon:after{
	background: #fff;
	height: 1px;
}
.drawer .drawer-hamburger .drawer-hamburger-icon:before{
	background: #fff;
	height: 1px;
}

.drawer--right.drawer-open .drawer-hamburger.drawer-hamburger-icon {
	background: none;
}


/*+++++++++++++++
sitebar
++++++++++++++++*/
#sitebar {
	right: 0;
	padding: 0;
	width: 6%;
}	

#sitebar img {
	width:25px;
}	
}

@media screen and (min-width: 1500px) {
#sitebar {
	right: 0;
	width: 5%;
}
.drawer .drawer-hamburger {
	margin: 40px auto 0;
	padding: 18px 18px 30px;
	right: 15%;
}	
}
