@charset "utf-8";

@font-face{
	font-family: 'AmaitorteSugarpowder';
	font-weight: normal;
	font-style: normal;
	src:
		url(type/amaitortesugarpowder.woff?30) format('woff'),
		url(type/amaitortesugarpowder.ttf?30) format('truetype');
}
@font-face{
	font-family: 'AmaitorteSugarpowder';
	font-weight: bold;
	font-style: normal;
	src:
		url(type/amaitortesugarpowder.woff?30) format('woff'),
		url(type/amaitortesugarpowder.ttf?30) format('truetype');
}

html,
body{
	margin: 0;
	padding: 0;
	min-height: 100%;
}
html{
	background-color: #fff;
	color: #000;
	font-size: 18px;
	line-height: 1.6;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	-webkit-text-size-adjust: 100%;
}
html.macintosh{
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
body{
	/* 固定の変数 */
	--keycolour: #ce202f;
	--outline: rgba(206,32,47,0.5);
	
	min-width: 320px;
}
@media (max-width:864px){
	html{
		font-size: 2.083333333333333vw;
	}
}
@media (max-width:720px){
	html{
		font-size: 15px;
	}
}
@media print{
	html{
		width: 1138px;
	}
}

/* ベーシックな装飾とレイアウトのセット */
header, nav, section, article, aside, footer{
	display: block;
}
img{
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
a img{
	text-decoration: none;
	border: none;
}
a[href]{
	color: inherit;
	text-decoration: underline;
}

*:lang(en){
	font-family: 'Avenir', 'Avenir Next', 'Century Gothic', 'Futura';
}

.js :focus{
	outline: none;
}
.js.tabkeyenabled :focus{
	outline: 3px solid var(--outline);
	outline-offset: 1px;
}

.ib{
	display: inline-block;
	vertical-align: top;
}
.ibnw{
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
}
.nw{
	white-space: nowrap;
}
.invisible{
	opacity: 0;
}

span.findent,
span.findent2,
span.flist,
span.flist2,
small.findent,
small.findent2,
small.flist,
small.flist2{
	display: block;
}
span.findent + br,
span.findent2 + br,
span.flist + br,
span.flist2 + br,
small.findent + br,
small.findent2 + br,
small.flist + br,
small.flist2 + br{
	display: none;
}
.findent{
	margin-left: 1em;
}
.findent2{
	margin-left: 1em;
}
.flist{
	padding-left: 1em;
	text-indent: -1em;
}
.flist2{
	padding-left: 2em;
	text-indent: -2em;
}

@media (min-width:641px){
	.onlyonss{
		display: none !important;
	}
}
@media (max-width:640px){
	.onlyonls{
		display: none !important;
	}
}

.centering{
	text-align: center;
}
.lefting{
	text-align: left;
}
.righting{
	text-align: right;
}

.styledscroll{
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.styledscroll::-webkit-scrollbar{
	-webkit-appearance: none;
	height: 16px;
	background-color: rgba(255,255,255,0.1);
}
.styledscroll::-webkit-scrollbar-thumb{
	border-radius: 99px;
	background-clip: padding-box;
	border-style: solid;
	border-color: transparent;
	border-width: 3px;
	background-color: rgba(0,0,0,0.18);
}
.styledscroll::-webkit-scrollbar-thumb:hover{
	background-color: rgba(0,0,0,0.25);
}

.center	{ text-align: center; }
.left	{ text-align: left; }
.right	{ text-align: right; }
.float_right { float: right; }

.bg_white {background-color: #fff; }
.bg_gray {background-color: #e3e3e3; }

.redalert{
	color: var(--keycolour);
}

input[type="search"]{
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	-ms-appearance: none !important;
	appearance: none !important;
}
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-decoration{
	-webkit-appearance: none !important;
	display: none !important;
}
input[type="search"]::-ms-clear{
	display: none !important;
}

/* ベーシックな装飾とレイアウトのセットここまで */










/* ヘッダ */
#MainHeader{
	margin: 0;
	z-index: 300;
	background-color: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	/* overflow: hidden; */
}
#MainHeader > div{
	max-width: 1686px; /* 52 + 1686 */
	margin: 0 auto;
	padding: 4px 18px;
	min-height: 83px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 18px;
}
@media (max-width:768px){
	#MainHeader > div{
		display: block;
		padding: 0 18px;
	}
}

#MainTitle{
	order: 1;
	margin: 0;
	padding: 4px 0 0;
	position: relative;
	z-index: 2;
	/* max-width: 1138px; */
	background-color: #fff;
}
#MainTitle a{
	display: block;
	margin: 0 -6px;
	font-size: 12px;
	color: transparent;
	width: 98px;
	height: 59px;
	/* position: absolute;
	top: 0;
	left: 18px; */
	
	background-image: url(base/mainlogo.png);
	background-image: -webkit-image-set(
		url(base/mainlogo.png) 2x,
		url(base/mainlogo_3x.png) 3x
	);
	background-image: image-set(
		url(base/mainlogo.png) 2x,
		url(base/mainlogo_3x.png) 3x
	);
	
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	overflow: hidden;
}
@media (max-width:768px){
	#MainTitle{
		margin: 0;
		padding: 8px 0;
	}
	#MainTitle a{
		margin: 0 auto;
		position: static;
	}
}

#MainSearchAndMypage{
	order: 3;
	display: flex;
	justify-content: flex-end;
	margin: 0 0 0 auto;
	padding: 0;
	gap: 18px;
	/* min-height: 60px; */
	align-items: center;
	/* max-width: 1536px;
	max-width: 1138px; */
}

#MainHeaderMypage,
#MainHeaderCart,
#MainHeaderOrg{
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#MainHeaderMypage a,
#MainHeaderCart a,
#MainHeaderOrg a{
	display: block;
	font-size: 10px;
	line-height: 1.25;
	text-decoration: none;
	color: #666;
}
#MainHeaderMypage a:hover,
#MainHeaderCart a:hover,
#MainHeaderOrg a:hover{
	opacity: 0.8;
}
#MainHeaderMypage a:active,
#MainHeaderCart a:active,
#MainHeaderOrg a:active{
	opacity: 1;
	filter: brightness(80%);
}
#MainHeaderMypage a:before,
#MainHeaderCart a:before,
#MainHeaderOrg a:before{
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	
	background-image: url(base/mypage.svg);
	background-repeat: no-repeat;
	background-position: 0% 50%;
	background-size: contain;
	
	overflow: hidden;
	/* color: transparent; */
}
#MainHeaderCart a:before{
	width: 36px;
	background-image: url(base/cart.svg);
}
#MainHeaderOrg a:before{
	background-image: url(base/org.svg);
}
#MainHeaderMypage a span,
#MainHeaderCart a span,
#MainHeaderOrg a span{
	display: block;
}

#MainSearchAndMypage form{
	display: block;
	overflow: hidden;
	margin: 0;
}
#MainSearchAndMypage form p{
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#MainSearchAndMypage form p input{
	-webkit-appearance: none;
	appearance: none;
	vertical-align: middle;
	width: 150px;
	background-color: #fff;
	color: #000;
	font-size: 16px;
	padding: 6px;
	margin: 0;
	border: #818181 1px solid;
	outline: none;
	box-sizing: border-box;
	border-radius: 5px;
	box-shadow: none !important;
	outline: none !important;
}
#MainSearchAndMypage form p input:focus{
	border: var(--keycolour) 1px solid;
}
#MainSearchAndMypage form p button{
	border: none;
	background-color: transparent;
	color: transparent;
	cursor: pointer;
	margin: 0 0 0 4px;
	padding: 0;
	width: 32px;
	flex-shrink: 0;
	height: 32px;
	border-radius: 5px;
	
	background-image: url(base/search.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	
	overflow: hidden;
	font-size: 9px;
	color: transparent;
	outline: none !important;
}
#MainSearchAndMypage form p button:focus{
	background-color: var(--outline);
}
@media (max-width:768px){
	#MainSearchAndMypage{
		display: block;
		margin: 0;
		padding: 0;
		min-height: 0;
	}
	
	#MainHeaderMypage,
	#MainHeaderCart,
	#MainHeaderOrg{
		position: absolute;
		top: 16px;
		right: 0;
		width: 56px;
		margin: 0;
		z-index: 2;
	}
	#MainHeaderCart{
		right: 56px;
	}
	#MainHeaderOrg{
		top: 70px;
	}
	
	#MainHeaderMypage a,
	#MainHeaderCart a,
	#MainHeaderOrg a{
		font-size: 9px;
	}
	#MainHeaderMypage a:before,
	#MainHeaderCart a:before,
	#MainHeaderOrg a:before{
		width: 28px;
		height: 28px;
	}
	
	#MainSearchAndMypage form{
		position: relative;
		z-index: 2;
		margin: 0;
		padding: 0 40px 8px 0;
	}
	#MainSearchAndMypage form p input{
		width: 100%;
		max-width: none;
		flex-grow: 1;
	}
}

#MainHeaderButton{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	margin: env(safe-area-inset-top) env(safe-area-inset-right) 0 0;
	z-index: 500;
	
	width: 58px;
	height: 70px;
	margin: 0;
	padding: 0;
	outline-offset: -3px;
	
	color: transparent;
	overflow: hidden;
	
	background-color: transparent;
	background-image: none;
	border: none;
	cursor: pointer;
}
@media (max-width:768px){
	#MainHeaderButton{
		display: block;
	}
}
#MainHeaderButton[aria-expanded="true"]{
	display: block;
}
#MainHeaderButton:before,
#MainHeaderButton:after{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 32px;
	height: 32px;
	margin: auto;
	background-image: url(base/nav.svg);
	
	transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}
#MainHeaderButton:after{
	background-image: url(base/navclose.svg);
	opacity: 0;
	transform: rotate(-45deg);
}
#MainHeaderButton[aria-expanded="true"]:before{
	transform: rotate(135deg);
	opacity: 0;
}
#MainHeaderButton[aria-expanded="true"]:after{
	transform: rotate(90deg);
	opacity: 1;
}

#MainHeaderShadow{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 498;
	background-color: rgba(242,242,242,0.75);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease-out;
}
#MainHeaderShadow.on{
	/* opacity: 1; */
	pointer-events: auto;
}

#MainHeaderMenu{
	display: block;
	position: fixed;
	z-index: 499;
	
	background-color: #fff;
	color: #000;
	box-shadow: -40vw 0 rgba(242,242,242,0.75);
	
	padding: 9px 9px 120px;
	top: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	width: 80%;
	box-sizing: border-box;
	
	transition: opacity 0.25s ease-out, transform 0.25s ease-out;
	transform: translate(30px, 0);
	opacity: 0;
	pointer-events: none;
	
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#MainHeaderMenu.disabled{
	display: none;
}
#MainHeaderMenu:before{
	content: "";
	display: block;
	height: env(safe-area-inset-top);
}
#MainHeaderMenu:after{
	content: "";
	display: block;
	height: env(safe-area-inset-bottom);
}
#MainHeaderButton[aria-expanded="true"] + #MainHeaderMenu{
	transform: none;
	opacity: 1;
	pointer-events: auto;
}
#MainHeaderMenu ul{
	list-style: none;
	margin: 0 auto;
	padding: 0 9px;
	text-align: left;
	font-weight: bold;
}
#MainHeaderMenu ul ul{
	border-left: 4px solid #ccc;
	padding: 0 0 0 1em;
	font-size: 90%;
	font-weight: normal;
}
#MainHeaderMenu ul li{
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ccc;
}
#MainHeaderMenu ul ul li:last-child{
	border-bottom: 0;
}
#MainHeaderMenu ul li.footermenu{
	display: none;
}
#MainHeaderMenu ul li + li{
}
#MainHeaderMenu ul li.productcat li{
	display: inline-block;
	vertical-align: top;
	border: none;
	padding: 0 1.5em 0 0;
	font-size: 12px;
}
#MainHeaderMenu ul li a{
	display: flex;
	align-items: center;
	justify-content: space-between;
	
	text-decoration: none;
	white-space: nowrap;
	margin: 0;
	padding: 0;
	line-height: 1.25;
	position: relative;
	
	outline-offset: -3px;
	
	color: #999;
	padding: 0.5em 0;
}
#MainHeaderMenu ul li a[href]{
	color: inherit;
}
.mouseUI #MainHeaderMenu ul li a[href]:hover,
.mouseUI #MainHeaderMenu ul li a[href]:active,
#MainHeaderMenu ul li + li.mmselected > a,
#MainHeaderMenu ul ul li.mmselectedself > a{
	color: var(--keycolour);
}
.mouseUI #MainHeaderMenu ul li a[href]:active{
	filter: brightness(80%);
}
#MainHeaderMenu ul li a[href]:after{
	font-family: 'AmaitorteSugarpowder';
	content: "＞";
	display: inline-block;
	vertical-align: top;
	margin: 0.15em 0 0 0.25em;
}
#MainHeaderMenu ul li.snsicon a{
	padding-left: 1.6em;
}
#MainHeaderMenu ul li.snsicon a:before{
	content: "";
	position: absolute;
	top: 0;
	left: -0.5em;
	bottom: 0;
	width: 2.2em;
	display: block;
	background-size: 70% auto;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(base/sns_x.svg?v2);
}
#MainHeaderMenu ul li.snsicon.facebook a:before{
	background-size: 60% auto;
	background-position: 50% 40%;
	background-image: url(base/sns_facebook.svg);
}
#MainHeaderMenu ul li.snsicon.youtube a:before{
	background-image: url(base/sns_youtube.svg);
}
#MainHeaderMenu ul li.snsicon.instagram a:before{
	background-size: 50% auto;
	background-image: url(base/sns_instagram.svg);
}
#MainHeaderMenu ul li.snsicon.roomclip a:before{
	background-size: 48% auto;
	background-image: url(base/sns_roomclip.svg);
}
#MainHeaderMenu ul li.snsicon.blog a:before{
	background-size: 50% auto;
	background-image: url(base/sns_blog.svg);
}
#MainHeaderMenu ul li.snsicon.blog2 a:before{
	background-size: 90% auto;
	background-image: url(base/sns_blog2.svg?v2);
}
#MainHeaderMenu ul li.snsicon.note a:before{
	background-size: 90% auto;
	background-image: url(base/sns_note_v2.svg);
}
@media (max-width:768px){
	#MainHeaderMenu{
		min-width: 80%;
		font-size: 16px;
	}
}

#LSMenu{
	flex-grow: 1;
	order: 2;
	/* border-top: 1px solid #808080; */
}
#LSMenu > ul{
	margin: 0;
	padding: 0 2em;
	/* max-width: 60%; */
	display: flex;
	/* justify-content: space-around; */
	gap: 2em;
	list-style: none;
	align-items: center;
}
#LSMenu ul li{
	/* flex-grow: 1; */
	margin: 0;
	padding: 0;
	position: relative;
}
#LSMenu ul li.notonlsmenu,
#LSMenu ul li.footermenu{
	display: none;
}
#LSMenu ul ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	padding: 0;
	margin: -5px 0 0 0;
	opacity: 0;
	pointer-events: none;
	background-color: #fff;
	box-shadow: 0 5px 20px rgba(0,0,0,0.25);
	padding: 0;
	z-index: 999;
	transition: opacity 0.2s ease-out;
	border-radius: 9px;
	font-size: 0.85em;
	white-space: nowrap;
	text-align: left;
	max-width: none;
	list-style: none;
}
#LSMenu ul ul li:after{
	content: "";
	border-top: 1px solid #eee;
	display: block;
}
#LSMenu ul ul li:last-child:after{
	display: none;
}
#LSMenu ul ul ul{
	top: 0;
	left: 100%;
	margin: 0 0 0 -4px;
	font-size: 1em;
}
#LSMenu ul ul{
	display: block;
}
.mouseUI #LSMenu ul a:hover + ul,
.mouseUI #LSMenu ul li:hover > a + ul,
.mouseUI #LSMenu ul ul:hover,
.js.tabkeyenabled.mouseUI #LSMenu ul ul:focus-within,
.touchUI #LSMenu ul a.touchhover + ul{
	opacity: 1;
	pointer-events: auto;
}
#LSMenu ul li a{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 3px;
	outline-offset: -3px;
	
	text-decoration: none;
	line-height: 1.4;
	text-align: center;
	padding: 15px 0;
}
.mouseUI #LSMenu ul li a[href]:hover,
.mouseUI #LSMenu ul li a[href]:active,
#LSMenu ul li + li.mmselected > a,
#LSMenu ul ul li.mmselectedself > a{
	color: var(--keycolour);
}
.mouseUI #LSMenu ul li a[href]:active{
	filter: brightness(80%);
}
#LSMenu ul ul li a{
	padding: 10px;
	flex-direction: row;
	justify-content: flex-start;
}
#LSMenu ul ul li a:after{
	display: block;
	/* font-family: 'AmaitorteSugarpowder'; */
	content: "...";
	padding: 0 0 0 0.5em;
	margin: 0 0 0 auto;
}
#LSMenu ul ul li a[href]:last-child:after{
	display: none;
}
#LSMenu > ul > li > a span{
	display: block;
	font-size: 0.75em;
	line-height: 1.3;
}
#LSMenu > ul > li > a span:before{
	content: "";
	display: block;
	font-size: 1.5em;
	font-family: 'Avenir', 'Avenir Next', 'Century Gothic', 'Futura';
	font-weight: bold;
}
#LSMenu > ul > li.menuhome > a span:before{
	content: "HOME";
}
#LSMenu > ul > li.menuproducts > a span:before{
	content: "STORE";
}
#LSMenu > ul > li.menulearn > a span:before{
	content: "LEARN";
}
#LSMenu > ul > li.menusupport > a span:before{
	content: "SUPPORT";
}
#LSMenu > ul > li.menucontents > a span:before{
	content: "CONTENTS";
}
#LSMenu ul ul li.snsicon a{
	padding-left: 3em;
}
#LSMenu ul ul li.snsicon a:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3em;
	display: block;
	background-size: 70% auto;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(base/sns_x.svg?v2);
}
#LSMenu ul ul li.snsicon.facebook a:before{
	background-size: 60% auto;
	background-position: 50% 40%;
	background-image: url(base/sns_facebook.svg);
}
#LSMenu ul ul li.snsicon.youtube a:before{
	background-image: url(base/sns_youtube.svg);
}
#LSMenu ul ul li.snsicon.instagram a:before{
	background-size: 50% auto;
	background-image: url(base/sns_instagram.svg);
}
#LSMenu ul ul li.snsicon.roomclip a:before{
	background-size: 48% auto;
	background-image: url(base/sns_roomclip.svg);
}
#LSMenu ul ul li.snsicon.blog a:before{
	background-size: 50% auto;
	background-image: url(base/sns_blog.svg);
}
#LSMenu ul ul li.snsicon.blog2 a:before{
	background-size: 90% auto;
	background-image: url(base/sns_blog2.svg?v2);
}
#LSMenu ul ul li.snsicon.note a:before{
	background-size: 90% auto;
	background-image: url(base/sns_note_v2.svg);
}
@media (max-width:1200px){
	#LSMenu > ul{
		padding: 0;
		gap: 1em;
	}
	#LSMenu ul li.menuhome{
		display: none;
	}
}
@media (max-width:980px){
	#LSMenu > ul{
		font-size: 0.8em;
	}
}
@media (max-width:768px){
	#LSMenu{
		display: none;
	}
}
/* ヘッダここまで */









/* グローバルフッタ */
#MainFooter{
	overflow: hidden;
	position: relative;
	padding: 4em 45px 0;
	margin: 4em auto 0;
	max-width: 1680px;
	background-color: #fff;
}

#MainFooter #SNSList{
	float: right;
	margin: 0;
	padding: 0;
}
#MainFooter #SNSList ul{
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
#MainFooter #SNSList ul li{
	margin: 0;
	padding: 0;
}
#MainFooter #SNSList ul li + li{
	margin-left: 30px;
}
#MainFooter #SNSList ul li a{
	display: block;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	font-size: 9px;
	color: transparent;
	background-color: #fff;
	background-size: 70% 70%;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url(base/sns_x.svg?v2);
	box-shadow: 0 0 0 2px #000 inset;
}
.mouseUI #MainFooter #SNSList ul li a:hover,
.mouseUI #MainFooter #SNSList ul li a:active{
	opacity: 0.7;
}
.mouseUI #MainFooter #SNSList ul li a:active{
	opacity: 1;
	filter: brightness(90%);
}
#MainFooter #SNSList ul li a.facebook{
	background-size: 60% 60%;
	background-position: 50% 40%;
	background-image: url(base/sns_facebook.svg);
}
#MainFooter #SNSList ul li a.youtube{
	background-image: url(base/sns_youtube.svg);
}
#MainFooter #SNSList ul li a.instagram{
	background-size: 50% 50%;
	background-image: url(base/sns_instagram.svg);
}
#MainFooter #SNSList ul li a.roomclip{
	background-size: 48% 48%;
	background-image: url(base/sns_roomclip.svg);
}
#MainFooter #SNSList ul li a.blog{
	background-size: 50% 50%;
	background-image: url(base/sns_blog.svg);
}
#MainFooter #SNSList ul li a.blog2{
	background-size: 90% 90%;
	background-image: url(base/sns_blog2.svg?v2);
}
#MainFooter #SNSList ul li a.note{
	background-size: 90% 90%;
	background-image: url(base/sns_note_v2.svg);
}

#MainFooter #FooterPageList{
	float: left;
	/* font-size: 24px; */
	line-height: 1.5;
	/* color: #808080; */
	/* font-weight: bold; */
}
#MainFooter #FooterPageList ul,
#MainFooter #FooterPageList ul li{
	margin: 0;
	padding: 0;
	list-style: none;
}
#MainFooter #FooterPageList ul li{
	display: none;
}
#MainFooter #FooterPageList ul li.footermenu{
	display: block
}
#MainFooter #FooterPageList ul li.footermenu + li.footermenu{
	margin-top: 0.5em;
}
#MainFooter #FooterPageList ul li a{
	display: block;
	text-decoration: none;
}
.mouseUI #MainFooter #FooterPageList ul li a:hover{
	opacity: 0.7;
}
.mouseUI #MainFooter #FooterPageList ul li a:active{
	opacity: 1;
	filter: brightness(80%);
}
#MainFooter > p{
	clear: both;
	margin: 0;
	padding: 8em 0 1.5em;
	text-align: center;
}
#MainFooter > p small{
	display: block;
	font-size: 12px;
}

@media (max-width:640px){
	#MainFooter #SNSList{
		float: none;
	}
	#MainFooter #SNSList ul{
		justify-content: space-between;
		margin: 0 -2px;
	}
	#MainFooter #SNSList ul li,
	#MainFooter #SNSList ul li + li{
		margin: 0 2px;
		box-sizing: border-box;
	}
	#MainFooter #SNSList ul li a{
		width: 40px;
		height: 40px;
	}
	#MainFooter #FooterPageList{
		font-size: inherit;
		margin: 4em 0 0;
		/* font-size: 18px; */
	}
}







/* トップに戻る */
#PageTop{
	position: fixed;
	margin: 20px;
	bottom: 0;
	right: 0;
	opacity: 1;
	width: 60px;
	transition: opacity 0.25s ease-out;
	z-index: 999999;
}
#PageTop[aria-hidden="true"]{
	opacity: 0;
	pointer-events: none;
}
#PageTop a{
	display: block;
	color: transparent;
	font-size: 6px;
	height: 0;
	padding: 0 0 104.313725490196078%;
	background-image: url(base/top.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
@media (max-width:600px){
	#PageTop{
		width: 40px;
	}
}









/* セクションとブロック */
main,
div.subStandardContent{
	display: block;
	clear: both;
	position: relative;
}
main:before,
main:after,
div.subStandardContent:before,
div.subStandardContent:after{
	content: "";
	display: block;
	clear: both;
}
main#StandardContent,
div.subStandardContent{
	max-width: 1686px;
	padding: 0 18px 2%;
	margin: 18px auto;
}

.ordinarysection{
	display: block;
	clear: both;
	overflow: auto;
	padding: 0 9px;
}
.ordinarysection > div{
	max-width: 1020px;
	margin: 20px auto 10px;
}
.ordinarysection > div > h2{
	margin: 0;
}

#MarumimiUserMyPage #MBTOCartBody,
#MBTOCart #MBTOCartBody{
	--mmouterboxshadow: 0 0 0 1px rgba(0,0,0,0.25);
	margin-top: 18px;
	margin-bottom: 18px;
}






/* 標準のタイトル */
p.standardTitle,
h1.standardTitle,
h2.standardTitle{
	/* color: #808080; */
	margin: 2% 0;
	font-size: 0;
	line-height: 1.5;
	font-weight: bold;
	position: relative;
	z-index: 3;
}
/* p.standardTitle:first-child,
h1.standardTitle:first-child,
h2.standardTitle:first-child{
	margin-top: 0;
} */
p.standardTitle .titleJ,
h1.standardTitle .titleJ,
h2.standardTitle .titleJ{
	display: inline-block;
	font-size: 24px;
}
p.standardTitle .titleE,
h1.standardTitle .titleE,
h2.standardTitle .titleE{
	font-family: 'Avenir', 'Avenir Next', 'Century Gothic', 'Futura';
	border-left: var(--keycolour) 10px solid;
	padding-left: 0.75em;
	margin-left: 0.75em;
	
	display: inline-block;
	font-size: 24px;
}

h2.titleWithIcon,
h3.titleWithIcon{
	margin: 0;
	font-size: 24px;
}
h2.titleWithIcon img,
h3.titleWithIcon img{
	vertical-align: middle;
}

main#StandardContent iframe,
div.subStandardContent iframe{
	max-width: 100%;
}



/* サブメニュー */
.pageSubmenu{
	overflow: hidden;
	padding: 0;
	border-top: 2px dotted #aaa;
	border-bottom: 2px dotted #aaa;
	margin: 0 auto;
}
.pageSubmenu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0;
}
.pageSubmenu ul li{
	display: inline-block;
	vertical-align: top;
	white-space: nowrap;
	font-size: 15px;
	line-height: 1.3;
	padding: 0.25% 2%;
}
.pageSubmenu ul li a{
	display: block;
	color: #444;
	overflow: hidden;
}
.pageSubmenu ul li a img{
	height: 60px;
	width: auto;
	vertical-align: middle;
	float: left;
}
.pageSubmenu ul li a p{
	display: table-cell;
	vertical-align: middle;
	height: 60px;
}













/* ここから下のスタイルは古いページ用なので新しく作るページには使用しないこと！！！！！ */
/* ここから下のスタイルは古いページ用なので新しく作るページには使用しないこと！！！！！ */
/* ここから下のスタイルは古いページ用なので新しく作るページには使用しないこと！！！！！ */
#contents_top{
	clear: both;
	position: relative;
	overflow: hidden;
}

#contents{
	clear: both;
	position: relative;
	overflow: hidden;
	max-width: 960px;
	margin: 0 auto 5% auto;
}

#slide{
	position: relative;
	margin: 0 auto 32px auto;
	max-width: 1080px;
}
#slide img{
	width: 100%;
	height: auto;
}

/* Style the pagination button with dot */
.pager{
	position: absolute;
	left: 50%;
	right: 0;
	bottom:-34px;
	margin: 0 0 0 -45px;
	z-index: 100;
	max-width: 320px;
}
.pager a{
	margin: 0 5px 0 0;
	text-decoration: none;
	display: inline-block;
	width: 13px;
	height: 13px;
	background: transparent url(pager.png) no-repeat 0px 0px;
	text-indent:-999em;
}
.pager a.selected{
	text-decoration: underline;
	background: transparent url(pager.png) no-repeat -13px 0px;
}




/* features */
#features{
	clear: both;
	overflow: auto;
	/* background: #ccc; */
	background: #f3ded8;
}
.features_group{
	max-width: 1020px;
	margin: 20px auto 10px auto;
}
.features_pictures{
	width: 100%;
}
.features_pictures img{
	float: left;
	width: 50%;
	height: auto;
}
#features_catch1{
	clear: both;
	background: #fff;
	color: #333;
	font-size: 42px;
	text-align: center;
	line-height: 1.8;
	padding: 2.2% 0 2.2% 0;
}
#features_catch2{
	padding: 4% 0 4% 0;
	color: #fff;
	font-size: 32px;
	text-align: center;
	background: url(../images/top_features_bg.jpg) no-repeat;
	background-size: 100% auto;
	max-height: 26%;
}
#features_catch2 h3{
	font-size: 32px;
	padding: 1.5% 0 1.5% 0;
}

#features_pictures3{
	float: left;
	max-width: 50%;
	height: auto;
}
#features_catch3{
	padding: 4% 0 4% 52%;
	color: #333;
	font-size: 24px;
	text-align: left;
}
#features_catch3 h3{
	font-size: 28px;
	padding: 1% 0 2% 0;
}

.features_warm{
	float: left;
	width: 46%;
	height: auto;
	padding: 2% 0 3% 2%;
	color: #7d6863;
}
.features_warm img{
	padding: 0 0 2% 0;
}

/* なにこれ？ */
.toTop{
	text-align: right;
	font-size: 14px;
	margin: 10px 10px 0 0;
}
.toTop a{
	color: #231815;
}








@media (min-width: 960px){
	/*最小幅960px以上の指定*/
	#products .product{
		/*width: 212px;
		height: 210px;*/
	}
}

@media (max-width: 1280px){
	#features_catch2 { font-size: 24px; }
	#features_catch2 h3 { font-size: 24px; }
	#features_catch3 { font-size: 22px; }
	#features_catch3 h3 { font-size: 22px; }
}
@media (max-width: 960px){
	#features_catch2 { font-size: 20px; }
	#features_catch2 h3 { font-size: 20px; }
	#features_catch3 { font-size: 18px; }
	#features_catch3 h3 { font-size: 18px; }

	.footer_menu4 li { width: 200px; }
	.footer_menu5 li { width: 200px; }
}

@media (max-width: 640px){
	h2 { font-size: 22px; }
	#fb_title{
		background: none;
	}

	#features_catch1 { font-size: 18px; }
	#features_catch2 {
		background: url(../images/top_features_bg2.jpg) no-repeat;
		background-size: 100% auto;
		font-size: 18px; }
	#features_catch2 h3 { font-size: 18px; }
	#features_catch3 { font-size: 16px; }
	#features_catch3 h3 { font-size: 16px; }
}



@media (max-width: 320px){
	h2{
		font-size: 16px;
		padding-left: 5px;
	}

	#goTop{
		bottom: 0;
		right: -50px;
	}
	#goTop img{
		width: 75%;
	}

	#top_products .product2{
		max-width: 46%;
	}

	#features_catch1 { font-size: 16px; }
	#features_catch2 h3 { font-size: 14px; }
	#features_catch2{
		font-size: 14px;
	}
	#features_catch3 h3 { font-size: 12px; }
	#features_catch3 { font-size: 12px;
		padding: 4% 0 4% 15%;
	}

	#topics_list{
		padding: 10px 10px 10px 10px;
		margin: 10px 4px 0 4px;
	}

	.features_pictures img{
		float: left;
		width: 100%;
		height: auto;
	}

	#features_pictures3{
		max-width: 100%;
		padding-bottom: 10px;
	}
	
	.features_warm{
		width: 92%;
		height: auto;
		padding: 2% 4%;
		color: #7d6863;
		display: block;
	}
}
