@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
	border-radius: 0;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base（SP default） ---------------------------------------*/

*{box-sizing:border-box;}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	background: var(--color-bg-section);
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
}

a{
	text-decoration: none;
	color:#000;
	transition: opacity .25s ease;
}

img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}


/* color ---------------------------------------*/

:root {
	--color-bg-section: #f7ebe6;
	/* SP: 枠・マスク・画像を同一サイズで揃える（実機の 100vh 差にも追従） */
	--lp-vh: 100vh;
	--lp-cta-h: calc(231 / 1081 * 100vw);
	--lp-avail-h: calc(var(--lp-vh) - var(--lp-cta-h));
	--lp-fw: min(90vw, var(--lp-avail-h) * 1080 / 1720);
	--lp-fh: calc(var(--lp-fw) * 1720 / 1080);
	--lp-ft: calc((var(--lp-avail-h) - var(--lp-fh)) / 2);
	/*
	 * --lp-fl は 100vw ではなく 100% を使うこと。
	 * 100vw はスクロールバーの幅を含むため、macOS の「スクロールバーを常に表示」
	 * やマウス接続時（＝スクロールバーが場所を取る環境）だけ、
	 * 画像側（.lpsection-frame / 通常フローの中央寄せ＝スクロールバーを除いた幅が基準）と
	 * 数px ズレる。fixed 要素の % はスクロールバーを除いた幅で解決されるので基準が一致する。
	 */
	--lp-fl: calc((100% - var(--lp-fw)) / 2);
}

@supports (height: 100dvh) {
	:root {
		--lp-vh: 100dvh;
	}
}


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

/*
 * スクロール1回分の移動量 = セクションの高さ = 枠の高さ（--lp-fh）。
 * ここを 100dvh にすると「移動量 = 画面の高さ」「見た目の単位 = 枠の高さ」でズレるため、
 * ウィンドウが枠より高いときにスライドとスライドの間に余白（= 画面の高さ - 枠の高さ）が出る。
 * セクション高を --lp-fh に揃えることで、次のスライドが隙間なく連結して入ってくる。
 */
.lpsection {
	height: var(--lp-fh);
	width: 100%;
	/*
	 * 画像を --lp-ft ぶん下げて描画するため、セクションの箱からはみ出す。
	 * はみ出した前後のスライドは .lpframe-bg（z-index:25 / 窓穴あきマスク）が覆うので、
	 * ここで clip してはいけない（clip すると画像の下端が切れる）。
	 */
	overflow: visible;
	position: relative;
	z-index: 10;
	background: transparent;
}

.lpsection-inner {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	background: none;
	display: flex;
	align-items: center;
	justify-content: center;
	/*
	 * 枠（.lpframe / fixed, top:--lp-ft）と同じ位置へ「見た目だけ」下げる。
	 * position:relative の top はレイアウト（= scrollify が見る offsetTop）を動かさないので、
	 * スクロールの刻みは --lp-fh のまま保たれる。
	 */
	position: relative;
	top: var(--lp-ft);
	padding-bottom: 0;
}

.lpsection-frame {
	position: relative;
	width: var(--lp-fw);
	height: var(--lp-fh);
	flex-shrink: 0;
	margin: 0 auto;
}

.lpsection-inner img {
	width: 100%;
	height: auto;
	display: block;
}

.lpsection-frame > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* CTA fixed bar ---------------------------------------*/

.lpcta {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	transition: opacity 0.3s, visibility 0.3s;
}

.lpcta.lpis-hidden {
	opacity: 0;
	visibility: hidden;
}

.lpcta form {
	display: block;
	margin: 0 auto;
}

.lpcta input[type="image"] {
	width: 100%;
	height: auto;
	display: block;
	border: 0;
	cursor: pointer;
}

/* SP CTA */
.lpcta-sp {
	display: block;
}

/* TB〜PC CTA（SPでは非表示） */
/*
 * サイド画像は2倍書き出し
 * 表示サイズ = 画像原寸 / 2（btn_pc: 826→413、吹き出し・itemは比率維持）
 * サイドが狭いときはさらに縮む
 */
.lpcta-pc {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 70px;
	width: min(calc(826px / 2), 30vw);
	left: auto;
	right: auto;
	bottom: auto;
	box-sizing: border-box;
	padding: 0 12px;
}

.lpcta-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.lpcta-fukidashi {
	width: calc(612 / 826 * 100%);
}

.lpcta-btn {
	width: 100%;
}

.lpcta-item {
	width: calc(648 / 826 * 100%);
}

.lpcta-fukidashi img,
.lpcta-item img {
	width: 100%;
	height: auto;
	display: block;
}

.lpcta-btn form {
	width: 100%;
	margin: 0;
}

.lpcta-btn input[type="image"] {
	width: 100%;
	height: auto;
	display: block;
	border: 0;
	cursor: pointer;
	transition: opacity .25s ease;
}

/* ロゴ（TB〜PC / SPでは非表示） */
/* 2倍書き出し → 表示は原寸の1/2（518→259） */
.lplogo-pc {
	display: none;
	position: fixed;
	z-index: 40;
	box-sizing: border-box;
}

.lplogo-pc-img {
	width: min(calc(518px / 2), 100%);
}

.lplogo-pc-img a {
	display: block;
	cursor: pointer;
	transition: opacity .25s ease;
}

.lplogo-pc-img a:hover {
	opacity: 0.7;
}

.lplogo-pc-img img {
	width: 100%;
	height: auto;
	display: block;
}


/* fixed frame（窓） ---------------------------------------*/

.lpframe-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: var(--lp-vh);
	background: url("../img/bg.jpeg") center / cover no-repeat;
	z-index: 25;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	/* 画像と同一の窓穴（--lp-f* を共有） */
	-webkit-mask:
		linear-gradient(#000 0 0) 0 0 / 100% var(--lp-ft) no-repeat,
		linear-gradient(#000 0 0) 0 100% / 100% calc(100% - var(--lp-ft) - var(--lp-fh)) no-repeat,
		linear-gradient(#000 0 0) 0 var(--lp-ft) / var(--lp-fl) var(--lp-fh) no-repeat,
		linear-gradient(#000 0 0) 100% var(--lp-ft) / calc(100% - var(--lp-fl) - var(--lp-fw)) var(--lp-fh) no-repeat;
	mask:
		linear-gradient(#000 0 0) 0 0 / 100% var(--lp-ft) no-repeat,
		linear-gradient(#000 0 0) 0 100% / 100% calc(100% - var(--lp-ft) - var(--lp-fh)) no-repeat,
		linear-gradient(#000 0 0) 0 var(--lp-ft) / var(--lp-fl) var(--lp-fh) no-repeat,
		linear-gradient(#000 0 0) 100% var(--lp-ft) / calc(100% - var(--lp-fl) - var(--lp-fw)) var(--lp-fh) no-repeat;
}

.lpframe {
	position: fixed;
	/* margin:auto ではなく穴と同じ座標に固定（実機でのズレ防止） */
	top: var(--lp-ft);
	left: var(--lp-fl);
	width: var(--lp-fw);
	height: var(--lp-fh);
	margin: 0;
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s;
	/* border-box の 3px 分で中身より小さく見えないよう outline で線を外側に */
	border: none;
	outline: 3px solid #cf2e2f;
	outline-offset: -1.5px;
	/* Figma: 乗算 / 75% / 0,0 / ぼかし25 / #a86185 ※CSSは不透明度で近似 */
	box-shadow: 0 0 25px rgba(168, 97, 133, 0.75);
	z-index: 30;
	box-sizing: border-box;
}

.lpframe.lpis-hidden,
.lpframe-bg.lpis-hidden {
	opacity: 0;
	visibility: hidden;
}



/* slide17 : 出荷日 ---------------------------------------*/

.lpslide17-shipping {
	position: absolute;
	top: 3.7%;
	left: 3.4%;
	right: 3.4%;
	z-index: 2;
	padding: 1.4% 3%;
	border: 1.5px solid #c0272d;
	background: #fff;
	text-align: center;
}

.lpslide17-shipping-label {
	font-size: clamp(14px, 3.7vw, 20px);
	color: #333;
	letter-spacing: 0.05em;
}

.lpslide17-shipping-date {
	display: inline;
	font-size: clamp(28px, 7.6vw, 41px);
	font-weight: 700;
	color: #c0272d;
	line-height: 1.15;
	letter-spacing: 0.02em;
}

.lpslide17-shipping-sub {
	display: inline;
	font-size: clamp(14px, 3.7vw, 20px);
	color: #555;
	letter-spacing: 0.05em;
}


/* slide20 : 食卓までの流れ（動画） ---------------------------------------*/

.lpslide20-movie {
	position: absolute;
	bottom: 4%;
	left: 50%;
	transform: translateX(-50%);
	width: 49%;
	z-index: 2;
}

.lpslide20-movie img,
.lpslide20-movie video {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: bottom;
}


/* slide21 : ご注文の前に ---------------------------------------*/

.lpslide21-btn-mail,
.lpslide21-btn-tel {
	position: absolute;
	left: 19.2%;
	z-index: 2;
	display: block;
	cursor: pointer;
}

.lpslide21-btn-mail {
	top: 28.5%;
	width: 68%;
}

.lpslide21-btn-tel {
	top: 41%;
	width: 54%;
}

.lpslide21-btn-mail img,
.lpslide21-btn-tel img {
	width: 100%;
	height: auto;
	display: block;
}


/* slide22 : よくあるご質問 ---------------------------------------*/

.lpslide22-btn-tel {
	position: absolute;
	top: 81.3%;
	left: 50%;
	transform: translateX(-50%);
	width: 62.6%;
	z-index: 2;
	display: block;
	cursor: pointer;
}

.lpslide22-btn-tel img {
	width: 100%;
	height: auto;
	display: block;
}


/* slide24 : お問い合わせ+フッター ---------------------------------------*/

/*
 * 最終セクションだけは枠なしの全画面。高さは --lp-fh ではなく画面いっぱい。
 *
 * margin-top は必須。他セクションは画像を --lp-ft ぶん下げて描画しているため、
 * これが無いと直前スライド表示中に slide24 の上端が画面 y=--lp-fh に来てしまい、
 * 窓の下端（y = --lp-ft + --lp-fh）より上、つまり窓の中へせり出す。
 * --lp-ft ぶん下げると窓の下端とちょうど接し、はみ出しも重なりも無くなる。
 */
.lpslide24 {
	height: var(--lp-vh);
	margin-top: var(--lp-ft);
	overflow-y: auto;
	background: var(--color-bg-section);
}

.lpslide24-inner {
	margin: 0 auto;
	background: url("../img/bg_section24.png") top center / 100% auto no-repeat;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.lpslide24-contact {
	padding: 6.8% 7% 7%;
	text-align: center;
}

.lpslide24-contact-head {
	width: 60%;
	display: block;
	margin: 0 auto 7%;
}

.lpslide24-contact-lead {
	width: 100%;
	display: block;
	margin: 0 auto 4.8%;
}

.lpslide24-phone {
	position: relative;
	width: 100%;
	margin: 0 auto 5.8%;
}

.lpslide24-phone > img {
	width: 100%;
	height: auto;
	display: block;
}

.lpslide24-phone-link {
	position: absolute;
	top: 34%;
	left: 50%;
	transform: translateX(-50%);
	width: 83%;
	z-index: 2;
	display: block;
	cursor: pointer;
}

.lpslide24-phone-link img {
	width: 100%;
	height: auto;
	display: block;
}

.lpslide24-btn-mail {
	display: block;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
}

.lpslide24-btn-mail img {
	width: 100%;
	height: auto;
	display: block;
}

.lpslide24-footer {
	flex: 1;
	position: relative;
	background: url("../img/bg_footer.png") top center / 100% auto no-repeat;
	padding: 13% 7% 7%;
	text-align: center;
}

.lpslide24-footer::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60%;
	background: #fff;
	z-index: 0;
}

.lpslide24-footer > * {
	position: relative;
	z-index: 1;
}

.lpslide24-footer-logo {
	width: 80%;
	display: block;
	margin: 0 auto 9%;
}

.lpslide24-footer-address {
	width: 56%;
	display: block;
	margin: 0 auto 5.2%;
}

.lpslide24-sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-bottom: 5.8%;
}

.lpslide24-sns a {
	display: block;
	width: 48px;
	height: 48px;
	cursor: pointer;
}

.lpslide24-sns img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lpslide24-copyright {
	width: 55%;
	display: block;
	margin: 0 auto;
}


/* 641px〜767px ---------------------------------------*/

@media screen and (min-width: 641px){

	:root {
		--lp-cta-h: 0px;
		--lp-avail-h: var(--lp-vh);
		--lp-fw: min(380px, var(--lp-vh) * 1080 / 1720);
		--lp-fh: calc(var(--lp-fw) * 1720 / 1080);
		--lp-ft: calc((var(--lp-avail-h) - var(--lp-fh)) / 2);
		/* メイン左端 = 右寄せ400pxカラムの左（100vw 不可。理由は :root のコメント参照） */
		--lp-fl: calc(100% - 400px);
	}

	/* 最初から敷いておく（最終スライド遷移時のチラつき防止） */
	body {
		background: url("../img/bg_pc.jpg") center center / cover no-repeat fixed;
	}

	.lpsection {
		padding-left: calc(100% - 400px);
	}

	.lpsection-inner {
		max-width: 400px;
		margin-right: 0;
		padding-bottom: 0;
		justify-content: flex-start;
	}

	.lpsection-frame {
		width: var(--lp-fw);
		height: var(--lp-fh);
		margin: 0;
	}

	.lpframe {
		top: var(--lp-ft);
		left: var(--lp-fl);
		right: auto;
		bottom: auto;
		width: var(--lp-fw);
		height: var(--lp-fh);
		margin: 0;
	}

	.lpframe-bg {
		background-image: url("../img/bg_pc.jpg");
	}

	/* 最終ページ：枠なし全面。体背景の bg_pc をそのまま使う */
	.lpslide24 {
		background: transparent;
	}

	.lpcta-sp {
		display: none;
	}

	.lpcta-pc {
		display: flex;
		top: 50%;
		bottom: auto;
		left: 0;
		right: 400px;
		transform: translateY(-50%);
		/* 最大 = 2倍画像の1/2表示 + padding、サイドが狭いと縮む */
		width: min(calc(826px / 2 + 24px), 100% - 400px);
		margin: 0 auto;
	}

	/* TB: メイン右寄せ時はロゴを左上（サイズはPCの約2/3） */
	.lplogo-pc {
		display: block;
		top: 20px;
		left: 20px;
		right: auto;
		bottom: auto;
		width: min(calc(518px / 2 * 2 / 3), calc(100% - 400px - 40px));
		transform: none;
	}

	.lplogo-pc-img {
		width: 100%;
	}

	.lpslide24-inner {
		max-width: 400px;
		margin-right: 0;
		/* 枠と同様のドロップシャドウ */
		box-shadow: 0 0 25px rgba(168, 97, 133, 0.75);
	}

}


/* TB（768px〜） ---------------------------------------*/

@media screen and (min-width: 768px){

	:root {
		--lp-fw: min(513px, var(--lp-vh) * 1080 / 1720);
		--lp-fh: calc(var(--lp-fw) * 1720 / 1080);
		--lp-ft: calc((var(--lp-avail-h) - var(--lp-fh)) / 2);
		--lp-fl: calc(100% - 540px);
	}

	.lpsection {
		padding-left: calc(100% - 540px);
	}

	.lpsection-inner {
		max-width: 540px;
	}

	.lpcta-pc {
		right: 540px;
		width: min(calc(826px / 2 + 24px), 100% - 540px);
	}

	.lplogo-pc {
		width: min(calc(518px / 2 * 2 / 3), calc(100% - 540px - 40px));
	}

	.lpsection-frame {
		width: var(--lp-fw);
		height: var(--lp-fh);
	}

	.lpframe {
		top: var(--lp-ft);
		left: var(--lp-fl);
		width: var(--lp-fw);
		height: var(--lp-fh);
	}

	.lpslide24-inner {
		max-width: 540px;
	}

}


/* PC（1025px〜） ---------------------------------------*/

@media screen and (min-width: 1025px){

	:root {
		--lp-fw: min(540px, var(--lp-vh) * 1080 / 1720);
		--lp-fh: calc(var(--lp-fw) * 1720 / 1080);
		--lp-ft: calc((var(--lp-avail-h) - var(--lp-fh)) / 2);
		--lp-fl: calc((100% - var(--lp-fw)) / 2);
	}

	.lpsection {
		padding-left: 0;
	}

	.lpsection-inner {
		margin-right: auto;
		justify-content: center;
	}

	.lpsection-frame {
		width: var(--lp-fw);
		height: var(--lp-fh);
		margin: 0 auto;
	}

	.lpcta-pc {
		left: calc(50% + 270px);
		right: 0;
		width: min(calc(826px / 2 + 24px), calc(50% - 270px));
	}

	/* PC: 左側サイドの縦中央 */
	.lplogo-pc {
		display: flex;
		top: 50%;
		left: 0;
		width: calc(50% - 270px);
		padding: 0 12px;
		transform: translateY(-50%);
		justify-content: center;
		align-items: center;
	}

	.lplogo-pc-img {
		width: min(calc(518px / 2), 100%);
	}

	.lpframe {
		top: var(--lp-ft);
		left: var(--lp-fl);
		width: var(--lp-fw);
		height: var(--lp-fh);
		margin: 0;
	}

	.lpslide24-inner {
		margin-right: auto;
	}

	.lpcta-btn input[type="image"]:hover,
	.lpslide21-btn-mail:hover,
	.lpslide21-btn-tel:hover,
	.lpslide22-btn-tel:hover,
	.lpslide24-phone-link:hover,
	.lpslide24-btn-mail:hover,
	.lpslide24-sns a:hover {
		opacity: 0.7;
	}

}
