@charset "UTF-8";

/*-------------------------
*MAIN
-------------------------*/

html {
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN",
	"Hiragino Sans",Meiryo,sans-serif;
	font-size: 62.5%;
    font-feature-settings: "palt" 1;
	overflow: auto;
	height: 100%;
}

body {
	min-width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}
@media screen and (min-width: 1025px) {
	body {min-width: 1000px;}
}
/*-------------------------
*LOADING
-------------------------*/
#load {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	/* background:url(../img/bg_pt01.jpg?v1.2); */
	background: #FFF;
	text-align:center;
	color:#3f373b;
}

#loadText {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #ffe899;
}

/*-------------------------
*MODAL SETTING
-------------------------*/
#modal {
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%; 
	height: 100vh;
	background:url(../img/bg_pt01.jpg?v1.2);
	z-index:900;
}

#modalLayout {
	width: 90%;
	background: #401a0e;
	padding: 1.0rem;
	box-shadow: 0 0 1.0rem rgba(0,0,0,0.4);
}
#modalInner {
	width: 100%;
	height: 100%;
	text-align: center;
	background: url(../img/bg_modal_head.png) no-repeat center top,#FFF;
	background-size: 100%;
	padding: 2.0rem;
}
#modalLogo {
	width: 60%;
	margin: 0 auto 2.0rem;
}
#modalLogo img {
	width: 100%;
	height: auto;
}
#modalLayout p {
	font-family: "Kaisei Opti", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #401a0e;
	text-align: center;
}

#modalLayout ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 2.0rem;
}
#modalLayout ul li {
	width: 300px;
	margin: 0 1.0rem 1.0rem;
	background: #401a0e;
	padding: 4px;
}
#modalLayout ul li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.0rem;
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2.4rem;
	color: #FFF;
	text-align: center;
	background: #401a0e;
	cursor: pointer;
	transition: all 0.4s;
}

#modalLayout ul li a:hover {
	color: #FFF;
	background: #ff8106;
}
@media screen and (min-width: 1025px) {
	#modalLayout {
		width: 800px;
	}
	#modalLayout ul li {
		margin: 0 1.0rem;
	}
	#modalLogo {
		width: 390px;
	}
}

/*-------------------------
*VISUAL
-------------------------*/
#visual {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#visual picture img {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
}
#visual01 {
	opacity: 0;
	z-index: 3;
}
#visual02 {
	opacity: 0;
	z-index: 2;
}
#visual03 {
	opacity: 0;
	z-index: 1;
}

.init:before {
	content: "";
	display: block;
	padding-top: 177.777777%;
}
#switch {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 15%;
	height: 15%;
}
#switch img {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 1025px) {
	#visual {
		width: 100%;
		min-height: 1080px;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
	}
	#visual img {
		min-width: 1920px;
	}
	.init:before {
		content: "";
		display: block;
		padding-top: 56.25%;
	}
	#switch {
		width: 100px;
		height: 100px;
	}
}

#visual.start #visual03 {
	animation: aniTop2 1s ease-in-out 0.0s forwards;
}
#visual.start #visual01 {
	animation: aniTop1 1s ease-in-out 0.8s forwards;
}
#visual.start #visual02 {
	animation: aniTop1 1s ease-in-out 1.0s forwards;
}
@keyframes aniTop1 {
	0% 		{transform: translate(-50%,50px);opacity: 0;}
	100% 	{transform: translate(-50%,0px);opacity: 1.0;}
}
@keyframes aniTop2 {
	0% 		{
		transform: translate(-50%,0) scale(1.5);
		opacity: 0;
	}
	100% 	{
		transform: translate(-50%,0) scale(1.0);
		opacity: 1.0;
	}
}



/*-------------------------
*HEADER
-------------------------*/
header {
	position: fixed;
	top: 0;
	z-index: 50;
	width: 100%;
	display: none;
}

#globalMenu {
	display: none;
}
#globalInner ul li a {
	transition: all 0.4s;
}
#globalInner ul li a:hover {
	color: #ff8106;
}

/*MOBILE MENU*/

#sumaho {
	width: 100%;
	background: #FFF;
	padding: 100px 0 0 20px;
	display: block;
	position: fixed;
	top: 0; right: -100%;
	bottom: 0;
	z-index: 50;
	-webkit-overflow-scrolling: touch;
	transition: all 0.5s;
	opacity: 0;
}
#sumaho #global {
	width: 80%;
	margin: 0 auto;
}
#sumaho h1 {
	width: 70%;
	margin: 0 auto 2.0rem;
}
#sumaho h1 img {
	width: 100%;
}
.open #sumaho {
	right: 0;
	opacity: 1;
}

#sumaho ul {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}

#sumaho ul li {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
	text-align: center;
	color: #FFF;
	margin: 0 0 0.5rem;
	background: #401a0e;
}
#sumaho ul li span {
	display: block;
	font-family: "Kaisei Opti", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 0.6em;
	color: #efab6b;
}
#sumaho ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #FFF;
}
#sumaho ul li a:hover {
	color: #FFF;
	background: #ff8106;
}

@media screen and (min-width: 1025px) {
	#globalMenu {
		display: block;
		position: relative;
		width: 100%;
		margin: 0 auto;
		padding: 0.5rem 0;
		background: url(../img/icon_cafe.svg?1.1) no-repeat center center,#401a0e;
		border-top: solid 5px #401a0e;
		border-bottom: solid 5px #401a0e;
	}
	#globalMenu:after {
		position: absolute;
		content: "";
		display: block;
		width: 100%;
		height: 15px;
		bottom: -12px;
		z-index: 15;
		background: url(../img/global_foot.svg?1.2) no-repeat center bottom;
	}
	#globalInner {
		width: 1000px;
		margin: 0 auto;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#menuL ul,#menuR ul {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: left;
	}
	#globalInner ul li {
		font-family: "Righteous", sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 1.8rem;
		text-align: center;
		margin: 0 15px;
		color: #FFF;
	}
	#globalInner ul li span {
		display: block;
		font-family: "Kaisei Opti", serif;
		font-weight: 500;
		font-style: normal;
		font-size: 0.6em;
		color: #efab6b;
	}
	#menu01:first-letter,#menu03:first-letter,#menu05:first-letter,#menu07:first-letter {
		color: #f40b48;
	}
	#menu02:first-letter,#menu04:first-letter,#menu06:first-letter,#menu08:first-letter {
		color: #3d97f8;
	}
}
/*-------------------------
*TOGGLE
-------------------------*/
.toggleBtn {
	display: block;
	position: fixed;
	top: 1.0rem; right: 1.0rem;
	width: 60px; height: 60px;
	cursor: pointer;
	z-index: 100;
}
.toggleBtn span {
	display: block;
	width: 100%; height: 100%;
	background: url(../img/toggle_off.png) no-repeat;
	background-size: cover;
}
.open .toggleBtn span {
	background: url(../img/toggle_on.png) no-repeat;
	background-size: cover;
}
#mask {
	display: none;
	transition: all 0.5s;
}
.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../common/tx01.png) ,#3f373b;
	opacity: 0.8;
	z-index: 10;
	cursor: pointer;
}

@media screen and (min-width: 1025px) {
	#sumaho {display: none;}
	.toggleBtn { display: none; }
}


/*-------------------------
*SECTION
-------------------------*/

section h2 {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4.0rem;
	color: #423831;
	text-align: center;
	margin-bottom: 0.5rem;
}
.subTitle {
	display: inline-block;
	background: #423831;
	text-align: center;
	letter-spacing: 0.2em;
	padding: 0.5rem 3.0rem;
	border-radius: 2.0rem;
	margin-bottom: 5.0rem;
}
.subTitle p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 0.7em;
	color: #FFF;
}
.setHead1 {color: #3d97f8;}
.setHead2 {color: #f40b48;}

@media screen and (min-width: 1025px) {
	section h2 {
		font-size: 8.0rem;
		padding-top: 5.0rem;
	}
	section h2:before {
		content: url(../img/h2_kazari_l.svg?v1.1);
		margin-right: 2.0rem;
	}
	section h2:after {
		content: url(../img/h2_kazari_r.svg?v1.1);
		margin-left: 2.0rem;
	}
	.subTitle p {
		font-size: 0.7em;
	}
}
/*-------------------------
*TOP SLIDER & TOPICS
-------------------------*/
#topics {
	text-align: center;
	background: #e1c4ac;
	padding: 0 0 2.0rem;
}
#topics h3 {
	display: inline-block;
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
	color: #FFF;
	background: #423831;
	padding: 0.5rem 3.0rem;
	margin-bottom: 1.0rem;
	border-radius: 2.0rem;
}
.slide-items {
	width: 90%;
	margin: 0 auto 2.0rem;
}
.slbk {
	background: #FFF;
}
.slide-items li {
	margin: 0 0.5rem 0;
}
.slide-items li a {
	transition: all 0.5s;
}
.slide-items li a:hover {
	opacity: 0.5;
}
.slide-items img {
	width: 100%;
	height: auto;
}
.slick-dots li button:before {
	font-size: 3.5rem;
	top: 0.5rem;
	color: #FFF;
}
.slick-dots li.slick-active button:before {
	color: #FFF;
}
@media screen and (min-width: 1025px) {
	.slide-items {
		width: 930px;
		margin: 0 auto 5.0rem;
	}
}


/*-------------------------
*CONCEPT
-------------------------*/
#concept {
	position: relative;
	text-align: center;
	background: #FFF;
	justify-content: center;
}
#concept:before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 15px;
	top: 0;
	z-index: 5;
	background: url(../img/concept_foot.svg?1.2) no-repeat center top;
}
#conceptInner {
	position: relative;
	margin: 0 auto;
	padding: 5.0rem 0;
	background: url(../img/bg_leaf_t.png) no-repeat center center;
	background-size: cover;
}
#conceptBoard {
	width: 90%;
	background: url(../img/bg_chork.jpg);
	border: solid 10px #fff7e4;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	margin: 0 auto 10rem;
}

.conceptText1,.conceptText2,.conceptText3,#conceptInner p {
	margin: 0 auto;
}
.conceptText1 img,.conceptText2 img,.conceptText3 img {
	width: 100%;
	height: auto;
}
.conceptText1 {
	width: 80%;
	margin-bottom: 3.0rem;
}
.conceptText2 {
	width: 50%;
	margin-bottom: 1.0rem;
}
.conceptText3 {
	width: 90%;
	margin-bottom: 3.0rem;
}
#conceptInner p {
	font-family: "Kaisei Opti", serif;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 500;
	font-style: normal;
	color: #FFF;
	text-shadow: 0 0 15px rgba(0,0,0,0.3),0 0 15px rgba(0,0,0,0.3),
	0 0 15px rgba(0,0,0,0.3),0 0 15px rgba(0,0,0,0.3);
	padding: 0 2.0rem;
}
.conH1 {
	font-size: 1.4em;
	color: #ff92af;
}
.conH2 {
	font-size: 1.4em;
	color: #8bc3ff;
}
.conH3 {
	font-size: 1.4em;
}
.fadeSd01,.fadeSd02 {
	display: none;
}

/* #conceptBoard.open {
	animation: conTop1 1s ease-in-out 0.0s forwards;
}
.conceptText1.open {
	animation: conTop1 1s ease-in-out 0.2s forwards;
}
.conceptText2.open {
	animation: conTop1 1s ease-in-out 0.3s forwards;
}
.conceptText3.open {
	animation: conTop1 1s ease-in-out 0.4s forwards;
}
#conceptInner p.open {
	animation: conTop1 1s ease-in-out 0.5s forwards;
}

#fadeSd01.open {
	animation: conTop1 1s ease-in-out 0.6s forwards;
}
#fadeSd02.open {
	animation: conTop1 1s ease-in-out 0.6s forwards;
}
@keyframes conTop1 {
	0% 		{margin-top:100px; opacity: 0;}
	100% 	{margin-top:0px; opacity: 1.0;}
}
@keyframes chrTopR {
	0% 		{margin-top:100px; opacity: 0;}
	100% 	{margin-top:0px; opacity: 1.0;}
} */


@media screen and (min-width: 1025px) {
	#conceptInner {
		position: relative;
		margin: 0 auto;
		padding: 5.0rem 0;
		background: url(../img/bg_leaf.png) no-repeat center center;
		background-size: cover;
	}
	#conceptBoard {
		width: 1200px;
		margin: 0 auto 10rem;
		padding: 0;
	}
	.conceptText1 {
		width: 900px;
		margin-bottom: 3.0rem;
	}
	.conceptText2 {
		width: 400px;
		margin-bottom: 1.0rem;
	}
	.conceptText3 {
		width: 800px;
		margin-bottom: 3.0rem;
	}
	#conceptInner p {
		font-size: 1.8rem;
		line-height: 2.0;
	}
	.fadeSd01,.fadeSd02 {
		display: block;
		position: absolute;
		left: 50%;
		bottom: -5.0rem;
	}
	.fadeSd01 { transform: translateX(-750px);}
	.fadeSd02 { transform: translateX(350px);}
	.sd01 {
		animation: sdRotate1 3s ease infinite;
	}
	.sd02 {
		animation: sdRotate2 3s ease infinite;
	}
	@keyframes sdRotate1 {
		0% 		{transform: rotate(-10deg);}
		50% 	{transform: rotate(10deg);}
		100% 	{transform: rotate(-10deg);}
	}
	@keyframes sdRotate2 {
		0% 		{transform: rotate(10deg);}
		50% 	{transform: rotate(-10deg);}
		100% 	{transform: rotate(10deg);}
	}
}

/*-------------------------
*STORY
-------------------------*/
#story {
	position: relative;
	text-align: center;
	background: url(../img/story_bg01.jpg?v2) no-repeat center top;
	background-size: 100% auto;
}
#story:before {
	content: "";
	display: block;
	width: 100%;
	height: 65px;
	top: 0;
	z-index: 15;
	background: url(../img/bg_maru_d.png?v1.4) no-repeat;
	background-size: 100%;
}
#storyInner {
	padding: 5.0rem 0;
}
#strHead1 {
	width: 80%;
	margin: 0 auto;
}
#strHead2 {
	width: 90%;
	margin: 0 auto 2.0rem;
}
#strHead1 img,#strHead2 img {
	width: 100%;
	height: auto;
}
#strPart1 {
	position: relative;
	padding: 0 0 5rem;
}
#strPart2 {
	position: relative;
	background: #423831;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}
#strPart3 {
	position: relative;
	background: #FFF;
	padding: 5rem 0;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
}
#strPart1:after {
	content: '';
	display: block;
	position: absolute;
	left:0;
	bottom: 0;
	border-top: 20px solid transparent;
	border-left: 50vw solid transparent;
	border-right: 50vw solid #423831;
	border-bottom: 20px solid #423831;
}
#strPart2:after {
	content: '';
	display: block;
	position: absolute;
	left:0;
	bottom: 0;
	border-top: 20px solid transparent;
	border-left: 50vw solid #FFF;
	border-right: 50vw solid transparent;
	border-bottom: 20px solid #FFF;
}
.strPicture {
	display: none;
}
.strPictureM {
	display: block;
	width: 90%;
	margin: 0 auto;
}
.strPicture img,.strPictureM img {
	width: 100%;
	height: auto;
}
.stryAbout {
	padding: 2.0rem 2.0rem;
}
#strPart1 p {
	font-family: "Kaisei Opti", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #000;
	letter-spacing: 0.04em;
	padding: 0 2.0rem 1.0rem;
}
#strPart2 p {
	font-family: "Kaisei Opti", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #FFF;
	letter-spacing: 0.00em;
	text-align: center;
	padding: 0 0 1.0rem;
}
#strPart3 p {
	font-family: "Kaisei Opti", serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #000;
	letter-spacing: 0.00em;
	text-align: center;
	padding: 0 0 1.0rem;
}
.dash {
	display: inline-block;
	transform: scale(2, 1);
	margin: 0 15px;
}
.stL {
	font-size: 1.5em;
}
.stLm {
	font-size: 1.5em;
	color: #f40b48;
}
.stPick {
	color: #ed5221;
}
@media screen and (min-width: 1025px) {
	#story:before {
		background: url(../img/bg_maru_d.png?v1.4) repeat-x;
		background-size: auto;
	}
	#storyInner { padding: 10.0rem 0 5.0rem;}
	#strHead1 { width: 460px}
	#strHead2 { width: 900px;}
	.strPicture { 
		display: block;
		width: 400px;
		margin: 0;
	}
	.strPictureM {
		display: none;
	}
	.stryAbout {
		padding: 2.0rem 5.0rem;
	}
	#strPart1 {
		position: relative;
		padding: 0 0 10rem;
	}
	#strPart2 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 5rem 0 15rem;
	}
	#strPart3 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 5.0rem 0;
	}
	#strPart1 p { 
		font-size: 1.8rem;
		line-height: 1.8;
		padding: 0 0 3.0rem;
	}
	#strPart2 p { 
		font-size: 1.8rem;
		line-height: 1.8;
		padding: 0 0 3.0rem;
		text-align: left;
	}
	#strPart3 p { 
		font-size: 1.8rem;
		line-height: 1.8;
		padding: 0 0 3.0rem;
		text-align: left;
	}
	.stL {
		font-size: 2.0em;
	}
	.stLm {
		font-size: 2.0em;
	}
	#strPart1:after {
		border-top: 40px solid transparent;
		border-bottom: 40px solid #423831;
	}
	#strPart2:after {
		border-top: 40px solid transparent;
		border-bottom: 40px solid #FFF;
	}
}
/*-------------------------
*CHARACTER
-------------------------*/
#chara {
	text-align: center;
	background: url(../img/bg_chara.jpg) no-repeat center center;
	background-size: cover;
}
#charaInner {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(../img/bg_pt06.png?v1.2) center top,url(../img/bg_pt02.png?v1.2);
	background-size: 100%,auto;
}
#charaInner2 {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(../img/bg_pt06.png?v1.2) center top,url(../img/bg_pt02.png?v1.2);
	background-size: 100%,auto;
}
#charaInner:before {
	content: "";
	display: block;
	width: 100%;
	height: 65px;
	top: 0;
	z-index: 15;
	background: url(../img/bg_maru_d.png?v1.4) repeat-x;
}
#charaInner:after {
	content: "";
	display: block;
	width: 100%;
	height: 65px;
	bottom: 0;
	z-index: 15;
	background: url(../img/bg_maru_u.png?v1.4) repeat-x;
}
#charaSel {
	width: 100%;
	height: auto;
	position: static;
	margin: 0 auto;
	margin-bottom: 5.0rem;
}
#chNametop01,#chNametop02 {
	position: static;
}
#chNametop01 {
	text-align: center;
}
#chNametop02 {
	text-align: center;
}
#chNametop01 .chrName p,#chNametop02 .chrName p {
	font-family: "Kaisei Decol", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 3.0rem;
	/* font-size: 8vw; */
	line-height: 0.8;
	letter-spacing: -0.05em;
	color: #401a0e;
	margin-bottom: 1.0rem;
}
#chNametop01 .chrName p span,#chNametop02 .chrName p span {
	font-size: 0.8em;
}
#chNametop01 .chrEng p,#chNametop02 .chrEng p {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 2.0rem;
	/* font-size: 6vw; */
	margin-bottom: 1.0rem;
}
#chNametop01 .chrEng p {color: #f54574;}
#chNametop02 .chrEng p {color: #3d97f8;}

#chNametop01 .chrCv,#chNametop02 .chrCv {
	display: inline-block;
	padding: 0.5rem 1.0rem;
	margin-bottom: 2.0rem;
}
#chNametop01 .chrCv {background: #f54574;}
#chNametop02 .chrCv {background: #3d97f8;}

#chNametop01 .chrCv p,#chNametop02 .chrCv p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	color: #FFF;
}
#chrA,#chrB {
	position: static;
	margin: 0 auto;
}
#chrA {
	width: 90%;
	margin-bottom: 5.0rem;
}
#chrB {
	width: 90%;
}
#chrA img,#chrB img {
	width: 100%;
	height: auto;
	transition: all 0.4s;
}
#chrA img:hover,#chrB img:hover {
	opacity: 0.0;
	z-index: 5;
}
.chrSpace:before {
	content: "";
	display: none;
	padding-top: 0%;
}
#chrA a,#chrB a {
	display: block;
	width: 100%;
	height: 100%;
}
#chrA a {
	background: url(../img/b_chrtop01_on.png?v2) no-repeat;
	background-size: cover;
}
#chrB a {
	background: url(../img/b_chrtop02_on.png?v2) no-repeat;
	background-size: cover;
}


/* #chrA.open {
	animation: chrTopL 1s ease-in-out 0.0s forwards;
}
#chrB.open {
	animation: chrTopR 1s ease-in-out 0.0s forwards;
}
#chNametop01.open {
	animation: chrTopL 1s ease-in-out 0.5s forwards;
}
#chNametop02.open {
	animation: chrTopR 1s ease-in-out 0.5s forwards;
}
@keyframes chrTopL {
	0% 		{margin-top:100px; opacity: 0;}
	100% 	{margin-top:0px; opacity: 1.0;}
}
@keyframes chrTopR {
	0% 		{margin-top:100px; opacity: 0;}
	100% 	{margin-top:0px; opacity: 1.0;}
} */






@media screen and (min-width: 1025px) {
	#charaSel {
		width: 1000px;
		height: 1150px;
		position: relative;
		margin: 0 auto;
		margin-bottom: 5.0rem;
	}
	#chNametop01,#chNametop02 {
		position: absolute;
		z-index: 5;
	}
	#chNametop01 {
		top: 50px;
		left: 0px;
		text-align: left;
	}
	#chNametop02 {
		top: 50px;
		right: 0px;
		text-align: right;
	}
	#chrA,#chrB {
		position: absolute;
		left: 50%;
		margin: 0;
	}
	#chrA {
		top: 0px;
		width: 833px;
	}
	#chrB {
		top: 30px;
		width: 740px;
	}
	#chrA {
		transform: translateX(calc(-50% - 200px));
	}
	#chrB {
		transform: translateX(calc(-50% + 300px));
	}
	.chrSpace:before {
		content: "";
		display: block;
		padding-top: 140%;
	}
	#charaInner {
		background: url(../img/bg_pt06.png?v1.2) center top,url(../img/bg_pt02.png?v1.2);
		background-size: auto,auto;
	}
	#charaInner2 {
		background: url(../img/bg_pt06.png?v1.2) center top,url(../img/bg_pt02.png?v1.2);
		background-size: auto,auto;
	}
}




.verList {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding: 40px 0;
}
.verList li {
	width: 10.0rem;
	height: 10.0rem;
	margin: 0 1.0rem;
	background: #FFF;
	border-radius: 5.0rem;
}
.verList li a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50px;
	transition: all 0.5s;
}
.verList li.ch1 a {
	background: url(../img/navi_chara01.png) no-repeat;
	background-size: cover;
}
.verList li.ch2 a {
	background: url(../img/navi_chara02.png) no-repeat;
	background-size: cover;
}
.verList li.ch3 a {
	background: url(../img/navi_chara03.png) no-repeat;
	background-size: cover;
}
.verList li a:hover {
	opacity: 0.5;
}
.verList li.active a {
	opacity: 0.5;
}
#chBg  {
	position: static;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
#chBg2  {
	position: static;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.charaPose {
	position: static;
	width: 95%;
}
.charaPose img {
	width: 100%;
	height: auto;
}

.thumbnail {
	width: 320px;
	margin-bottom: 2.0rem;
}
.thumbnail .slick-track {
	transform: unset !important;
}
.thumbnail-img {
	width: 100px;
	opacity: 0.3;
	transition: opacity 0.3s linear;
	padding: 0;
	cursor: pointer;
}
.thumbnail .slick-current,.thumbnail-img:hover {
	opacity: 1;
}
#charaStatus {
	position: static;
	width: 90%;
	padding-top: 30px;
	text-align: left;
	margin: 0 auto;
}
#charaStatus .chrName p {
	font-family: "Kaisei Decol", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 8vw;
	line-height: 0.8;
	letter-spacing: -0.05em;
	color: #401a0e;
	margin-bottom: 1.0rem;
}

#charaStatus .chrName p span {
	font-size: 0.8em;
}
#charaStatus .chrEng p {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 6vw;
	margin-bottom: 1.0rem;
}
.mar .chrEng p {color: #f54574;}
.fra .chrEng p {color: #3d97f8;}
.mas .chrEng p {color: #d68419;}

#charaStatus .chrCv {
	display: inline-block;
	padding: 0.5rem 1.0rem;
	margin-bottom: 2.0rem;
}
.mar .chrCv {background: #f54574;}
.fra .chrCv {background: #3d97f8;}

#charaStatus .chrCv p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	color: #FFF;
}

#charaStatus .chrVoice {
	margin-bottom: 2.0rem;
}

#charaStatus .chrVoice ul {
	display: flex;
	flex-direction: row;
}
#charaStatus .chrVoice li {
	width: 50px;
	height: 50px;
	margin: 0 5px 0 0;
}
#charaStatus .chrVoice a {
	display: block;
	width: 100%; height: 100%;
}
#charaStatus .chrVoice a.chBtn1 {
	background: url(../img/mic.svg)no-repeat center center, #401a0e;
	background-size: cover;
	transition: all 0.4s;
}
#charaStatus .chrVoice a.chBtn2 {
	background: url(../img/heart.svg)no-repeat center center, #401a0e;
	background-size: cover;
	transition: all 0.4s;
}
#charaStatus .chrVoice a:hover.chBtn1,#charaStatus .chrVoice a.voiceon.chBtn1 {
	background: url(../img/mic.svg)no-repeat center center, #a08d87;
}
#charaStatus .chrVoice a:hover.chBtn2,#charaStatus .chrVoice a.voiceon.chBtn2 {
	background: url(../img/heart.svg)no-repeat center center, #a08d87;
}



#charaStatus h5 {
	font-family: "Raleway", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 1.6rem;
	color: #401a0e;
	margin-bottom: 0.5rem;
}
#charaStatus .charProf {
	background: rgba(255,255,255,0.8);
	padding: 1.5rem;
}

#charaStatus .charProf dl {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2rem;
	margin-bottom: 2.0rem;
}
#charaStatus .charProf dt {
	width: 130px;
	text-align: center;
	margin-bottom: 2px;
	padding: 0.5rem 1.0rem;
	color: #FFF;
}
.mar .charProf dt {background: #f54574;}
.fra .charProf dt {background: #3d97f8;}
.mas .charProf dt {background: #d68419;}

#charaStatus .charProf dd {
	width: calc( 100% - 130px);
	text-align: left;
	margin-bottom: 2px;
	padding: 0.5rem 1.0rem;
	color: #401a0e;
}

#charaStatus .charProf p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #401a0e;
	margin-bottom: 2.0rem;
}
#chrCatch {
	display: none;
}
#chrCatchM {
	display: block;
	width: 90%;
	margin: 0 auto 1.0rem;
}
#chrCatchM img ,#chrCatch img {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 1025px) {
	.verList li {
		width: 10.0rem;
		height: 10.0rem;
		margin: 0 1.0rem;
		background: #FFF;
		border-radius: 5.0rem;
	}
	#chBg  {
		position: relative;
		width: 100%;
		height: 1300px;
	}
	#chBg2  {
		position: relative;
		width: 100%;
		height: 800px;
		margin: 0 auto;
	}
	.charaPose {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-75%);
		z-index: 1;
		width: 1000px;
	}
	#charaStatus {
		position: absolute;
		top: 0;
		left : 50%;
		z-index: 10;
		width: 690px;
		padding-top: 30px;
		margin: 0;
		text-align: left;
	}
	#charaStatus .chrName p {
		font-size: 6.0rem;
		margin-bottom: 1.0rem;
	}
	#charaStatus .chrEng p {
		font-size: 3.0rem;
	}
	.thumbnail {
		width: 320px;
		margin-bottom: 2.0rem;
	}
	#charaStatus .charProf dl {
		font-size: 1.4rem;
	}
	#chrCatchM {
		display: none;
	}
	#chrCatch {
		display: block;
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-650%);
		z-index: 10;
		width: 100px;
	}
}
/*-------------------------
*GALLERY
-------------------------*/
#pictSection {
	background: url(../img/bg_pt03.png) repeat-y center top;
	background-size: 100%;
}
#gallery {
	text-align: center;
}
#galInner {
	width: 100%;
	padding: 5rem 0;
}
#galTop {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2.0rem 0 4.0rem;
}
#galTop li {
	width: 40%;
	margin: 1.0rem;
	background-color: #FFF;
}
#galTop li img {
	width: 100%;
	height: auto;
}
#galTop li a {
	transition: all 0.5s;
}
#galTop li a:hover {
	opacity: 0.5;
}
@media screen and (min-width: 1025px) {
	#pictSection {
		background: url(../img/bg_pt03.png) repeat-y center top;
		background-size: auto;
	}
	#galInner {
		padding: 10rem 0;
	}
	#galTop {
		width: 960px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 5.0rem 0 8.0rem;
	}
	#galTop li {
		width: 300px;
		margin: 1.0rem;
	}
}
/*-------------------------
*MOVIE
-------------------------*/
#movie {
	text-align: center;
}
#movInner {
	width: 100%;
	padding: 5rem 0;
}
#movTop {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2.0rem 0 4.0rem;
}
#movTop li {
	width: 100%;
	margin: 0 0 1.0rem 0;
	background-color: #FFF;
}
#movTop li img {
	width: 100%;
	height: auto;
}
@media screen and (min-width: 1025px) {
	#movInner {
		padding: 10rem 0;
	}
	#movTop {
		width: 960px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		padding: 5.0rem 0 8.0rem;
	}
	#movTop li {
		width: 300px;
		margin: 10px;
		background-color: #FFF;
	}
}
/*-------------------------
*SPECIAL
-------------------------*/
#special {
	text-align: center;
	background: url(../img/bg_pt04.jpg?v1.1);
}
#speInner {
	width: 100%;
	padding: 100px 0;
}

#speList {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
#speList li {
	margin: 10px;
}

#speList li span {
	display: block;
	background: #FFF;
}
#speList li a {
	transition: all 0.5s;
}
#speList li a:hover {
	opacity: 0.5;
}

.date {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #f54574;
	padding: 0.5rem 0 0;
	text-align: left;
}
.news {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #401a0e;
	margin-bottom: 0.5rem;
	text-align: left;
}
/* #special:before {
	content: "";
	display: block;
	width: 100%;
	height: 65px;
	top: 0;
	z-index: 15;
	background: url(../img/bg_maru_d.png?v1.4) repeat-x;
}
#special:after {
	content: "";
	display: block;
	width: 100%;
	height: 65px;
	bottom: 0;
	z-index: 15;
	background: url(../img/bg_maru_u.png?v1.4) repeat-x;
} */

/*-------------------------
*PRODUCT
-------------------------*/
#product {
	text-align: center;
	background: none;
}
#proInner {
	width: 100%;
	padding: 10rem 0;
}
.proSet {
	padding: 0 2.0rem 2.0rem;
}
.proBox {
	padding-bottom: 5rem;
}
.proBox h6 {
	display: inline-block;
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
	padding: 0.5rem 3.0rem;
	margin-bottom: 2.0rem;
	border: solid 1px #876b62;
}
.proBox dl {
	padding: 0 0 3.0rem;
}
.proBox dt {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #876b62;
	margin-bottom: 0.5rem;
}
.proBox dd {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #000;
	margin-bottom: 2.0rem;
}
.proBox dd span {
	font-size: 0.8em;
}
.att {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #876b62;
}
@media screen and (min-width: 1025px) {
	#product {
		background: url(../img/bg_product.jpg?v1.2) no-repeat center top;
	}
	#proInner {
		width: 100%;
		padding: 10rem 0;
	}
	.proSet {
		padding: 3.0rem 0 5.0rem;
	}
	.proBox {
		padding-bottom: 10rem;
	}
	.proBox h6 {
		font-size: 1.8rem;
	}
	.proBox dd {
		font-size: 1.6rem;
	}
	.att {
		font-size: 1.6rem;
	}
}


/*-------------------------
*SNS
-------------------------*/
#sns {
	text-align: center;
	background: url(../img/bg_dot_white.png),url(../img/bg_common02.jpg)no-repeat center top;
	background-size: auto,cover;
	background-attachment: fixed;
}
#snsInner {
	width: 100%;
	padding: 10rem 0 0;
	
}
#sns h3 {
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4.0rem;
	color: #423831;
	padding: 1.0rem 0;
	margin-bottom: 2.0rem;
}
#sns h3 span {
	display: block;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2rem;
	line-height: 1.5;
	color: #876b62;
}

#xicon,#xheader {
	width: 90%;
	margin: 0 auto 10rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	border: solid 1px #cacaca;
	padding: 2.0rem;
	background: #FFF;
}

#xicon {
	box-shadow: 5px 5px 0 #f40b48;
}
#xheader {
	box-shadow: 5px 5px 0 #3d97f8;
}
#xicon li {
	width: 45%;
	margin: 0.5rem;
}
#xheader li {
	width: 90%;
	margin: 0.5rem;
}
#xicon li img,#xheader li img {
	width: 100%;
	height: auto;
}
#xicon li a,#xheader li a {
	transition: all 0.4s;
}
#xicon li a:hover,#xheader li a:hover {
	opacity: 0.5;
}

#release {
	width: 90%;
	margin: 0 auto 30px;
	padding: 4.0rem;
	background: #FFF;
	border: solid 3px #cacaca;
	text-align: left;
}
#release h5 {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 2.4rem;
	line-height: 1.5;
	color: #423831;
	text-align: center;
	padding-bottom: 5.0rem;
}
.releaseText {
	font-weight: 500;
	font-style: normal;
	font-size: 1.6rem;
	line-height: 1.5;
	padding-bottom: 2.0rem;
}
.releaseDate {
	font-style: normal;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
	padding-top: 2.0rem;
	padding-bottom: 4.0rem;
	text-align: center;
}
.releaseFoot {
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.5;
	padding-bottom: 1.5rem;
	text-align: right;
}

@media screen and (min-width: 1025px) {
	#xicon,#xheader {
		width: 900px;
	}
	#xicon li {
		width: 200px;
	}
	#xheader li {
		width: 800px;
	}
	#release {
		width: 900px;
	}
}
/*-------------------------
*RESERVED
-------------------------*/
#reserved {
	text-align: center;
	background: url(../img/bg_dot_white.png),url(../img/bg_common02.jpg)no-repeat center top;
	background-size: auto,cover;
	background-attachment: fixed;
}
#reservedInner {
	width: 100%;
	padding: 10rem 0 0;
}
#reservedPage {
}
#reserveTop {
	width: 100%;
	margin: 0 auto;
}
#reserveTop img {
	width: 100%;
	height: auto;
}
#reserveInfo {
	width: 90%;
	margin: 0 auto 10rem;
	padding: 2.0rem;
	background: #FFF;
	border: solid 1px #cacaca;
}
#reserveInfo p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.4rem;
	color: #401a0e;
	text-align: left;
}
.pik {
	font-size: 1.2em;
	font-weight: 900;
	color: #ff3e71;
}
.att {
	color: #d68419;
}
.attTop {
	position: relative;
	display: inline-block;
	margin: 0 0 1.0rem;
	padding: 1.0rem 3.0rem;
	color: #FFF;
	font-size: 2.0rem;
	background: #401a0e;
}
.attTop:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #401a0e;
}
.attTop p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 2.0rem;
	color: #fff881;
}

@media screen and (min-width: 1025px) {
	#reserveTop {
		width: 1000px;
	}
	#reserveInfo {
		width: 800px;
	}
}
/*-------------------------
*STORE
-------------------------*/
#store {
	text-align: center;
	background: url(../img/bg_dot_white.png),url(../img/bg_cafe.jpg)no-repeat center top;
	background-size: auto,cover;
	background-attachment: fixed;
}
#storeInner {
	width: 100%;
	padding: 10rem 0 0;
}
#store h3 {
	width: 90%;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 8.0vw;
	color: #423831;
	background: #FFF;
	border: solid 4px #e1c4ac;
	border-radius: 10.0rem;
	padding: 1.0rem 0;
	margin: 0 auto 4.0rem;
}
#store h3 span {
	display: block;
	font-family: "Righteous", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 0.8em;
	line-height: 2.0;
	color: #876b62;
}

.bnsBox {
	width: 90%;
	margin: 0 auto 5.0rem;
	padding: 2.0rem;
	background: #FFF;
	border: solid 2px #c9c9c9;
}
.bnsTitle1,.bnsTitle2 {
	position: relative;
	display: inline-block;
	margin: 0 0 1.0rem;
	padding: 1.0rem 3.0rem;
	color: #FFF;
	font-size: 2.0rem;
}
.bnsTitle1:before,.bnsTitle2:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
}
.shopTitle {
	display: block;
	margin: 0 0 1rem;
	padding: 0.5rem 2.0rem;
	background: #3d97f8;
	border-radius: 2.0rem;
	/* border-top: solid 2px #ff2b68;
	border-left: solid 2px #ff2b68;
	border-right: solid 2px #3d97f8;
	border-bottom: solid 2px #3d97f8; */
}

/* .shopTitle {
	position: relative;
	display: inline-block;
	margin: 0 0 0.5rem;
	padding: 1.0rem 3.0rem;
	color: #FFF;
	font-size: 1.6rem;
	background: #d68419;
}
.shopTitle:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -8px;
	border: 8px solid transparent;
	border-top: 8px solid #d68419;
} */

.bnsTitle1 {background: #ff2b68;}
.bnsTitle2 {background: #3d97f8;}

.bnsTitle1:before {border-top: 15px solid #ff2b68;}
.bnsTitle2:before {border-top: 15px solid #3d97f8;}

.bnsTitle1 p,.bnsTitle2 p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 2.0rem;
	color: #FFF;
}
.shopTitle p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 2.0rem;
	color: #FFF;
}
.shopTitle p:before {
	content: "\f069";
	font-family: 'Font Awesome 6', 'Font Awesome 6 Free';
	margin-right: 0.5rem;
}
.shopTitle p:after {
	content: "\f069";
	font-family: 'Font Awesome 6', 'Font Awesome 6 Free';
	margin-left: 0.5rem;
}

.bnsName {
	width: 80%;
	border-bottom: solid 2px #423831;
	padding: 1.0rem 0;
	margin: 0 auto 2.0rem;
}

.bnsName p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 1.6rem;
	color: #423831;
}
.bnsName p:before {
	content: "\f069";
	font-family: 'Font Awesome 6', 'Font Awesome 6 Free';
	margin-right: 0.5rem;
}
.bnsName p:after {
	content: "\f069";
	font-family: 'Font Awesome 6', 'Font Awesome 6 Free';
	margin-left: 0.5rem;
}
.m1 .bnsName p:before,.m1 .bnsName p:after {
	color: #ff2b68;
}
.m2 .bnsName p:before,.m2 .bnsName p:after {
	color: #3d97f8;
}
#makura {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
#makura li {
	width: 90%;
	margin: 0.5rem 0 4.0rem;
}
.bnsBox_s {
	width: 90%;
	margin: 0 auto 4.0rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.bnsItem {
	width: 100%;
	margin-bottom: 1.0rem;
}
.bnsBox_s p {
	width: 100%;
	text-align: left;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4rem;
	color: #423831;
}
.bnsBox_s p span {
	display: inline-block;
	color: #FFF;
	background: #423831;
	padding: 0.5rem 1.5rem;
	margin-bottom: 0.5rem;
}
#makura li img,.bnsItem img {
	width: 100%;
	height: auto;
}

.bnsBox2 {
	width: 90%;
	margin: 0 auto 5.0rem;
	padding: 4.0rem 2.0rem;
	background: #FFF;
	border: solid 2px #c9c9c9;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.bnsPack {
	width: 100%;
	margin: 0 2.0rem 2.0rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.itemSize {
	width: 100%;
	margin: 0 0 1.0rem;
}
.itemSize img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 1.0rem;
}
.itemCap {
	width: 90%;
	margin: 0 auto;
}
.nidai {
	display: inline-block;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 1.8rem;
	color: #FFF;
	margin-bottom: 1.0rem;
	padding: 0.5rem 2.0rem;
	background: #ff9000;
}
.itemCap p {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 1.8rem;
	color: #423831;
	margin-bottom: 1.0rem;
}
.itemCap p span {
	font-size: 0.8em;
}
.itemCap p:before {
	content: "\f02b";
	font-family: 'Font Awesome 6', 'Font Awesome 6 Free';
	margin-right: 0.5rem;
	color: #3d97f8;
}


.shopLink {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
.shopLink2 {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
.shopLink li {
	width: 49%;
	background: #423831;
}
.shopLink2 li {
	width: 80%;
	background: #423831;
}
.shopLink li a,.shopLink2 li a {
	display: block;
	width: 100%;
	height: 100%;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
	font-size: 1.8rem;
	color: #FFF;
	padding: 1.5rem;
	transition: all 0.5s;
}
.shopLink01 a {background: #ff2b68;}
.shopLink02 a {background: #3d97f8;}
.shopLink li a:hover,.shopLink2 li a:hover {background: #ff8106;}

@media screen and (min-width: 1025px) {
	#store h3 {
		width: 500px;
		font-size: 6.0rem;
	}
	#store h3 span {
		font-size: 1.6rem;
	}
	.bnsBox {
		width: 980px;
	}
	.bnsItem {
		width: 300px;
		margin-bottom: 0;
	}
	#makura li {
		width: 300px;
		margin: 0.5rem 0.5rem 4.0rem;
	}
	.bnsBox_s p {
		width: calc( 100% - 320px);
	}
	.bnsBox2 {
		width: 980px;
	}
	.itemSize {
		width: 350px;
		margin: 0 1.0rem;
	}
}
/*-------------------------
*FOOTER
-------------------------*/
#footLink {display: none;}

footer {
	border-top: solid 5px #876b62;
	background: #423831;
	padding: 2.0rem 0;
	text-align: center;
}
#footLogo {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding-bottom: 1.0rem;
}
#footLogo li {
	margin: 0 2.0rem 1.0rem;
}
#footLogo img {width: 100%;}
#footLogo a {transition: all 0.4s;}
#footLogo a:hover {opacity: 0.7;}

#brand01 {width: 150px;}
#brand02 {width: 130px;}
#brand03 {width: 90px;}

footer p {
	border-top: solid 1px #876b62;
	padding-top: 1.0rem;
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.0rem;
	line-height: 1.5;
	color: #FFF;
}
footer address {
	font-family: "M PLUS 2", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2rem;
	color: #FFF;
}


@media screen and (min-width: 1025px) {
	footer p {
		font-size: 1.4rem;
	}
}
/*-------------------------
*PAGETOP
-------------------------*/

#pageTop {
	position:fixed;
	bottom:20px;
	right:20px;
	z-index: 100;
	width: 60px;
	height: 60px;;
	background: #FFF;
	
}
#pageTop a {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/b_pagetop.png) no-repeat;
	transition: all 0.5s;
}

#pageTop a:hover{opacity: 0.5;}

/*-------------------------
*SHARE
-------------------------*/

#shareArea {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px 0;
}

#shareArea div a {
	width: 50px; height: 50px;
	text-align: center;
	display: block;
	margin: 0 2px;
	text-decoration: none;
	transition: all 0.5s;
}
#shareArea div a:hover {
	opacity: 0.3;
}

.shareTw {
	background: url(../img/icon_x.png) no-repeat center center,#423831;
	background-size: cover;
}
.shareTh {
	background: url(../img/icon_thread.png) no-repeat center center,#423831;
	background-size: cover;
}
.shareBs {
	background: url(../img/icon_bluesky.png) no-repeat center center,#423831;
	background-size: cover;
}

/*-------------------------
*ANIMATION
-------------------------*/

/* section h3,.sectionTitle {
	opacity: 0;
} */