@charset "UTF-8";

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
汎用
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
.link_img {
	display: inline-block;
	margin-left: 1rem;
}

a {
	display: block;
}

.tate {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	line-height: 1;
}

#front section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 5rem 0;
	width: 100%;
	margin-bottom: 50rem;
}

#front .image img {
	width: 100%;
}

#front .button {
	border: 1px solid #fff;
	padding: 1.8rem 0;
	text-align: center;
	font-size: 1.7rem;
	letter-spacing: 0.4rem;
	line-height: 1.7rem;
}

/* ---------------------------------------------------------------------------------------- */
/* アニメーション */
/* ---------------------------------------------------------------------------------------- */

.fadein {
	opacity: 0;
}

.fadein.active {
	animation: fadein 1s 1 forwards;
}

.fadein_up {
	opacity: 0;
}

.fadein_up.active {
	animation: fadein_up 1s 1 forwards;
}

.fadein_down {
	opacity: 0;
}

.fadein_down.active {
	animation: fadein_up 1s 1 forwards;
}

.fadein_left {
	opacity: 0;
}

.fadein_left.active {
	animation: fadein_left 1s 1 forwards;
}

.fadein_right {
	opacity: 0;
}

.fadein_right.active {
	animation: fadein_right 1s 1 forwards;
}

.zoom {
	transform: scale(0.8);
	transform-origin: top left;
}

.zoom.active {
	animation: zoom 1s 1 forwards;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadein_up {
	0% {
		opacity: 0;
		transform: translate3d(0, 50px, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadein_down {
	0% {
		opacity: 0;
		transform: translate3d(0, -50px, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadein_left {
	0% {
		opacity: 0;
		transform: translate3d(50px, 0, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadein_right {
	0% {
		opacity: 0;
		transform: translate3d(-50px, 0, 0);
	}

	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes zoom {
	0% {
		transform: scale(0.8);
	}

	100% {
		transform: scale(1);
	}
}

.puttext {
	opacity: 0;
}

.top_anim {
	background-color: #000;
}

@keyframes scrollLock {
	0% {
		overflow-y: hidden;
	}

	100% {
		overflow-y: hidden;
	}
}

@keyframes backanim {
	0% {
		background-color: #000;
	}

	100% {
		background-color: transparent;
	}
}

.delay1 {
	animation-delay: 0.5s !important;
}

.delay2 {
	animation-delay: 1s !important;
}

.delay3 {
	animation-delay: 1.5s !important;
}

.delay4 {
	animation-delay: 2s !important;
}

.delay5 {
	animation-delay: 2.5s !important;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
ヘッダー
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
header {
	position: fixed;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	width: 100%;
	height: 8.4rem;
	z-index: 100;
}

header .container {
	justify-content: space-between;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding-top: 10px;
	/* 愛甲追加 */
}

header h1 {
	font-size: 1.8rem;
	letter-spacing: 0.2rem;
	display: flex;
	align-items: center;
}

header h1 span {
	font-size: 1.5rem;
	letter-spacing: 0.2rem;
	margin-right: 1.2rem;
}

header #main_menu {
	width: 85%;
}

header #main_menu ul {
	justify-content: space-between;
	flex-wrap: wrap;
}

header #main_menu ul li {
	display: flex;
	align-items: center;
	justify-content: center;
}

header #main_menu ul li a {
	font-size: 1.8rem;
	letter-spacing: 0.4rem;
}

@media (max-width: 1024px) {
	header .pc {
		display: none;
	}

	header .sp {
		display: block;
	}
}

/*----------------------------------------------------------------------------------------
ドロワーメニュー
----------------------------------------------------------------------------------------*/
#drower_button {
	width: 50px;
	height: 50px;
	position: relative;
	z-index: 10;
	cursor: pointer;
}

#drower_button .border1 {
	height: 1px;
	position: absolute;
	background-color: #fff;
	top: 20px;
	right: 4px;
	width: 16px;
	transition: 0.5s;
}

#drower_button .border2 {
	height: 1px;
	position: absolute;
	background-color: #fff;
	top: 28px;
	right: 0;
	width: 20px;
	transition: 0.5s;
}

#drower_button.active .border1 {
	background-color: #000;
	width: 20px;
	transform: rotate(45deg);
	right: 0;
}

#drower_button.active .border2 {
	background-color: #000;
	transform: rotate(-45deg);
	right: 0;
	top: 20px;
}

#drower_mask {
	width: 100%;
	height: 100vh;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

#drower_menu {
	position: fixed;
	top: 0;
	left: 100%;
	transition: 0.5s;
	width: 270px;
	height: 100vh;
	padding: 40px 30px;
	background-color: #fff;
	z-index: 5;
}

#drower_menu>a {
	margin-bottom: 25px;
	width: 40px;
}

#drower_menu>a>img {
	width: 40px;
}

#drower_menu li {
	line-height: 2.5;
	color: #000;
	font-size: 15px;
}

#drower_menu li a {
	color: #000;
	font-size: 15px;
	letter-spacing: 1px;
}

#drower_menu.active {
	left: calc(100% - 270px);
}

#drower_menu .language li {
	line-height: 2;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
フッター
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
footer {
	padding-top: 45rem;
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0));
}

footer .footer_container {
	max-width: 1220px;
	width: 100%;
	padding: 3.5rem 0;
	margin: 0 auto;
}

footer .footer_wrapper {
	justify-content: space-between;
	border-top: 1px solid #fff;
	margin-bottom: 10rem;
}

footer .footer_company .company_wrap {
	justify-content: flex-start;
	align-items: flex-end;
	width: 33rem;
}

footer .footer_company .company_wrap {
	margin-bottom: 5rem;
}

footer .footer_company .company_wrap img {
	margin-bottom: 1.6rem;
	margin-right: 1.5rem;
}

footer .footer_company .company_wrap .logo_1 {
	width: 7rem;
}

footer .footer_company .company_wrap .logo_2 {
	width: 4.8rem;
}

footer .footer_company .company_wrap .text {
	width: 25rem;
}

footer .footer_company .company_wrap .text>* {
	width: 100%;
}

footer .footer_company .company_wrap .text .address {
	font-size: 1.8rem;
	line-height: 3rem;
}

footer .footer_company .company_wrap .text .tel {
	font-size: 2.8rem;
	line-height: 5rem;
}

footer .footer_company .company_wrap .text .tel span {
	font-size: 1.8rem;
	margin-right: 1rem;
}

footer .footer_container .copylight {
	font-size: 1.3rem;
	line-height: 1.3rem;
	text-align: center;
	padding-bottom: 3.5rem;
}

footer #footer_menu {
	margin-top: 6.5rem;
	width: 40%;
}

footer #footer_menu ul {
	justify-content: space-between;
	flex-wrap: wrap;
	justify-content: flex-start;
	flex-direction: column;
	height: 22rem;
}

footer #footer_menu ul li {
	width: 25rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 1.5rem 3rem;
}

footer #footer_menu ul li a {
	font-size: 1.8rem;
	line-height: 1.8rem;
	letter-spacing: 0.1rem;
}

footer #back_to_top {
	position: fixed;
	right: 4rem;
	bottom: 4rem;
	width: 6.4rem;
	height: 6.4rem;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s;
	opacity: 0;
	cursor: pointer;
}

footer #back_to_top img {
	width: 2.2rem;
}

footer #back_to_top img.b {
	transition: 0.5s;
	opacity: 0;
	position: absolute;
}

footer #back_to_top:hover {
	background-color: rgba(255, 255, 255, 0.5);
	transition: 0.5s;
}

footer #back_to_top:hover img.b {
	opacity: 1;
	transition: 0.5s;
}

footer .footer_company .company_wrap .text .tel {
	position: relative;
}

footer .footer_company .company_wrap .text .tel .tel-cap {
	position: absolute;
	bottom: -20px;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
フロントページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #background_area {
	position: fixed;
	top: 0;
	z-index: -1;
}

#front #background_area picture img {
	object-position: center center;
	object-fit: cover;
	height: 100vh;
}

#front #background_area div {
	height: 100vh;
}

#front #background_area picture,
#front #background_area div {
	position: absolute;
	top: 0;
	display: none;
}

#front #background_area #back_1 {
	display: block;
	position: static;
}

#front h2 {
	font-size: 3rem;
	line-height: 6rem;
	letter-spacing: 1rem;
	text-indent: 2rem;
}

#front h2.tate {
	text-indent: 0;
	display: block;
}

#front p {
	font-size: 2.2rem;
	line-height: 2;
	letter-spacing: 0.5rem;
}

#front div.image {
	overflow: hidden;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section top
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_top {
	height: 100vh;
	display: block;
	padding: 0;
	position: relative;
}

#front #sec_top .container {
	height: 100%;
}

#front #sec_top .container {
	padding-top: 20vh;
}

#front #sec_top h2 {
	width: 6.1rem;
	margin: 0 auto;
}

#front #sec_top .top_link_wrap {
	max-width: 75rem;
	width: 90%;
	margin: 0 auto;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

#front #sec_top .top_link_wrap .top_link {
	width: 28.5rem;
	margin: 0 auto;
	padding: 3.5rem 0;
}

#front #sec_top .top_link_wrap .top_link a {
	font-size: 1.8rem;
	line-height: 1.8rem;
	width: auto;
	display: inline-block;
	padding: 2.5rem 0;
}


/* 動画系 -------------------------------- */

#front .movie-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #000000cc;
	opacity: 1;
	display: flex;
	align-items: center;
	opacity: 0;
	z-index: -1;
	transition: 1s;
}

#front .movie-area #m-close,
#front .movie-area #iframe-close {
	position: absolute;
	width: 60px;
	height: 60px;
	border: 1px solid #fff;
	top: 10%;
	right: 5%;
	transition: 0.5s;
	cursor: pointer;
}

#front .movie-area #m-close:hover,
#front .movie-area #iframe-close:hover {
	background-color: #fff;
}

#front .movie-area #m-close:hover .line-1,
#front .movie-area #m-close:hover .line-2,
#front .movie-area #iframe-close:hover .line-1,
#front .movie-area #iframe-close:hover .line-2 {
	background-color: #000;
}

#front .movie-area #m-close .line-1,
#front .movie-area #m-close .line-2,
#front .movie-area #iframe-close .line-1,
#front .movie-area #iframe-close .line-2 {
	width: 40px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 29px;
	left: 9px;
	transition: 0.5s;
}

#front .movie-area #m-close .line-1,
#front .movie-area #iframe-close .line-1 {
	transform: rotate(45deg);
}

#front .movie-area #m-close .line-2,
#front .movie-area #iframe-close .line-2 {
	transform: rotate(-45deg);
}

#front .movie-area.active {
	opacity: 1;
	pointer-events: all;
	z-index: 10000;
}

#front .movie-area .movie-hero {
	margin: 0 auto;
	width: 70%;
	max-width: 1920px;
	max-height: 1080px;
	position: relative;
}

#front .movie-area .movie-box {
	padding-top: 56.3%;
	height: 0;
}

#front .movie-area video,
#front .movie-area iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#front #videoPlay {
	position: absolute;
	bottom: 10%;
	right: 5%;
	width: 10vw;
	height: 6vw;
	cursor: pointer;
	opacity: 0;
}

#front #videoPlay img {
	filter: brightness(0.4);
	object-fit: cover;
	height: 100%;
}

#front #iframePlay {
	position: absolute;
	bottom: 10%;
	right: 17%;
	width: 10vw;
	height: 6vw;
	cursor: pointer;
	opacity: 0;
}

#front #iframePlay img {
	filter: brightness(0.4);
	object-fit: cover;
	height: 100%;
}

#front #play-icon {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 3vw;
	top: calc(50% - 1.5vw);
}

#front #iframe-icon {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 3vw;
	top: calc(50% - 1.5vw);
}

/***************************************************
 * Generated by SVG Artista on 10/12/2022, 10:37:55 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
	0% {
		stroke-dashoffset: 309.8760800517997px;
		stroke-dasharray: 309.8760800517997px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 309.8760800517997px;
	}
}

@keyframes animate-svg-stroke-1 {
	0% {
		stroke-dashoffset: 309.8760800517997px;
		stroke-dasharray: 309.8760800517997px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 309.8760800517997px;
	}
}

.svg-elem-1.active {
	-webkit-animation: animate-svg-stroke-1 1s ease-in-out 0s both,
		animate-svg-fill-1 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
	animation: animate-svg-stroke-1 1s ease-in-out 0s both,
		animate-svg-fill-1 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
	0% {
		stroke-dashoffset: 88.61238098144531px;
		stroke-dasharray: 88.61238098144531px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 88.61238098144531px;
	}
}

@keyframes animate-svg-stroke-2 {
	0% {
		stroke-dashoffset: 88.61238098144531px;
		stroke-dasharray: 88.61238098144531px;
	}

	100% {
		stroke-dashoffset: 0;
		stroke-dasharray: 88.61238098144531px;
	}
}

@-webkit-keyframes animate-svg-fill-2 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(255, 255, 255);
	}
}

@keyframes animate-svg-fill-2 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(255, 255, 255);
	}
}

.svg-elem-2.active {
	-webkit-animation: animate-svg-stroke-2 1s ease-in-out 0.12s both,
		animate-svg-fill-2 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
	animation: animate-svg-stroke-2 1s ease-in-out 0.12s both,
		animate-svg-fill-2 0.5s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

#front .button_anim {
	animation: fadein 2s 4s 1 forwards;
}

#front .vol {
	position: absolute;
	left: 5%;
	bottom: 10%;
}

#front .switch {
	position: relative;
}

#front .switch:before,
#front .switch:after {
	content: "";
	position: absolute;
}

#front .switch:before {
	width: 100%;
	height: 3px;
	bottom: 0;
	background-color: #888;
	border-radius: 3px;
}

#front .switch:after {
	bottom: 1px;
	left: 60%;
	transition: 0.5s;
	width: 40%;
	height: 1px;
	background-color: #fff;
}

#front .on.switch:after {
	left: 0;
}

#front #on,
#front #off {
	cursor: pointer;
}

html.lock,
body.lock {
	overflow: hidden;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section kodawari
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_kodawari {
	display: flex;
	align-items: center;
}

#front #sec_kodawari .kodawari_container {
	width: 50rem;
	margin: 0 auto;
	flex-direction: row-reverse;
	justify-content: space-between;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section cooking
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/

#front #sec_cooking .cooking_container {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
}

#front #sec_cooking .text {
	width: 100%;
	position: relative;
}

#front #sec_cooking .image {
	width: calc(100% * 915 / 1570);
}

#front #sec_cooking .image img {
	object-fit: cover;
	height: 100%;
}

#front #sec_cooking .text h2 {
	font-size: 4rem;
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	line-height: 1;
	padding-bottom: 6rem;
}

#front #sec_cooking .text p:nth-of-type(1) {
	max-width: 40.5rem;
	margin: 0 auto;
	padding-top: 24rem;
}

#front #sec_cooking p.size_s {
	width: 100%;
	margin: 0 auto;
	font-size: 1.8rem;
	line-height: 3.6rem;
	padding-top: 3.5rem;
	letter-spacing: 0.1rem;
	max-width: 57rem;
}

#front #sec_cooking .button {
	width: 31rem;
	margin: 4.6rem auto 0;
}

@media (max-width: 1500px) {
	#front #sec_cooking .text p:nth-of-type(1) br {
		display: none;
	}
}

@media (max-width: 1000px) {
	#front #sec_cooking .pfull {
		display: none;
	}
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section counter
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_counter h2 {
	text-align: center;
	margin-bottom: 65px;
	text-indent: 1rem;
}

#front #sec_counter p {
	line-height: 2.5;
	font-size: 2rem;
}

#front #sec_counter .button {
	width: 31rem;
	margin: 8.5rem auto 0;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section cook
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/

#front #sec_cook h2 {
	font-size: 2.5rem;
	line-height: 2.5rem;
	margin-left: 4.5rem;
}

#front #sec_cook div div.flex {
	justify-content: center;
}

#front #sec_cook p.size_l {
	font-size: 4rem;
	line-height: 4rem;
	letter-spacing: 2rem;
	padding-top: 1rem;
}

#front #sec_cook>div {
	max-width: 98rem;
	margin: 0 auto;
}

#front #sec_cook .text {
	padding-top: 12rem;
	letter-spacing: 0.4rem;
	line-height: 6rem;
	position: relative;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section take
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_take .container {
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

#front #sec_take .text {
	width: 100%;
	position: relative;
}

#front #sec_take .image {
	width: calc(100% * 915 / 1570);
}

#front #sec_take .image img {
	object-fit: cover;
	height: 100%;
}

#front #sec_take .text h2 {
	margin: 0 auto;
	font-size: 4rem;
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	line-height: 1;
}

#front #sec_take .text p {
	max-width: 48rem;
	margin: 38rem auto 0;
	letter-spacing: 0.2rem;
	font-size: 1.8rem;
}

#front #sec_take .button {
	width: 31rem;
	margin: 4.5rem auto 0;
}

@media (max-width: 1000px) {
	#front #sec_take .take_wrapper>div.flex {
		align-items: center;
	}
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section guidance
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_guidance h2 {
	font-size: 2.3rem;
	line-height: 2.3rem;
	margin-left: 2.8rem;
	letter-spacing: 0.1rem;
}

#front #sec_guidance .container {
	overflow: hidden;
}

#front #sec_guidance .text>div.flex {
	justify-content: center;
}

#front #sec_guidance .text {
	width: 80%;
	margin: 0 auto;
	position: relative;
}

#front #sec_guidance .text p {
	padding-top: 12rem;
	margin-bottom: 12rem;
	font-size: 2rem;
	letter-spacing: 0.4rem;
}

#front #sec_guidance .text img {
	width: 10rem;
	padding-top: 2rem;
}

#front #sec_guidance #front-slider1 {
	width: calc(90% + 2.4rem);
	max-width: calc(1220px + 2.4rem);
	margin: 0 auto;
	overflow: hidden;
}

#front #sec_guidance #front-slider1 li {
	padding: 0 1.2rem;
}

#front #sec_guidance #front-slider1 li img {
	width: 100%;
}

#front #sec_guidance #front-slider1 .slick-slide>div {
	line-height: 0;
}

#front #sec_guidance .button {
	width: 31rem;
	margin: 9rem auto 0;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section recruit
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_recruit .recruit_container {
	width: 80%;
	max-width: 97.5rem;
	margin: 0 auto;
}

#front #sec_recruit .recruit_container>* {
	margin: 0 auto;
}

#front #sec_recruit .recruit_container h2 {
	font-size: 4rem;
	margin-bottom: 12rem;
	text-align: center;
}

#front #sec_recruit .recruit_container h3 {
	font-size: 2.4rem;
	line-height: 2.4rem;
	text-align: center;
	margin-bottom: 3rem;
	letter-spacing: 1rem;
	text-indent: 1rem;
}

#front #sec_recruit .recruit_container p {
	font-size: 2rem;
	letter-spacing: 0.4rem;
	text-align: center;
}

#front #sec_recruit .recruit_container hr {
	width: 40rem;
}

#front #sec_recruit .recruit_container hr:nth-of-type(1) {
	margin-top: 11rem;
	margin-bottom: 5.5rem;
}

#front #sec_recruit .recruit_container hr:nth-of-type(2) {
	margin-top: 8.5rem;
	margin-bottom: 6rem;
}

#front #sec_recruit .recruit_container p:nth-of-type(2),
#front #sec_recruit .recruit_container p:nth-of-type(3) {
	text-align: center;
	line-height: 2rem;
}

#front #sec_recruit .recruit_container .button {
	width: 31rem;
	margin: 10rem auto 0;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
section store
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#front #sec_store {
	margin-bottom: 0;
	display: block;
}

#front #sec_store h2 {
	text-align: center;
	font-size: 4rem;
	line-height: 4rem;
}

#front #sec_store .store_container {
	width: 90%;
	max-width: 140rem;
	margin: 0 auto 14rem;
}

#front #sec_store .store_container table {
	width: 44%;
	height: 0;
}

#front #sec_store .store_container table th {
	text-align: left;
	line-height: 3rem;
	font-size: 2rem;
	width: 35%;
	letter-spacing: 0.1rem;
	vertical-align: top;
	padding: 1rem 0;
}

#front #sec_store .store_container table td {
	line-height: 3rem;
	font-size: 1.9rem;
	letter-spacing: 0.1rem;
	vertical-align: top;
	padding: 1rem 0;
}

#front #sec_store .store_container table .cap {
	padding-top: 2.5rem;
	padding-left: 1em;
	text-indent: -1em;
}

#front #sec_store .store_container .map {
	width: 50%;
}

#front #sec_store .store_container>.flex {
	justify-content: space-between;
	margin-top: 12rem;
}

#front #sec_store .store_container .button {
	max-width: 59rem;
	width: 80%;
	margin: 3rem auto 0;
	letter-spacing: 0.2rem;
	position: relative;
}

#front #sec_store .store_container .button .link_img.b {
	position: absolute;
	opacity: 0;
	top: 1.8rem;
	left: calc(50% + 7.3rem);
}

#front #sec_store .store_container .box {
	border: 2px solid #fff;
	max-width: 840px;
	padding: 6rem 9rem;
	margin: 12rem auto 0;
}

#front #sec_store .store_container .box li {
	font-size: 1.8rem;
}

#front #sec_store #front-slider2 .slick-slide>div {
	line-height: 0;
}

/*----------------------------------------------------------------------------------------
slider2
----------------------------------------------------------------------------------------*/
#front #sec_store #front-slider2 li {
	padding: 0 5.5%;
}

#front #sec_store #front-slider2 .slick-track {
	left: -25%;
}

@media (min-width: 1921px) and (max-width: 2560px) {
	#front #sec_store #front-slider2 .slick-track {
		left: 0;
	}
}

@media (max-width: 1000px) {
	#front #sec_store #front-slider2 .slick-track {
		left: 0;
	}
}

/*----------------------------------------------------------------------------------------
slider3
----------------------------------------------------------------------------------------*/
#front #sec_cooking #front-slider3 {
	margin-top: 110px;
}

#front #sec_cooking #front-slider3 li {
	padding: 0 5.5%;
}

#front #sec_cooking #front-slider3 .slick-track {
	left: -25%;
}

@media (min-width: 1921px) and (max-width: 2560px) {
	#front #sec_cooking #front-slider3 .slick-track {
		left: 0;
	}
}

@media (max-width: 1000px) {
	#front #sec_cooking #front-slider3 .slick-track {
		left: 0;
	}
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
お品書きページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/

#menu #m-background_area {
	position: fixed;
	top: 0;
	z-index: -1;
}

#menu #m-background_area picture img {
	object-position: center center;
	object-fit: cover;
	height: 100vh;
}

#menu #m-background_area div {
	height: 100vh;
}

#menu #m-background_area picture,
#menu #m-background_area div {
	position: absolute;
	top: 0;
	display: none;
}

#menu #m-background_area #m-back_1 {
	display: block;
	position: static;
}

/* =========
==sec-hero==
============ */
#menu #sec-hero {
	position: relative;
	width: 100%;
	height: 100vh;
}

#menu #sec-hero .top-wrap {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

#menu #sec-hero h1 {
	border: 1px solid #fff;
	margin: 0 auto;
}

#menu #sec-hero nav ul {
	justify-content: space-between;
}

#menu #sec-hero nav ul li {
	width: 1.8rem;
}

#menu #sec-hero nav ul li a:hover {
	opacity: 1;
}

/* ===========
==sec-dinner==
============ */
#menu #sec-dinner .wrap-1 .l-box {
	position: relative;
}

#menu #sec-dinner .wrap-1 .l-box h2 {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

#menu #sec-dinner .wrap-1 picture img {
	object-fit: cover;
}

#menu #sec-dinner .wrap-2 picture .menu-img2 {
	object-fit: cover;
}

#menu #sec-dinner .wrap-2 .menu-list ul li dl {
	flex-wrap: wrap;
}

#menu #sec-dinner .wrap-2 .menu-list ul li dl dd {
	text-align: left;
	word-break: keep-all;
	overflow-wrap: break-word;
}

#menu #sec-dinner .wrap-2 .menu-list ul li dl dt {
	word-break: keep-all;
	overflow-wrap: break-word;
}

#menu #sec-dinner .wrap-2 .menu-list ul li dl dt.change-note {
	line-height: 1.5;
	padding-top: 9px;
	margin-bottom: 5px;
}

#menu #sec-dinner .wrap-2 .menu-list ul li .note {
	letter-spacing: 0.1em;
}

#menu #sec-dinner .wrap-2 .menu-list .note {
	line-height: 1.67;
}

#menu #sec-dinner h3,
#menu #sec-lunch h3 {
	font-size: 2.6rem;
}

#menu #sec-dinner h3:before,
#menu #sec-lunch h3:before,
#menu #sec-event dt:before {
	content: "◇";
	display: inline-block;
	margin-right: 4px;
}

/* ===========
==sec-lunch==
============ */
#menu #sec-lunch .wrap-1 .r-box {
	position: relative;
}

#menu #sec-lunch .wrap-1 .r-box h2 {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

#menu #sec-lunch .wrap-1 picture .menu-img {
	width: 100%;
	object-fit: cover;
}

#menu #sec-lunch .wrap-2 picture .menu-img2 {
	object-fit: cover;
}

#menu #sec-lunch .wrap-2 .special {
	font-size: 1.8rem;
	border: 1px solid #fff;
	padding: 3rem;
	margin-bottom: 3rem;
}

#menu #sec-lunch .wrap-2 .special p {
	line-height: 1.8;
}

#menu #sec-lunch .wrap-2 .caption {
	line-height: 1.8;
	margin-bottom: 3rem;
	font-size: 1.8rem;
}

#menu #sec-lunch .wrap-2 .menu-list ul li dl {
	flex-wrap: wrap;
	margin-bottom: 3rem;
}

#menu #sec-lunch .wrap-2 .menu-list ul li dl dd {
	text-align: left;
	word-break: keep-all;
	overflow-wrap: break-word;
}

#menu #sec-lunch .wrap-2 .menu-list ul li dl dt {
	word-break: keep-all;
	overflow-wrap: break-word;
}

#menu #sec-lunch .wrap-2 .menu-list ul li dl dt.change-note {
	line-height: 1.5;
	padding-top: 9px;
	margin-bottom: 5px;
}

/* ===========
==sec-hall==
============ */
#menu #sec-hall h2 {
	text-align: center;
	font-weight: 600;
}

/* ↓スライダースタイル設定 */
#menu #sec-hall .slick-wrap .menu-slider {
	width: 100%;
}

#menu #sec-hall .slick-wrap .menu-slider .slick-list,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div li,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div li,
#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div li img {
	width: 100%;
	height: 100%;
}

#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div li picture {
	position: relative;
	display: block;
}

#menu #sec-hall .slick-wrap .menu-slider .slick-list .slick-track .slick-slide div li img {
	object-fit: cover;
	position: absolute;
	left: 20%;
	top: 0;
	transform: translateX(-19%);
}

#menu #sec-hall .slick-wrap .menu-thumb-list {
	flex-wrap: wrap;
}

#menu #sec-hall .slick-wrap .menu-thumb-list li {
	cursor: pointer;
}

#menu #sec-hall .slick-wrap .menu-thumb-list li:last-child {
	padding-right: 0;
}

#menu #sec-hall .slick-wrap .menu-thumb-list li img {
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

/* ↑スライダースタイル設定 */
/* ===========
==sec-event==
============ */
#menu #sec-event h2 {
	font-weight: 600;
	text-align: center;
	line-height: 1;
}

#menu #sec-event dl {
	flex-wrap: wrap;
	margin: 0 auto;
}

#menu #sec-event dl dd {
	text-align: right;
}

#menu #sec-event dl span.lt {
	letter-spacing: 4.7rem;
}

/* 2025/6/25削除 */

/* #menu #sec-event dl .reception {
	position: relative;
}

#menu #sec-event dl .reception::before {
	content: "（税込）";
	text-align: right;
	position: absolute;
	bottom: -60%;
	right: 0;
} */

/* ===========
==sec-take==
============ */
#menu #sec-take .take-wrap {
	position: relative;
	z-index: -1;
}

#menu #sec-take .take-wrap picture .takeaway-img {
	width: 100%;
	object-fit: cover;
}

#menu #sec-take .take-wrap h2 {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

#menu #sec-take ul {
	flex-wrap: wrap;
}

#menu #sec-take ul li img {
	width: 100%;
	object-fit: cover;
}

#menu #sec-take ul li .item-info {
	justify-content: space-between;
	margin-top: 2.5rem;
}

#menu #sec-take ul li .item-info p {
	text-align: right;
}

#menu #sec-take ul li .cap {
	font-size: 1.6rem;
}

#menu #sec-take ul li.info {
	border: 2px solid #fff;
	flex-direction: column;
}

#menu #sec-take ul li.info h3 {
	text-align: center;
	font-weight: 600;
	padding: 0;
	border: none;
}

#menu #sec-take ul li.info a {
	font-weight: 600;
	text-align: center;
	margin-top: auto;
	transition: 0.5s;
}

#menu #sec-take ul li.info a:hover {
	transition: 0.5s;
	opacity: 0.5;
}

#menu #sec-take ul li.info a:after {
	content: ">>";
	display: inline-block;
}

#menu #sec-take .apo {
	max-width: 800px;
	margin: 11rem auto 0;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 3px;
	width: 90%;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
プライバシーポリシーページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#privacy h1 {
	padding-top: 30rem;
	margin-bottom: 12rem;
	font-size: 3.6rem;
	line-height: 3.6rem;
}

#privacy p {
	font-size: 1.8rem;
	line-height: 3.6rem;
}

#privacy p.first {
	margin-bottom: 7rem;
}

#privacy .form {
	padding-left: 3rem;
}

#privacy .form p:nth-of-type(1) {
	margin-bottom: 0.9rem;
}

#privacy ul {
	padding: 1rem 0 0 3rem;
}

#privacy ul li {
	list-style: decimal;
	list-style-position: inside;
	font-size: 1.8rem;
	line-height: 3.6rem;
	padding: 0.6rem;
}

#privacy ul ul {
	padding-bottom: 0.6rem;
	list-style: decimal;
}

#privacy ul ul li {
	list-style-type: none;
	counter-increment: cnt;
}

#privacy ul ul li::before {
	content: "(" counter(cnt) ") ";
}

#privacy h2 {
	padding-top: 9rem;
	margin-bottom: 3rem;
	font-size: 2.4rem;
	line-height: 2.4rem;
}

#privacy .background {
	position: fixed;
	z-index: -1;
	top: 8rem;
	right: 57.5%;
	width: 40%;
	max-width: 80rem;
}

#privacy .end {
	padding-top: 9rem;
	text-align: right;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
特定商取引法ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#commerce h1 {
	padding-top: 30rem;
	margin-bottom: 12rem;
	font-size: 3.6rem;
	line-height: 3.6rem;
}

#commerce th {
	width: 30%;
	text-align: left;
}

#commerce td {
	padding: 2.5rem 0 2.5rem 4rem;
}

#commerce th,
#commerce td {
	font-size: 1.8rem;
	line-height: 3.6rem;
}

#commerce h2 {
	padding-top: 9rem;
	margin-bottom: 3rem;
	font-size: 2.4rem;
	line-height: 2.4rem;
}

#commerce .background {
	position: fixed;
	z-index: -1;
	top: 8rem;
	left: 57.5%;
	width: 40%;
	max-width: 80rem;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
コンタクトページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#contact #contact_back {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: -1;
}

#contact form *,
#contact p {
	color: #000;
}

#contact form p {
	line-height: 1.5;
	letter-spacing: 0.2em;
}

#contact form input,
#contact form textarea {
	cursor: pointer;
}

#contact .msg,
#contact form .note,
#contact form .form-row.textarea dt {
	text-align: center;
}

#contact form .form-row {
	width: 100%;
	align-items: center;
}

#contact form .form-row:not(:last-child) {
	border-bottom: 1px solid #9b9b9b;
}

#contact form .form-row.textarea {
	border-bottom: none;
}

#contact form .form-row dt {
	white-space: nowrap;
}

#contact form .form-row dt dd input {
	width: 100%;
}

#contact form .form-row.textarea textarea {
	border: 1px solid #000;
	width: 100%;
	line-height: 1.5;
}

#contact form .pp-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}

#contact form .pp-wrap label {
	display: block;
	position: relative;
	line-height: 1;
	cursor: pointer;
}

#contact form .pp-wrap label a {
	font-size: inherit;
	border-bottom: 1px solid #000;
	display: inline;
}

#contact .pp-wrap input[type="checkbox"] {
	visibility: hidden;
}

#contact .pp-wrap input[type="checkbox"]+label:before {
	position: relative;
	content: "";
	top: 0.6rem;
	display: inline-block;
	width: 1.8rem;
	height: 1.8rem;
	border: 1px solid #000;
	border-radius: 2px;
}

#contact .pp-wrap input[type="checkbox"]+label:after {
	display: block;
	position: absolute;
	content: "";
	left: 0.2rem;
	top: 1rem;
	width: 1.4rem;
	height: 0.7rem;
	border-left: 3px solid #666;
	border-bottom: 3px solid #666;
	transform: rotate(-45deg);
	opacity: 0;
}

#contact .pp-wrap input[type="checkbox"]:checked+label:after {
	opacity: 1;
}

#contact form .submit-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	pointer-events: none;
	opacity: 0.5;
	transition: 0.5s;
}

#contact form .submit-wrap.checked {
	pointer-events: all;
	opacity: 1;
}

#contact form .submit-wrap .submit-btn {
	display: block;
	letter-spacing: 0.2em;
	line-height: 1;
	border: 1px solid #000;
	transition: 0.5s;
}

#contact form .submit-wrap .submit-btn:hover {
	color: #fff;
	background-color: #000;
}

#contact form .wpcf7-spinner {
	margin-top: 1rem;
}

#contact form .wpcf7-response-output {
	font-size: 1.6rem;
	text-align: center;
	padding: 0;
	border: none;
}

#contact form .wpcf7-not-valid-tip {
	margin: 1rem 0 0 0;
	color: #aa0000;
}

#contact .tel {
	margin-top: 3rem;
	margin-bottom: 12rem;
	justify-content: center;
	pointer-events: none;
}

#contact .tel>* {
	margin: 0 2.25rem;
}

#contact .tel a img {
	margin: 0 10px;
}

#contact table {
	margin: 0 auto;
}

#contact table * {
	color: #fff;
}

#contact table tr {
	border-bottom: 1px solid #aaa;
}

#contact table tr * {
	text-align: left;
}

#contact table tr th {
	width: 200px;
}

#contact .button {
	width: 31rem;
	margin: 8.5rem auto 0;
	color: #fff;
	border: 1px solid #fff;
	text-align: center;
}

#contact .back_img {
	object-fit: cover;
	object-position: center center;
	height: 100vh;
}

.tel .tel-cap {
	font-size: 13px !important;
	color: #000;
	width: 100%;
	text-align: right;
	line-height: 2;
	display: block;
}

footer .tel .tel-cap {
	color: #fff !important;
	text-align: center;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
404ページ
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
#p404 {
	padding-top: 45rem;
}

#p404 p {
	text-align: center;
}

#p404 a {
	text-align: center;
}

/*----------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
言語別CSS
------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------*/
.language-sw {
	cursor: pointer;
	position: relative;
}

.language-sw>div {
	position: relative;
	width: 30px;
	letter-spacing: 4px;
}

.language-sw>div:after {
	content: "";
	position: absolute;
	right: -60%;
	top: 45%;
	background-color: transparent;
	width: 0;
	height: 0;
	border-top: 6px solid #fff;
	border-right: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid transparent;
}

.language {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	height: 100%;
	z-index: 1000;
}

@media (max-width: 768px) {
	.language-sw {
		position: relative;
		top: auto;
		right: auto;
	}

	.language-sw>div {
		color: #000;
	}

	.language-sw>div:after {
		border-top: 6px solid #000;
	}

	.language * {
		color: #000;
	}
}

.language a {
	letter-spacing: 4px;
}

.zh * {
	font-family: "Noto Serif SC", serif;
}

.ko * {
	font-family: "Noto Serif KR", serif;
}

.zh#front #sec_cook>div {
	max-width: 99rem;
}

.zh#front #sec_cooking .text p:nth-of-type(1) {
	max-width: 38rem;
}

.zh#front #sec_cooking p.size_s {
	max-width: 50rem;
}

.zh#front #sec_take .text p {
	max-width: 36rem;
}

.zh#front #sec_guidance .text {
	width: 65%;
}

@media (max-width: 500px) {
	.zh#front #sec_guidance .text {
		width: 82%;
	}

	.zh#front #sec_store .store_container .box {
		padding: 3rem 3rem;
	}
}

.zh#menu #sec-take .apo {
	max-width: 440px;
}

.zh#menu #sec-take ul li.info a {
	width: 260px;
}

.ko#front #sec_store .store_container .box {
	padding: 6rem 7rem;
}

.ko#menu #sec-lunch .wrap-2 .caption {
	letter-spacing: 0.5px;
}

.ko#menu #sec-dinner .wrap-1 .l-box h2,
.ko#menu #sec-lunch .wrap-1 .r-box h2 {
	top: calc(50% - 6em);
	height: 36rem;
}

.ko#menu #sec-event dl dt {
	width: 54%;
}

.ko#menu #sec-event dl dd {
	width: 46%;
}

@media (max-width: 500px) {
	.ko#menu #sec-event dl dd {
		width: 52%;
	}

	.ko#menu #sec-event dl dt {
		width: 48%;
	}

	.ko#menu #sec-take .item-info>*:nth-child(2) {
		width: 57%;
	}
}

/* en ------------- */
#front.en #sec_top .top_link_wrap .top_link {
	text-align: center;
}

#front.en #sec_kodawari .kodawari_container {
	display: block;
	width: 80%;
	text-align: center;
	max-width: 1140px;
}

#front.en #sec_cooking p.size_s {
	max-width: 600px;
}

#front.en #sec_cooking .text p:nth-of-type(1) {
	max-width: 530px;
}

#front.en #sec_cook div div.flex {
	flex-direction: column-reverse;
	align-items: center;
}

#front.en #sec_take .text p {
	margin-top: 7rem;
}

#front.en #sec_guidance .text>div.flex {
	flex-direction: column;
	align-items: center;
}

#front.en #sec_guidance .text>div.flex h2 {
	margin-left: 0;
	text-indent: 0;
	padding-top: 2.5rem;
}

#front.en #sec_kodawari h2 {
	margin-bottom: 5rem;
}

#front.en #sec_kodawari p:first-of-type {
	margin-bottom: 4rem;
}

#front.en #sec_cooking .text h2 {
	position: static;
	text-align: center;
	transform: none;
	font-size: 3rem;
}

#front.en #sec_cooking .text p:nth-of-type(1) {
	padding-top: 0;
}

#front.en #sec_cook p.size_l {
	padding-top: 1.5rem;
}

#front.en #sec_cook .text {
	padding-top: 7.5rem;
	letter-spacing: 0.3rem;
}

#front.en #sec_cook h2 {
	text-indent: 0;
	margin-left: 0;
	font-size: 2rem;
	letter-spacing: 5px;
}

#front.en #sec_cook p.size_l {
	font-size: 3rem;
	letter-spacing: 10px;
}

#front.en #sec_take .text h2 {
	font-size: 3rem;
}

#front.en #sec_take .text p {
	max-width: 54rem;
}

#front.en #sec_guidance h2 {
	font-size: 2rem;
}

#front.en #sec_guidance .text p {
	padding-top: 6rem;
	letter-spacing: 0.2rem;
}

#front.en #sec_recruit .recruit_container p {
	letter-spacing: 0.3rem;
}

#front.en #sec_recruit .recruit_container h3 {
	letter-spacing: 0.5rem;
}

#front.en #sec_store .store_container table th {
	width: 40%;
}

#front.en #sec_store .store_container .box li {
	text-indent: -0.9em;
	padding-left: 1em;
}

#front.en #sec_recruit .recruit_container h2 {
	font-size: 3rem;
}

#front.en #sec_store h2 {
	font-size: 3rem;
}

#front.en p {
	letter-spacing: 1px !important;
}

/* menu -------------------------------- */
#menu.en #sec-dinner .wrap-2 .menu-list ul li .note {
	padding-top: 2rem;
	line-height: 2;
}

#menu.en #sec-hero .top-wrap {
	top: calc(50% - 190px);
}

#menu.en #sec-hero h1 {
	padding: 2rem 10rem;
	letter-spacing: 0.4em;
	line-height: 1;
}

#menu.en #sec-hero ul.flex {
	display: block;
}

#menu.en #sec-hero nav {
	width: 72rem;
}

#menu.en #sec-hero nav ul li {
	width: 100%;
	text-align: center;
}

#menu.en #sec-hero nav ul li a {
	width: auto;
	display: inline;
	position: relative;
}

#menu.en #sec-hero a:hover:after {
	transition: 0.5s;
	width: 100%;
	height: 1px;
	top: auto;
	bottom: 0;
}

#menu.en #sec-hero a:after {
	content: "";
	position: absolute;
	transition: 0.5s;
	left: 0;
	right: auto;
	top: auto;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #fff;
}

#menu.en #sec-hero nav {
	padding-top: 6.5rem;
}

#menu.en .fadein_up.active {
	animation: fadein_up 1s 1 forwards;
	animation-delay: 0s !important;
}

#menu.en #sec-dinner .wrap-1 .l-box {
	width: 31%;
}

#menu.en #sec-dinner .wrap-1 .l-box h2 {
	left: 15%;
}

#menu.en #sec-dinner .wrap-1 picture {
	width: 60%;
}

#menu.en #sec-dinner .wrap-2 .menu-list ul li h3 {
	line-height: 1.5;
	margin-bottom: 1rem;
}

#menu.en #sec-dinner .wrap-2 .menu-list ul li dl dt {
	width: 55%;
}

#menu.en #sec-dinner .wrap-2 .menu-list ul li dl dd {
	width: 45%;
}

#menu.en #sec-lunch .wrap-1 .r-box h2 {
	left: 15%;
}

#menu.en #sec-lunch .wrap-2 .menu-list ul li dl dd {
	margin-left: 1%;
	width: 41%;
}

#menu.en #sec-lunch .wrap-2 .menu-list ul li dl dt {
	width: 58%;
	font-weight: 900;
}

#menu.en #sec-hall h2 {
	letter-spacing: 6px;
}

#menu.en #sec-event dl span.lt {
	letter-spacing: 4px;
}

#menu.en #sec-event dl dt {
	width: 55%;
}

#menu.en #sec-event dl dd {
	width: 45%;
}

#menu.en #sec-take .take-wrap h2 {
	height: auto;
}

#menu.en #sec-take ul li:nth-child(1)>.flex,
#menu.en #sec-take ul li:nth-child(2)>.flex,
#menu.en #sec-take ul li:nth-child(5)>.flex {
	display: block;
}

#menu.en #sec-take ul li:nth-child(1) p,
#menu.en #sec-take ul li:nth-child(2) p {
	text-align: left;
	line-height: 1.5;
	margin-bottom: 2rem;
}

#menu.en #sec-take ul li:nth-child(5) p {
	/* margin-right: calc(100% - 447px); */
	text-align: left;
}

#menu.en #sec-take ul li.info {
	padding: 8rem 5rem;
}

#menu.en #sec-take ul li.info p {
	letter-spacing: 0.2rem;
}

#menu.en #sec-take ul li.info p {
	max-width: 920px;
}

#menu.en #sec-dinner .wrap-1 .l-box h2,
#menu.en #sec-lunch .wrap-1 .r-box h2 {
	line-height: 1.5;
	top: calc(50% - 3rem);
}

.en .sp600 {
	display: none;
}

@media (max-width: 1024px) {
	#menu.en #sec-dinner .wrap-2 .menu-list ul li dl dt {
		padding-left: 0 !important;
	}
}

#front.en h2,
#menu.en h2 {
	text-indent: 0;
}

#menu #sec-take ul li .item-info p {
	text-align: left;
}

/* 2023/3/6追加 spの言語セレクトボックス配置変更
トグルメニュー内からヘッダー左上へ*/
header #main_menu ul li {
	justify-content: flex-start;
}

.language-sw>div {
	font-size: 1.8rem;
}

.language-sw>div:after {
	right: -20%;
}

.language-sw>div {
	position: relative;
	width: 7rem;
	letter-spacing: 4px;
}


/*------------------------------ 新トップページ（エントランスページ）2024年6月追加 ------------------------------*/
#entrance {
	overflow-y: hidden;
}

#entrance .fv {
	position: relative;
	height: 100dvh;
}

#entrance .fv .name {
	flex-direction: column;
	align-items: center;
}

#entrance .fv .name .marks {
	flex-direction: column;
	align-items: center;
}

#entrance .other-links .online-shop {
	justify-content: center;
	align-items: center;
	width: max-content;
	margin-inline: auto;
}

#entrance .other-links .insta {
	width: max-content;
	margin-inline: auto;
	transition: .5s;
}

#entrance .other-links .insta:hover {
	transform: scale(1.1);
}




#entrance .other-links .online-shop {
	position: relative;
}

#entrance .other-links .online-shop::after {
	position: relative;
	content: "";
	position: absolute;
	transition: 0.5s;
	right: 0;
	left: auto;
	width: 0;
	height: 1px;
	background-color: #fff;

	bottom: 0.4rem;
}

#entrance .other-links .online-shop:hover::after {
	transition: 0.5s;
	left: 0;
	right: auto;
	width: 100%;
}

/*------------------------------ 明徳 鮨ページ2024年6月追加 ------------------------------*/
#front.main-sushi #sec_top .container h2 {
	flex-direction: column;
	width: max-content;
}

#front.main-sushi .menu {
	width: 90%;
	margin-inline: auto;
}

#front.main-sushi .menu .each-menu h2 {
	width: 100%;
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

#front.main-sushi .menu .each-menu .seat h3 {
	letter-spacing: 0.1em;
}

#front.main-sushi .menu .each-menu .seat h3::before {
	content: "◇";
	display: inline-block;
	margin-right: 4px;
}

#front.main-sushi .menu .each-menu .seat dt,
#front.main-sushi .menu .each-menu .seat dd {
	width: 50%;
	letter-spacing: 0.1em;
}

#front.main-sushi .menu .each-menu .seat .note {
	line-height: 1.73;
	letter-spacing: 0.1em;
}

#front.main-sushi .menu .each-menu .seat .note.space {
	margin-top: 1.5em;
}



/*------------------------------ 明徳 懐石ページ2024年6月追加 ------------------------------*/
#front.main-kaiseki #sec_top .container h2 {
	flex-direction: column;
	gap: 6.3rem 0;
}

#front.main-kaiseki #sec_top .container h2 {
	width: max-content;
}

#front.main-kaiseki #sec_kodawari .kodawari_container {
	width: auto;
	justify-content: flex-start;
}

#front.main-kaiseki #sec_kodawari .kodawari_container p .quote {
	writing-mode: initial;
	line-height: 1;
	display: inline-block;
	height: 18px;
	position: relative;
}

#front.main-kaiseki #sec_kodawari .kodawari_container p .quote:first-of-type {
	left: 9px;
	top: 5px;
}

#front.main-kaiseki #sec_kodawari .kodawari_container p .quote:last-of-type {
	right: 7px;
	top: 1px;
}

/* header 2024年6月追加 */
header h1 span {
	font-size: inherit;
}