@charset "utf-8";

*,*::before,*::after{box-sizing:border-box;}
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd{margin:0;}
ul,ol{list-style:none;padding:0;}
a{color:inherit;text-decoration:inherit;text-decoration-skip-ink:auto;}
img,svg,video,iframe{vertical-align:middle;}
img,video{max-width:100%;}
input,button,textarea,select{font:inherit;}
@media (prefers-reduced-motion:reduce){*{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}}
html {
	/*scroll-behavior: smooth;*/
}
body {
	color: black;
	font-size: 14px;
	line-height: 2;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3", sans-serif;
	font-weight: 400;
	letter-spacing: .05em;
	font-feature-settings: "pkna";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
body.isFixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
figure img {
	max-width: 100%;
}
@media screen and (max-width: 1024px) {
	.v-dt { display: none; }
}
@media screen and (max-width: 767px) {
	.v-dt2 { display: none; }
}
@media screen and (min-width: 768px) {
	.v-mb2 { display: none; }
}
@media screen and (min-width: 1025px) {
	.v-mb { display: none; }
}
button:focus {
	outline: transparent;
}

.logo {
	font-size: 11px;
	line-height: 1;
	font-family: "Vollkorn", serif;
	font-weight: 400;
	text-align: center;
}
.logo img {
	margin-bottom: 1em;
}

#windowData {
	z-index: 100;
	position: fixed;
	top: 8px;
	left: 8px;
	margin-top: 72px;
	padding: 16px;
	max-width: calc(100% - 48px);
	background: rgba(255,255,255,.8);
}
#windowData dl {
	display: flex;
	flex-wrap: wrap;
}
#windowData dt {
	flex-basis: 7em;
	color: red;
}
#windowData dd {
	flex-basis: calc(100% - 8em);
}
#windowData span {
	color: gray;
}

/**
 * ボタン
 * -------------------------------------------------- */
.o-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	max-width: 100%;
	height: 54px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 3px;
	color: white;
	white-space: nowrap;
	background: linear-gradient(to right, #87cbee, #7f86bc);
}
.o-button.is-lock {
	pointer-events: none;
}
@media (hover: hover) {
	.o-button {
		position: relative;
		color: #0091A8;
		background: none;
	}
	.o-button::before {
		content: "";
		border: 1px solid currentcolor;
	}
	.o-button::before,
	.o-button::after {
		position: absolute;
		top: -1px;
		left: -1px;
		width: calc(100% + 2px);
		height: calc(100% + 2px);
		border-radius: inherit;
	}
	.o-button::after {
		content: attr(data-text);
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
		background: linear-gradient(to right, #87cbee, #7f86bc);
		transition: opacity .2s;
	}
	.o-button:hover::after {
		opacity: 0;
	}
}

/**
 * 閉じるボタン
 * -------------------------------------------------- */
.o-close {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	position: absolute;
	top: 6px;
	right: 6px;
	width: 30px;
	height: 30px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 30px;
	background: radial-gradient(circle farthest-side, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
}
.o-close::before,
.o-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 8px;
	width: 14px;
	border-top: 1px solid currentcolor;
}
.o-close::before {
	transform: rotate(-45deg);
}
.o-close::after {
	transform: rotate(45deg);
}

/**
 * header
 * -------------------------------------------------- */
.l-header {
	z-index: 4;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-header .logo a {
	display: block;
}
@media screen and (max-width: 1024px) {
	.l-header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 72px;
	}
	.l-header.is-hide {
		transform: translateY(-72px);
	}
	.l-header::before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border-bottom: 1px solid #dadada;
		background: white;
	}
	.l-header .logo {
		z-index: 5;
		width: 143px;
		height: 44px;
		padding-top: 4px;
	}
	.l-header.is-menuOpened::before {
		transform: translateY(-100%);
	}
	.l-header.is-anim::before {
		transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
	}
}
@media screen and (max-width: 374px) {
	.l-header .logo {
		width: 120px;
	}
}
@media screen and (min-width: 1025px) {
	.l-header {
		width: 100%;
		height: 0;
	}
	.l-header:not(.-underlay) {
		transform: translateY(25px);
	}
	.l-header.is-hide {
		transform: translateY(-96px);
	}
	.l-header::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 70px;
		background: rgba(255,255,255,.9);
		transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.l-header:not(.-underlay)::before {
		opacity: 0;
		transform: translateY(-100%) translateY(-25px);
	}
	.l-header 
	.c-menu_button {
		display: none;
	}
	.l-header .logo {
		position: absolute;
		top: 15px;
		left: 40px;
	}
}
@media screen and (min-width: 1200px) {
	.l-header .logo {
		left: 72px;
	}
}

/**
 * footer
 * -------------------------------------------------- */
.l-footer {
	padding: 48px 20px 40px;
}
.l-footer .c-sns {
	justify-content: center;
}
.l-footer .c-sns a {
	color: #8c8c8c;
}
.l-footer .c-link {
	display: flex;
	flex-wrap: wrap;
	font-size: 10px;
	line-height: 1;
}
.l-footer .c-link a {
	display: block;
	padding: 8px 10px;
}
.l-footer .security {
	display: flex;
	align-items: center;
	margin-left: auto;
}
.l-footer .security a {
	display: block;
}
.l-footer .security .j {
	width: 85px;
}
.l-footer .security .n {
	width: 64px;
	margin-left: 12px;
}
.l-footer .security .p {
	width: 42px;
	margin-left: 13px;
}
.l-footer .copyright {
	color: #8c8c8c;
	font-size: 10px;
}
.l-footer .copyright small {
	font-size: inherit;
}
@media screen and (max-width: 1024px) {
	.l-footer {
		text-align: center;
	}
	.l-main:not(.p-home) + .l-footer {
		margin-top: 64px;
	}
	.l-footer .c-sns {
		margin-top: 24px;
	}
	.l-footer .c-link {
		justify-content: center;
		margin-top: 20px;
	}
	.l-footer .security {
		justify-content: center;
	}
	.l-footer .security,
	.l-footer .copyright {
		margin-top: 16px;
	}
}
@media screen and (min-width: 481px) {
	.l-footer .c-link {
		font-size: 12px;
	}
}
@media screen and (min-width: 768px) {
	.l-footer {
		margin-top: 16px;
	}
}
@media screen and (min-width: 1025px) {
	.l-footer {
		display: -ms-grid;
		display: grid;
		-ms-grid-rows: (auto)[2];
		-ms-grid-columns: 203px 180px 1fr;
		grid-template: repeat(2, auto) / 203px 180px 1fr;
		margin-top: 112px;
		padding: 48px 58px 40px 68px;
	}
	.l-footer .logo {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
	}
	.l-footer .logo img {
		width: 206px;
	}
	.l-footer .c-sns {
		-ms-grid-row: 1;
		-ms-grid-column: 2;
		grid-area: 1 / 2;
		align-self: flex-end;
		margin-bottom: 4px;
	}
	.l-footer .c-link {
		-ms-grid-row: 1;
		-ms-grid-column: 3;
		grid-area: 1 / 3;
		justify-content: flex-end;
		align-self: flex-start;
	}
	.l-footer .c-link a {
		padding: 6px 10px;
	}
	.l-footer .security {
		-ms-grid-row: 2;
		-ms-grid-column: 3;
		grid-area: 2 / 3;
		align-self: flex-end;
		margin-top: 16px;
		text-align: right;
	}
	.l-footer .copyright {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-area: 2 / 1 / 3 / 3;
		align-self: flex-end;
	}
}
@media all and (-ms-high-contrast: none) and (min-width: 768px) {
	.l-footer .copyright {
		margin-top: 38px;
	}
}
/* inview */
.l-footer.js-inview:not(.is-inview) .logo,
.l-footer.js-inview:not(.is-inview) .c-sns li,
.l-footer.js-inview:not(.is-inview) .c-link li,
.l-footer.js-inview:not(.is-inview) .security a,
.l-footer.js-inview:not(.is-inview) .copyright {
	opacity: 0;
	transform: translateY(24px);
}
.l-footer.js-inview.is-ivanim .logo,
.l-footer.js-inview.is-ivanim .c-sns li,
.l-footer.js-inview.is-ivanim .c-link li,
.l-footer.js-inview.is-ivanim .security a,
.l-footer.js-inview.is-ivanim .copyright {
	transition: opacity 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-footer.js-inview.is-ivanim.is-inview .copyright { transition-delay: .1s; }
.l-footer.js-inview.is-ivanim.is-inview .c-sns li:nth-child(1) { transition-delay: .1s; }
.l-footer.js-inview.is-ivanim.is-inview .c-sns li:nth-child(2) { transition-delay: .2s; }
.l-footer.js-inview.is-ivanim.is-inview .c-sns li:nth-child(3) { transition-delay: .3s; }
.l-footer.js-inview.is-ivanim.is-inview .c-link li:nth-child(1) { transition-delay: .2s; }
.l-footer.js-inview.is-ivanim.is-inview .c-link li:nth-child(2) { transition-delay: .3s; }
.l-footer.js-inview.is-ivanim.is-inview .c-link li:nth-child(3) { transition-delay: .4s; }
.l-footer.js-inview.is-ivanim.is-inview .c-link li:nth-child(4) { transition-delay: .5s; }
.l-footer.js-inview.is-ivanim.is-inview .security a:nth-child(1) { transition-delay: .3s; }
.l-footer.js-inview.is-ivanim.is-inview .security a:nth-child(2) { transition-delay: .4s; }
.l-footer.js-inview.is-ivanim.is-inview .security a:nth-child(3) { transition-delay: .5s; }

/**
 * menu
 * -------------------------------------------------- */
.c-menu {
	font-family: "Vollkorn", serif;
	letter-spacing: .2em;
}
@media screen and (max-width: 1024px) {
	.l-menu {
		z-index: 3;
		position: fixed;
		top: 0;
		left: 0;
		overflow: auto;
		width: 100%;
		height: 100vh;
		padding: 96px 34px 34px;
		background: url(../img/bg_mb.jpg) center / cover no-repeat;
	}
	.l-menu:not(.is-active) {
		pointer-events: none;
		opacity: 0;
		transform: translateY(-8px);
	}
	.l-menu.is-anim:not(.is-active) {
		transform: translateY(8px);
	}
	.l-menu.is-anim {
		transition: opacity .4s, transform .4s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.c-menu.-desktop {
		display: none;
	}
	.c-menu.-primary {
		font-size: 20px;
	}
	.c-menu.-primary > li {
		overflow: hidden;
		margin-top: 16px;
	}
	.c-menu.-primary > li.is-anim {
		transition: height .4s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.c-menu.-primary > li > a {
		display: block;
		position: relative;
		padding: 4px 0;
	}
	.c-menu.-primary .c-acc_head::after {
		width: 8px;
		height: 8px;
		border-right: 1px solid currentcolor;
		border-bottom: 1px solid currentcolor;
		transform: rotate(45deg);
	}
	.c-menu.-primary .is-active > .c-acc_head::after {
		transform: rotateX(180deg) rotateZ(45deg);
	}
	.c-menu.-secondary {
		padding-left: 8px;
		font-size: 12px;
		font-family: "Noto Serif JP", serif;
	}
	.c-menu.-secondary li:nth-child(n+2) {
		margin-top: 8px;
		line-height: 1.6;
	}
	.c-menu.-secondary a {
		display: inline-block;
	}
}
@media screen and (min-width: 1025px) {
	.l-menu {
		display: none;
	}
	.c-menu.-desktop {
		display: flex;
		position: absolute;
		top: 15px;
		left: 224px;
		font-size: 12px;
	}
	.c-menu.-desktop a {
		display: block;
		padding: 10px 12px;
	}
	.c-menu.-desktop a:not([href]) {
		position: relative;
	}
	.c-menu.-desktop a:not([href])::after {
		content: "";
		position: absolute;
		top: calc(50% + .5em + 2px);
		left: 20px;
		width: calc(100% - 40px);
		border-bottom: 1px solid currentcolor;
	}
}
@media screen and (min-width: 1200px) {
	.c-menu.-desktop {
		left: 292px;
	}
	.c-menu.-desktop a {
		padding: 10px 20px;
	}
}

/**
 * SNS
 * -------------------------------------------------- */
.c-sns {
	display: flex;
	align-items: center;
}
.c-sns li:not(:first-child) {
	margin-left: 16px;
}
.l-menu .c-sns {
	margin-top: 64px;
}

/**
 * userTool
 * -------------------------------------------------- */
.c-userTool {
	z-index: 5;
	position: fixed;
	top: 0;
	right: 0;
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.c-menu_button,
.c-login_button,
.c-cart_button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 12px;
	font-family: "Vollkorn", serif;
	letter-spacing: .2em;
	white-space: nowrap;
}
.c-login_button .ico,
.c-cart_button .ico {
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	vertical-align: middle;
}
.c-cart_orderNum {
	pointer-events: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	margin-left: 8px;
	border: 1px solid currentcolor;
	border-radius: 30px;
	font-size: 11px;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0;
}
.c-cart_orderNum.is-attention::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	border: 1px solid currentcolor;
	border-radius: inherit;
	animation: attention .6s both;
}
@keyframes attention {
	from { transform: scale(1); opacity: 1; }
	to { transform: scale(1.6); opacity: 0; }
}
@media screen and (max-width: 1024px) {
	.c-userTool {
		width: 100%;
	}
	.c-userTool.is-hide {
		transform: translateY(-72px);
	}
	.c-menu_button,
	.c-login_button,
	.c-cart_button {
		position: absolute;
	}
	.c-menu_button {
		display: flex;
		top: 20px;
		left: 29px;
		width: 30px;
		height: 30px;
	}
	.c-menu_button::before,
	.c-menu_button::after {
		content: "";
	}
	.c-menu_button .bar,
	.c-menu_button::before,
	.c-menu_button::after {
		position: absolute;
		top: 50%;
		left: 1px;
		width: 28px;
		border-top: 1px solid currentcolor;
	}
	.c-menu_button::before {
		animation: closeBefore .4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
	.c-menu_button::after {
		animation: closeAfter .4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
	.c-menu_button.is-active .bar {
		transform: scaleX(0);
	}
	.c-menu_button.is-active::before {
		animation: openBefore .4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
	.c-menu_button.is-active::after {
		animation: openAfter .4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
	.c-menu_button.is-anim .bar {
		transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.c-login_button,
	.c-cart_button {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 40px;
		height: 48px;
	}
	.c-login_button {
		top: 16px;
		right: 72px;
	}
	.c-login_button .ico {
		width: 30px;
		height: 30px;
		stroke-width: .6;
	}
	.c-cart_button {
		top: 16px;
		right: 20px;
	}
	.c-cart_button .ico {
		display: none;
	}
	.c-login_label,
	.c-cart_label {
		font-size: 10px;
	}
	.c-login_label {
		letter-spacing: .1em;
	}
	.c-cart_label {
		order: 1;
		letter-spacing: .16em;
	}
	.c-cart_orderNum {
		margin: 0;
	}
	@keyframes openBefore {
		0% { transform: translateY(-9px); }
		50% { transform: none; }
		100% { transform: rotate(-45deg); }
	}
	@keyframes openAfter {
		0% { transform: translateY(9px); }
		50% { transform: none; }
		100% { transform: rotate(45deg); }
	}
	@keyframes closeBefore {
		100% { transform: translateY(-9px); }
		50% { transform: none; }
		0% { transform: rotate(-45deg); }
	}
	@keyframes closeAfter {
		100% { transform: translateY(9px); }
		50% { transform: none; }
		0% { transform: rotate(45deg); }
	}
}
@media screen and (max-width: 480px) {
	.c-login_label,
	.c-cart_label {
		transform: scale(.8);
	}
	.c-login_button {
		right: 60px;
	}
	.c-cart_button {
		right: 16px;
	}
}
@media screen and (max-width: 374px) {
	.c-login_button {
		right: 52px;
	}
	.c-cart_button {
		right: 12px;
	}
}
@media screen and (min-width: 1025px) {
	.c-userTool {
		top: 15px;
		right: 24px;
		display: flex;
	}
	.c-userTool:not(.-underlay) {
		transform: translateY(25px);
	}
	.c-userTool.is-hide {
		transform: translateY(-96px);
	}
	.c-menu_button {
		display: none;
	}
	.c-login_button,
	.c-cart_button {
		padding: 7px 12px;
	}
	.c-login_button .ico,
	.c-cart_button .ico {
		margin-right: 8px;
	}
	.c-login_button .ico,
	.c-cart_button .ico,
	.c-cart_orderNum {
		position: relative;
		top: -.2em;
	}
	.c-cart_orderNum {
		margin-left: 1em;
	}
}
@media screen and (min-width: 1200px) {
	.c-userTool {
		right: 52px;
	}
	.c-login_button,
	.c-cart_button {
		padding: 7px 20px;
	}
}

/**
 * 個数 ± UI
 * -------------------------------------------------- */
.o-orderCount {
	display: flex;
	align-items: center;
}
.o-orderCount .count {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}
.o-orderCount .count[type="number"] { 
	-moz-appearance: textfield;
}
.o-orderCount .count::-webkit-outer-spin-button,
.o-orderCount .count::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.o-orderCount .count.-dn,
.o-orderCount .count.-up {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #c4c4c4;
	border-radius: 30px;
}
.c-cart_list .o-orderCount .count.-dn,
.c-cart_list .o-orderCount .count.-up {
	border-color: currentcolor;
}
.o-orderCount .count.-dn {
	order: -1;
}
.o-orderCount .count:active {
	transform: translateY(1px);
}
.o-orderCount .count .ico {
	pointer-events: none;
	fill: none;
	stroke: currentcolor;
}
.o-orderCount .count.-num {
	pointer-events: none;
	width: 2em;
	padding: 0 8px;
	box-sizing: content-box;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.c-cart_list .o-orderCount .count.-dn,
	.c-cart_list .o-orderCount .count.-up {
		width: 24px;
		height: 24px;
	}
}
@media screen and (max-width: 480px) {
	.o-orderCount .count.-num {
		padding: 0 2px;
	}
}

/**
 * cart
 * -------------------------------------------------- */
.l-cart {
	z-index: 6;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
}
.l-cart:not(.is-open) {
	pointer-events: none;
}
.l-cart_container {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	width: 100%;
	max-width: 478px;
	height: 100%;
	padding: 120px 68px 80px 68px;
	background: #cae8e8
}
.l-cart:not(.is-open) .l-cart_container {
	transform: translateX(100%);
}
.l-cart.is-anim .l-cart_container {
	transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 1024px) {
	.l-cart_container {
		padding-top: 96px;
		padding-bottom: 112px;
	}
}
@media screen and (max-height: 480px) {
	.l-cart_container {
		padding-top: 80px;
		overflow: auto;
	}
}
@media screen and (max-width: 480px) {
	.l-cart_container {
		padding-right: 32px;
		padding-left: 32px;
	}
}
@media screen and (max-width: 374px) {
	.l-cart_container {
		padding-right: 20px;
		padding-left: 20px;
	}
}

/* YOUR CART */
.c-cart_title {
	position: absolute;
	top: 28px;
	left: 34px;
	font-size: 18px;
	line-height: 1;
	font-family: "Vollkorn", serif;
	font-weight: 400;
	letter-spacing: .2em;
}
.c-cart_title .ico {
	position: relative;
	top: -.2em;
	width: 26px;
	height: 26px;
	margin-right: .5em;
	fill: none;
	stroke: currentcolor;
}
@media screen and (min-width: 1025px) {
	.c-cart_title {
		top: 45px;
	}
}

/* 商品一覧 */
.c-cart_content {
	flex-grow: 1;
	min-height: 240px;
	overflow: auto;
}
.c-cart_list li {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 38px;
}
.c-cart_thumb {
	flex-basis: 48px;
	min-width: 48px;
}
.c-cart_item {
	flex-basis: calc(100% - 53px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-left: 12px;
}
.c-cart_item .name {
	flex-basis: 100%;
		margin-bottom: 4px;
}
.c-cart_item .category {
	flex-basis: 54px;
	width: 54px;
	margin-left: auto;
	padding: 2px;
	border: 1px solid currentcolor;
	font-size: 11px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: .1em;
	text-align: center;
}
.c-cart_item .price {
	min-width: 4em;
	margin-left: .5em;
	line-height: 1;
	font-weight: 500;
	text-align: right;
}
.c-cart_list .is-remove {
	pointer-events: none;
	overflow: hidden;
	margin-bottom: 0;
	opacity: 0;
}
.c-cart_list .is-anim {
	transition-property: height, opacity, margin-bottom;
	transition-duration: .4s;
	transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1), ease;
	transition-delay: .2s, 0s;
}
@media screen and (min-width: 1025px) {
	.c-cart_thumb {
		flex-basis: 53px;
		min-width: 53px;
	}
	.c-cart_item {
		flex-basis: calc(100% - 53px);
		display: flex;
		margin-left: 16px;
	}
	.c-cart_item .name {
		margin-bottom: 8px;
	}
}

/* There is nothing in the cart. */
.c-cart_list::after {
	content: "There is nothing in the cart.";
	display: block;
	padding: 20px;
	letter-spacing: .2em;
	text-align: center;
	background: rgba(255,255,255,.4);
	transition: opacity .4s;
}
.c-cart_list:not(:empty)::after {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	clip: rect(0 0 0 0);
	opacity: 0;
}

/* 小計 */
.c-cart_total {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 1em 0;
	border-top: 1px solid currentcolor;
}
.c-cart_total dt {
	flex-grow: 1;
	text-align: center;
}
.c-cart_total dd {
	text-align: right;
}

/* Check Out */
.c-cart_submit {
	width: 100%;
	min-height: 54px;
	margin-top: 8px;
}

/* close */
.l-cart > .c-cart_button {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(202,232,232,.1);
}
.l-cart:not(.is-open) > .c-cart_button {
	opacity: 0;
}
.l-cart.is-anim > .c-cart_button {
	transition: opacity .4s;
}
.l-cart_container .c-cart_button {
	display: flex;
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	padding: 9px;
	box-sizing: content-box;
}
.l-cart_container .c-cart_button::before,
.l-cart_container .c-cart_button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(50% - 14px);
	width: 28px;
	border-top: 1px solid currentcolor;
	transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-cart.is-open .l-cart_container .c-cart_button::before,
.l-cart.is-open .l-cart_container .c-cart_button::after {
	transition-delay: .2s;
}
.l-cart.is-open .l-cart_container .c-cart_button::before {
	transform: rotate(-45deg);
}
.l-cart.is-open .l-cart_container .c-cart_button::after {
	transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
	.l-cart_container .c-cart_button {
		top: 30px;
	}
}

/**
 * 初めてのご利用の方は、定期便がお得
 * -------------------------------------------------- */
.c-followMemo {
	display: flex;
	z-index: 2;
	position: absolute;
	box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.c-followMemo.is-follow {
	position: fixed;
}
.c-followMemo_text {
	flex-basis: calc(100% - 105px);
	width: calc(100% - 105px);
	padding: 20px 28px;
	background: white;
}
.c-followMemo_text p {
	font-size: 13px;
	line-height: 1.5;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	white-space: nowrap;
}
.c-followMemo_text p span {
	display: block;
}
.c-followMemo_text p span:last-child {
	text-align: right;
}
.c-followMemo .o-button {
	width: 100%;
	height: 36px;
	margin-top: 8px;
	font-size: 12px;
}
.c-followMemo_image {
	flex-basis: 105px;
	width: 105px;
}

@media screen and (max-width: 1024px) {
	.c-followMemo.is-follow {
		bottom: 20px;
	}
}
@media screen and (max-width: 767px) {
	.c-followMemo {
		left: 12px;
		width: calc(100% - 24px);
	}
	.c-followMemo.is-hide {
		opacity: 0;
		transform: translateY(100%) translateY(20px);
	}
	.c-followMemo.is-anim {
		transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	}
}
@media screen and (max-width: 767px) and (min-width: 420px) {
	.c-followMemo_text {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.c-followMemo_text p span {
		display: inline-block;
	}
}
@media screen and (max-width: 374px) {
	.c-followMemo_text {
		padding: 20px 24px;
	}
	.c-followMemo_text p {
		font-size: 12px;
	}
}
@media screen and (min-width: 768px) {
	.c-followMemo {
		right: 0;
		width: 350px;
		box-shadow: 0 0 30px rgba(0,0,0,.08);
	}
	.c-followMemo.is-hide {
		box-shadow: 0 0 0 rgba(0,0,0,0);
		transform: translateX(100%);
	}
	.c-followMemo.is-anim {
		transition: box-shadow 1s, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	}
}
@media screen and (min-width: 1025px) {
	.c-followMemo.is-follow {
		bottom: 100px;
	}
}

/**
 * loading
 * -------------------------------------------------- */
.o-loading {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width :100%;
	height: 100%;
	background: white;
}
.o-loading.is-loaded {
	pointer-events: none;
	opacity: 0;
}
.o-loading.is-anim {
	transition: opacity .3s;
}
.o-loading.is-anim.is-loaded {
	transition-duration: .6s;
}

/**
 * javascript
 * -------------------------------------------------- */
.js-holder {
	display: none;
	position: absolute;
	clip: rect(0 0 0 0);
	overflow: hidden;
	width: 1px;
	height: 1px;
}
.js-fixed,
.js-fixed .js-sc-slip {
	backface-visibility: hidden;
	will-change: transform;
}
.js-fixed {
	position: fixed;
	width: 100%;
}