@charset "UTF-8";
/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
 *:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,*::before,*::after {
    box-sizing: border-box;
}
a, button {
    cursor: revert;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
ol, ul, menu {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
	vertical-align: top;
	backface-visibility: hidden;
}
table {
    border-collapse: collapse;
}
input, textarea {
    -webkit-user-select: auto;
}
textarea {
    white-space: revert;
}
meter {
    -webkit-appearance: revert;
    appearance: revert;
}
:where(pre) {
    all: revert;
}
::placeholder {
    color: unset;
}
::marker {
    content: initial;
}
:where([hidden]) {
    display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
:where(dialog:modal) {
    all: revert;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size:62.5%;
}
body{
	font-size:1.6em;
	font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', YuGothic, Meiryo, sans-serif;
	font-weight: var(--fw-medium);
	font-feature-settings: "palt";
	word-break: break-all;
	overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6, p,figure,ul,ol,li,dl,dt,dd{
	line-height: var(--lh-normal);
}
p{
	text-align: justify;
	line-height: var(--lh-normal);
}
a {
	color: var(--c-bk);
	line-height: var(--lh-small);
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link,
a:visited {
	color: var(--c-bk);
}
@media screen and (max-width:812px){
	body{
		font-size:1.5em;
	}
}
@media (hover: hover) and (pointer: fine){
	a:hover {
		text-decoration: none;
		opacity: 0.7;
	}	
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events:none;
	}
}
/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		text-size-adjust:100%;
		-webkit-text-size-adjust: 100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
/* 変数 */
:root{
	/* color */
	--c-bk: #000;
	--c-wh: #fff;
	--c-main: #353535;
	--c-accent: #b48202;
	--bgc-main: #d6dae2;
	--bgc-accent: #848c96;
	--bgc-overlap: #333;
	/* font-weight */
	--fw-light: 300;
	--fw-medium: 400;
	--fw-bold: 700;
	--fw-black: 900;
	/* line-height */
	--lh-none: 1.0;
	--lh-small: 1.4;
	--lh-normal: 1.8;
    --lh-tall: 2.5;
	/* font-family */
	--ff-en: linotype-didot-headline, serif;
	--ff-min: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', YuMincho, serif;
}

/* wrapper */
#wrapper{
	position: relative;
	overflow: hidden;
}
@media screen and (max-width:812px){
}

/* ctsArea */
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 120px 30px;
}
@media screen and (max-width:812px){
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 50px 20px;
	}
}

/* button_base
==================================== */
.btnArea{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 40px;
	gap: 15px;
}
a.btnBase__item{
	display: block;
	width: 380px;
	padding: 25px 65px 25px 25px;
	font-size: 1.8rem;
	text-align: center;
	color: var(--c-wh);
	background-color: var(--c-accent);
	position: relative;
	cursor: pointer;
}
.btnBase__item::before,
.btnBase__item::after{
	content: " ";
	height: 1px;
	background-color: var(--c-wh);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.2s;
}
.btnBase__item::before{
	width: 30px;
	right: 20px;
}
.btnBase__item::after{
	width: 10px;
	right: 20px;
	transform: translateY(calc(50% - 5px)) rotate(45deg);
}
/* hover */
.btnBase__item:hover{
	opacity: 1;
}
.btnBase__item:hover:before,
.btnBase__item:hover::after{
	right: 15px;
}
@media screen and (max-width:812px){
	.btnArea{
		padding-top: 20px;
	}
	a.btnBase__item{
		max-width: 300px;
		padding: 20px 55px 20px 20px;
		font-size: 1.6rem;
	}
	.btnBase__item::before{
		width: 25px;
		right: 18px;
	}
	.btnBase__item::after{
		width: 8px;
		right: 18px;
		transform: translateY(calc(50% - 4px)) rotate(45deg);
	}
	/* hover */
	.btnBase__item:hover:before,
	.btnBase__item:hover::after{
		right: 18px;
	}
}

/* tit */
.cmn__titMainArea{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0;
	position: relative;
}
[class^="cmn__titMain"]{
	font-weight: var(--fw-bold);
	text-align: center;
	z-index: 2;
}
[class^="cmn__titMain"] .en{
	font-size: 9.0rem;
	font-family: var(--ff-en);
	color: var(--c-main);
}
[class^="cmn__titMain"] .jp{
	display: block;
	font-size: 1.8rem;
}
.cmn__titMainImg{
	height: 180px;
	margin-top: -160px;
	z-index: 1;
}
@media screen and (max-width:812px){
	.cmn__titMainArea{
		padding: 20px 0 50px;
	}
	[class^="cmn__titMain"] .en{
		font-size: 5.5rem;
	}
	[class^="cmn__titMain"] .jp{
		font-size: 1.3rem;
	}
	.cmn__titMainImg{
		height: 120px;
		margin-top: -105px;
	}
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 75px;
	padding: 0 20px;
	position: relative;
}
.header__logo{
	width: 150px;
}
@media screen and (max-width:812px){
	#header{
		height: 60px;
	}
	.header__logo{
		width: 120px;
	}
}

/* gNav
==================================== */
#gNav{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 75px;
	height: 75px;
	background-color: var(--c-wh);
	position: fixed;
	top: 0;
	right: 0;
	transition: opacity 0.2s;
	cursor: pointer;
	z-index: 1000;
}
[class^="gNav__line"]{
	display:block;
	width: 25px;
	height:1px;
	background-color: var(--c-main);
	transition: transform 0.2s, display 0.2s;
}
/* hover */
#gNav:hover{
	opacity: 0.7;
}
/* close */
#gNav.active [class^="gNav__line"]{
	position: absolute;
}
#gNav.active .gNav__line01{
	transform:rotate(45deg);
}
#gNav.active .gNav__line02{
	display: none;
}
#gNav.active .gNav__line03{
	transform:rotate(-45deg);
}

#gNav__wrapper{
	display: none;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
#gNav__area{
	display: none;
	position:fixed;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:100;
}
#gNav__area::-webkit-scrollbar {
	display:none;
}
#gNav__overlay{
	display: none;
	width:100%;
	height:100%;
	background-color: rgba(214,218,226,0.5);
	position:absolute;
	top:0;
	left:0;
	opacity: 0.98;
	z-index: 99;
	cursor: zoom-out;
}
.gNav__list{
	display: flex;
	flex-direction: column;
	width: 700px;
}
.gNav__list li{
	border-bottom: 1px solid var(--bgc-accent);
}
.gNav__list li:last-of-type{
	border: none;
}
a.gNav__btn{
	display: flex;
	justify-content: center;
	padding: 30px 0;
	font-family: var(--ff-min);
	font-size: 2.5rem;
}
.gNav__listSub{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}
.gNav__listSub li{
	width: calc((100% - 30px)/3);
}
a.gNav__btn-sub{
	display: block;
	padding: 15px 10px;
	font-size: 1.3rem;
	font-weight: var(--fw-bold);
	color: var(--c-wh);
	text-align: center;
	background-color: var(--c-accent);
}
.gNav__listSub li:last-of-type a.gNav__btn-sub{
	background-color: #004080;
}
@media screen and (max-width:812px){
	#gNav{
		width: 60px;
		height: 60px;
	}
	[class^="gNav__line"]{
		width: 20px;
	}
	#gNav__area{
		width: 100%;
		padding: 20px;
	}
	@media (orientation: landscape){
		#gNav__area{
			height: 100%;
			overflow-y: scroll;
			-ms-overflow-style: none;
			scrollbar-width: none;
		}
	}
	.gNav__list{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	a.gNav__btn{
		padding: 25px 0;
		font-size: 2.0rem;
	}
	.gNav__listSub{
		gap: 10px;
		max-width: 500px;
		margin: 15px auto 0;
	}
	.gNav__listSub li{
		width:100%;
	}
	a.gNav__btn-sub{
		padding: 12px;
		font-size: 1.3rem;
	}
}


/*
	subNav
-----------------------------------------------------------------------------------------------*/
[class^="subNav__area"]{
	display: flex;
	position: absolute;
	right: 120px;
	z-index: 10;
}
.subNav__areaTop{
	top: 0;
}
.subNav__areaBtm{
	top: -37px;
}
a[class^="subNav__btn0"]{
	display: inline-block;
	padding: 12px 25px 12px 12px;
	font-size: 1.3rem;
	font-weight: var(--bold);
	color: var(--c-wh);
	line-height: 1.0;
	border-radius: 0 0 5px 5px;
	position: relative;
}
.subNav__areaBtm [class^="subNav__btn"]{
	border-radius: 5px 5px 0 0;
}
[class^="subNav__btn"]::after{
	content:' ';
	display:block;
	width:6px;
	height:6px;
	border-top:2px solid var(--c-wh);
	border-right:2px solid var(--c-wh);
	transform:translateY(-50%) rotate(45deg);
	transform-origin:0 0;
	position:absolute;
	top:45%;
	right:8px;
}
.subNav__btn01{
	background-color: #004080;
}
@media screen and (max-width:812px){
	[class^="subNav"]{
		display: none;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	background: url("../images/bg_kv.png") no-repeat top center / cover;
	position: relative;
}
.kv__ctsArea{
	display: flex;
	justify-content: space-between;
	align-items: end;
	width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
.kv__txtArea{
	margin: 60px -13% 80px 0;
	position: relative;
	z-index: 10;
}
.kv__logo{
	width: 600px;
	margin-bottom: 50px;
}
.kv__catch{
	margin-left: 30px;
	margin-bottom: 15px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	position: relative;
}
.kv__catch span{
	display: inline-block;
	position: relative;
	z-index: 0;
}
.kv__catch span::after{
	content: "";
	width: 80%;
	height: 80%;
	background-color: var(--c-wh);
	position: absolute;
	top: 7px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.kv__txt{
	margin-left: 30px;
	line-height: var(--lh-tall);
}
.kv__swiper{
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	#kv{
		background: url("../images/bg_kv.png") no-repeat top center / cover;
		position: relative;
	}
	.kv__ctsArea{
		justify-content: space-between;
		align-items: end;
		flex-direction: column;
		width: 100%;
		max-width: 500px;
		padding: 20px 20px 0;
	}
	.kv__txtArea{
		width: 100%;
		margin: 0;
	}
	.kv__logo{
		width: 100%;
		margin-bottom: 20px;
	}
	.kv__catch{
		margin-left: 0;
		margin-bottom: 0;
		font-size: 1.8rem;
		text-align: center;
	}
	.kv__catch span::after{
		top: 4px;
	}
	.kv__txt{
		display: none;
		margin-left: 0;
		font-size: 1.4rem;
		line-height: var(--lh-normal);
	}
	.kv__swiper{
		width: 100%;
		margin-top: 10px;
	}
}

/* バナー
==================================== */
a.kv__bnr{
	display: inline-flex;
	align-items: center;
	height: 90px;
	padding: 20px 80px 20px 20px;
	color: var(--c-wh);
	background-color: var(--c-main);
	position: absolute;
	right: 0;
	bottom: -45px;
	z-index: 10;
}
a.kv__bnr::before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid var(--c-wh);
	border-right: 1px solid var(--c-wh);
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%) rotate(45deg);
	transition: right 0.2s;
}
/* hover */
a.kv__bnr:hover{
	opacity: 1.0;
}
a.kv__bnr:hover:before{
	right: 17px;
}
@media screen and (max-width:812px){
	a.kv__bnr{
		height: 60px;
		padding: 10px 50px 10px 15px;
		font-size: 1.3rem;
		bottom: -30px;
	}
	a.kv__bnr::before{
		width: 8px;
		height: 8px;
		right: 15px;
	}
	/* hover */
	a.kv__bnr:hover:before{
		right: 15px;
	}
}


/* 動画観るボタン
==================================== */
a.kv__bnrMovie{
	display: inline-flex;
	height: 130px;
	position:fixed;
	right: 6px;
	bottom: 12px;
	z-index: 1000;
}
/* hover */
a.kv__bnrMovie:hover{
	opacity: 0.7;
}




/*
	クリエイティブノズル一覧
-----------------------------------------------------------------------------------------------*/
#product{
	position: relative;
}
.product__box{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 80px;
}
.product__tit{
	margin-bottom: 30px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	font-weight: var(--fw-bold);
	text-align: left;
}
.product__txt{
	font-size: 1.6rem;
	text-align: left;
	line-height: var(--lh-tall);
}
.product__moviebox{
	margin-bottom: 40px;
	position: relative;
}
.product__movie--imgTit{
	position: absolute;
	width: 270px;
	z-index: 2;
	top: -60px;
	left: 25px;
}
.product__movieLink{
	position: relative;
	width: 520px;
	display: block;
	z-index: 1;
	overflow: hidden;
}
.product__movieLink .product__movie--img{
	transition: 0.3s;
}
.product__movieLink:hover .product__movie--img{
	transform:scale(1.1,1.1);
	opacity: 0.6;
}
.product__movieLink:after {
    content: '';
    width: 100px;
    height: 100px;
    background: url(../images/img_movie_icon.svg) no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%,-50%);
    z-index: 2;
}
.product__movietxt{
	font-size: 1.2rem;
	font-weight: var(--fw-light);
	margin-top: 2px;
}
.product__sup{
	font-size: 1.2rem;
	vertical-align: top;
}
.product__notes{
	font-size: 1.4rem;
	color: var(--bgc-accent);
}
.product__logo{
	width: 105%;
	max-width: 1250px;
	opacity: 0.1;
	position: absolute;
	left: 50%;
	bottom: -2%;
	transform: translateX(-50%);
	z-index: -1;
}
@media screen and (max-width:812px){
	.product__box{
		display: block;
		margin-bottom: 60px;
	}
	.product__tit{
		margin-bottom: 20px;
		font-size: 2.0rem;
		text-align: center;
	}
	.product__txt{
		padding-bottom: 60px;
		font-size: 1.5rem;
		text-align: left;
	}
	.product__notes{
		font-size: 1.3rem;
	}
	.product__logo{
		width: 102%;
		max-width: 550px;
	}
	.product__movie--imgTit{
		width: 250px;
		top: -50px;
		left: 50%;
		transform: translateX(-50%);
	}
	.product__movieLink{
		width: 100%;
	}
	.product__movieLink:after {
		width: 30%;
		height: 30%;
	}
}

/* list
==================================== */
.productOlist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 90px;
	counter-reset: number 0;
}
.productOlist__item{
	width: 160px;
}
.productOlist__tit{
	margin-bottom: 15px;
	font-size: 1.6rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	text-align: center;
}
.productOlist__tit::before{
	content: counter(number, decimal-leading-zero);
	counter-increment: number 1;
	margin-right: 15px;
	font-weight: var(--fw-black);
}
.productOlist__img{
	transform: rotate(-335deg);
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
@media screen and (max-width:812px){
	.productOlist{
		gap: 50px 40px;
	}
	.productOlist__item{
		width: calc((100% - 60px)/2);
		max-width: 150px;
	}
	.productOlist__tit{
		font-size: 1.4rem;
	}
	.productOlist__img{
		max-width: 120px;
		margin: 0 auto;
	}
}


/*
	ラインナップ
-----------------------------------------------------------------------------------------------*/
#lineup{
	position: relative;
}
.lineup__area{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
}
@media screen and (max-width:812px){
	.lineup__area{
		width: 100%;
		max-width: 500px;
		padding: 80px 0;
		gap: 50px;
	}
}

/* 見出し
==================================== */
[class^="midashi0"]{
	margin-left: 10%;
}
.midashi__tit{
	margin-bottom: 10px;
	font-family: var(--ff-min);
	font-size: 2.8rem;
	font-weight: var(--fw-bold);
}
.midashi__tit span{
	display: inline-block;
	position: relative;
}
.midashi__tit span::before,
.midashi__tit span::after{
	content: "“";
	font-size: 6.0rem;
	font-weight: var(--fw-bold);
	line-height: var(--lh-none);
	opacity: 0.2;
	position: absolute;
}
.midashi__tit span::before{
	top: 0;
	left: -3.5rem;
}
.midashi__tit span::after{
	right: -3.5rem;
	bottom: 0;
	transform: rotate(-180deg);
}
/* シンプルなオペレーション */
.midashi03{
	width: 100%;
	margin: 10% 0 0 10%;
}
@media screen and (max-width:812px){
	[class^="midashi0"]{
		margin: 0 40px;
	}
	.midashi__tit{
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
	.midashi__tit span::before,
	.midashi__tit span::after{
		font-size: 4.0rem;
	}
	.midashi__tit span::before{
		left: -2.2rem;
	}
	.midashi__tit span::after{
		right: -2.2rem;
	}
	/* シンプルなオペレーション */
	.midashi03{
		margin: 0 40px;
	}
}

/* 盛り付けイメージ
==================================== */
[class^="plating__wrap"]{
	width: 450px;
}
.plating__imgArea{
	position: relative;
}
.plating__imgArea::before{
	content: "";
	width: 100%;
	height: 90%;
	background: url("../images/bg_platingImg.png") no-repeat top center / cover;
	position: absolute;
	bottom: 0;
	z-index: -1;
}
.plating__num{
	font-family: var(--ff-en);
	font-size: 13.0rem;
	color: var(--c-main);
	line-height: var(--lh-none);
	position: absolute;
	top: 0;
	left: -8%;
}
.plating__imgSub{
	width: 130px;
	transform: rotate(-335deg);
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: absolute;
	right: -4%;
	bottom: -4%;
}
.plating__name{
	padding-top: 20px;
	font-size: 1.7rem;
	font-weight: var(--fw-bold);
	font-style: italic;
	text-align: center;
}
.plating__name span{
	font-size: 1.3rem;
	font-weight: var(--fw-medium);
	font-style: normal;
	color: var(--bgc-accent);
}
/* 01 */
.plating__wrap01{
	margin: 0 5% 0 0;
}
/* 02 */
.plating__wrap02{
	margin: -35% 0 0 5%;
}
.plating__wrap02 .plating__num{
	left: auto;
	right: -6%;
}
/* 03 */
.plating__wrap03{
	margin: 6% 10% 0 0;
}
.plating__wrap03 .plating__num{
	top: 15%;
	left: auto;
	right: -8%;
}
.plating__wrap03 .plating__imgSub{
	right: auto;
	left: -6%;
}
/* 04 */
.plating__wrap04{
	margin: 10% 5% 0 0;
}
/* 05 */
.plating__wrap05{
	width: 600px;
	margin: -42% 0 0 5%;
}
.plating__wrap05 .plating__num{
	top: -2%;
	left: -6%;
}
.plating__wrap05 .plating__imgArea::before{
	width: 93%;
	height: 90%;
}
.plating__wrap05 .plating__imgSub{
	right: auto;
	left: -8%;
}
/* 06 */
.plating__wrap06{
	width: 650px;
	margin-left: calc(100% - 650px);
}
.plating__wrap06 .plating__num{
	top: -2%;
	left: auto;
	right: 5%;
}
.plating__wrap06 .plating__imgSub{
	right: auto;
	left: -5%;
}
/* 07 */
.plating__wrap07{
	margin: -40% 0 0 0;
}
.plating__wrap07 .plating__num{
	left: auto;
	right: -8%;
}
/* 08 */
.plating__wrap08{
	margin: -25% 10% 0 calc(90% - 450px);
}
.plating__wrap08 .plating__num{
	left: auto;
	right: -8%;
}
/* 09 */
.plating__wrap09{
	margin: -20% 0 0 5%;
}
.plating__wrap09 .plating__num{
	top: -8%;
	left: auto;
	right: 3%;
}
/* 10 */
.plating__wrap10{
	margin: 10% 5% 0 0;
}
.plating__wrap10 .plating__num{
	top: -5%;
	left: 2%;
}
/* 11 */
.plating__wrap11{
	width: 500px;
	margin-top: -22%;
}
.plating__wrap11 .plating__num{
	left: 15%;
}
/* 12 */
.plating__wrap12{
	margin: 8% 10% 0 0;
}
.plating__wrap12 .plating__num{
	left: -15%;
}
@media screen and (max-width:812px){
	[class^="plating__wrap"]{
		width: 280px;
	}
	.plating__num{
		font-size: 8.0rem;
		left: 4%;
	}
	.plating__imgSub{
		width: 100px;
		right: -8%;
		bottom: -4%;
	}
	.plating__name{
		padding-top: 15px;
		font-size: 1.4rem;
	}
	.plating__name span{
		font-size: 1.2rem;
	}
	/* 01 */
	.plating__wrap01{
		margin: 0;
	}
	/* 02 */
	.plating__wrap02{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap02 .plating__num{
		right: 4%;
	}
	.plating__wrap02 .plating__imgSub{
		left: -8%;
	}
	/* 03 */
	.plating__wrap03{
		margin: 0;
	}
	.plating__wrap03 .plating__imgSub{
		left: auto;
		right: -8%;
	}
	/* 04 */
	.plating__wrap04{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap04 .plating__imgSub{
		left: -8%;
		right: auto;
	}
	/* 05 */
	.plating__wrap05{
		width: 100%;
		margin: 0 20px;
	}
	.plating__wrap05 .plating__num{
		top: -2%;
		left: 3%;
	}
	.plating__wrap05 .plating__imgSub{
		left: -3%;
		bottom: -9%;
	}
	/* 06 */
	.plating__wrap06{
		width: 100%;
		margin-left: 0;
	}
	.plating__wrap06 .plating__num{
		top: -5%;
	}
	.plating__wrap06 .plating__imgSub{
		left: 3%;
		bottom: -10%;
	}
	/* 07 */
	.plating__wrap07{
		margin: 0;
	}
	/* 08 */
	.plating__wrap08{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap08 .plating__num{
		left: -8%;
		right: auto;
	}
	.plating__wrap08 .plating__imgSub{
		left: -8%;
		right: auto;
	}
	/* 09 */
	.plating__wrap09{
		margin: 0;
	}
	.plating__wrap09 .plating__num{
		top: -6%;
	}
	/* 10 */
	.plating__wrap10{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap10 .plating__num{
		top: -3%;
	}
	.plating__wrap10 .plating__imgSub{
		right: auto;
		left: -10%;
	}
	/* 11 */
	.plating__wrap11{
		width: 300px;
		margin-top: 0;
	}
	/* 12 */
	.plating__wrap12{
		margin: 0 0 0 calc(100% - 280px);
	}
	.plating__wrap12 .plating__num{
		left: 4%;
	}
	.plating__wrap12 .plating__imgSub{
		left: -8%;
	}
}
.bnr_ar img{
	width: 500px;
	margin: -50px auto 100px auto;
	display: block;
}
@media screen and (max-width:812px){
	.bnr_ar img{
		width: 90%;
		margin: -50px auto 50px auto;
	}
}

/*
	導入に関するご案内
-----------------------------------------------------------------------------------------------*/
#guide{
	background-color: var(--bgc-main);
}
.guide__tit{
	margin-bottom: 30px;
	padding-bottom: 10px;
	font-family: var(--ff-min);
	font-size: 3.0rem;
	text-align: center;
	border-bottom: 1px solid;
}
.guide__txt{
	text-align: center;
}

.guide__cmnTit{
	margin-bottom: 30px;
	font-family: var(--ff-min);
	font-size: 2.5rem;
	text-align: center;
}
@media screen and (max-width:812px){
	.guide__tit{
		margin-bottom: 20px;
		padding-bottom: 10px;
		font-size: 2.0rem;
	}
	.guide__txt{
		text-align: left;
	}
	
	.guide__cmnTit{
		margin-bottom: 15px;
		font-size: 2.0rem;
	}
}


/* 導入フロー
==================================== */
#flow{
	margin-top: 80px;
}
.flowOlist{
	display: flex;
	justify-content: center;
	gap: 50px;
	counter-reset: number 0;
}
.flowOlist__item{
	width: 300px;
	background-color: var(--c-wh);
	position: relative;
}
.flowOlist__item::after{
	content: "";
	width: 10px;
	height: 20px;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	background: var(--bgc-accent);
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
}
.flowOlist__item:last-of-type:after{
	display: none;
}
.flowOlist__tit{
	padding: 15px;
	font-size: 1.7rem;
	color: var(--c-wh);
	text-align: center;
	background-color: var(--bgc-accent);
	position: relative;
}
.flowOlist__tit::before{
	content: counter(number);
	counter-increment: number 1;
	font-family: var(--ff-en);
	font-size: 5.0rem;
	color: var(--c-main);
	font-weight: var(--fw-black);
	position: absolute;
	top: -40px;
	left: 15px;
}
.flowOlist__txt{
	padding: 20px 30px;
	font-size: 1.5rem;
}
@media screen and (max-width:812px){
	#flow{
		margin-top: 50px;
	}
	.flowOlist{
		flex-direction: column;
		gap: 40px;
	}
	.flowOlist__item{
		width: 100%;
	}
	.flowOlist__item::after{
		width: 20px;
		height: 10px;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		top: auto;
		right: 50%;
		bottom: -25px;
		transform: translateY(0) translateX(50%);
	}
	.flowOlist__tit{
		padding: 10px;
		font-size: 1.5rem;
	}
	.flowOlist__tit::before{
		font-size: 4.0rem;
		top: -35px;
	}
	.flowOlist__txt{
		padding: 20px;
		font-size: 1.4rem;
	}
}

/* 対象機種と専用フロントセット
==================================== */
#freezer{
	margin-top: 80px;
}
.freezer__ctsArea{
	padding: 60px;
	background-color: var(--c-wh);
}
.freezerList{
	display: flex;
	gap: 30px;
}
.freezerList__item{
	width: calc((100% - 60px)/3);
}
.freezerList__ctsArea{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	margin-bottom: 20px;
}
.freezerList__img{
	height: 200px;
}
.freezerList__txt{
	font-size: 1.6rem;
	font-weight: var(--fw-bold);
	color: var(--c-main);
}
.freezerList__caption{
	margin-top: 10px;
	font-size: 1.3rem;
	text-align: center;
}
@media screen and (max-width:812px){
	#freezer{
		margin-top: 50px;
	}
	.freezer__ctsArea{
		padding: 0;
		background-color: transparent;
	}
	.freezerList{
		flex-direction: column;
		gap: 20px;
	}
	.freezerList__item{
		width: 100%;
		padding: 20px;
		background-color: var(--c-wh);
	}
	.freezerList__ctsArea{
		gap: 15px;
		margin-bottom: 10px;
	}
	.freezerList__caption{
		margin-top: 5px;
	}
}

/* 注釈
==================================== */
.listNotes{
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
	padding-left: 1.4rem;
}
.listNotes__item{
	font-size: 1.4rem;
	text-indent: -1.4rem;
	line-height: var(--lh-small);
	position: relative;
}
.listNotes__item::before{
	content: "※";
}

/*
	事業者の方へ
-----------------------------------------------------------------------------------------------*/
.business__tit{
	margin-bottom: 20px;
	font-family: var(--ff-min);
	font-size: 2.5rem;
	text-align: center;
}
.business__txt{
	text-align: center;
}
@media screen and (max-width:812px){
	.business__tit{
		margin-bottom: 10px;
		font-size: 2.0rem;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 30px;
	color: var(--c-wh);
	background-color: var(--c-main);
	position: relative;
}
#footer > [class^="footer__"]{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.footer__btm{
	flex-direction: row-reverse;
}
/* テキストリンク */
a.footer__txtLink{
	padding-left: 20px;
	color: var(--c-wh);
	position: relative;
}
.footer__txtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--c-wh);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.footer__txtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--c-bk);
	border-right: 1px solid var(--c-bk);
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%) rotate(45deg);
}
.footer__copyright{
	font-size: 1.2rem;
}
/* リスト */
#footer__list{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
#footer__list li{
	padding-left: 15px;
	font-size: 1.3rem;
	position: relative;
}
#footer__list li::after{
	content:'|';
	position: absolute;
	left: 0;
}
#footer__list li a{
	color: var(--c-wh);
	text-decoration: underline;
}
#footer__list li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
#footer__list li:first-of-type::after{
	content: none;
}
@media screen and (max-width:812px){
	#footer{
		gap: 15px;
	}
	#footer > [class^="footer__"]{
		justify-content: center;
		flex-direction: column;
		gap: 15px;
	}
	/* リスト */
	#footer__list{
		justify-content: center;
	}
	#footer__list li:first-of-type{
		padding-left: 0;
	}
}