@charset "utf-8";
:root {
/* 共通設定 */
	--font--zen_old_mincho: "Zen Old Mincho", serif;
	--color--black: #000000;
	--color--grayblack: #1D1D1D;
	--color--white: #ffffff;
	--color--lightgray: #F9F8F7;
	--color--base: #E6E4DA;
	--color--gold: #BBA34F;
}

body {
	min-height: 100vh;
	margin: 0px;
	padding: 0px;
	background-color: var(--color--base);
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	color: #000000;
	font-family: var(--font--zen_old_mincho);
	font-weight: 500;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0.2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}
body.stop-scroll {
	overflow: hidden;
}

#wrap {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}

#body__texture {
	width: 100%;
	height: 100%;
	background-image: url(../image/page_texture@pc.webp);
	background-size: 100% auto;
	background-position: top center;
	background-repeat: repeat-y;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* 共通 */
section {
	position: relative;
	z-index: 1;
}
.reserve_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: url(../image/btn-texture.webp) no-repeat center center / cover, var(--color--gold);
	border: solid 2px var(--color--black);
	position: relative;
	overflow: hidden;
}
	.reserve_btn__icon {
		width: 72px;
		height: auto;
		position: absolute;
		top: 18px;
	}
	.reserve_btn__icon._left {
		left: -28px;
		transform: scale(-1,1);
	}
	.reserve_btn__icon._right {
		right: -28px;
	}
		.reserve_btn__icon svg {
			width: 100%;
			height: auto;
			fill: var(--color--black);
		}
	.reserve_btn__txt_ja {
		margin-bottom: 3px;
		font-size: 16px;
		line-height: 1;
		text-align: center;
		color: var(--color--black);
	}
	.reserve_btn__txt_en {
		font-size: 12px;
		line-height: 1;
		text-align: center;
		color: var(--color--black);
	}
@media (any-hover: hover) {
	.reserve_btn {
		transition: .4s;
	}
	.reserve_btn:hover {
		background-color: var(--color--base);
	}
	.reserve_btn__icon {
		transition: .4s;
	}
	.reserve_btn__icon._left {
		transform: translate(0px,0px) scale(-1,1);
	}
	.reserve_btn__icon._right {
		transform: translate(0px,0px);
	}
	.reserve_btn:hover .reserve_btn__icon._left {
		transform: translate(3px,0px) scale(-1,1);
	}
	.reserve_btn:hover .reserve_btn__icon._right {
		transform: translate(-3px,0px);
	}
}

.cmn_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var(--color--black);
	position: relative;
}
	.cmn_btn_txt {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
		color: var(--color--white);
	}
	.cmn_btn_arrow {
		width: 14px;
		height: auto;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0%,-50%);
	}
		.cmn_btn_arrow svg {
			width: 100%;
			height: auto;
			fill: var(--color--white);
		}
@media (any-hover: hover) {
	.cmn_btn {
		transition: .4s;
	}
	.cmn_btn:hover {
		background-color: var(--color--gold);
	}
		.cmn_btn_txt {
			transition: .4s;
		}
		.cmn_btn:hover .cmn_btn_txt {
			color: var(--color--black);
		}
		.cmn_btn_arrow {
			transition: .4s;
		}
		.cmn_btn:hover .cmn_btn_arrow {
			transform: translate(3px,-50%);
		}
			.cmn_btn_arrow svg {
				transition: .4s;
			}
			.cmn_btn:hover .cmn_btn_arrow svg {
				fill: var(--color--black);
			}
}

.header {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	z-index: 9999;
}
.header._hero {
	position: absolute;
}
.header._cmn {
	position: fixed;
}
	.header__logo {
		width: 90px;
		height: auto;
		position: absolute;
		top: 26px;
		left: 25px;
	}
		.header__logo__link {
			display: block;
			width: 100%;
			height: auto;
			font-size: 0;
		}
			.header__logo__link svg {
				width: 100%;
				height: auto;
				fill: var(--color--white);
				transition-delay: .4s;
			}
			._cmn .header__logo__link svg {
				fill: var(--color--black);
				transition-delay: 0s;
			}
	.header__reserve {
		width: 192px;
		height: 46px;
		position: absolute;
		top: 27px;
		right: 230px;
	}
	._hero .header__reserve {
		display: none;
	}
		.header__reserve__btn {
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 12px;
			width: 100%;
			height: 100%;
			border-radius: 9999px;
			background-color: var(--color--gold);
			border: solid 1px var(--color--black);
		}
	@media (any-hover: hover) {
		.header__reserve__btn {
			transition: .4s;
		}
		.header__reserve__btn:hover {
			background-color: var(--color--base);
		}
	}
			.header__reserve__btn__txt_ja {
				display: inline-block;
				font-size: 16px;
				line-height: 1.4;
				color: var(--color--black);
			}
			.header__reserve__btn__txt_en {
				display: inline-block;
				padding-top: 1px;
				font-size: 12px;
				line-height: 1.4;
				color: var(--color--black);
			}
			.header__reserve__btn__icon {
				display: none;
			}
	.header__langage {
		width: auto;
		height: auto;
		border-radius: 10px;
		position: absolute;
		top: 17px;
		right: 85px;
	}
	._hero .header__langage {
		box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	}
		.header__langage__container {
			width: 100%;
			height: auto;
			padding: 0 10px;
			border-radius: 10px;
			background-color: var(--color--black);
			position: relative;
		}
		._cmn .header__langage__container {
			padding: 0 16px;
		}
			.header__langage__container::before {
				content: '';
				width: 100%;
				height: 100%;
				border-radius: 10px;
				border: solid 1px var(--color--gold);
				pointer-events: none;
				position: absolute;
				top: 0;
				left: 0;
				z-index: 1;
				opacity: 0;
				transition: .3s;
			}
			._open.header__langage__container::before {
				opacity: 1;
			}
			.header__langage__heading {
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 9px;
				width: 100%;
				height: 40px;
				padding: 0;
				cursor: pointer;
				position: relative;
				z-index: 1;
			}
				.header__langage__heading__txt {
					font-size: 12px;
					letter-spacing: 0.05em;
					color: var(--color--white);
				}
				.header__langage__heading__icon {
					width: 12px;
					height: auto;
				}
					.header__langage__heading__icon svg {
						width: 100%;
						height: auto;
						stroke: var(--color--white);
						transform: rotateX(180deg);
						transition: .4s;
					}
			@media (any-hover: hover) {
				.header__langage__heading__txt {
					transition: .4s;
				}
				.header__langage__heading:hover .header__langage__heading__txt {
					color: var(--color--gold);
				}
				.header__langage__heading:hover .header__langage__heading__icon svg {
					stroke: var(--color--gold);
				}
			}
				._open .header__langage__heading .header__langage__heading__icon svg {
					transform: rotateX(0deg);
				}
			.header__langage__list_wrap {
				display: none;
				width: 100%;
				height: auto;
				padding: 0 0 16px;
			}
				.bogo-language-switcher {
					display: flex;
					flex-direction: column;
					gap: 1px;
					width: 100%;
					height: auto;
					font-size: 12px;
					line-height: 1.8;
					letter-spacing: 0.05em;
				}
					.bogo-language-switcher li {
						width: 100%;
						height: auto;
						order: 3;
					}
					.bogo-language-switcher li.ja {
						order: 1;
					}
					.bogo-language-switcher li.en-US {
						order: 2;
					}
						.bogo-language-switcher li .bogoflags {
							display: none;
						}
						.bogo-language-switcher li a {
							color: var(--color--white);
						}
						.bogo-language-switcher li.current a {
							color: var(--color--gold);
						}
					@media (any-hover: hover) {
						.bogo-language-switcher li a {
							transition: .4s;
						}
						.bogo-language-switcher li a:hover {
							color: var(--color--gold);
						}
					}
	.hamburger {
		width: 46px;
		height: 46px;
		position: absolute;
		top: 27px;
		right: 26px;
		z-index: 11;
	}
		.hbg_btn {
			display: flex;
			justify-content: center;
			align-items: center;
			width: 100%;
			height: 100%;
			padding: 0;
			border-radius: 9999px;
			background-color: var(--color--gold);
			border: solid 1px var(--color--gold);
			position: relative;
			z-index: 1;
			cursor: pointer;
		}
	@media (any-hover: hover) {
		.hbg_btn {
			transition: .4s;
		}
		.hbg_btn:hover {
			background-color: var(--color--black);
		}
	}
			.hbg_btn_line_wrap {
				width: 24px;
				height: 3px;
				position: relative;
			}
				.hbg_btn_line {
					width: 100%;
					height: auto;
					position: absolute;
					left: 0;
				}
				.hbg_btn_line._top {
					top: -7px;
				}
				.hbg_btn_line._mid {
					top: 0;
				}
				.hbg_btn_line._bottom {
					bottom: -7px;
				}
					.hbg_btn_line svg {
						width: 100%;
						height: auto;
						fill: var(--color--white);
					}
					/* 開く時の処理 */
					.open .hbg_btn_line._mid svg {
						animation: hbg_btn-line-open .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
					}
						@keyframes hbg_btn-line-open {
							0% {
								opacity: 1;
							}
							35% {
								opacity: 1;
							}
							36% {
								opacity: 0;
							}
							100% {
								opacity: 0;
							}
					}
				.open .hbg_btn_line._top {
					animation: hbg_btn-line_before-open .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
				}
				.open .hbg_btn_line._bottom {
					animation: hbg_btn-line_after-open .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
				}
					@keyframes hbg_btn-line_before-open {
						0% {
							top: -7px;
							transform: translate(0%,0%);
						}
						35% {
							top: 0px;
							transform: translate(0%,0%) rotate(0deg);
						}
						36% {
							top: 0px;
						}
						100% {
							top: 0px;
							transform: translate(0%,0%) rotate(45deg);
						}
					}
					@keyframes hbg_btn-line_after-open {
						0% {
							bottom: -7px;
							transform: translate(0%,0%);
						}
						35% {
							bottom: 0px;
							transform: translate(0%,0%) rotate(0deg);
						}
						36% {
							bottom: 0px;
						}
						100% {
							bottom: 0px;
							transform: translate(0%,0%) rotate(-45deg);
						}
					}
				/* 閉じる時の処理 */
					.close .hbg_btn_line._mid svg {
						animation: hbg_btn-line-close .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
					}
						@keyframes hbg_btn-line-close {
							0% {
								opacity: 0;
							}
							35% {
								opacity: 0;
							}
							36% {
								opacity: 1;
							}
							100% {
								opacity: 1;
							}
						}
				.close .hbg_btn_line._top {
					animation: hbg_btn-line_before-close .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
				}
				.close .hbg_btn_line._bottom {
					animation: hbg_btn-line_after-close .4s cubic-bezier(0.65, 0, 0.35, 1) 1 forwards;
				}
					@keyframes hbg_btn-line_before-close {
						0% {
							top: 0px;
							transform: translate(0%,0%) rotate(45deg);
						}
						35% {
							top: 0px;
						}
						36% {
							top: 0px;
							transform: translate(0%,0%) rotate(0deg);
						}
						100% {
							top: -7px;
							transform: translate(0%,0%);
						}
					}
					@keyframes hbg_btn-line_after-close {
						0% {
							bottom: 0px;
							transform: translate(0%,0%) rotate(-45deg);
						}
						35% {
							bottom: 0px;
						}
						36% {
							bottom: 0px;
							transform: translate(0%,0%) rotate(0deg);
						}
						100% {
							bottom: -7px;
							transform: translate(0%,0%);
						}
					}
	.global_nav {
		width: 100%;
		height: 100vh;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 10;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition: .4s;
	}
	.global_nav._open {
		opacity: 1;
		pointer-events: auto;
		transition: 0s;
	}
		.global_nav__contents {
			width: 320px;
			height: 100%;
			padding: 23px 0;
			position: absolute;
			top: 0;
			right: 0;
			background-color: var(--color--black);
			transform: translate(100%,0%);
			transition: .55s;
		}
		._open .global_nav__contents {
			transform: translate(0%,0%);
		}
			.global_nav__contents__frame {
				width: calc(100% - 46px);
				height: calc(100% - 46px);
				overflow: hidden;
				pointer-events: none;
				position: absolute;
				top: 23px;
				left: 23px;
				z-index: 2;
			}
				.global_nav__contents__frame__hidden_obj {
					width: 100%;
					height: auto;
					position: absolute;
					left: 0;
					z-index: 1;
				}
				.global_nav__contents__frame__hidden_obj._top {
					top: 0;
				}
				.global_nav__contents__frame__hidden_obj._bottom {
					bottom: 0;
				}
					.global_nav__contents__frame__hidden_obj svg {
						width: 100%;
						height: auto;
						fill: var(--color--black);
					}
				.global_nav__contents__frame::before,
				.global_nav__contents__frame::after {
					content: '';
					width: 2px;
					height: calc(100% - 40px);
					background-color: var(--color--gold);
					pointer-events: none;
					position: absolute;
					top: 20px;
					z-index: 2;
				}
				.global_nav__contents__frame::before {
					left: 0;
				}
				.global_nav__contents__frame::after {
					right: 0;
				}
				.global_nav__contents__frame_line {
					width: 100%;
					height: 20px;
					overflow: hidden;
					position: absolute;
					left: 0;
				}
					.global_nav__contents__frame_line svg {
						width: 100%;
						height: auto;
						stroke: var(--color--gold);
						position: absolute;
						left: 0;
					}
					.global_nav__contents__frame_line._top svg {
						top: 0;
					}
					.global_nav__contents__frame_line._bottom svg {
						bottom: 0;
					}
				.global_nav__contents__frame_line._top {
					top: 0;
				}
				.global_nav__contents__frame_line._bottom {
					bottom: 0;
				}
			.global_nav__contents__wagyu {
				width: 46px;
				height: auto;
				position: absolute;
				top: 10px;
				left: 50%;
				transform: translate(-50%,0%);
			}
				.global_nav__contents__wagyu svg {
					width: 100%;
					height: auto;
					fill: var(--color--white);
				}
			.global_nav__menu {
				width: 258px;
				height: 100%;
				margin: 0 auto;
				position: relative;
				z-index: 1;
			}
				.global_nav__menu__inner {
					display: flex;
					flex-direction: column;
					justify-content: flex-start;
					align-items: center;
					width: 100%;
					height: calc(100% - 2px);
					padding: 108px 0 48px;
					margin: 1px 0 0;
					overflow: auto;
					scrollbar-width: none;
					-ms-overflow-style: none;
				}
				.global_nav__menu__inner::-webkit-scrollbar {
					display: none;
				}
					.global_nav__menu__list {
						flex-shrink: 0;
						display: flex;
						flex-direction: column;
						gap: 30px;
						width: 214px;
						height: auto;
						margin: 0 auto 96px;
					}
						.global_nav__menu__list__item {
							width: 100%;
							height: auto;
						}
							.global_nav__menu__list__item__link {
								display: flex;
								flex-direction: column;
								width: 100%;
								height: auto;
							}
								.global_nav__menu__list__item__txt_ja {
									margin-bottom: -3px;
									font-size: 18px;
									line-height: 1.5;
									color: var(--color--white);
								}
								.global_nav__menu__list__item__txt_en {
									font-size: 12px;
									line-height: 1.5;
									color: var(--color--white);
								}
							@media (any-hover: hover) {
								.global_nav__menu__list__item__txt_ja,
								.global_nav__menu__list__item__txt_en {
									transition: .4s;
								}
								.global_nav__menu__list__item__link:hover .global_nav__menu__list__item__txt_ja,
								.global_nav__menu__list__item__link:hover .global_nav__menu__list__item__txt_en {
									color: var(--color--gold);
								}
							}
					.global_nav__menu__reserve_btn_wrap {
						flex-shrink: 0;
						width: 258px;
						height: 66px;
						margin: auto auto 40px;
					}
					.global_nav__menu__tennomeshi_group {
						flex-shrink: 0;
						width: 226px;
						height: auto;
						margin: 0 auto;
					}
						.global_nav__menu__tennomeshi_group__heading {
							display: flex;
							justify-content: space-between;
							align-items: center;
							width: 100%;
							height: auto;
							padding: 0 6px 16px 0;
							margin: 0 auto 28px;
							border-bottom: solid 1px var(--color--white);
						}
							.global_nav__menu__tennomeshi_group__heading__txt {
								width: 121px;
								height: auto;
								font-size: 12px;
								line-height: 1.5;
								letter-spacing: 0.01em;
								text-align: center;
								color: var(--color--white);
							}
							.global_nav__menu__tennomeshi_group__heading__logo {
								width: auto;
								height: 67px;
							}
								.global_nav__menu__tennomeshi_group__heading__logo__link {
									display: block;
									width: auto;
									height: 100%;
									will-change: opacity;
								}
							@media (any-hover: hover) {
								.global_nav__menu__tennomeshi_group__heading__logo__link {
									transition: .4s;
								}
								.global_nav__menu__tennomeshi_group__heading__logo__link:hover {
									opacity: .7;
								}
							}
									.global_nav__menu__tennomeshi_group__heading__logo img {
										width: auto;
										height: 100%;
									}
						.global_nav__menu__tennomeshi_group__details {
							width: 100%;
							height: auto;
							margin: auto 0 0;
						}
							.global_nav__menu__tennomeshi_group__link_list {
								display: flex;
								justify-content: space-between;
								align-items: center;
								width: 209px;
								height: auto;
								margin: 0 auto;
							}
								.global_nav__menu__tennomeshi_group__link_list__item {
									width: 40px;
									height: auto;
								}
									.global_nav__menu__tennomeshi_group__link {
										display: block;
										width: 100%;
										height: auto;
									}
								@media (any-hover: hover) {
									.global_nav__menu__tennomeshi_group__link {
										transition: .4s;
									}
									.global_nav__menu__tennomeshi_group__link:hover {
										opacity: .7;
									}
								}

#footer {
	width: 100%;
	height: auto;
	background-color: var(--color--grayblack);
	border-radius: 40px 40px 0 0;
	position: relative;
	z-index: 2;
}
	.footer__shabushabu {
		width: 8.7px;
		height: auto;
		margin-top: 10px;
		position: absolute;
		top: 50%;
		left: 21px;
		transform: translate(0%,-50%);
		z-index: 2;
	}
	.footer__sukiyaku {
		width: 8.51px;
		height: auto;
		margin-top: 10px;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translate(0%,-50%);
		z-index: 2;
	}
	.footer__inner {
		width: 90%;
		max-width: 1000px;
		height: auto;
		padding: 66px 0 0;
		margin: 0 auto;
		position: relative;
		z-index: 2;
	}
		.footer__reserve_btn_wrap {
			width: 100%;
			height: 172px;
			margin: 0 auto 90px;
		}
				.footer_reserve_btn .reserve_btn__icon {
					width: 160px;
					top: 47px;
				}
				.footer_reserve_btn .reserve_btn__icon._left {
					left: -61px;
				}
				.footer_reserve_btn .reserve_btn__icon._right {
					right: -61px;
				}
				.footer_reserve_btn .reserve_btn__txt_ja {
					margin-bottom: 14px;
					font-size: 26px;
				}
				.footer_reserve_btn .reserve_btn__txt_en {
					font-size: 14px;
				}
		.footer__contents {
			display: flex;
			justify-content: flex-start;
			align-items: flex-end;
			width: 100%;
			height: auto;
			margin: 0 auto 50px;
		}
			.footer__logo {
				width: 148px;
				height: auto;
				margin: 0 calc((120 / 1000) * 100%) 0 0;
			}
				.footer__logo__link {
					display: block;
					width: 100%;
					height: auto;
				}
			@media (any-hover: hover) {
				.footer__logo__link {
					transition: .4s;
				}
				.footer__logo__link:hover {
					opacity: .8;
				}
			}
			.footer__menu {
				width: auto;
				height: auto;
			}
				.footer__menu__list {
					display: flex;
					justify-content: space-between;
					align-items: flex-start;
					flex-wrap: wrap;
					gap: 33px 0;
					width: auto;
					max-width: 320px;
					height: auto;
				}
					.footer__menu__list__item {
						width: auto;
						min-width: 128px;
						height: auto;
					}
						.footer__menu__list__item__link {
							display: flex;
							flex-direction: column;
							justify-content: flex-start;
							align-items: flex-start;
						}
							.footer__menu__list__item__txt_ja {
								margin-bottom: 5px;
								font-size: 18px;
								line-height: 1.5;
								color: var(--color--white);
							}
							.footer__menu__list__item__txt_en {
								font-size: 10px;
								line-height: 1;
								color: var(--color--white);
							}
						@media (any-hover: hover) {
							.footer__menu__list__item__txt_ja,
							.footer__menu__list__item__txt_en {
								transition: .4s;
							}
							.footer__menu__list__item__link:hover .footer__menu__list__item__txt_ja,
							.footer__menu__list__item__link:hover .footer__menu__list__item__txt_en {
								color: var(--color--gold);
							}
						}
			.footer__menu__tennomeshi_group {
				width: 226px;
				height: auto;
				margin: 0 0 0 auto;
			}
				.footer__menu__tennomeshi_group__heading {
					display: flex;
					justify-content: space-between;
					align-items: flex-end;
					width: 100%;
					height: auto;
					padding: 0 0 16px;
					border-bottom: solid 1px var(--color--white);
				}
					.footer__menu__tennomeshi_group__heading__txt {
						width: 121px;
						height: auto;
						padding-bottom: 9px;
						font-size: 12px;
						line-height: 1.5;
						letter-spacing: 0.01em;
						text-align: center;
						color: var(--color--white);
					}
					.footer__menu__tennomeshi_group__heading__logo {
						width: 68px;
						height: auto;
					}
						.footer__menu__tennomeshi_group__heading__logo__link {
							display: block;
							width: 100%;
							height: 100%;
							will-change: opacity;
						}
						@media (any-hover: hover) {
							.footer__menu__tennomeshi_group__heading__logo__link {
								transition: .4s;
							}
							.footer__menu__tennomeshi_group__heading__logo__link:hover {
								opacity: .7;
							}
						}
					.footer__menu__tennomeshi_group__details {
						width: 100%;
						height: auto;
						padding: 28px 9px 0;
					}
						.footer__menu__tennomeshi_group__link_list {
							display: flex;
							justify-content: space-between;
							align-items: center;
							width: 100%;
							height: auto;
						}
							.footer__menu__tennomeshi_group__link_list__item {
								width: 40px;
								height: auto;
							}
								.footer__menu__tennomeshi_group__link {
									display: block;
									width: 100%;
									height: auto;
								}
							@media (any-hover: hover) {
								.footer__menu__tennomeshi_group__link {
									transition: .4s;
								}
								.footer__menu__tennomeshi_group__link:hover {
									opacity: .7;
								}
							}
		.footer__obj {
			width: 100%;
			height: 240px;
			overflow: hidden;
		}
			.footer__obj__wrap {
				width: 730px;
				height: auto;
				margin: 0 auto;
				position: relative;
			}
				.footer__obj__gu {
					width: 486px;
					height: auto;
					margin-left: 5px;
					position: absolute;
					top: 29px;
					left: 50%;
					transform: translate(-50%,0%) rotate(1deg);
					z-index: 2;
				}
				.footer__obj__nabe {
					width: 100%;
					height: auto;
				}
				.footer__obj__steam {
					height: auto;
					position: absolute;
					z-index: 3;
				}
				.footer__obj__steam._01 {
					width: 163px;
					top: 25px;
					right: -35px;
					z-index: 2;
				}
				.footer__obj__steam._02 {
					width: 128px;
					top: 45px;
					left: -47px;
					z-index: 2;
				}
	.footer__texture {
		width: 100%;
		height: auto;
		opacity: .2;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 1;
	}

/* 下層ページ共通 */
.page__top {
	width: 100%;
	height: auto;
	padding: 106px 0 68px;
}
	.page__top__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: auto;
		margin: 0 auto;
	}
		.page__top__obj {
			width: 295px;
			height: auto;
		}
		.page__top__heading {
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			align-items: center;
			width: auto;
			height: auto;
		}
			.page__top__heading__txt_ja {
				-webkit-writing-mode: vertical-rl;
				-moz-writing-mode: vertical-rl;
				-ms-writing-mode: tb-rl;
				-ms-writing-mode: vertical-rl;
				writing-mode: vertical-rl;
				margin-bottom: 2px;
				font-size: 26px;
				line-height: 1;
				letter-spacing: 0.4em;
			}
			.page__top__heading__txt_en {
				font-size: 10px;
				line-height: 1.5;
				text-align: center;
			}

/* PC ================================================== */
@media all and (min-width: 769px){
.sp {display: none;}
.pc {display: inline-block;}
.view_sp {display: none;}
.view_pc {display: block;}
body {}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}

/* 共通 */
			.page__top__heading__txt_en {
				letter-spacing: 0.2em;
			}
}

/* Tablet ================================================== */
@media all and (max-width: 768px){
.pc {display: none;}
.sp {display: inline-block;}
.view_pc {display: none;}
.view_sp {display: block;}
body {}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}

#body__texture {
	background-image: url(../image/page_texture@sp.webp);
}

/* 共通 */
	.reserve_btn__icon {
		top: 25px;
	}
	.reserve_btn__icon._left {
		left: -26px;
		transform: scale(-1,1);
	}
	.reserve_btn__icon._right {
		right: -26px;
	}
	.reserve_btn__txt_ja {
		margin-bottom: 6px;
		font-size: 20px;
	}
	.reserve_btn__txt_en {
		font-size: 14px;
	}

/* cmn_btn */
	.cmn_btn_txt {
		font-size: 14px;
	}
	.cmn_btn_arrow {
		width: 14px;
		right: 18px;
	}

/* header */
	.header__logo {
		display: none;
	}
	.header__reserve {
		width: 100%;
		height: 72px;
		position: fixed;
		top: auto;
		bottom: 0;
		right: 0;
	}
	._cmn .header__reserve {
		transform: translate(0px,72px);
	}
		.header__reserve__btn {
			border-radius: 0;
			border: none;
		}
			.header__reserve__btn__txt_ja {
				font-size: 16px;
			}
			.header__reserve__btn__txt_en {
				font-size: 12px;
			}
			.header__reserve__btn__icon {

			}
			.header__reserve__btn__icon._left {
				left: 0;
			}
			.header__reserve__btn__icon._right {
				right: 0;
			}

	.header__langage {
		width: 80px;
		border-radius: 6px;
		top: 74px;
		right: 10px;
	}
	._cmn .header__langage {
		top: 22px;
		right: 70px;
	}
	._hero .header__langage {
		box-shadow: initial;
	}
		.header__langage__container {
			padding: 0 10px 0 12px;
			border-radius: 6px;
		}
		._cmn .header__langage__container {
			padding: 0 10px 0 12px;
		}
			.header__langage__container::before {
				border-radius: 6px;
			}
			.header__langage__heading {
				gap: 6px;
				height: 30px;
			}
				.header__langage__heading__txt {
					font-size: 12px;
					letter-spacing: 0.05em;
				}
				.header__langage__heading__icon {
					width: 10px;
				}
			.header__langage__list_wrap {
				padding: 0 0 10px;
			}
				.bogo-language-switcher {
					gap: 1px;
					font-size: 12px;
				}
	.hamburger {
		top: 14px;
		right: 10px;
	}
		.global_nav__contents {
			width: 100%;
			padding: 23px 0 20px;
			transform: translate(0%,0%);
			opacity: 0;
		}
		._open .global_nav__contents {
			opacity: 1;
		}
			.global_nav__contents__frame {
				width: calc(100% - 32px);
				height: calc(100% - 43px);
				top: 23px;
				left: 16px;
			}
				.global_nav__contents__frame::before,
				.global_nav__contents__frame::after {
					height: calc(100% - (46 / 375) * 100vw);
					top: calc((23 / 375) * 100vw);
				}
				.global_nav__contents__frame_line {
					height: calc((24 / 375) * 100vw);
				}
				.global_nav__contents__frame_line._top {
					top: 0;
				}
				.global_nav__contents__frame_line._bottom {
					bottom: 0;
				}
			.global_nav__contents__wagyu {
				width: 46px;
			}
				.global_nav__contents__wagyu svg {
					width: 100%;
					height: auto;
					fill: var(--color--white);
				}
			.global_nav__menu {
				width: 100%;
			}
				.global_nav__menu__inner {
					display: flex;
					flex-direction: column;
					justify-content: flex-start;
					align-items: center;
					width: 100%;
					height: calc(100% - 2px);
					padding: 60px 0 38px;
					margin: 1px 0 0;
					overflow: auto;
				}
					.global_nav__menu__list {
						gap: 28px;
						width: calc((267 / 375) * 100%);
						margin: 0 auto 50px;
					}
								.global_nav__menu__list__item__txt_ja {
									margin-bottom: -1px;
								}
					.global_nav__menu__reserve_btn_wrap {
						width: 300px;
						margin: 0 auto 24px;
					}
						.global_nav__menu__reserve_btn .reserve_btn__icon {
							top: 18px;
						}
						.global_nav__menu__reserve_btn .reserve_btn__txt_ja {
							margin-bottom: 3px;
							font-size: 16px;
						}
						.global_nav__menu__reserve_btn .reserve_btn__txt_en {
							font-size: 12px;
						}
					.global_nav__menu__tennomeshi_group {
						display: flex;
						justify-content: space-between;
						align-items: center;
						width: 250px;
					}
						.global_nav__menu__tennomeshi_group__heading {
							display: block;
							width: 75px;
							padding: 0;
							margin: 0;
							border-bottom: none;
						}
							.global_nav__menu__tennomeshi_group__heading__txt {
								display: none;
							}
							.global_nav__menu__tennomeshi_group__heading__logo {
								width: 40px;
								height: auto;
							}
								.global_nav__menu__tennomeshi_group__heading__logo__link {
									width: 100%;
									height: auto;
								}
									.global_nav__menu__tennomeshi_group__heading__logo img {
										width: 100%;
										height: auto;
									}
						.global_nav__menu__tennomeshi_group__details {
							flex: 1;
							width: auto;
							margin: 0;
						}
							.global_nav__menu__tennomeshi_group__link_list {
								width: 100%;
								margin: 0;
							}

/* footer */
#footer {
	padding: 0 0 72px;
}
	.footer__shabushabu,
	.footer__sukiyaku {
		display: none;
	}
	.footer__inner {
		width: calc((355 / 375) * 100%);
		padding: 40px 0 0;
	}
		.footer__reserve_btn_wrap {
			height: 88px;
			margin: 0 auto 30px;
		}
			.footer__reserve_btn {
				padding-top: 2px;
			}
				.footer_reserve_btn .reserve_btn__icon {
					width: 72px;
					top: 25px;
				}
				.footer_reserve_btn .reserve_btn__icon._left {
					left: -26px;
				}
				.footer_reserve_btn .reserve_btn__icon._right {
					right: -26px;
				}
				.footer_reserve_btn .reserve_btn__txt_ja {
					margin-bottom: 6px;
					font-size: 20px;
				}
				.footer_reserve_btn .reserve_btn__txt_en {
					font-size: 14px;
				}
		.footer__contents {
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			align-items: center;
			margin: 0 auto 26px;
		}
			.footer__logo {
				width: 149px;
				margin: 0 auto 30px;
			}
			.footer__menu {
				width: calc((224 / 300) * 100%);
				margin: 0 auto 35px;
			}
				.footer__menu__list {
					flex-direction: column;
					justify-content: flex-start;
					align-items: flex-start;
					flex-wrap: initial;
					gap: 16px 0;
					width: 100%;
					max-width: initial;
				}
					.footer__menu__list__item {
						width: 100%;
						min-width: initial;
					}
						.footer__menu__list__item__link {
							flex-direction: row;
							align-items: center;
						}
							.footer__menu__list__item__txt_ja {
								width: 160px;
								margin-bottom: 0;
								font-size: 14px;
							}
							.footer__menu__list__item__txt_en {
								letter-spacing: 0.2em;
							}
			.footer__menu__tennomeshi_group {
				width: 280px;
				margin: 0;
			}
				.footer__menu__tennomeshi_group__heading {
					display: flex;
					justify-content: space-between;
					align-items: flex-end;
					width: 100%;
					height: auto;
					padding: 0 20px 16px 0;
					border-bottom: solid 1px var(--color--white);
				}
					.footer__menu__tennomeshi_group__heading__txt {
						width: 176px;
						font-size: 14px;
						letter-spacing: 0.1em;
					}
					.footer__menu__tennomeshi_group__heading__logo {
						width: 80px;
					}
						.footer__menu__tennomeshi_group__link_list {
							width: 100%;
							max-width: 200px;
							margin: 0 auto;
						}
		.footer__obj {
			height: 104px;
		}
			.footer__obj__wrap {
				width: 229px;
			}
				.footer__obj__gu {
					width: 156px;
					margin-left: 2px;
					top: 10px;
				}
				.footer__obj__steam._01 {
					width: 52px;
					top: 8px;
					right: -11px;
				}
				.footer__obj__steam._02 {
					width: 40px;
					top: 15px;
					left: -15px;
				}

/* 下層ページ共通 */
.page__top {
	padding: 94px 0 40px;
}
	.page__top__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
		.page__top__obj {
			width: 70px;
		}
		.page__top__heading {
			width: auto;
			height: auto;
		}
			.page__top__heading__txt_ja {
				-webkit-writing-mode: initial;
				-moz-writing-mode: initial;
				-ms-writing-mode: initial;
				-ms-writing-mode: initial;
				writing-mode: initial;
				margin-bottom: 0px;
				font-size: 16px;
				line-height: 1.4;
				letter-spacing: 0.2em;
			}
			.page__top__heading__txt_en {
				font-size: 10px;
				line-height: 2.2;
			}
}

/* SP ================================================== */
@media all and (max-width: 575px){
body {}
h1{}
h2{}
h3{}
h4{}
h5{}
h6{}
}