@charset "UTF-8";

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
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, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
	font-size:62.5%;
}
body{
	margin:0 auto;
	padding:0;
	font-size:1.5em;
	font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
h1, h2, h3, h4, h5, h6,a{
	line-height:1.2;
}
p{
	line-height: 1.6;
}
ol, ul{
	list-style: none;
}
li{
	line-height:1.4;
}
@media screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width:1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events:none;
	}
}
*,*::before,*::after{
	box-sizing:border-box;
}
img {
	width: 100%;
	border: none;
	vertical-align: top;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a {
	color: #000;
	text-decoration: none;
	transition: color 0.2s, opacity 0.2s;
}
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
	opacity: 0.7;
	text-decoration: none;
}

/* 表示切替 */
.switch {
	visibility: hidden;
}
.sp{
	display:none;
}
@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--cmnBk: #000;
	--cmnWh: #fff;
	--cmnRd: #f00;
	--cmnBl: #004080;
	--cmnBr: #3c2d26;
	--cmnBeg: #f5f0e6;
	--cmnYel: #fff82d;
	--catePk: #ea5c5c;
	--catePl: #a275c9;
	--cateGr: #acc449;
	--cateBeg: #d3aa7d;
	--cateEm: #45c4c4;
	--cateBr: #b77a5c;
	--cateOr: #f9972d;
	--cateBl: #1c94c9;
	--bgYelBeg: #fdfcf5;
	--bgBeg: #f5f0e6;
	--bgLbr: #e2c7a3;
	/* font */
	--en: 'Neonderthaw', cursive;
	--noto: 'Noto Sans JP', sans-serif;
	--light: 300;
	--medium: 500;
	--bold: 700;
}

/* コンテンツ */
#wrapper{
	background-color: var(--bgYelBeg);
	position: relative;
	overflow: hidden;
}
.ctsArea{
	width: 1200px;
	margin: 0 auto;
	padding: 80px 30px;
}
@media screen and (max-width:812px){
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 40px 20px;
	}
}

/* タイトル */
@media screen and (max-width:812px){
}

/* ボタン */
.btnBase{
	display: flex;
	justify-content: center;
	padding: 30px 0 0;
	position: relative;
	z-index: 1;
}
a.btnBase__item{
	display: block;
	width: 390px;
	margin: 0 15px 0 0;
	padding: 25px;
	font-size: 1.8rem;
	font-weight: var(--medium);
	color: var(--cmnWh);
	text-align: center;
	background-color: var(--cmnBr);
	border-radius: 5px;
	filter: drop-shadow(0 0 15px rgba(0,0,0,.1));
	position: relative;
}
a.btnBase__item:hover{
	opacity: 0.7;
}
.btnBase__item::after{
	content: "";
	display:block;
	width:10px;
	height:10px;
	margin:-2px 0 0 0;
	border-top:3px solid var(--cmnWh);
	border-right:3px solid var(--cmnWh);
	transform:translateY(-50%) rotate(45deg);
	transform-origin:0 0;
	position:absolute;
	top:50%;
	right:20px;
}
.btnBase__item:last-of-type{
	margin: 0;
}
@media screen and (max-width:812px){
	.btnBase{
		display: block;
		padding: 25px 0 0;
	}
	a.btnBase__item{
		width: 100%;
		padding: 20px;
		margin: 0 auto 10px auto;
		font-size: 1.6rem;
		filter: drop-shadow(0 0 15px rgba(0,0,0,.1));
	}
	.btnBase__item::after{
		right:15px;
		margin:-2px 0 0 0;
	}
	.btnBase__item:last-of-type{
		margin: 0 auto;
	}
}

/* subNav */
[class^="subNav__area"]{
	display: flex;
	position: absolute;
	right: 80px;
}
.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(--cmnWh);
	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(--cmnWh);
	border-right:2px solid var(--cmnWh);
	transform:translateY(-50%) rotate(45deg);
	transform-origin:0 0;
	position:absolute;
	top:50%;
	right:8px;
}
.subNav__btn01{
	background-color: var(--cmnBl);
}
@media screen and (max-width:812px){
	[class^="subNav"]{
		display: none;
	}
}

/*
	アレルゲン情報一覧リンク
-----------------------------------------------------------------------------------------------*/
.allergyArea{
	padding-top: 5px;
}
a.allergyLink {
    padding: 0 0 0 20px;
	font-size: 1.3rem;
    color: #000;
	text-decoration:underline;
    position: relative;
}
.allergyLink::before {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--cmnBr);
    position: absolute;
    top: 10px;
    transform: translateY(-50%);
    left: 0;
	margin-top: 1px;
}
.allergyLink::after {
    content: "";
    width: 4px;
    height: 4px;
    border-top: 1px solid var(--cmnWh);
    border-right: 1px solid var(--cmnWh);
    position: absolute;
    top: 10px;
    transform: translateY(-50%) rotate(45deg);
    left: 5px;
	margin-top: 1px;
}
/* gNavi用 */
.lineup__listItem.allergy{
	padding: 0 0 20px;
}
.lineup__listItem a.allergyLink {
	font-size: 1.4rem;
}
@media screen and (max-width:812px){
	.lineup__listItem.allergy{
		padding: 5px 0 20px;
	}
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#header{
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 99;
}
.header__logo{
	width: 170px;
	margin: 25px 0 0 25px;
}
@media screen and (max-width:812px){
	.header__logo{
		width: 120px;
		margin: 15px 0 0 15px;
	}
}

/* gNav */
#gNav{
	width: 80px;
	height: 80px;
	border-radius: 0 0 0 5px;
	position: fixed;
	top: 0;
	right: 0;
	transition: opacity 0.2s, background 0.2s;
	cursor: pointer;
	z-index: 100;
}
#gNav.highlight{
	background-color: var(--cmnBr);
}
[class^="gNav__line"]{
	display:block;
	height:3px;
	background-color: var(--cmnWh);
	position:absolute;
	right: 20px;
}
.gNav__line01{
	width: 40px;
	top:30px;
	transition:transform 0.3s;
}
.gNav__line02{
	width: 25px;
	top:45px;
	transition:transform 0.3s, width 0.3s;
}
#gNav:hover .gNav__line02{
	width: 40px;
}
/* キーclose */
#gNav.active{
	background-color: var(--cmnBr);
}
#gNav.active [class^="gNav__line"]{
	top:38px;
	right: 18px;
}
#gNav.active .gNav__line01{
	transform:rotate(45deg);
}
#gNav.active .gNav__line02{
	width: 40px;
	transform:rotate(-45deg);
}
/* gNav_menu */
#gNav__wrapper{
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
}
#gNav__area{
	display: none;
	position: relative;
	z-index: 100;
}
#gNav__overlay{
	display: none;
	width:100%;
	height:100%;
	background: linear-gradient(90deg, rgba(253,252,245,.98) 0%, rgba(253,252,245,.98) 30%, rgba(226,199,163,.98) 30%, rgba(226,199,163,.98) 100%);
	position:absolute;
	top:0;
	left:0;
	z-index: 99;
}
.gNav__menu{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 100vh;
	position: relative;
	overflow-y: scroll;
}
.gNav__menu::-webkit-scrollbar {
	display:none;
}
.gNav__logo{
	width: 32%;
	max-width: 650px;
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
}
.gNav__menu .lineup__list{
	justify-content: center;
	width: 70%;
	padding: 0 10%;
}
.gNav__menu [class^="lineup__listItem"]{
	width: calc((100% - 10px)/2);
}
.gNav__menu [class^="lineup__listItem"]:nth-of-type(2n),
.gNav__menu [class^="lineup__listItem"]:last-of-type{
	margin: 0 0 10px 0;
}
.gNav__menu .btnBase__item{
	width: auto;
	padding: 20px 25px;
	font-size: 1.5rem;
}
.gNav__menu .btnBase__item::after{
	width:8px;
	height:8px;
	border-top:2px solid var(--cmnWh);
	border-right:2px solid var(--cmnWh);
	right:15px;
}
.gNav__menu .lineup__listItem:last-of-type .btnBase__item{
	background-color: var(--cmnBl);
}
@media screen and (max-width:812px){
	#gNav{
		width: 60px;
		height: 60px;
	}
	[class^="gNav__line"]{
		right: 15px;
	}
	.gNav__line01{
		width: 30px;
		top:22px;
	}
	.gNav__line02{
		width: 16px;
		top:35px;
	}
	#gNav:hover .gNav__line02{
		width: 30px;
	}
	/* キーclose */
	#gNav.active [class^="gNav__line"]{
		top:28px;
		right: 14px;
	}
	#gNav.active .gNav__line02{
		width: 30px;
	}
	#gNav__overlay{
		background: rgba(226,199,163,.98);
	}
	.gNav__menu{
		display: block;
	}
	.gNav__logo{
		width: 60%;
		max-width: 300px;
		margin: 0 auto;
		padding: 30px 0 20px;
		position: static;
		top: auto;
		left: auto;
		transform: none;
	}
	.gNav__menu .lineup__list{
		display: block;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		padding: 0 20px 80px;
	}
	.gNav__menu [class^="lineup__listItem"]{
		width: 100%;
	}
	.gNav__menu [class^="lineup__listItem"]:nth-of-type(2n),
	.gNav__menu [class^="lineup__listItem"]:last-of-type{
		margin: 0 0 5px 0;
	}
	.gNav__menu .btnBase__item{
		padding: 15px 25px;
		font-size: 1.4rem;
	}
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kv{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	border-bottom: 10px solid var(--cmnWh);
	position: relative;
}
#kv::before{
	content: "";
	width: 100%;
	height: 50%;
	background: url("../images/bg_kv.png") center center no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
}
.kv__logo{
	width: 42%;
	max-width: 650px;
	position: absolute;
	top: 16%;
	left: 60px;
	z-index: 2;
	filter: drop-shadow(0 0 2px rgba(255,255,255,1.0));
}
.kv__copy{
	writing-mode: vertical-rl;
	position: absolute;
	bottom: 10%;
	left: 11%;
	z-index: 2;
}
.kv__copy span{
	display: inline-block;
	padding: 12px 10px 0;
	font-size: 2.2rem;
	font-weight: var(--bold);
	color: var(--cmnWh);
	line-height: 1.0;
	background-color: var(--cmnBr);
}
.kv__copy span:last-of-type{
	margin-right: 10px;
}
.kv__area{
	width: calc(70%);
	position: relative;
	z-index: 1;
}
.kv__slider{
	border-radius: 0 0 0 30px;
	overflow: hidden;
}
[class^="kv__sliderItem"].slick-slide{
	min-height: 650px;
	background-size: cover;
}
.kv__sliderItem01{
	background: url("../images/img_slider_kv01.png") center center no-repeat;
}
.kv__sliderItem02{
	background: url("../images/img_slider_kv02.png") center center no-repeat;
}
.kv__sliderItem03{
	background: url("../images/img_slider_kv03.png") center center no-repeat;
}
.kv__sliderItem04{
	background: url("../images/img_slider_kv04.png") center center no-repeat;
}
.kv__sliderItem05{
	background: url("../images/img_slider_kv05.png") center center no-repeat;
}
.kv__sliderItem06{
	background: url("../images/img_slider_kv06.png") center center no-repeat;
}
.kv__sliderItem07{
	background: url("../images/img_slider_kv07.png") center center no-repeat;
}
.kv__txt{
	padding: 120px 0 60px 70px;
	font-size: 1.8rem;
	font-weight: var(--bold);
	line-height: 2.2;
	position: relative;
}
.pdct__sliderArea{
	width: 100%;
	position: absolute;
	top: 55%;
	left: 0;
	z-index: 1;
}
.pdct__slider{
	width: 1130px;
}
.pdct__slider .slick-list {
	overflow: inherit;
}
.pdct__sliderItem img{
	max-width: 100%;
	height: auto;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.kv__parts01{
	width: 16%;
	max-width: 250px;
	position: absolute;
	top: -8%;
	left: 18%;
	z-index: 2;
}
.kv__parts02{
	width: 20%;
	max-width: 330px;
	position: absolute;
	top: 8%;
	left: -11%;
}
@media screen and (max-width:812px){
	#kv{
		border-bottom: 5px solid var(--cmnWh);
	}
	#kv::before{
		height: 55%;
	}
	.kv__logo{
		min-width: 300px;
		max-width: 500px;
		top: 15%;
		left: 15px;
	}
	.kv__copy{
		bottom: 10%;
		left: 5%;
	}
	.kv__copy span{
		padding: 10px 6px 0;
		font-size: 1.6rem;
	}
	.kv__copy span:last-of-type{
		margin-right: 5px;
	}
	.kv__area{
		width: calc(85%);
	}
	.kv__slider{
		border-radius: 0 0 0 15px;
	}
	[class^="kv__sliderItem"].slick-slide{
		min-height: 450px;
	}
	.kv__sliderItem01{
		background: url("../images/img_slider_kv01.png") top left 25% no-repeat;
	}
	.kv__sliderItem02{
		background: url("../images/img_slider_kv02.png") center right 38% no-repeat;
	}
	.kv__sliderItem03{
		background: url("../images/img_slider_kv03.png") center right 43% no-repeat;
	}
	.kv__sliderItem04{
		background: url("../images/img_slider_kv04.png") center right 55% no-repeat;
	}
	.kv__sliderItem05{
		background: url("../images/img_slider_kv05.png") center right 25% no-repeat;
	}
	.kv__sliderItem06{
		background: url("../images/img_slider_kv06.png") center right 50% no-repeat;
	}
	.kv__sliderItem07{
		background: url("../images/img_slider_kv07.png") center right 50% no-repeat;
	}
	.kv__txt{
		padding: 40px 20px 30px 40px;
		font-size: 1.5rem;
		line-height: 1.8;
	}
	.pdct__sliderArea{
		top: 400px;
	}
	.pdct__slider{
		width: 515px;
	}
	.pdct__sliderItem img{
		filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	}
	.kv__parts01{
		display: none;
	}
	.kv__parts02{
		width: 39%;
		max-width: 150px;
		left: -100px;
		z-index: 1;
	}
}

/* scroll */
#scroll{
	position: absolute;
	top: 37%;
	left: 30px;
	z-index: 1;
}
.scroll__txt{
	display: inline-block;
	font-size: 1.4rem;
	font-weight: var(--bold);
	color: var(--cmnBr);
	writing-mode: vertical-rl;
	line-height: 1.0;
}
.scroll__bar{
	display: block;
	height: 70px;
	margin: 5px auto 0;
	position: relative;
}
.scroll__bar::before{
	content: "";
	width:5px;
	height:5px;
	border-radius: 50%;
	background-color: var(--cmnBr);
	position: absolute;
	bottom:0;
	left:4px;
	animation: cirle 1.6s ease-out infinite;
}
.scroll__bar::after{
	content: '';
	width: 1px;
	height: 70px;
	background-color: var(--cmnBr);
	position: absolute;
	bottom: 0;
	left: 6px;
}
@keyframes cirle{
	0%{bottom:65px;}
	100%{bottom:-5px;}
}
@media screen and (max-width:812px){
	#scroll{
		top: 32%;
		left: 20px;
	}
	.scroll__txt{
		font-size: 1.2rem;
	}
	.scroll__bar{
		height: 50px;
	}
	.scroll__bar::before{
		width:3px;
		height:3px;
		left:5px;
	}
	.scroll__bar::after{
		height: 50px;
	}
	@keyframes cirle{
		0%{bottom:45px;}
		100%{bottom:-3px;}
	}
}


/*
	アンカーリンク
-----------------------------------------------------------------------------------------------*/
#lineup{
	background-color: var(--bgBeg);
	position: relative;
}
#lineup .ctsArea{
	padding: 60px 30px;
}
.lineup__tit{
	margin-bottom: 30px;
	color: var(--cmnBr);
	text-align: center;
	position: relative;
	z-index: 1;
}
.lineup__titEn{
	display: inline-block;
	font-family: var(--en);
	font-size: 6.0rem;
}
.lineup__titJp{
	display: block;
	font-size: 1.4rem;
	font-weight: var(--bold);
}
.lineup__list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
[class^="lineup__listItem"]{
	width: calc((100% - 30px)/4);
	margin: 0 10px 10px 0;
}
[class^="lineup__listItem"]:nth-of-type(4n){
	margin: 0 0 10px 0;
}
.lineup__btn{
	display: flex;
	align-items: center;
	background-color: var(--cmnWh);
	border-radius: 5px;
	position: relative;
	transition: background 0.2s, color 0.2s, border 0.2s;
}
.lineup__btn::before{
	content: "";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--cmnBr);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 12px;
}
.lineup__btn::after{
	content: "";
	width: 5px;
	height: 5px;
	margin-top: -1px;
	border-top: 1px solid var(--cmnWh);
	border-right: 1px solid var(--cmnWh);
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	right: 20px;
}
/* hover_トッピングソース */
.lineup__listItem01 .lineup__btn::before,
.lineup__listItem01 .lineup__btn:hover{
	background-color: var(--catePk);
}
.lineup__listItem01 .lineup__btn:hover::after{
	border-top: 1px solid var(--catePk);
	border-right: 1px solid var(--catePk);
}
/* hover_デザートフィリング */
.lineup__listItem02 .lineup__btn::before,
.lineup__listItem02 .lineup__btn:hover{
	background-color: var(--catePl);
}
.lineup__listItem02 .lineup__btn:hover::after{
	border-top: 1px solid var(--catePl);
	border-right: 1px solid var(--catePl);
}
/* hover_コーティングソース */
.lineup__listItem03 .lineup__btn::before,
.lineup__listItem03 .lineup__btn:hover{
	background-color: var(--cateGr);
}
.lineup__listItem03 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateGr);
	border-right: 1px solid var(--cateGr);
}
/* hover_カラメルソース */
.lineup__listItem04 .lineup__btn::before,
.lineup__listItem04 .lineup__btn:hover{
	background-color: var(--cateBeg);
}
.lineup__listItem04 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateBeg);
	border-right: 1px solid var(--cateBeg);
}
/* hover_フルブレンドフィリング */
.lineup__listItem05 .lineup__txt{
	letter-spacing: -0.2rem;
}
.lineup__listItem05 .lineup__btn::before,
.lineup__listItem05 .lineup__btn:hover{
	background-color: var(--cateEm);
}
.lineup__listItem05 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateEm);
	border-right: 1px solid var(--cateEm);
}
/* hover_ドライトッピング */
.lineup__listItem06 .lineup__btn::before,
.lineup__listItem06 .lineup__btn:hover{
	background-color: var(--cateBr);
}
.lineup__listItem06 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateBr);
	border-right: 1px solid var(--cateBr);
}
/* hover_焼き菓子類 */
.lineup__listItem07 .lineup__btn::before,
.lineup__listItem07 .lineup__btn:hover{
	background-color: var(--cateOr);
}
.lineup__listItem07 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateOr);
	border-right: 1px solid var(--cateOr);
}
/* hover_ホイップ・その他 */
.lineup__listItem08 .lineup__btn::before,
.lineup__listItem08 .lineup__btn:hover{
	background-color: var(--cateBl);
}
.lineup__listItem08 .lineup__btn:hover::after{
	border-top: 1px solid var(--cateBl);
	border-right: 1px solid var(--cateBl);
}
/* hover_cmn */
.lineup__btn:hover{
	opacity: 1;
}
.lineup__btn:hover .lineup__txt{
	color: var(--cmnWh);
}
.lineup__btn:hover::before{
	background-color: var(--cmnWh);
}
.lineup__ph{
	width: 80px;
}
.lineup__txt{
	width: calc(100% - 80px);
	padding: 0 35px 0 0;
	font-size: 1.6rem;
	font-weight: var(--bold);
	line-height: 1.4;
}
.lineup__txtS{
	display: block;
	font-size: 1.2rem;
}
.lineup__parts01{
	width: 17%;
	max-width: 250px;
	position: absolute;
	top: -37%;
	left: 6%;
}
.lineup__parts02{
	width: 38%;
	position: absolute;
	top: -30%;
	right: -22%;
}
@media screen and (max-width:812px){
	#lineup .ctsArea{
		padding: 30px 20px;
	}
	.lineup__tit{
		margin-bottom: 20px;
	}
	.lineup__titEn{
		font-size: 4.5rem;
	}
	.lineup__titJp{
		font-size: 1.2rem;
	}
	.lineup__list{
		margin-bottom: -5px;
	}
	[class^="lineup__listItem"]{
		width: 100%;
		margin: 0 0 5px 0;
	}
	[class^="lineup__listItem"]:nth-of-type(4n){
		margin: 0 0 5px 0;
	}
	/* hover_フルブレンドフィリング */
	.lineup__listItem05 .lineup__txt{
		letter-spacing: 0;
	}
	.lineup__ph{
		width: 60px;
	}
	.lineup__txt{
		width: calc(100% - 65px);
		font-size: 1.5rem;
	}
	.lineup__txtS{
		font-size: 1.0rem;
	}
	.lineup__parts01{
		width: 30%;
		max-width: 130px;
		top: -12%;
		left: -3%;
	}
	.lineup__parts02{
		width: 60%;
		max-width: 230px;
		top: -8%;
		right: -90px;
	}
}


/*
	商品
-----------------------------------------------------------------------------------------------*/
#product{
	background: url("../images/bg_product.png") center center repeat;
}
#product .ctsArea{
	width: 1140px;
}
.cate__area{
	margin-bottom: 80px;
	position: relative;
	z-index: 1;
}
.cate__area:last-of-type{
	margin-bottom: 0;
}
.cate__tit{
	display: flex;
	align-items: center;
	min-height: 160px;
	padding: 50px;
	font-size: 3.5rem;
	font-weight: var(--bold);
	color: var(--cmnWh);
	border-radius: 5px;
	position: relative;
}
.cate__tit::before{
	content: "";
	position: absolute;
}
.cate__titBtm{
	margin-bottom: 40px;
}
.cate__titArea{
	position: relative;
	z-index: 10;
}
.cate__titS{
	display: block;
	font-size: 1.7rem;
}
.cate__txt{
	width: 75%;
	padding: 30px 0 40px 0;
	font-size: 1.6rem;
	font-weight: var(--bold);
	line-height: 1.8;
}
@media screen and (max-width:812px){
	#product .ctsArea{
		width: 100%;
	}
	.cate__area{
		margin-bottom: 50px;
	}
	.cate__tit{
		min-height: 95px;
		padding: 25px 15px;
		font-size: 2.2rem;
	}
	.cate__titS{
		font-size: 1.4rem;
	}
	.cate__txt{
		width: 100%;
		padding: 20px 0;
		font-size: 1.5rem;
	}
}

.product__area{
	margin-bottom: 60px;
}
.product__area:last-of-type{
	margin-bottom: 0;
}
.product__list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -40px;
}
.product__list > li{
	width: calc((100% - 120px)/4);
	margin: 0 40px 40px 0;
	font-family: var(--noto);
}
.product__list > li:nth-of-type(4n){
	margin: 0 0 40px 0;
}
.product__list .btnBase{
	padding-top: 20px;
}
.product__list .btnBase a.btnBase__item{
	width: 85%;
	padding: 15px;
	font-size: 1.4rem;
	filter: none;
}
.product__list .btnBase a.btnBase__item::after {
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--cmnWh);
	border-right: 2px solid var(--cmnWh);
	transform: translateY(-50%) rotate(45deg);
	right: 12px;
}
.product__tit{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 55px;
	/* padding: 12px 0; */
	font-size: 1.8rem;
	font-weight: var(--bold);
	color: var(--cmnBr);
}
.product__subTit{
	margin-bottom: 20px;
	padding-left: 15px;
	font-size: 2.6rem;
	font-weight: var(--bold);
	border-left: 5px solid var(--cmnBk);
}
.product__subTxt{
	margin-bottom: 20px;
}
.product__txt{
	font-size: 1.4rem;
}
.product__cation{
	margin-bottom: 20px;
	font-size: 1.2rem;
}
.product__cation > li{
	padding-left: 15px;
	color: var(--cmnRd);
	letter-spacing: 0.1rem;
	position: relative;
}
.product__cation > li::before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.product__spec{
	margin-top: 15px;
	padding: 10px 0;
	border-top: 2px dotted #666;
	border-bottom: 2px dotted #666;
}
.product__spec > li{
	margin-right: 15px;
	padding-left: 13px;
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	color: #666;
	position: relative;
}
.product__spec > li::before{
	content: '●';
	padding-right: 2px;
	font-size: 1.0rem;
	position: absolute;
	top: 2px;
	left: 0;
}
.product__notes{
	margin-top: 10px;
	font-size: 1.1rem;
	color: #666;
}

/* NEWマーク */
.product__tit .new{
	display: inline-block;
	margin-top: 1px;
	padding: 5px;
	font-size: 1.0rem;
	font-weight: 500;
	color: var(--cmnWh);
	line-height: 1.0;
	letter-spacing: 0.1rem;
	background-color: #e82214;
	border-radius: 2px;
}
@media screen and (max-width:812px){
	.product__list{
		margin-bottom: -40px;
	}
	.product__list > li{
		width: calc((100% - 20px)/2);
		margin: 0 20px 30px 0;
	}
	.product__list > li:nth-of-type(4n){
		margin: 0 20px 30px 0;
	}
	.product__list > li:nth-of-type(2n){
		margin: 0 0 30px 0;
	}
	.product__list > li.left{
		margin: 0 20px 30px 0;
	}
	.product__list > li.right{
		margin: 0 0 30px 0;
	}
	.product__list > li.none{
		display: none;
	}
	.product__list .btnBase{
		padding-top: 15px;
	}
	.product__list .btnBase a.btnBase__item{
		width: 100%;
		padding: 15px 10px;
		font-size: 1.2rem;
	}
	.product__list .btnBase a.btnBase__item::after {
		right: 10px;
	}
	.product__tit{
		min-height: 50px;
		font-size: 1.6rem;
	}
	.product__subTit{
		margin-bottom: 15px;
		padding-left: 10px;
		font-size: 2.0rem;
		border-left: 4px solid var(--cmnBk);
	}

	/* NEWマーク */
	.product__tit .new{
		padding: 4px 5px;
	}
}

/* トッピングソース */
#cateTopping .cate__tit{
	background-color: var(--catePk);
}
#cateTopping .cate__tit::before{
	width: 412px;
	height: 304px;
	background: url("../images/img_cateTopping_kv_pc.png") center center no-repeat;
	background-size: cover;
	top: -34px;
	right: 0;
}
@media screen and (max-width:812px){
	#cateTopping .cate__tit::before{
		width: 130px;
		background: url("../images/img_cateTopping_kv_sp.png") center center no-repeat;
		background-size: cover;
		height: 102px;
		top: -11px;
	}
}
/* デザートフィリング */
#cateDfiling .cate__tit{
	background-color: var(--catePl);
}
#cateDfiling .cate__tit::before{
	width: 356px;
	height: 315px;
	background: url("../images/img_cateDfiling_kv_pc.png") center center no-repeat;
	background-size: cover;
	top: -15px;
	right: 0;
}
@media screen and (max-width:812px){
	#cateDfiling .cate__tit::before{
		width: 136px;
		height: 120px;
		background: url("../images/img_cateDfiling_kv_sp.png") center center no-repeat;
		background-size: cover;
		top: -10px;
	}
}
/* コーティングソース */
#cateCts .cate__tit{
	background-color: var(--cateGr);
}
#cateCts .cate__tit::before{
	width: 320px;
	height: 311px;
	background: url("../images/img_cateCts_kv_pc.png") center center no-repeat;
	background-size: cover;
	right: 30px;
	bottom: -50px;
}
@media screen and (max-width:812px){
	#cateCts .cate__tit::before{
		width: 128px;
		height: 125px;
		background: url("../images/img_cateCts_kv_sp.png") center center no-repeat;
		background-size: cover;
		right: -10px;
		bottom: -20px;
	}
}
/* カラメルソース */
#cateCaramel .cate__tit{
	background-color: var(--cateBeg);
}
#cateCaramel .cate__tit::before{
	width: 346px;
	height: 243px;
	background: url("../images/img_cateCaramel_kv_pc.png") center center no-repeat;
	background-size: cover;
	top: -43px;
	right: 0;
}
@media screen and (max-width:812px){
	#cateCaramel .cate__tit::before{
		width: 157px;
		height: 110px;
		background: url("../images/img_cateCaramel_kv_sp.png") center center no-repeat;
		background-size: cover;
		top: -10px;
		right: -15px;
	}
}
/* フルブレンドフィリング */
#cateFiling .cate__tit{
	background-color: var(--cateEm);
}
#cateFiling .cate__tit::before{
	width: 252px;
	height: 270px;
	background: url("../images/img_cateFiling_kv_pc.png") center center no-repeat;
	background-size: cover;
	right: 20px;
	bottom: -13px;
}
@media screen and (max-width:812px){
	#cateFiling .cate__tit::before{
		width: 110px;
		height: 112px;
		background: url("../images/img_cateFiling_kv_sp.png") center center no-repeat;
		background-size: cover;
		right: -10px;
		bottom: -5px;
	}
}
/* ドライトッピング */
#cateDtp .cate__tit{
	background-color: var(--cateBr);
}
#cateDtp .cate__tit::before{
	width: 284px;
	height: 182px;
	background: url("../images/img_cateDtp_kv_pc.png") center center no-repeat;
	background-size: cover;
	right: 20px;
	bottom: 0;
}
@media screen and (max-width:812px){
	#cateDtp .cate__tit::before{
		width: 157px;
		height: 100px;
		background: url("../images/img_cateDtp_kv_sp.png") center center no-repeat;
		background-size: cover;
		right: -10px;
	}
}
/* 焼き菓子類 */
#cateBake .cate__tit{
	background-color: var(--cateOr);
}
#cateBake .cate__tit::before{
	width: 373px;
	height: 239px;
	background: url("../images/img_cateBake_kv_pc.png") center center no-repeat;
	background-size: cover;
	right: 20px;
	bottom: -13px;
}
#cateBake .product__subTit{
	border-left: 5px solid var(--cateOr);
}
@media screen and (max-width:812px){
	#cateBake .cate__tit::before{
		width: 170px;
		height: 120px;
		background: url("../images/img_cateBake_kv_sp.png") center center no-repeat;
		background-size: cover;
		right: -15px;
		bottom: -6px;
	}
}
/* ホイップ・その他 */
#cateWhip .cate__tit{
	background-color: var(--cateBl);
}
#cateWhip .cate__tit::before{
	width: 337px;
	height: 160px;
	background: url("../images/img_cateWhip_kv_pc.png") center center no-repeat;
	background-size: cover;
	top: 0;
	right: 0;
}
#cateWhip .product__subTit{
	border-left: 5px solid var(--cateBl);
}
@media screen and (max-width:812px){
	#cateWhip .cate__tit::before{
		width: 155px;
		height: 95px;
		background: url("../images/img_cateWhip_kv_sp.png") center left no-repeat;
		background-size: cover;
	}
}

/*
	事業者の方へ
-----------------------------------------------------------------------------------------------*/
#business{
	background-color: var(--bgBeg);
}
#business .ctsArea{
	position: relative;
}
.business__tit{
	text-align: center;
}
.business__tit span{
	display: inline-block;
	margin-bottom: 20px;
	padding: 0 5px;
	font-size: 2.6rem;
	font-weight: var(--bold);
	background: linear-gradient(transparent 65%, #faee3c 0%);
}
.business__txt{
	font-size: 1.8rem;
	font-weight: var(--bold);
	text-align: center;
	position: relative;
	z-index: 1;
}
.business__parts01{
	width: 27%;
	position: absolute;
	top: -12%;
	left: -13%;
}
.business__parts02{
	width: 18%;
	position: absolute;
	top: 50%;
	right: -10%;
	transform: translateY(-50%);
}
@media screen and (max-width:812px){
	#business .ctsArea{
		padding: 40px 40px 90px;
	}
	.business__tit span{
		margin-bottom: 15px;
		font-size: 2.2rem;
	}
	.business__txt{
		font-size: 1.5rem;
		text-align: left;
	}
	.business__parts01{
		width: 40%;
		top: -10%;
	}
	.business__parts02{
		width: 31%;
		right: -13%;
	}
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footer{
	padding: 30px;
	background-color: var(--bgLbr);
	position: relative;
}
.footer__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.footer__txtLink{
	display: inline-block;
	padding: 0 0 0 20px;
	position: relative;
}
.footer__txtLink::before{
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: var(--cmnBk);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}
.footer__txtLink::after{
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid var(--cmnWh);
	border-right: 1px solid var(--cmnWh);
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	left: 5px;
}
.footer__btm{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.footer__list{
	display: flex;
}
.footer__list li{
	margin: 0 15px 0 0;
	padding: 0 20px 0 0;
	font-size: 1.3rem;
	position: relative;
}
.footer__list li:last-of-type{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.footer__list li::after{
	content:'|';
	position: absolute;
	right: 0;
}
.footer__list li a{
	text-decoration: underline;
}
.footer__list li a:hover{
	opacity: 1.0;
	text-decoration: none;
}
.footer__list li:last-of-type::after{
	content:none;
}
.footer__copyright{
	font-size: 1.3rem;
}
@media screen and (max-width:812px){
	#footer{
		padding: 20px;
	}
	.footer__top{
		display: block;
		margin-bottom: 15px;
		text-align: center;
	}
	.footer__txtLink{
		margin-top: 10px;
	}
	.footer__btm{
		display: block;
		text-align: center;
	}
	.footer__list{
		flex-wrap: wrap;
		justify-content: center;
	}
	.footer__list li{
		margin: 0 15px 5px 0;
	}
	.footer__copyright{
		margin-top: 15px;
	}
}


/*
	pageTop
-----------------------------------------------------------------------------------------------*/
a#pageTop{
	display: flex;
	justify-content: center;
	align-items: center;
	width:70px;
	height:70px;
	margin-bottom: 45px;
	background-color: rgba(60,45,38,.95);
	border-radius: 50%;
	filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
	position: absolute;
	right: 30px;
	z-index: 98;
}
a#pageTop::after{
	content:' ';
	display:block;
	width:12px;
	height:12px;
	border-top: 3px solid var(--cmnWh);
	border-left: 3px solid var(--cmnWh);
	transform:rotate(45deg);
}
@media screen and (max-width:812px){
	a#pageTop{
		width:60px;
		height:60px;
		margin: 0 0 15px 0;
		right: 15px;
	}
	a#pageTop::after{
		width:10px;
		height:10px;
	}
}