@charset "UTF-8";
/* CSS Document */
/* 基本設定 */
/* --------------------------------------------------
section size
-------------------------------------------------- */
/* 初期設定 */
html {
	scroll-behavior: smooth;
	overflow-x: clip;
	font-size: 62.5%;
}

body {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	color: #586166;
	position: relative;
	overflow-x: clip;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.jp {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.14em;
}

.en {
	font-family: "Cormorant Infant", serif;
	font-weight: 500;
	letter-spacing: 0.14em;
}

.cen {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 500;
	letter-spacing: 0.14em;
}

.gtxt {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 500;
}

a {
	text-decoration: none;
	transition-duration: 0.3s;
	transition-timing-function: ease;
}
a:hover {
	opacity: 0.5;
}

img {
	max-width: 100%;
	height: auto;
}

/* ----rem設定---- */
:root {
	--liquid-lgDesignRatio: calc(1920 / 10);
	--liquid-smDesignRatio: calc(520 / 10);
}

@media screen and (max-width: 1920px) {
	:root {
		--liquid-htmlroot: calc(100vw / var(--liquid-lgDesignRatio));
	}
	html {
		font-size: var(--liquid-htmlroot);
	}
}
@media screen and (max-width: 840px) {
	:root {
		--liquid-htmlroot: calc(100vw / var(--liquid-smDesignRatio));
	}
}
/* --------- */
/* ----レスポンシブの表示非表示---- */
.sp {
	display: none;
}

@media (max-width: 840px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block;
	}
}
/* --------- */
/* ----------------------------------------------------------------------
クラス名設定
---------------------------------------------------------------------- */
.innerSL {
	max-width: 181rem;
	width: 93%;
	margin: 0 0 0 auto;
}

.innerXL {
	max-width: 183rem;
	width: 95%;
	margin: 0 auto;
}

.innerL {
	max-width: 170rem;
	width: 86%;
	margin: 0 auto;
}

.innerM {
	max-width: 132rem;
	width: 86%;
	margin: 0 auto;
}

.innerS {
	max-width: 104rem;
	width: 86%;
	margin: 0 auto;
}

.innerXS {
	max-width: 60.5rem;
	width: 75%;
	margin: 0 auto;
}

.innerSTK {
	max-width: 67rem;
	width: 75%;
	margin: 0 auto;
}

.abs {
	position: absolute;
}

.maxnone {
	max-width: none;
	width: 100%;
}

.subc {
	color: #447776;
}

.ore {
	color: #db5331;
}

.blu {
	color: #4068cc;
}

.red {
	color: #e27364;
}

.main {
	color: #586166;
}

.pur {
	color: #8b5ad1;
}

.gre {
	color: #3daf08;
}

.topttlBox {
	line-height: 1;
	margin-bottom: 8rem;
	text-align: center;
	position: relative;
}
@media screen and (max-width: 840px) {
	.topttlBox {
		margin-bottom: 5rem;
	}
}
.topttlBox .ttl {
	font-size: 7rem;
}
@media screen and (max-width: 840px) {
	.topttlBox .ttl {
		font-size: 4.2rem;
	}
}
.topttlBox h3 {
	padding-top: 2em;
	font-size: 2rem;
}
@media screen and (max-width: 840px) {
	.topttlBox h3 {
		font-size: 1.7rem;
		padding-top: 1.3rem;
	}
	.innerXS {
		width: 88%;
	}

}

.innerL .topttlBox,
.innerSL .topttlBox {
	text-align: left;
}
.innerL .topttlBox > h3,
.innerSL .topttlBox > h3 {
	padding-top: 1.2em;
}

@media screen and (max-width: 840px) {
	#cooking-page .topttlBox .ttl {
		font-size: 5rem;
	}
}

.donttouch {
	pointer-events: none;
}

.tsdw{
	text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}

.ttlabs01{
	width:24rem;
	top: -5em;
	right: -4em;
}

@media screen and (max-width: 840px) {
	.ttlabs01{
		width: 17rem;
		top: -5em;
		right: 7em;
	}
}

.ttlabs02{
	width:24rem;
	top: -5em;
	left: 8em;
}

@media screen and (max-width: 840px) {
	.ttlabs02{
		width: 17rem;
		top: -4em;
		left: 6em;
	}
}

.ttlabs03{
	width:24rem;
	top: -5em;
	right: -4em;
}

@media screen and (max-width: 840px) {
	.ttlabs03{
		width: 17rem;
		top: -6em;
		right: -5em;
	}
}

/* ----------------------------------------------------------------------
フェードイン
---------------------------------------------------------------------- */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}

.fade-up.is-show {
	opacity: 1;
	transform: translateY(0);
}

.fade-fixed {
	opacity: 0;
	transition: opacity 0.8s ease;
}

.fade-fixed.is-show {
	opacity: 1;
}

/* ----------------------------------------------------------------------
ローディング
---------------------------------------------------------------------- */
#mainNav {
	width: 100vw;
	height: 100vh;
	position: fixed;
	inset: 0 auto;
	opacity: 0;
	pointer-events: none;
	transition: 0.3s;
	background-color: #fff;
}
#mainNav.show {
	opacity: 1;
	pointer-events: visible;
	right: 0;
}
#mainNav .nav-main-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
}
#mainNav .nav-main-box .bgBox {
	height: 100vh;
	width: 65%;
	object-fit: cover;
}
#mainNav .nav-main-box .bgBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mainNav .nav-main-box .nav-main-menu {
	width: 35%;
	position: relative;
	height: 100vh;
}
@media screen and (max-width: 840px) {
	#mainNav .nav-main-box .nav-main-menu {
		width: 100%;
		background-image: url(../img/common/head-bgsp1@2x.webp);
		background-position-y:bottom;
		background-position-x:center;
		background-size: contain;
        background-repeat: no-repeat;
	}
}

#mainNav .nav-main-box .nav-main-menu .clbtn {
	position: absolute;
	top: 4rem;
	right: 6rem;
	width: 6rem;
	aspect-ratio: 1;
	z-index: 99999;
}
@media screen and (max-width: 840px) {
	#mainNav .nav-main-box .nav-main-menu .clbtn {
		top: 3.5rem;
		right: 4rem;
	}
}
#mainNav .nav-main-box .nav-main-menu .navInner {
	max-width: 47rem;
	width: 86%;
	display: grid;
	place-items: center;
	height: 100%;
	margin: 0 auto;
	position: relative;
	overflow: auto;
	padding: 3rem 0;
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	gap: 10rem;
	color:#666666;
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .navList {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column;
	font-size: 2.5rem;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
	gap: 2em;
}
@media screen and (max-width: 840px) {
	#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .navList {
		font-size: 2.2rem;
	}
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 3rem;
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
}
@media screen and (max-width: 840px) {
	#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList {
		font-size: 1.8rem;
	}
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList .rBox {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
	gap: 0.8em;
}

#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList .rBox  .navornbtn{
	position:relative;
	padding-left:1.6em;
}

#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList .rBox  .insbtn::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1.1em;
	aspect-ratio: 1;
	background-image: url(../img/common/insta2.svg);
	background-repeat: no-repeat;
}

#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .snsList .rBox  .linbtn::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1.1em;
	aspect-ratio: 1;
	background-image: url(../img/common/line2.svg);
	background-repeat: no-repeat;
}

#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .bnrList {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
	gap: 2rem;
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .bnrList img {
	width: 22.5rem;
}
#mainNav .nav-main-box .nav-main-menu .navInner .navflexBox .bnrList .bnrtxt {
	width: fit-content;
	margin: 0 auto;
}
#mainNav .nav-main-box .nav-main-menu .navornBox {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media screen and (max-width: 840px) {
	#mainNav .nav-main-box .nav-main-menu .navornBox {
		object-fit: cover;
	}
	#mainNav .nav-main-box .nav-main-menu .navornBox img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/* ----------------------------------------------------------------------
スライド
---------------------------------------------------------------------- */
.mvbg01 {
	background-image: -webkit-image-set(url("../img/top/mv01.webp") 1x, url("../img/top/mv01@2x.webp") 2x);
	background-image: image-set(url("../img/top/mv01.webp") 1x, url("../img/top/mv01@2x.webp") 2x);
}

.mvbg02 {
	background-image: -webkit-image-set(url("../img/top/mv02.webp") 1x, url("../img/top/mv02@2x.webp") 2x);
	background-image: image-set(url("../img/top/mv02.webp") 1x, url("../img/top/mv02@2x.webp") 2x);
}

.mvbg03 {
	background-image: -webkit-image-set(url("../img/top/mv03.webp") 1x, url("../img/top/mv03@2x.webp") 2x);
	background-image: image-set(url("../img/top/mv03.webp") 1x, url("../img/top/mv03@2x.webp") 2x);
}

/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */
header {
	width: 100%;
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 9999;
}
header .flexBox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 400;
	position: relative;
	padding: 1em 2em;
}
@media screen and (max-width: 840px) {
	header .flexBox {
		padding: 0;
		align-items: flex-start;
	}
}
header .flexBox .lBox {
	width: 30.7rem;
	aspect-ratio: 307/50;
}
@media screen and (max-width: 840px) {
	header .flexBox .lBox {
		width: 17rem;
		padding: 0.5em 0 0 0.5em;
	}
}
header .flexBox .rBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	position: relative;
	gap: 2em;
	padding: 1em 3em;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	border: 1px solid #fff;
	box-shadow: 2px 2px 4px #e8e8e8;
	mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
	header .flexBox .rBox {
		background: none;
		padding: 0;
		border: none;
		box-shadow: none;
	}
}
header .flexBox .rBox .menuBox {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	gap: 2em;
}
header .flexBox .rBox .menuBox .menuItem {
	white-space: nowrap;
}
header .flexBox .rBox .burger {
	width: 3.2em;
	aspect-ratio: 64/45;
}
@media screen and (max-width: 840px) {
	header .flexBox .rBox .burger {
		width: 4em;
		aspect-ratio: 1;
	}
}
header .flexBox .sp {
	display: none;
}
@media screen and (max-width: 840px) {
	header .flexBox .sp {
		display: block;
	}
}
header.subc .flexBox {
	padding: 0;
	align-items: flex-start;
}
header.subc .flexBox .lBox {
	width: 6rem;
	margin: 4rem 0 0 4rem;
}
@media screen and (max-width: 840px) {
	header.subc .flexBox .lBox {
		margin: 1rem 0 0 1rem;
	}
}
header.subc .flexBox .rBox {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	align-items: flex-start;
}
header.subc .flexBox .rBox .menuBox {
	margin-top: 4rem;
	color: #04050a;
}

header.subc .flexBox .rBox .cen .menuItem {
	position:relative;
}

header.subc .flexBox .rBox .cen .menuItem:hover{
	opacity:1;
}
header.subc .flexBox .rBox .cen .menuItem::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -35%);
	width: 5rem;
	aspect-ratio: 1;
	background-image: url(../img/cook/headsub-orn.svg);
	background-repeat: no-repeat;
	background-size: contain;
	z-index:-1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

header.subc .flexBox .rBox .cen .menuItem:hover::before {
	opacity: 1;
}

header.subc .flexBox .rBox .burger {
	width: 20rem;
	aspect-ratio: 1;
}
@media screen and (max-width: 840px) {
	header.subc .flexBox .rBox .burger {
		width: 10rem;
	}
}
header.subc .flexBox .rBox.sp {
	display: none;
}
@media screen and (max-width: 840px) {
	header.subc .flexBox .rBox.sp {
		display: block;
	}
}

/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
#footer {
	text-align: left;
	background-color: #586166;
	color: #edebda;
	position: relative;
	font-size: 2.2rem;
	line-height: 2;
	letter-spacing: 0.1em;
	font-weight: 400;
	margin-top: auto;
}
@media screen and (max-width: 840px) {
	#footer {
		font-size: 1.4rem;
	}
}
#footer.subc {
	background-color: #db5331;
}
#footer.subc::before {
	background-color: #db5331;
}
#footer::before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	transform: translateY(-100%);
	width: 100%;
	height: 7.5rem;
	background-color: #586166;
	border-radius: 7rem 7rem 0 0;
}
@media screen and (max-width: 840px) {
	#footer::before {
		border-radius: 3rem 3rem 0 0;
	}
}
#footer .fotList {
	padding: 2em 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	position: relative;
}
@media screen and (max-width: 840px) {
	#footer .fotList {
		flex-wrap: wrap;
		row-gap: 3em;
		padding: 0 0 4em;
	}
}
#footer .fotList::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #edebda;
}
@media screen and (max-width: 840px) {
	#footer .fotList .fotItem {
		width: 46%;
	}
}
#footer .fotList .fotItem h5 {
	font-size: 125%;
}
#footer .fotList .fotItem a {
	color: #fff;
}
#footer .fotList .fotItem .flexBox {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: 2em;
}
#footer .fotList .fotItem .flexBox .lBox,
#footer .fotList .fotItem .flexBox .rBox {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
}
#footer .fotList .fotItem .clmBox {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: column;
}
#footer .fotList .fotItem .clmBox .icon{
	position:relative;
	padding-left:1.6em;
}

#footer .fotList .fotItem .clmBox .icon01::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1.1em;
	aspect-ratio: 1;
	background-image: url(../img/common/insta.svg);
	background-repeat: no-repeat;
}

#footer .fotList .fotItem .clmBox .icon02::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1.1em;
	aspect-ratio: 1;
	background-image: url(../img/common/line.svg);
	background-repeat: no-repeat;
}


#footer .fotList .fotItem .bnrBox {
	width: 27rem;
	display: block;
}
@media screen and (max-width: 840px) {
	#footer .fotList .fotItem .bnrBox {
		width: 20rem;
	}
}
#footer .fotList .fotItem .gtxt {
	font-size: 70%;
}
#footer .ornBox {
	width: 100%;
}
@media screen and (max-width: 840px) {
	#footer .ornBox {
		margin-top: 2em;
	}
}

/* ----------------------------------------------------------------------
SV
---------------------------------------------------------------------- */
#sv {
	margin-top: 23rem;
	margin-bottom: 14rem;
}
@media screen and (max-width: 840px) {
	#sv {
		text-align: center;
		margin-top: 18rem;
	}
}
#sv .txtBox {
	font-size: 2rem;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
}
@media screen and (max-width: 840px) {
	#sv .txtBox {
		font-size: 1.8rem;
	}
}
#sv .txtBox > p {
	font-size: 350%;
	font-weight: 500;
}



/* ----------------------------------------------------------------------
ボタン
---------------------------------------------------------------------- */
.fixBtn .cBtn{
	position:fixed;
	bottom:19rem;
	right:3rem;
	width:19rem;
	aspect-ratio:1;
	z-index:1001;
}

@media screen and (max-width: 840px) {
	.fixBtn .cBtn {
		width:10rem;
		right:2rem;
		bottom:10rem;
	}
}
.fixBtn .lBtn{
	position:fixed;
	bottom:3rem;
	right:3rem;
	width:19rem;
	aspect-ratio:1;
	z-index:1000;
}
@media screen and (max-width: 840px) {
	.fixBtn .lBtn {
		width:10rem;
		right:2rem;
		bottom:2rem;
	}
}

.fixBtn .c2Btn{
	position:fixed;
	bottom:3rem;
	right:0;
	width:30rem;
	aspect-ratio:1;
	z-index:1001;
}

@media screen and (max-width: 840px) {
	.fixBtn .c2Btn {
		width:10rem;
		right:0;
		bottom:2rem;
	}
}
