@charset "UTF-8";

/*-------------------------------------------------
	Reset
-------------------------------------------------*/
*,*::before,*::after{box-sizing:border-box;}html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;background:none;}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block;}body{line-height:1;color:#000;background:#fff;}ul,ol{list-style:none;}table{border-collapse:collapse;border-spacing:0;}img,picture,video,canvas,svg{display:block;max-width:100%;height:auto;}button,input,select,textarea{font:inherit;color:inherit;margin:0;background:none;border:none;padding:0;appearance:none;box-shadow:none;}a{color:inherit;text-decoration:none;background:none;}blockquote,q{quotes:none;}blockquote::before,blockquote::after,q::before,q::after{content:'';}hr{border:0;border-top:1px solid #ccc;margin:2em 0;}mark{background:#ff9;color:#222;}:focus:not(:focus-visible){outline:none;}

/*-------------------------------------------------
	Base
-------------------------------------------------*/
:root {
	/* デザイン基準幅（PCのカンプ幅） */
	--design-w: 1500;
	/* アドレスバーの影響を受けにくい lvw 推奨 */
	--u: calc(100lvw / var(--design-w)); /* 1デザインpx = var(--u) */
	--font-en: "Barlow Semi Condensed", sans-serif;
	--font-ja: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
	--color-white: #EDEDED;
	--color-black: #2A2A2A;
	--line-1px: clamp(1px, .066vw, .066vw);
	--line-2px: clamp(2px, .133vw, .132vw);
}
@media screen and (max-width: 768px) {
	:root {
		/* デザイン基準幅（SPのカンプ幅） */
		--design-w: 390;
		--line-1px: clamp(1px, .2564vw, .066vw);
		--line-2px: clamp(2px, .5128vw, .132vw);
		--pd-side-sm: 6.41vw;
	}
}

/* Font Size */
.vw {
  font-size: clamp(var(--min, 10px), calc(var(--u) * var(--s, 16)), var(--max, 9999px));
}
@media screen and (min-width: 769px) {
	.fs-12 { --s: 12 }
	.fs-14 { --s: 14 }
	.fs-15 { --s: 15 }
	.fs-16 { --s: 16 }
	.fs-17 { --s: 17 }
	.fs-18 { --s: 18 }
	.fs-20 { --s: 20 }
	.fs-22 { --s: 22 }
	.fs-23 { --s: 23 }
	.fs-24 { --s: 24 }
	.fs-25 { --s: 25 }
	.fs-26 { --s: 26 }
	.fs-27 { --s: 27 }
	.fs-28 { --s: 28 }
	.fs-29 { --s: 29 }
	.fs-30 { --s: 30 }
	.fs-33 { --s: 33 }
	.fs-40 { --s: 40 }
	.fs-50 { --s: 50 }
}
@media screen and (max-width: 768px) {
	.fs-10-sm { --s: 10 }
	.fs-12-sm { --s: 12 }
	.fs-13-sm { --s: 13 }
	.fs-14-sm { --s: 14 }
	.fs-15-sm { --s: 15 }
	.fs-16-sm { --s: 16 }
	.fs-17-sm { --s: 17 }
	.fs-18-sm { --s: 18 }
	.fs-19-sm { --s: 19 }
	.fs-20-sm { --s: 20 }
	.fs-22-sm { --s: 22 }
	.fs-24-sm { --s: 24 }
	.fs-25-sm { --s: 25 }
	.fs-32-sm { --s: 32 }
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: var(--font-ja);
	font-weight: 500;
	font-style: normal;
	font-size: 100%;
	line-height: 1;
	color: var(--color-black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.loading {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
a:link, a:visited {
	color: var(--color-txt);
	text-decoration: none;
	outline: none;
	opacity: 1;
	transition: opacity .3s;
}
a:hover {
	text-decoration: none;
	opacity: .8;
	cursor: pointer;
}
img {
	width: 100%;
	height: auto;
}
@media screen and (max-width: 666px) {
}

/*-------------------------------------------------
	Commons
-------------------------------------------------*/
/* Layout */
.ly_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.ly_flex.fdRr {
	flex-direction: row-reverse;
}
.ly_flex.jcC {
	justify-content: center;
}
.ly_flex.aiC {
	align-items: center;
}
.ly_w_100 {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.sm_flexNone {
		display: block;
	}
	.sm_w_100 {
		width: 100% !important;
	}
	.sm_w_100vw {
		margin-left: calc( -1 * ( var(--pd-side-sm) ));
		width: 100vw !important;
	}
}

/* Helper */
.la_dn, .la_dn_ib {
	display: none !important;
}
.sm_dn {
	display: block !important;
}
.sm_dn_ib {
	display: inline-block;
}
span.ib {
	display: inline-block;
}
.hp_pos_rel {
	position: relative;
}
.hp_bg_light-grey {
	background-color: #d7d7d7;
}
@media screen and (max-width: 768px) {
	.la_dn {
		display: block !important;
	}
	.la_dn_ib {
		display: inline-block !important;
	}
	.sm_dn, .sm_dn_ib {
		display: none !important;
	}
}

/* Margin */
.hp_miA {
	margin-inline: auto;
}

/* Padding */

/* Heading + Text */
p {
	font-size: clamp(10px, 1.067vw, 9999px); /* 16px */
	line-height: 180%;
	letter-spacing: .03em;
}
p:not(:last-of-type) {
	margin-bottom: 1.3em;
}
.el_ill_ttl {
	display: inline-block;
	padding: 1.075em .831em .575em;
	color: var(--color-black);
	background: top left / auto 100% no-repeat url("../img/cmn/ill_ttl.svg");
}
.el_ill_ttl.wh {
	color: var(--color-white);
	background-image: url("../img/cmn/ill_ttl_wh.svg");
}
.el_lv3H {
	line-height: 150%;
}
.el_ill_ttl + .el_lv3H {
	margin-top: 1em;
}
.el_ill_ttl + .el_lv4H {
	margin-top: 1.4em;
}
.el_lv4H + p {
	margin-top: 1.85em;
}
.hp_txtA_c {
	text-align: center !important;
}
.hp_font_en {
	font-family: var(--font-en);
	font-weight: 600;
	letter-spacing:  .03em;
}
.hp_font_w_r {
	font-weight: 400;
}
.hp_font_ja {
	font-family: var(--font-ja);
}
.hp_color_white {
	color: var(--color-white);
}
@media screen and (max-width: 768px) {
	p {
		font-size: clamp(10px, 3.333vw, 9999px); /* 13px */;
	}
	p:not(:last-of-type) {
		margin-bottom: 2.8em;
	}
	.sm_txtA_c {
		text-align: center !important;
	}
	.el_ill_ttl {
		background-image: url("../img/cmn/ill_ttl_sm.svg");
	}
	.el_ill_ttl.wh {
		background-image: url("../img/cmn/ill_ttl_wh_sm.svg");
	}
	.el_lv4H {
		line-height: 1.5;
	}
	.el_ill_ttl + .el_lv4H {
		margin-top: 1.3em;
	}
	.el_lv4H + p {
		margin-top: 2.1em;
	}
}

/* Fade */
.hp_fadeIn {
	opacity: 0;
	transition: 900ms ease-in-out;
}
.hp_fadeIn.in {
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.hp_fadeIn_sm {
		opacity: 0;
		transition: 900ms ease-in-out;
	}
	.hp_fadeIn_sm.in {
		opacity: 1;
	}
}

/*-------------------------------------------------
	Header
-------------------------------------------------*/
.wrap_hdr {
	position: fixed;
	padding: 0 4vw;
	width: 100%;
	height: 6vw;
	z-index: 100;
	pointer-events: none;
}
.ly_hdr {
	width: 100%;
}
.bl_hdr_menu {
	gap: 2.333vw;
	pointer-events: all;
}
.el_hdr_menu {
	font-family: var(--font-en);
	font-weight: 600;
	letter-spacing: 3%;
	color: #fff;
}
.el_hdr_logo {
	width: 4.8vw;
	height: 2vw;
	z-index: 101;
	pointer-events: all;
}
.bl_hdr_submenu {
	gap: 2.1vw;
	pointer-events: all;
}
.un_hdr_btn__order {
	display: inline-block;
}
.un_hdr_btn__order .icon {
	display: block;
	width: 10.667vw;
	height: auto;
	aspect-ratio: 160 / 30;
	color: #fff;
	transition: color .3s;
}
.un_hdr_btn__order:hover .icon,
.un_hdr_btn__order:focus-visible .icon {
	color: #000;
}
.un_hdr_btn__insta {
	width: 1.867vw;
	height: 1.867vw;
}
.wrap_gNav_sm {
	display: none;
}
@media screen and (max-width: 768px) {
	.wrap_hdr {
		padding: 0 20.513vw 0 var(--pd-side-sm);
		height: 14.872vw;
	}
	.bl_hdr_menu,
	.bl_hdr_submenu,
	body.home .el_hdr_logo {
		display: none;
	}
	.el_hdr_logo {
		position: absolute;
		top: 5.641vw;
		left: 50%;
		transform: translateX(-50%);
		aspect-ratio: 271 / 113;
		width: 20.513vw;
		height: auto;
	}
	/* Global Navigation */
	.wrap_gNav_sm {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--bg-sumi);
		z-index: 101;
		pointer-events: all;
		overflow-y: auto;
	}
	.ly_gNav_sm {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding-top: 20.513vw;
		background-color: #323232;
	}
	.bl_gNav_sm {
		flex: 0 0 auto;
		padding: 0 7.692vw 8.974vw;
		width: 100%;
	}
	.el_gNav_sm {
		display: flex;
	}
	.el_gNav_sm + .el_gNav_sm {
		margin-top: 5.128vw;
	}
	.el_gNav_sm a {
		display: flex;
		padding: 2.051vw 2.564vw;
		line-height: 1;
		color: var(--color-white);
	}
	.el_gNav__link_ttl {
		flex-direction: column;
		width: 50%;
	}
	.el_gNav__link_ttl > span.hp_font_ja {
		margin-top: 1em;
		letter-spacing: .08em;
	}
	.bl_gNav_sm__sub {
		width: 50%;
	}
	.el_gNav_sm a.el_gNav__link {
		display: flex;
		align-items: center;
		color: #B9B9B9;
	}
	.el_gNav_sm a.el_gNav__link::before {
		content: "";
		display: block;
		margin-right: 2.564vw;
		width: 3.846vw;
		height: var(--line-1px);
		background-color: #B9B9B9;
	}
	.el_gNav_sm.insta {
		justify-content: center;
		align-items: center;
		height: 29.487vw;
	}
	.el_gNav_sm.insta a {
		justify-content: center;
		align-items: flex-start;
		padding-top: 3.6vw;
		padding-bottom: 3.6vw;
	}
	.el_gNav_sm.insta span.icon {
		width: 4.359vw;
		height: 4.359vw;
	}
	.el_gNav_sm.insta span.txt {
		width: auto;
		font-weight: 500;
		margin-left: 3.333vw;
	}
	.un_gNav_sm__utLinks {
		display: flex;
		justify-content: center;
	}
	a.un_btn_gNav_rsv {
		flex: 1 1 auto;
		height: 100%;
		min-height: 72.308vw;
	}
	/* Hamburger Menu */
	body.no_scroll {
		overflow-y: hidden !important;
	}
	.un_btn_hbg {
		display: block;
		position: absolute;
		top: var(--pd-side-sm);
		right: var(--pd-side-sm);
		width: 30px;
		height: 22px;
		z-index: 102;
		cursor: pointer;
		pointer-events: all;
	}
	.un_btn_hbg > span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 4px;
		background-color: var(--color-white);
		transition: all .5s;
	}
	.un_btn_hbg span:nth-of-type(1) {
		top: 0;
		/* -webkit-animation: btn07-bar01 .75s forwards; */
		animation: btn07-bar01 .75s forwards;
	}
	.un_btn_hbg span:nth-of-type(2) {
		top: 9px;
		left: 5px;
		width: 25px;
		transition: all .25s .25s;
	}
	.un_btn_hbg span:nth-of-type(3) {
		top: 18px;
		left: 10px;
		width: 20px;
		/* -webkit-animation: btn07-bar03 .75s forwards; */
		animation: btn07-bar03 .75s forwards;
	}
	.un_btn_hbg.active span {
		left: 7px;
		width: 24px;
	}
	.un_btn_hbg.active span:nth-of-type(1) {
		/* -webkit-animation: active-btn07-bar01 .75s forwards; */
		animation: active-btn07-bar01 .75s forwards;
	}
	.un_btn_hbg.active span:nth-of-type(2) {
		opacity: 0;
	}
	.un_btn_hbg.active span:nth-of-type(3) {
		/* -webkit-animation: active-btn07-bar03 .75s forwards; */
		animation: active-btn07-bar03 .75s forwards;
	}
	@-webkit-keyframes btn07-bar01 {
		0% {
			-webkit-transform: translateY(20px) rotate(45deg);
		}
		50% {
			-webkit-transform: translateY(20px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}
	@keyframes btn07-bar01 {
		0% {
			transform: translateY(9px) rotate(45deg);
		}
		50% {
			transform: translateY(9px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	@-webkit-keyframes btn07-bar03 {
		0% {
			-webkit-transform: translateY(-20px) rotate(-45deg);
		}
		50% {
			-webkit-transform: translateY(-20px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}
	@keyframes btn07-bar03 {
		0% {
			transform: translateY(-9px) rotate(-45deg);
		}
		50% {
			transform: translateY(-9px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	@-webkit-keyframes active-btn07-bar01 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}
		50% {
			-webkit-transform: translateY(20px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(20px) rotate(45deg);
		}
	}
	@keyframes active-btn07-bar01 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(9px) rotate(0);
		}
		100% {
			transform: translateY(9px) rotate(45deg);
		}
	}
	@-webkit-keyframes active-btn07-bar03 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}
		50% {
			-webkit-transform: translateY(-20px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(-20px) rotate(-45deg);
		}
	}
	@keyframes active-btn07-bar03 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(-9px) rotate(0);
		}
		100% {
			transform: translateY(-9px) rotate(-45deg);
		}
	}
}
@media screen and (max-width: 768px) and (min-height: 751px) {
	.wrap_gNav_sm,
	.ly_gNav_sm {
		height: 100%;
		min-height: 100vh;
		min-height: 100lvh;
	}
}

/*-------------------------------------------------
	Top
-------------------------------------------------*/
/* #first-view */
.ly_fv {
	position: relative;
	width: 100%;
	height: auto;
}
.bl_fv_slider {
	position: relative;
	min-height: 600px !important;
	overflow: hidden;
}
.bl_fv_slider .bl_fv_slide {
	position: relative;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 2s linear, transform 7.5s linear;
	overflow: hidden;
	z-index: 1;
}
.bl_fv_slider .bl_fv_slide:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}
.bl_fv_slider .bl_fv_slide.show_ {
	opacity: 1;
}
.bl_fv_slider .bl_fv_slide.zoom_ {
	transform: scale(1);
}
.bl_fv_slider .bl_fv_slide img {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ここからロゴの定義を更新 */
:root {
	--stick-2vw: 2vw;       /* 固定ライン（画面上から2vw） */
	--w-big: 19.6vw;        /* 大サイズの幅 */
	--w-small: 4.8vw;         /* 小サイズの幅（ヘッダー時） */
	--dy: calc(50vh - var(--stick-2vw)); /* 初期オフセット（JSが上書き） */
	--t: 1;                 /* 進行度（1=大、0=小）JSで更新 */
}
.header-logo-slot {
	position: absolute;
	left: 0;
	right: 0;
	top: var(--stick-2vw);
	display: grid;
	place-items: center;
	/* z-index: 1001; */
	z-index: 99;
	pointer-events: none;
}
.hero-logo-slot {
	position: relative;
	width: 100%;
	display: grid;
	place-items: center;
	margin: 0;
}
/* スケールは使わず、幅を補間してサイズを変える */
.site-logo {
	position: fixed;
	top: var(--stick-2vw);
	left: 50%;
	transform: translateX(-50%) translateY(var(--dy));
	/* 幅: 小→大 を t で補間 */
	inline-size: calc(var(--w-small) + (var(--w-big) - var(--w-small)) * var(--t));
	/* 高さはアスペクト比で自動算出（271:113） */
	aspect-ratio: 271 / 113;
	block-size: auto;

	display: grid;
	place-items: center;
	pointer-events: auto;
	z-index: 99;
}
/* ヘッダー内では幅を小サイズに固定、位置変換も無効化 */
.site-logo.in-header {
	position: static;
	transform: none;
	inline-size: var(--w-small);
	z-index: auto;
}
.logo-box {
	width: 100%;
	height: 100%;
	/* Safariでの描画を安定化（SVGでも念のため） */
	image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 768px) {
	.bl_fv_slider {
		min-height: 300px !important;
		max-height: 210vw !important;
	}
	:root {
		--stick-2vw: 5.641vw;       /* 固定ライン（画面上から2vw） */
		--w-big: 46.154vw;        /* 大サイズの幅 */
		--w-small: 20.513vw;         /* 小サイズの幅（ヘッダー時） */
	}
}

/* #about */
.ly_about {
	position: relative;
	padding:  0 9.333vw;
	width: 100%;
	height: 53.333vw;
	background: center / cover no-repeat url("../img/top/bg_about_fix.jpg");
}
.bl_about .el_lv2H {
	margin-bottom: 2.2em;
}
.un_top_about__ttl {
	margin-bottom: .9em;
	line-height: 1;
	color: var(--color-white);
}
.un_top_about__subttl {
	margin-bottom: 1.4em;
	line-height: 150%;
	letter-spacing: .05em;
	color: var(--color-white);
}
p.un_top_about__lead {
	color: var(--color-white);
}
a.el_btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4vw;
	width: 13.333vw;
	height: 3vw;
	border: var(--line-1px) solid var(--color-white);
	background-color: transparent;
	transition: background-color .3s;
}
a.el_btn_box > span {
	line-height: 1;
	color: var(--color-white);
	transition: color .3s;
}
a.el_btn_box:hover {
	background-color: var(--color-white);
}
a.el_btn_box:hover > span {
	color: #3D3833;
}
@media screen and (max-width: 768px) {
	.ly_about {
		padding: 18.974vw var(--pd-side-sm) 24.359vw;
		height: auto;
		background-image: url("../img/top/bg_about_fix_sm.jpg");
	}
	.un_top_about__subttl {
		margin-bottom: 2.5em;
	}
	a.el_btn_box {
		margin-top: 11.538vw;
		width: 41.026vw;
		height: 8.974vw;
	}
	p.un_top_about__lead {
		line-height: 2;
	}
	p.un_top_about__lead:not(:last-of-type) {
		margin-bottom: 2em;
	}
}

/* #products */
.wrap_prod {
	padding-bottom: 5vw;
}
.ly_prod__bnr,
.ly_about__bnr {
	align-items: flex-end;
	padding: 6.667vw 8vw;
	width: 100%;
	height: 53.333vw;
	background: center / cover no-repeat url("../img/top/bg_products_fix.jpg");
}
.un_prod__ttl > span.hp_font_ja {
	display: block;
	margin-top: 1em;
	font-weight: 500;
	letter-spacing: 0;
}
.ly_prod__lineup {
	padding: 6vw 0 4.667vw;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.wrap_prod {
		padding-bottom: 11.538vw;
	}
	.ly_prod__bnr,
	.ly_about__bnr {
		padding: 14.103vw var(--pd-side-sm);
		height: 179.487vw;
		background-image: url("../img/top/bg_products_fix_sm.jpg");
	}
	.ly_prod__lineup {
		padding: 15.385vw var(--pd-side-sm);
	}
	.ly_prod__lineup p {
		text-align: justify;
	}
}

/* #products-three-images */
.el_threeImages_txt {
	margin-top: -.7em;
	font-weight: 400;
	letter-spacing: .02em;
}
@media screen and (min-width: 769px) {
	:root {
		--img-w: 32vw;
		--gap: 1vw;
		--wait: 0s;   /* あなたの調整値 */
		--move: .6s;    /* 左右の移動時間 */
		--img-fade: .6s;/* 左右の画像フェード */
		--spec-gap: 0s;/* 左右到着+フェード完了からスペックまでの待機 */
		--img-fade-spec: .3s;/* 左右の画像フェード */
		--travel: calc(var(--img-w) + var(--gap)); /* 中央→左右の距離 */
	}
	.ly_threeImages {
		box-sizing: border-box;
		width: 100%;
		padding-left: 1vw;
		padding-right: 1vw;
		overflow: hidden;
	}
	.ly_threeImages_inner {
		max-width: 100%;
		margin: 0 auto;
	}
	.bl_threeImages_rail {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: var(--gap);
		position: relative;
	}
	.el_threeImages_item {
		margin: 0;
		width: var(--img-w);
		position: relative;
		z-index: 1;
		overflow: visible;
	}
	.el_threeImages_media {
		width: 100%;
		aspect-ratio: 3 / 2;
		overflow: hidden;
	}
	.el_threeImages_img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		pointer-events: none;
	}
	.el_threeImages_item--center {
		z-index: 3;
		opacity: 1;
		transform: none;
	}
	.el_threeImages_item--left,
	.el_threeImages_item--right {
		opacity: 0;
		transition:
			transform var(--move) ease-in-out var(--wait),
			opacity  var(--img-fade) ease-in-out calc(var(--wait) + .1s);
	}
	.el_threeImages_item--left {
		transform: translateX(var(--travel)); /* 右へ寄せて中央に重ねる */
	}
	.el_threeImages_item--right {
		transform: translateX(calc(-1 * var(--travel))); /* 左へ寄せて中央に重ねる */
	}
	.ly_threeImages.is-inview .el_threeImages_item--left,
	.ly_threeImages.is-inview .el_threeImages_item--right {
		transform: translateX(0);
		opacity: 1;
	}
	/* ===== Element: スペック（各画像ごと） =====
		表示タイミング = 待機 + 移動 + 画像フェード + 追加待機
						= var(--wait) + var(--move) + var(--img-fade) + var(--spec-gap)
	*/
	.el_threeImages_spec {
		margin: .5rem 0 0;
		font-size: .9rem;
		line-height: 1.4;
		text-align: center;
		opacity: 0;
		transition: opacity var(--img-fade-spec) ease-in-out calc(var(--wait) + var(--move) + var(--img-fade) + var(--spec-gap));
	}
	.ly_threeImages.is-inview .el_threeImages_spec {
		opacity: 1;
	}
	.el_threeImages_name {
		margin-top: 1em;
		margin-bottom: 0 !important;
		line-height: 1;
	}
	.el_threeImages_size {
		margin-top: .5em;
		font-weight: 500;
		color: #727272;
	}
}
/* 低減モード配慮 */
@media (prefers-reduced-motion: reduce) {
	.el_threeImages_item--left,
	.el_threeImages_item--right,
	.el_threeImages_spec {
		transition: none !important;
		transform: translateX(0) !important;
		opacity: 1 !important;
	}
}
@media screen and (max-width: 768px) {
	.ly_threeImages {
		padding: 0 var(--pd-side-sm);
	}
	.el_threeImages_item + .el_threeImages_item {
		margin-top: 8.974vw;
	}
	.el_threeImages_name,
	.el_threeImages_size {
		margin-bottom: 0 !important;
		line-height: 1;
		text-align: center;
	}
	.el_threeImages_name {
		margin-top: .7em;
	}
	.el_threeImages_size {
		margin-top: 1em;
		font-weight: 500;
		color: #727272;
	}
	.el_threeImages_txt {
		margin-top: .6em;
		text-align: center;
	}
}

/* #features */
.ly_feat {
	padding: 6vw 0;
	width: 100%;
	height: 50vw;
	text-align: center;
	background: center / cover no-repeat url("../img/top/bg_features_fix.jpg");
}
.ly_feat_cont {
	margin-top: 6.667vw;
}
.bl_feat_cont {
	padding: 0 8.333vw;
	width: 50%;
}
.el_feat_cont__ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2.2em;
}
.el_feat_cont__ttl > span.hp_font_en {
	margin-left: .7em;
	color: #D0D0D0;
}
.el_feat_cont__txt {
	line-height: 200%;
	text-align: justify;
}
@media screen and (max-width: 768px) {
	.ly_feat {
		padding: 15.385vw 0 35.897vw;
		width: 100%;
		/* 要素自体の高さを両方分合計にする */
		height: calc(153.846vw + 110.256vw);
		/* 画像の順番は左から上層→下層。ここでは a が上、b が下 */
		background-image: url("../img/top/bg_features__1_fix_sm.jpg"), url("../img/top/bg_features__2_fix_sm.jpg");
		background-repeat: no-repeat, no-repeat;
		background-size: 100% 153.846vw, 100% 110.256vw;
		background-position: left top, left calc(153.846vw);     /* b の開始位置を a の高さ分下げる */
	}
	.ly_feat .el_lv3H {
		margin-top: 1.25em;
	}
	.ly_feat_cont {
		/* margin-top: 24.615vw; */
		margin-top: 23.077vw;
	}
	.bl_feat_cont + .bl_feat_cont {
		margin-top: 66.154vw;
	}
	.el_feat_cont__txt {
		line-height: 1.8;
		letter-spacing: .02em;
	}
}

/* #scenes */
:root {
	--slide-width: 50vw;
	--slide-hight: 33.333vw;
	--slide-caption-hight: 2.84vw;
}
.ly_scenes {
	padding: 4.667vw 0 7.333vw;
	width: 100%;
	height: auto;
	text-align: center;
}
.ly_scenes_slider {
	margin-top: 4vw;
	width: 100%;
	height: calc(var(--slide-hight) + (var(--slide-caption-hight) / 2));
	overflow: hidden;
}
.ly_modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 999; }
.ly_modal.is-active { display: flex; }
.bl_sliderMain { width: 100vw; position: relative; }
.bl_sliderMain .swiper { width: 100%; overflow: visible; }
.bl_sliderMain .swiper-wrapper { align-items: center; }
.bl_sliderMain__slide {
	height: var(--slide-hight);
	width: var(--slide-width);
	overflow: visible;
}
.el_slideButton {
	padding: 0;
	border: 0;
	background: none;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.el_slideFigure {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
}
.el_slideFigure > picture {
	display: block;
	aspect-ratio: 3 / 2;
	border-radius: .667vw;
	overflow: hidden;
}
.el_slideImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.el_scene__ttl {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: calc(-1 * var(--slide-caption-hight) / 2);
	left: -1vw;
	margin: 0;
	padding: 0 1em;
	height: var(--slide-caption-hight);
	border: var(--line-2px) solid #2a2a2a;
	background: #E9E9E9;
	z-index: 2;
	font-size: clamp(10px, 1.133vw, 9999px);
	line-height: 1.2;
}
.el_scene__ttl > .name {
	display: block;
	margin-right: 1em;
	padding-right: 1em;
	letter-spacing: .02em;
	border-right: var(--line-1px) solid #000;
	white-space: nowrap;
}
.el_scene__ttl > .prod {
	display: block;
	white-space: nowrap;
	font-weight: 600;
}
.el_scene__ttl > .prod::before {
	content: 'Products :';
	display: inline-block;
	margin-right: .3em;
	font-size: .9em;
	letter-spacing: .02em;
	color: #888;
	font-weight: 600;
}
.bl_sliderMain .el_nav {
	position: absolute;
	top: 50%;
	/* transform: translateY(-50%); */
	z-index: 5;
	width: 1.733vw;
	height: 1.733vw;
	color: transparent;
	border: 0;
	border-top: solid .267vw #ECECEC;
	border-right: solid .267vw #ECECEC;
    background-color: transparent;
	display: grid;
	place-items: center;
	cursor: pointer;
}
.bl_sliderMain .el_navPrev {
    left: 3vw;
    transform: translateY(-50%) rotate(-135deg);
}
.bl_sliderMain .el_navNext {
    right: 3vw;
    transform: translateY(-50%) rotate(45deg);
}
.bl_modal { width: 100%; height: 100%; }
.bl_modal__bg { position: absolute; inset: 0; background: rgba(0,0,0,0.8); }
.bl_modal__content {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    z-index: 1;
}
.bl_modal__close {
	position: fixed;
	top: 2.667vw;
	right: 3vw;
	width: 1.667vw;
	height: 1.667vw;
	display: grid;
	place-items: center;
	border: 0;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
	z-index: 100;
	transition: opacity .3s;
}
.bl_modal__close::before,
.bl_modal__close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% * 1.2727922);
	height: 0.1773vw;
	background: #fff;
	transform-origin: 50% 50%;
}
.bl_modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.bl_modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.bl_modal__close:hover,
.bl_modal__close:focus-visible { opacity: .7; }
.bl_sliderModal .swiper { width: 100%; display: none; }
.bl_sliderModal .swiper.is-active { display: block; }
.bl_sliderModal .swiper-wrapper { align-items: center; }
.bl_sliderModal__slide { display: grid; place-items: center; }
.el_modalImg {
	height: 40vw;
	width: auto;
	max-width: 90vw;
	object-fit: cover;
}
.bl_sliderModal .swiper-button-prev,
.bl_sliderModal .swiper-button-next {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
    margin-top: 0 !important;
	width: auto;
	height: auto;
	background: none;
	border: 0;
	opacity: 1;
	transition: opacity .3s;
	z-index: 100;
}
.bl_sliderModal .swiper-button-next::after,
.bl_sliderModal .swiper-button-prev::after {
	content: '';
	display: block;
	width: 1.733vw;
	height: 1.733vw;
	color: transparent;
	border: 0;
	border-top: solid .267vw #ECECEC;
	border-right: solid .267vw #ECECEC;
    transition: border-color .3s;
}
.bl_sliderModal .swiper-button-next::after {
    content: '';
	margin-right: 2.333vw;
	transform: rotate(45deg);
}
.bl_sliderModal .swiper-button-prev::after {
    content: '';
	margin-left: 2.333vw;
	transform: rotate(-135deg);
}
.bl_sliderModal .swiper-button-prev.swiper-button-disabled,
.bl_sliderModal .swiper-button-next.swiper-button-disabled {
    pointer-events: none;
}
.bl_sliderModal .swiper-button-prev.swiper-button-disabled::after,
.bl_sliderModal .swiper-button-next.swiper-button-disabled::after {
    border-color: #333;
}
.bl_sliderModal .swiper-pagination-bullets {
    position: fixed;
    bottom: 2.667vw;
}
.bl_sliderModal .swiper-pagination-bullet {
    width: .667vw;
    height: .667vw;
    margin: 0 .5vw !important;
    background: #D9D9D9;
    opacity: 1;
}
.bl_sliderModal .swiper-pagination-bullet-active {
    background: #767676;
    opacity: 1;
}
.u_visuallyHidden {
	position: absolute;
	clip: rect(1px,1px,1px,1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
	white-space: nowrap;
}
@media (max-width: 768px) {
	:root {
		--slide-width: 64.103vw;
		--slide-hight: 85.470vw;
		--slide-caption-hight: 7.692vw;
	}
    .el_slideFigure > picture {
        border-radius: 2.564vw;
    }
	.bl_sliderMain .el_navPrev {
        left: 3.846vw;
    }
	.bl_sliderMain .el_navNext {
        right: 3.846vw;
    }
	.bl_sliderMain .el_nav,
    .bl_sliderModal .swiper-button-next::after,
    .bl_sliderModal .swiper-button-prev::after {
        padding: 0;
        width: 3vw;
        height: 3vw;
        border-width: .7vw;
    }
	.bl_modal__close {
        top: 7.692vw;
        right: 7.692vw;
        width: 5.128vw;
        height: 5.128vw;
    }
    .bl_modal__close::before, .bl_modal__close::after {
        height: .513vw;
    }
    .bl_sliderModal .swiper-button-next::after {
        margin-right: 1.282vw;
    }
    .bl_sliderModal .swiper-button-prev::after {
        margin-left: 1.282vw;
    }
    .bl_sliderModal .swiper-pagination-bullets {
        bottom: 6.667vw;
    }
    .bl_sliderModal .swiper-pagination-bullet {
        margin: 0 1.282vw !important;
        width: 1.794vw;
        height: 1.794vw;
    }
	.bl_sliderMain__slide {
		width: var(--slide-width);
		height: var(--slide-hight);
	}
	.el_slideFigure > picture { aspect-ratio: 3 / 4; }
	.el_scene__ttl {
		left: -2.564vw;
		padding: .4em .7em;
		font-size: clamp(10px, 3.333vw, 9999px);
		border-width: .385vw;
	}
	.el_scene__ttl > .name {
		margin-right: 0.75em;
		padding-right: 0.75em;
	}
	.el_modalImg {
        max-width: 100vw;
        height: auto;
        max-height: 100vw;
    }
}
@media screen and (max-width: 768px) {
	.ly_scenes {
		padding: 15.385vw var(--pd-side-sm) 20.513vw;
	}
	.ly_scenes p {
		margin-bottom: 11.538vw;
		text-align: justify;
	}
}

/* #order */
.ly_order {
	width: 100%;
	height: 36.667vw;
	text-align: center;
	background: center / cover no-repeat url("../img/top/bg_order_fix.jpg");
}
.un_order__ttl span.hp_font_ja {
	display: block;
	margin-top: 1.5em;
	font-weight: 400;
}
@media screen and (max-width: 768px) {
	.ly_order {
		height: 76.923vw;
		background-image: url("../img/top/bg_order_sm_fix.jpg");
	}
	.un_order__ttl span.hp_font_ja {
		line-height: 1.8;
	}
}

/*-------------------------------------------------
	Page - About
-------------------------------------------------*/
body.page p {
	font-size: clamp(10px, 1vw, 9999px); /* 15px */
}
.ly_about__bnr {
	height: auto;
	min-height: 33.333vw;
	background-image: url("../img/page/bg_about_fv_fix.jpg");
}
@media screen and (max-width: 768px) {
	body.page p {
		font-size: clamp(10px, 3.333vw, 9999px); /* 13px */;
	}
	.ly_about__bnr {
		min-height: 100vw;
		background-image: url("../img/page/bg_about_fv_fix_sm.jpg");
	}
}

/* #about-lead */
.bl_about_lead__img {
	flex: 0 0 auto;
	width: 47.8vw;
	height: 57.8vw;
	overflow: hidden;
}
.el_about_lead__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bl_about_lead__txt {
	flex: 1 1 auto;
	width: calc(100% - 47.8vw);
	padding: 0 14vw 0 6.867vw;
	background-color: #2A2A2A;
}
.el_about_lead__ttl {
	margin-bottom: 1.8em;
	font-weight: 700;
	line-height: 170%;
	letter-spacing: .05em;
}
.ly_about_lead p {
	color: var(--color-white);
}
.ly_about_lead p:not(:last-of-type) {
    margin-bottom: 1.8em;
}
@media screen and (max-width: 768px) {
	.ly_about_lead {
		background: center / cover no-repeat url("../img/page/pic_about_fix_sm.jpg");
	}
	.bl_about_lead__txt {
		padding: 24.103vw var(--pd-side-sm);
		background-color: transparent;
	}
	.el_about_lead__ttl {
		margin-bottom: 3em;
		letter-spacing: .02em;
	}
	.ly_about_lead p:not(:last-of-type) {
		margin-bottom: 1.2em;
	}
}

/* #about-story */
.wrap_story {
	padding: 5.333vw 0 5.667vw;
	text-align: center;
}
body.page .el_ill_ttl {
	margin-bottom: 4.667vw;
}
.ly_story_1 {
	padding: 0 12vw 4.667vw 8vw;
}
.ly_story_1 .bl_story__img {
	width: 43.667vw;
}
.ly_story_1 .el_story__ttl {
	margin-bottom: 2.667vw;
	width: 22.533vw;
}
.ly_story_1 .bl_story__txt {
	padding-left: 5vw;
	width: calc(100% - 43.667vw);
	text-align: justify;
}
.bl_story__txt p:not(:last-of-type) {
	margin-bottom: 1em;
}
.ly_story_2 {
	padding: 0 8vw 0 12.667vw;
}
.ly_story_2 .bl_story__img {
	width: 42vw;
}
.el_story__img_2 {
	width: 37.6vw;
}
.el_story__img_3 {
	margin-top: 2.333vw;
	margin-left: 12.533vw;
	width: 29.467vw;
}
.ly_story_2 .bl_story__txt {
	padding-right: 6.667vw;
	width: calc(100% - 42vw);
	text-align: justify;
}
.ly_story_2 .el_story__ttl {
	margin-top: 3vw;
	margin-bottom: 2.667vw;
	width: 24.333vw;
}
@media screen and (max-width: 768px) {
	.wrap_story {
		padding: 15.385vw 0 21.795vw;
	}
	body.page .el_ill_ttl {
		margin-bottom: 7.692vw;
	}
	.ly_story_1 {
		padding: 0 0 10.256vw;
	}
	.ly_story_1 .bl_story__img {
		display: flex;
		justify-content: flex-end;
		width: 100%;
	}
	.ly_story_1 .bl_story__img img {
		width: 88.718vw;
	}
	.ly_story_1 .bl_story__txt {
		padding: 0 var(--pd-side-sm);
		width: 100%;
		margin-top: 6.154vw;
	}
	.ly_story_1 .el_story__ttl {
		margin-top: -12.821vw;
		margin-bottom: 6.41vw;
		width: 60vw;
	}
	.ly_story_2 {
		display: block;
		padding: 0;
	}
	.ly_story_2 .bl_story__img {
		width: 100%;
	}
	.el_story__img_2 {
		width: 89.744vw;
	}
	.ly_story_2 .el_story__ttl {
		margin-top: -4.513vw;
		margin-left: 26.923vw;
		margin-bottom: 0;
		width: 65.897vw;
	}
	.el_story__img_3 {
		margin-top: 3.179vw;
		margin-left: 30.769vw;
		width: 61.538vw;
	}
	.ly_story_2 .bl_story__txt {
		margin-top: 8.462vw;
		padding: 0 var(--pd-side-sm);
		width: 100%;
		margin-top: 8.974vw;
	}
}

/* #sustainability */
.ly_sust {
	padding: 0 8vw;
	height: 40vw;
	color: var(--color-white);
	background: center / cover no-repeat url("../img/page/bg_sustainability_fix.jpg");
}
.bl_sust {
	width: 100%;
	max-width: 36.667vw;
}
.un_top_sust__ttl {
	margin-bottom: 1.9em;
	font-weight: 700;
}
.un_top_sust__subttl {
	margin-bottom: 1.325em;
	margin-left: -.55em;
	line-height: 170%;
	letter-spacing: .06em;
}
.bl_sust p {
	letter-spacing: .02em;
}
.bl_sust p:not(:last-of-type) {
    margin-bottom: 0.9em;
}
@media screen and (max-width: 768px) {
	.ly_sust {
		padding: 15.385vw var(--pd-side-sm) 23.077vw;
		height: auto;
		background-image: url("../img/page/bg_sustainability_fix_sm.jpg");
	}
	.bl_sust {
		max-width: 100%;
	}
	.un_top_sust__ttl {
		margin-bottom: 1.25em;
		font-weight: 600;
	}
	.un_top_sust__subttl {
		margin-bottom: 5.2em;
	}
}

/* #voices */
.wrap_voices {
	padding: 6vw 10vw 7.333vw 13.333vw;
	width: 100%;
	height: auto;
	text-align: center;
	background-color: #2A2A2A;
}
.wrap_voices .el_ill_ttl {
	margin-bottom: 4vw;
}
.ly_voices + .ly_voices {
	margin-top: 4.667vw;
}
.bl_voices__img {
	flex: 0 0 auto;
	width: 16.667vw;
	height: 16.667vw;
	overflow: hidden;
}
.bl_voices__txt {
	flex: 1 1 auto;
	padding-left: 4.667vw;
	width: calc(100% - 16.667vw);
	color: var(--color-white);
	text-align: left;
}
.el_voices__ttl {
	margin-bottom: 1.3em;
	padding-left: 1.8vw;
	line-height: 1;
	border-left: .333vw solid #828282;
}
.el_voices__ttl > span.katagaki {
	margin-left: .7em;
	color: #C3C3C3;
}
.el_voices__ttl > span.hp_font_ja {
	display: block;
	margin-top: 1.6em;
	font-weight: 400;
}
.bl_voices__txt p {
	font-weight: 400;
	line-height: 200%;
}
@media screen and (max-width: 768px) {
	.wrap_voices {
		padding: 15.385vw var(--pd-side-sm) 20.513vw;
	}
	.ly_voices {
		flex-direction: column;
		margin-top: 7.692vw;
	}
	.ly_voices + .ly_voices {
		margin-top: 21.795vw;
	}
	.bl_voices__img {
		width: 46.154vw;
		height: 46.154vw;
	}
	.bl_voices__txt {
		padding-left: 0;
		width: 100%;
		margin-top: 7.692vw;
	}
	.el_voices__ttl {
		padding-left: 3.846vw;
		border-width: 1.026vw;
	}
	.el_voices__ttl > span.katagaki {
		display: block;
		margin-top: .4em;
		margin-left: 0;
		color: #9C9898;
	}
	.el_voices__ttl > span.hp_font_ja {
		margin-top: 1em;
	}
	.bl_voices__txt p {
		line-height: 1.8;
	}
}

/*-------------------------------------------------
	Footer
-------------------------------------------------*/
.ly_ftr {
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
	padding: 4vw 8vw;
	width: 100%;
	height: 21.333vw;
}
.un_ftr_link {
	font-weight: 700;
	line-height: 1;
}
p.un_ftr_link:not(:last-of-type) {
	margin-bottom: 1.2em;
}
.un_ftr_copyright {
	font-weight: 700;
	line-height: 1;
}
.un_ftr_logo {
	display: block;
	position: absolute;
	bottom: 4vw;
	right: 8vw;
	width: 16.667vw;
	height: auto;
}
@media screen and (max-width: 768px) {
	.ly_ftr {
		flex-direction: column;
		align-items: center;
		padding: 12.821vw var(--pd-side-sm);
		height: auto;
	}
	.un_ftr_logo {
		position: relative;
		bottom: unset;
		right: unset;
		margin: 12.821vw auto 10.256vw;
		width: 46.154vw;
	}
	p.un_ftr_link:not(:last-of-type) {
		margin-bottom: 1.25em;
	}
	.bl_ftr_nav {
		display: flex;
		justify-content: center;
		gap: 7.692vw;
	}
	.el_ftr_nav {
		font-weight: 700;
		line-height: 1;
		letter-spacing: .02em;
	}
	.un_ftr_link,
	.un_ftr_copyright {
		text-align: center;
	}
}