@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amarante&display=swap');

@font-face {
	font-family:'CGothic';
	src:url('images/fonts/CGothic.ttf') format('truetype');
}
@font-face {
	font-family:'CSerif';
	src:url('images/fonts/CSerif.ttf') format('truetype');
}


@media screen and (min-width:800px) { 
	.dispSP {
		display:none !important;
	}
}
@media screen and (max-width:799px) { 
	.dispPC {
		display:none !important;
	}
}

@keyframes animateBlink {
	  0% { opacity:1; }
	100% { opacity:0.1; }
}

/* ==========================================================================================================================================
	variables
=========================================================================================================================================== */
* {
	--font-base:'Kaisei Opti',serif;
	--font-title:'Amarante',var(--font-base);
	--font-enterButton:var(--font-title);
}

/* ==========================================================================================================================================
	CSS reset
=========================================================================================================================================== */
* ,*:before ,*:after {
	box-sizing:border-box;
	text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}
html ,body ,div ,p ,span ,iframe ,a ,img ,
h1 ,h2 ,h3 ,h4 ,h5 ,h6 ,
dl ,dt ,dd ,ol ,ul ,li ,
form ,label ,
table ,thead ,tbody ,tfoot ,tr ,th ,td ,
blockquote ,q ,pre ,
header ,footer ,nav ,article ,section ,aside {
	margin:0;
	padding:0;
	border:0 none;
	font-size:inherit;
	vertical-align:baseline;
	font-weight:inherit;
}
button ,input ,textarea ,select {
	font-size:110%;
	padding:0.3em;
	letter-spacing:1px;
	font-family:var(--font-base);
}
input[type="submit"] ,button {
	font-size:130%;
	padding:0.5em 1.5em;
}

html ,body {
	min-height:100%;
	height:100%;
	font-family:var(--font-base);
}
a {
	color:#00f;
	text-decoration:none;
	transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
}
a:hover {
	color:#f00;
	text-decoration:none;
}

img {
	vertical-align:middle;
	max-width:100%;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}

ol ,ul ,li {
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
blockquote ,q {
	quotes:none;
}
blockquote:before ,blockquote:after
,q:before ,q:after {
	content:'';
	content:none;
}

/*
.iframeOuter {
	overflow:auto;
	-webkit-overflow-scrolling:touch;
}
.iframeOuter > * {
	display:block;
	width:100%;
	height:100%;
	height:-webkit-fill-available;
}
*/

.notoSerif {
	font-family:'CSerif','Noto Serif JP',serif;
}
.noDisp {
	display:none;
}


/* ==============================================
	cleafix
=============================================== */
.clearfix:after {
	display:block;
	clear:both;
	height:0px;
	line-height:0px;
	visibility:hidden;
	content:".";
}
.clearfix {
	display: block; /* for IE8 */
	zoom: 1; 
}


/* ============================================================================================
	common
============================================================================================= */
/* ==============================================
	titlebar
=============================================== */
.titleBar {
	margin:auto 20px;
	padding-bottom:25px;
	line-height:1.6;
	text-align:center;
	color:#f69;
    font-family:var(--font-title);
}
.titleBar > span {
	position:relative;
	display:block;
	z-index:1;
}
.titleBar > span:nth-child(1) {
	line-height:1.2;
	font-size:450%;
	font-weight:bold;
	letter-spacing:0.05em;
	text-indent:0.05em;
	color:#fff;
	text-shadow: 2px 2px 0 #000, 0 0 0.3em #f06, 0 0 0.5em #f06;
}
.titleBar > span:nth-child(1):after {
	content:"";
	display:block;
	width:100%;
	height:9px;
	background:#f69;
	border:2px solid #fff;
	border-radius:10px;
}

.titleBar > span:nth-child(2) {
	font-size:220%;
	line-height:2;
	letter-spacing:0.2em;
	text-indent:0.2em;
	-webkit-text-stroke:1px;
}

.titleBar > span > span {
	position:absolute;
	top:0;
	left:0;
	right:0;
	display:block;
	width:100%;
	z-index:-1;
}
.titleBar > span:nth-child(2) > span {
	-webkit-text-stroke:6px #fff;
}

.titleBar.sub {
	margin-top:20px;
	margin-bottom:20px;
	padding:1em;
	color:#c06;
	-webkit-text-stroke:1px;
}
.titleBar.sub > span:nth-child(1) {
	font-size:250%;
	font-weight:normal;
}
.titleBar.sub:not(.border) > span:nth-child(1):after {
	content:none;
}
.titleBar.sub.border > span:nth-child(1):after {
	height:8px;
	border:2px solid #fff;
}


.titleBar.sub.center {
	text-align:center;
}
.titleBar.sub.color0 {
}
.titleBar.sub.color1 {
}


@media screen and (max-width:799px) {
	.titleBar {
		margin:auto;
		padding-bottom:15px;
	}
	.titleBar > span:nth-child(1) {
		font-size:300%;
	}
	.titleBar > span:nth-child(2) {
		font-size:180%;
	}
	.titleBar.sub {
		max-width:100%;
		padding:10px;
		letter-spacing:0.05em;
		text-indent:0.05em;
	}

	.titleBar.sub > span:nth-child(1) {
		font-size:200%;
	}
}


/* ==============================================
	list
=============================================== */
.commonList {
	text-align:center;
	margin-bottom:15px;
}


/* ==============================================
	common attribute
=============================================== */
.contentsBloc {
	padding-top:5em;
}

.left {
	text-align:left;
}
.center {
	text-align:center;
}
.right {
	text-align:right;
}


.sendIP {
	margin-top:1em;
	color:#999;
	font-size:xx-small;
	text-align:right;
}

.noticeInfo {
	color:#90f;
}
.noticeAlert {
	color:#f06;
}
.noticeLink {
}
.noticeLink a {
	color:#f06;
}
.noticeLink a:hover {
	text-decoration:underline;
}

.mBottom {
	margin-bottom:2em;
}

.strong {
	color:#c06;
	-webkit-text-stroke:1px;
}

.bold {
	-webkit-text-stroke:1px;
}


/* ==============================================
	infoBox option
=============================================== */
.noData {
	margin-left:auto;
	margin-right:auto;
	min-height:300px;
	padding-top:80px;
	color:#eee;
	text-align:center;
}

.infoBox {
	width:100%;
	margin-bottom:2em;
	padding:1em;
	font-size:120%;
	background:rgba(255,255,255,0.9);
}
.infoBox.box {
	background:transparent;
}
.infoBox.frame {
	color:#000;
	border:5px solid #f69;
	border-radius:0.5em;
	outline:2px solid #fff;
}

.infoBox p {
	padding:5px 0;
}
.infoBox.notes {
	width:85%;
	min-width:630px;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}
.infoBox.notes.left {
	text-align:left;
}

.infoBox.white {
	color:#000;
	background:rgba(255,255,255,0.9);
	border:5px solid #f69;
	border-radius:0.5em;
	outline:2px solid #fff;
}
.infoBox.white h3.titleBar.sub.center.black {
	padding:15px 0;
	color:#000;
	border-bottom:2px solid #232323;
	text-align:center;
	letter-spacing:0.2em;
	text-indent:0.2em;
}
.infoBox.white a {
}
.infoBox.white a:hover {
}

.infoBox.pink {
	color:#fff;
	background:rgba(255,153,204,0.9);
	border:5px solid #c06;
	border-radius:0.5em;
	outline:2px solid #fff;
}


.infoBox.notes .headline ,
.noData .headline {
	color:#f06;
	font-size:150%;
}
.infoBox.notes .comment ,
.noData .comment {
	font-size:90%;
}
.noData .comment2 {
	margin-top:15px;
	font-size:110%;
}

.infoBox.textLink {
	padding:30px 20px;
}
.infoBox.notes.textLink .comment {
	padding-top:30px;
}
.infoBox .p30 {
	padding:30px 0;
}


@media screen and (max-width:799px) { 
	.noData {
		width:100%;
	}
	.infoBox {
		padding:10px 15px;
		font-size:100%;
	}

	.infoBox.notes {
		width:100%;
		min-width:initial;
	}
	.infoBox.notes .headline ,
	.noData .headline {
		font-size:120%;
	}
	.infoBox.notes.white h3.titleBar.sub.center {
		letter-spacing:1px;
	}
}



/* ==============================================
	common table
=============================================== */
.commonTable {
	width:100%;
	font-size:90%;
	line-height:1.8;
	color:#000;
}
.commonTable th ,
.commonTable td {
	vertical-align:middle;
}
.commonTable th {
	width:150px;
	padding:10px 5px 10px 20px;
	border-bottom:2px solid #000;
	text-align:left;
}
.commonTable td:not(.noData) {
	padding:10px 10px;
	border-bottom:2px solid #000;
}

.commonTable.noBorder th ,
.commonTable.noBorder td {
	border-bottom:0 none;
	padding-top:5px;
	padding-bottom:5px;
}


@media screen and (max-width:799px) { 
	.commonTable {
		font-size:14px;
		line-height:1.6;
	}
	.commonTable th {
		width:80px;
		padding:10px 5px 10px 10px;
	}
}





.imageList {
	max-width:100%;
	text-align:center;
}
.imageList li:not(.noData) {
	display:block;
	margin:auto 20px 30px;
	padding:10px;
}
.imageList li img {
	border:3px solid #c06;
	outline:2px solid #fff;
	transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
}
.imageList li a:hover img {
	outline:2px solid #c06;
}

.imageList.eventList {
	display:flex;
	flex-wrap:wrap;
	margin:auto;
}
.imageList.eventList li {
	width:calc(100% / 4);
	margin:auto 0 30px;
	padding:10px;
}
.imageList.eventList li.noData {
	width:100%;
}

#PAGE_home .imageList.eventList {
	padding:30px 0;
	justify-content:center;
}
#PAGE_home .imageList.eventList li {
	width:calc(100% / 2);
	margin:auto 0;
	max-width:680px;
}



@media screen and (max-width:799px) { 
	.imageList.eventList li {
		width:calc(100% / 2);
	}
	#PAGE_home .imageList.eventList li {
		width:100%;
	}
}

body .sl-overlay {
	background:#bbe3f9;
	background:linear-gradient(#bbe3f9 ,#f7c9dd);
	background:-webkit-gradient(linear ,center top ,center bottom ,from(#bbe3f9), to(#f7c9dd));
	opacity:0.8;
}
body .sl-wrapper .sl-image img {
	border:1px solid #fff;
	box-shadow:2px 2px 5px #666;
}


/* ==============================================
	body
=============================================== */
body {
	position:relative;
	font-size:16px;
	line-height:1.6;
	color:#000;
	background:#fdd;
}
#bgLayer {
	position:relative;
	z-index:1;
}
#bgLayer:before {
	content:"";
	position:fixed;
	top:0;
	left:0;
	display:block;
	width:100%;
	min-width:1380px;
	height:100%;
	background:url(images/common/bg.jpg) 280px 0 no-repeat;
	background-size:cover;
	z-index:2;
}
/*
#bgLayer:after {
	content:"";
	position:fixed;
	top:0;
	left:0;
	display:block;
	width:100%;
	min-width:1380px;
	height:100%;
	background:rgba(255,255,255,0.5);
	z-index:3;
}
*/


.innerFrame {
	position:relative;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	max-width:1500px;
}

#PAGE_index #bgLayer:before {
	background-position:100% 100% ,0 0;
}
#PAGE_index #body > .innerFrame {
	max-width:initial;
}



#h1 {
	position:relative;
	margin-left:280px;
	padding:5px;
	line-height:1;
	z-index:11;
	text-align:center;
	overflow:hidden;
	color:#fff;
	background:rgba(153,0,0,0.6);
}


@media screen and (max-width:799px) { 
	body {
		padding:0;
	}
	body #bgLayer {
		width:480px;
		min-width:initial;
		margin:auto;
		padding-left:10px;
		padding-right:10px;
		box-shadow:1px 0 10px #000 ,-1px 0 10px #000;
	}
	#bgLayer:before {
		min-width:auto;
		height:100vh;
		background-position:70% 50%;
		background-size:cover;
	}
	#bgLayer:after {
		height:100vh;
	}
	body #mainBloc {
		padding-top:40px;
	}

	main > *:first-child > .contentsBloc {
		padding-top:0;
	}
}



/* ==============================================
	header(left side fixed)
=============================================== */
@media screen and (min-width:800px) { 
	#header {
		position:fixed;
		left:0;
		top:0;
		width:271px;
		height:100%;
		padding-left:24px;
		z-index:100;
		box-shadow:0 0 0 2px #fff,0 0 0 7px #f69,0 0 0 9px #fff;
	}
	#header #headerInner {
		height:100%;
		overflow:hidden;
	}
}

@media screen and (max-width:799px) { 
	#header {
		position:fixed;
		top:0;
		left:0;
		width:100%;
		height:73px;
		z-index:102;
	}
	#header #headerInner {
		position:relative;
		z-index:103;
		width:100%;
		height:100%;
		background:rgba(255,255,255,0.9);
		border-bottom:3px solid #c06;
	}
}



/* ==============================================
	header(left side fixed) shopname & shopinfo
=============================================== */
#header ul#headerTitle {
	width:100%;
	text-align:center;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	align-items:center;
}
#header ul#headerTitle li {
	display:block;
	margin:auto;
}
#header ul#headerTitle li#headerLogo a {
	display:block;
	width:100%;
	height:100%;
}

@media screen and (min-width:800px) { 
	#header ul#headerTitle {
		padding-top:5px;
	}
	#header ul#headerTitle li {
		width:100%;
	}
	#header ul#headerTitle li#headerLogo a img {
	}
	#header ul#headerTitle li#headerInfo {
		padding:5px;
		font-family:var(--font-title);
	}
	#header ul#headerTitle li#headerInfo .time {
		font-size:160%;
		border-bottom:2px dotted #c06;
		color:#c00;
	}
	#header ul#headerTitle li#headerInfo .tel {
		font-size:180%;
	}
	#header ul#headerTitle li#headerInfo .tel a {
		color:#00c;
	}
}
@media screen and (max-width:799px) { 
	#header ul#headerTitle {
		position:relative;
		z-index:2;
		width:480px;
		height:100%;
		margin:auto;
		flex-direction:row;
	}
	#header ul#headerTitle li#headerLogo {
		width:360px;
		height:100%;
		text-align:left;
		padding:0 0.5em;
	}
	#header ul#headerTitle li#headerLogo a {
		display:flex;
		justify-content:flex-start;
		align-items:center;
	}
	#header ul#headerTitle li#headerLogo a img {
		max-height:64px;
	}
	#header ul#headerTitle .headerIcon {
		width:70px;
		padding:5px;
	}
	#header ul#headerTitle .headerIcon img {
		width:60px;
		height:60px;
	}
	#header ul#headerTitle li#headerLogo a span {
		padding-left:10px;
	}
}









/* ==============================================
	header(left side fixed) price panel
=============================================== */
#headerPrice {
	width:230px;
	padding-bottom:0.5em;
	margin:auto;
	text-align:center;
}
#headerPrice #headerPriceC {
	color:#000;
	font-size:70%;
}

@media screen and (max-width:799px) { 
	#header {
		min-width:initial;
	}
}




/* ==============================================
	header(left side fixed) nav menu
=============================================== */
@media screen and (min-width:800px) { 
	#header #headerInner .navMenuBloc {
		display:block !important;
	}
	#header ul.navMenu {
		width:230px;
		margin:0 auto;
		text-align:center;
		line-height:1.3;
		font-family:var(--font-title);
	}
	#header ul.navMenu li {
		position:relative;
		width:100%;
		padding-bottom:2px;
	}
	#header ul.navMenu li a {
		position:relative;
		width:100%;
		padding:0.2em 1em 0;
		color:#633;
		display:flex;
		justify-content:center;
		align-items:center;
	}
	#header ul.navMenu li a span:nth-child(1){
		font-size:180%;
		-webkit-text-stroke:1px;
	}
	#header ul.navMenu li a span:nth-child(2){
		display:none;
	}

	#header ul.navMenu li.active a {
		color:#f69;
		background:#fff;
		outline:2px solid #f69;
	}
	#header ul.navMenu li:not(.active):hover a {
		color:#c06;
	}
}


@media screen and (max-width:799px) { 
	#header .navMenuBloc{
		position:fixed;
		z-index:1;
		top:73px;
		right:-100%;
		padding:10px 0;
		border-left:3px solid #c06;
		border-bottom:3px solid #c06;
		background:rgba(255,255,255,0.9);
		transition:all 0.3s ease;
	    -webkit-transition:all 0.3s ease;
	}
	#header .navMenuBloc.on {
		right:0;
	}
	#header .navMenuBloc a {
	}
	#header .navMenuBloc a {
		display:block;
		font-size:130%;
		padding:10px 50px;
		color:#000;
		-webkit-text-stroke:1px;
	}
	#header ul.navMenu li a span:nth-child(1){
		display:none;
	}
}


/* ==============================================
	header(left side fixed) nav menu
=============================================== */
.navIcons {
	height:100px;
	padding-top:10px;
	display:flex;
	justify-content:center;
	text-align:center;
}
.navIcons li {
}
.navIcons li a {
	position:relative;
	display:block;
	width:50px;
	height:50px;
	background:url(images/icons/side_navi_icon.png) no-repeat;
	transition:none;
    -webkit-transition:none;

}
.navIcons li a span {
	display:none;
}
.navIcons li a:hover {
	opacity:1;
}




.navIcons a {
	--bg-pos-top:0px
}
.navIcons a:hover {
	--bg-pos-top:-50px
}

.navIcons li:nth-child(1) a {
	--bg-pos-left:0px;
	--notes-pos:-0.6em;
}
.navIcons li:nth-child(2) a {
	--bg-pos-left:-50px;
	--notes-pos:-0.6em;
}
.navIcons li:nth-child(3) a {
	--bg-pos-left:-100px;
	--notes-pos:-0.1em;
}
.navIcons li:nth-child(4) a {
	--bg-pos-left:-150px;
	--notes-pos:0.3em;
}

.navIcons li a {
	background-position:var(--bg-pos-left) var(--bg-pos-top);
}

.navIcons li a:hover:before {
	content:attr(data-title);
	color:#232323;
	position:absolute;
	top:calc(100% + 0.2em);
	left:var(--notes-pos);
	right:var(--notes-pos);
	padding:0.1em;
	color:#c06;
	background:#fff;
	font-size:85%;
	border-radius:0.5em;
	box-shadow:0 0 3px #c06;
	white-space:nowrap;
}
@media screen and (min-width:800px) { 
}



#navBottomIcon {
	padding-bottom:30px;
	text-align:center;
}
#navBottomIcon img {
	width:80px;
}
@media screen and (max-width:799px) { 
	#navBottomIcon {
		padding-top:20px;
		padding-bottom:10px;
	}
}




/* ==============================================
	footer contents links (sidemenu)
=============================================== */
.sidemenu {
	width:100%;
	margin:auto;
	padding-top:50px;
	text-align:center;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.sidemenu li {
	padding:10px;
	width:50%;
}
.sidemenu li a {
	display:inline-block;
	overflow:hidden;
	padding:3px;
}
.sidemenu li span {
	display:none;
}
.sidemenu li img {
}
.sidemenu li a:hover {
	background:#c06;
	box-shadow:0 0 5px #999;
}

@media screen and (max-width:799px) { 
	.sidemenu li {
		width:80%;
	}
	.sidemenu li a {
	}
}





/* ==============================================
	header(left side fixed) copyright
=============================================== */
@media screen and (min-width:800px) { 
	#copyright {
		position:fixed;
		top:0;
		left:0;
		width:24px;
		height:100%;
		padding-top:20px;
		background:#f69;

		line-height:1;
		font-size:80%;
		letter-spacing:1px;
		color:#fff;
	    font-family:var(--font-title);

		writing-mode:vertical-rl;
		-ms-writing-mode:tb-rl;
		-webkit-writing-mode: vertical-rl;

		z-index:101;

		display:flex;
		align-items:center;
	}
	#copyright a {
		color:inherit;
		padding:5px 2px 5px 0;
	}
	#copyright a:hover {
		color:#966;
	}
}
@media screen and (max-width:799px) { 
	#copyright {
		position:relative;
		z-index:101;
		padding:0.3em 0 0.5em;
		text-align:center;
		font-size:90%;
		color:#fff;
		background:#c06;
	}
	#copyright a {
		color:#fff;
	}
}


/* ==============================================
	footer
=============================================== */
#footer {
	position:relative;
	width:100%;
	margin:0;
	text-align:center;
}

#footer #footerInner {
	position:relative;
	width:100%;
	padding-top:100px;
	padding-bottom:30px;
}
#footer #footerInner #footerNavPane .navMenuBloc {
	position:absolute;
	bottom:20px;
	left:0px;
	width:100%;
}
#footer .navMenuBloc .navMenuBlocInner ul.navMenu {
	width:680px;
	max-width:100%;
	margin:auto;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
#footer .navMenuBloc .navMenuBlocInner ul.navMenu li {
	padding:0 10px;
	letter-spacing:1px;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
#footer .navMenuBloc .navMenuBlocInner ul.navMenu li a {
	display:block;
	position:relative;
	width:100%;
	height:100%;
	padding:5px 0;
	color:#333;
	font-size:12px;
	transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
}
#footer .navMenuBloc .navMenuBlocInner ul.navMenu li a span {
	display:block;
	white-space:nowrap;
	-webkit-text-stroke:1px;
}

#footer .navMenuBloc .navMenuBlocInner ul.navMenu li a span:nth-child(1) {
	font-size:16px;
	color:#f06;
}
#footer .navMenuBloc .navMenuBlocInner ul.navMenu li a span:nth-child(2) {
	font-size:11px;
	color:#000;
}


@media screen and (max-width:799px) { 
	#footer #footerInner {
		padding:60px 0 10px;
	}

	#footer #footerNavBloc {
		padding:10px 0;
	}
	#footer #footerNavBloc ul.navMenu {
		display:flex;
		justify-content:center;
		flex-wrap:wrap;
		align-items:stretch;
	}
	#footer #footerNavBloc ul.navMenu li {
		width:32%;
		height:50px;
		line-height:50px;
		margin:0 0.5% 5px;
		text-align:center;
	}
	#footer #footerNavBloc ul.navMenu li:nth-child(1) {
		width:98%;
	}
	#footer #footerNavBloc ul.navMenu li a {
		color:#f06;
		background:#fff;
		text-decoration:none;
		letter-spacing:0;
	}
}





/* ==============================================
	footer > logo & info
=============================================== */

#footer #footerInfo {
	font-size:180%;
	-webkit-text-stroke:1px;
	font-family:var(--font-title);
}
#footer #footerInfo #footerLogo {
	max-width:420px;
	margin:auto;
	padding-bottom:20px;
}
#footer #footerInfo #footerLogo a {
}
#footer #footerInfo #footerLogo a span {
}
#footer #footerInfo #footerText {
	color:#fee;
	text-shadow:0 0 0.3em #fff;
}
#footer #footerInfo #footerTel a {
	font-size:120%;
	color:#cff;
	text-shadow:0 0 0.3em #fff;
}

@media screen and (max-width:799px) { 
	#footer #footerInfo {
		display:block;
		text-align:center;
		font-size:150%;
	}
	#footer #footerInfo li {
		padding:0 10px 5px;
	}
	#footer #footerInfo #footerLogo {
		max-width:40%;
		padding-bottom:20px;
	}
	#footer #footerInfo #footerText {
		padding-bottom:0;
	}
	#footer #footerInfo #footerTel {
		padding-bottom:0;
	}
	#footer #footerInfo #footerTel a {
	}
}





/* ==============================================
	contents body
=============================================== */
#body {
	position:relative;
	width:100%;
	margin:0;
	z-index:5;
}

@media screen and (min-width:800px) { 
	body:not(#PAGE_index) #body {
		min-width:1380px;
		min-height:100%;
		padding-top:10px;
		padding-bottom:10px;
		padding-left:300px;
		padding-right:20px;
		z-index:10;
	}
	#mainBloc {
		padding-top:30px;
	}
}
@media screen and (max-width:799px) { 
	#body {
		padding-top:90px;
	}
}


/* ==============================================
	index
=============================================== */
#PAGE_index #h1 {
	display:none;
}
#PAGE_index #header {
	display:none;
}

#PAGE_index #body {
	padding-top:30px;
	padding-left:24px;
}

#enterMainFrame {
	position:relative;
	text-align:center;
}
#enterImage {
	position:relative;
	display:inline-block;
}
#enterImage img {
	border:3px solid #fff;
	box-shadow:0 0 0.5em #000;
}

#enterImage > #enterFrontLogo {
	position:absolute;
	top:3%;
	left:3%;
	width:36%;
}



ul#enterButtonBloc {
	position:relative;
	width:100%;
	padding-top:30px;
	display:flex;
	justify-content:center;
	align-items:center;
	font-family:var(--font-title);
}
ul#enterButtonBloc li {
	padding:0 20px;
}
#icon18kin {
	width:140px;
}

ul#enterButtonBloc li a {
	position:relative;
	z-index:1;
	display:block;
	padding-bottom:0.2em;
	line-height:1.4;
	color:#000;
	font-size:100px;
	-webkit-text-stroke:3px;
}
ul#enterButtonBloc li a span {
	display:block;
	padding:0 0.5em;
}
ul#enterButtonBloc li a > span:nth-child(2) {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:-1;
	-webkit-text-stroke:10px #fff;
}

ul#enterButtonBloc li a:hover {
	color:#f06;
}



@media screen and (max-width:799px) { 
	#PAGE_index #body {
		padding:10px 0;
	}

	ul#enterButtonBloc {
	}
	ul#enterButtonBloc li {
		padding:0;
	}
	#icon18kin {
		width:60px;
	}
	ul#enterButtonBloc li a {
		font-size:320%;
	}
}








/* ==============================================
	headline
=============================================== */
#headline {
	position:relative;
	height:110px;
	padding:12.5px 10px;
	margin-bottom:40px;
	background:#fff;
	display:flex;
}
#headline h2 {
	width:200px;
	line-height:85px;
}
#headline h2 img{
	max-height:85px;
}
#headline #headlineText {
	width:calc(100% - 200px);
	height:100%;
	padding:10px;
	color:#fff;
	background:#888;
}
#headline #headlineText #headlineTextInner {
	width:100%;
	height:100%;
	overflow:hidden;
}
#headline #headlineText #headlineTextInner ul {
	display:inline-block;
	font-size:0;
	white-space:nowrap;
}
#headline #headlineText #headlineTextInner ul li {
	display:inline-block;
	padding-left:200px;
	line-height:65px;
	font-size:36px;
}
#headline #headlineText #headlineTextInner ul li span {
	padding-left:0.5em;
	font-size:16px;
	color:#ccc;
}


@media screen and (max-width:799px) {
	#headline {
		height:50px;
		padding:7.5px 7.5px 7.5px 0;
	}
	#headline h2 {
		width:100px;
		overflow:hidden;
		margin-top:-27.5px;
	}
	#headline h2 img {
		width:100px;
		max-width:none;
	}
	#headline #headlineText {
		width:calc(100% - 100px);
		padding:5px;
	}
	#headline #headlineText #headlineTextInner ul li {
		font-size:20px;
		line-height:26px;
	}
}






/* ==============================================
	home > homeTop > slider
=============================================== */
#homeSliderBloc {
	margin:auto;
	padding-bottom:50px;
}
#homeSliderBloc .bx-wrapper {
}
#homeSliderBloc .bx-wrapper .bx-viewport {
	background:transparent;
	border:0 none;
	text-align:center;
}
#homeSliderBloc .bx-wrapper .bx-viewport img {
	max-width:100%;
	border:1px solid #fff;
	box-shadow:2px 2px 5px #666;
}
#bgLayer #homeSliderBloc .bx-wrapper .bx-pager {
	bottom:-50px;
}


/* ==============================================
	home pickup
=============================================== */
#homePickup {
	width:1000px;
	margin:auto;
	padding-bottom:40px;
}
#homePickup ul.pickupList {
}
ul li.castPickupCell:not(.castCell) {
}
ul li.castPickupCell:not(.castCell) .castImage {
	display:block;
	float:left;
	width:422px;
	height:562px;
	margin:20px;
	position:relative;
}
ul li.castPickupCell:not(.castCell) .castImage a img {
	border:1px solid #fff;
	transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
	box-shadow:0 0 5px #333;
}
ul li.castPickupCell:not(.castCell) .castImage a:hover img {
	box-shadow:0 0 15px 5px #999;
}

ul li.castPickupCell:not(.castCell) .castInfo {
	display:block;
	float:left;
	width:520px;
	height:562px;
	margin:20px 0;
	padding:15px;
	box-shadow:0 0 5px #333;
	overflow:auto;
	font-size:13px;
	line-height:1.5;
	letter-spacing:1px;
	background-color:rgba(255,153,204,0.6);
}
ul li.castPickupCell:not(.castCell) .castInfo img {
	vertical-align:sub;
}
ul li.castPickupCell:not(.castCell) .castInfo .castName {
	display:block;
	text-align:center;
	font-size:36px;
	color:#f06;
	line-height:1.3;
	letter-spacing:2px;

	background-color:rgba(255,255,255,0.8);
	box-shadow:1px 1px 3px #333 inset;
	border-radius:20px;
}
ul li.castPickupCell:not(.castCell) .castInfo .castName span {
	display:inline-block;
}
ul li.castPickupCell:not(.castCell) .castInfo .castName span:nth-child(1) {
	font-size:28px;
}
ul li.castPickupCell:not(.castCell) .castInfo .castSize {
	display:block;
	text-align:center;
	font-size:16px;
	color:#000;
}
ul li.castPickupCell:not(.castCell) .castInfo .castIcon {
	display:block;
	text-align:center;
	font-size:12px;
}
ul li.castPickupCell:not(.castCell) .castInfo .castIcon .textIcon {
	display:inline-block;
	margin:0 2.5px;
	font-size:13px;
	line-height:20px;
	letter-spacing:0;
	padding:7px 20px 5px 15px;
	background:#e2b2cd;
}
ul li.castPickupCell:not(.castCell) .castInfo .castCatch {
	display:block;
	text-align:center;
	font-size:14px;
}

ul li.castPickupCell:not(.castCell) .castInfo .castTime {
	display:block;
	width:95%;
	margin:3px auto;
	height:25px;
	color:#90f;
	padding-top:2px;
	overflow:hidden;
	text-align:center;
	-webkit-text-stroke:1px;
}
ul li.castPickupCell:not(.castCell) .castInfo .castTime.castFlagToday {
	background-color:rgba(255,255,255,0.8);
	box-shadow:1px 1px 5px #666 inset;
}
ul li.castPickupCell:not(.castCell) .castInfo .castTime.castFlagToday:before {
	content:"本日出勤　";
	color:#900;
}
ul li.castPickupCell:not(.castCell) .castInfo .castText {
	display:block;
	text-align:left;
	margin:auto 10px;
	padding:10px;
	background-color:rgba(255,255,255,0.8);
	box-shadow:1px 1px 5px #666 inset;
}

ul li.castPickupCell:not(.castCell) .castInfo dl.castProf {
	display:block;
	padding:10px 1em;
}
ul li.castPickupCell:not(.castCell) .castInfo dl.castProf dt {
	color:#f06
}
ul li.castPickupCell:not(.castCell) .castInfo dl.castProf dt:before {
	content:"★";
}
ul li.castPickupCell:not(.castCell) .castInfo dl.castProf dd {
	padding-left:1em;
}


#bgLayer .bx-wrapper .bx-pager {
	text-align:center;
	font-size:0;
	margin:auto;
	bottom:auto;
}

#bgLayer .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item {
	width:40px;
	height:40px;
	line-height:40px;
	text-align:center;
}

#bgLayer .bx-wrapper .bx-pager.bx-default-pager a {
	display:inline-block;
	width:40px;
	height:40px;
	font-size:0;
	vertical-align:top;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
	background-color:transparent;
	border:0 none;
	box-shadow:none;
}
#bgLayer .bx-wrapper .bx-pager.bx-default-pager a.active {
}
a.bx-pager-link:after {
    content:"\02665";
    font-size:24px;
    color:#f4c;
}
a.bx-pager-link.active:after {
    font-size:36px;
    color:#0a9;
}

@media screen and (max-width:1370px) { 
	#homePickup {
		width:820px;
	}
	ul li.castPickupCell:not(.castCell) .castImage {
		width:302px;
		height:402px;
	}
	ul li.castPickupCell:not(.castCell) .castInfo {
		width:460px;
		height:402px;
	}
}
@media screen and (max-width:1170px) { 
	#homePickup {
		width:730px;
	}
	ul li.castPickupCell:not(.castCell) .castImage {
		width:272px;
		height:362px;
	}
	ul li.castPickupCell:not(.castCell) .castInfo {
		width:400px;
		height:362px;
		font-size:12px;
	}
}
@media screen and (max-width:1070px) { 
	#homePickup {
		width:640px;
	}
	ul li.castPickupCell:not(.castCell) .castImage {
		width:242px;
		height:322px;
	}
	ul li.castPickupCell:not(.castCell) .castInfo {
		width:340px;
		height:322px;
	}

	ul li.castPickupCell:not(.castCell) .castInfo .castName {
		font-size:28px;
	}
	ul li.castPickupCell:not(.castCell) .castInfo .castName span:nth-child(1) {
		font-size:20px;
	}
	ul li.castPickupCell:not(.castCell) .castInfo .castSize {
		font-size:14px;
	}
}




/* ==============================================
	home schedule
=============================================== */
#homeSchedule {
	padding-bottom:40px;
}

/* ==============================================
	home blog
=============================================== */
#homeBlog {
	width:960px;
	margin:auto;
	height:640px;
}

@media screen and (max-width:1170px) { 
	#homeBlog {
		width:700px;
	}
}
@media screen and (max-width:1070px) { 
	#homeBlog {
		width:600px;
	}
}


/* ==============================================
	home news
=============================================== */
#homeNews {
	margin:auto;
	overflow:auto;
}
#PAGE_news #homeNews {
	height:auto;
}
#homeNews .newsInfo {
	line-height:1.1;
}

#homeNews .newsDate {
	font-size:90%;
}


#newsLink {
	padding:20px 0;
}
#newsLink a {
	color:#fcf;
}
#newsLink a:hover {
	color:#fff;
}



/* ==============================================
	cast list
=============================================== */

ul.castList {
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
}
ul.castList li.castCell {
	position:relative;
	display:block;
	width:calc(100% / 4);
	padding:5px 10px 15px;
	text-align:center;
}

ul.castList li.castCell .castImage {
	display:block;
	position:relative;
}
ul.castList li.castCell .castImage img {
	width:100%;
	aspect-ratio:600/800;
	object-fit:cover;
}
ul.castList li.castCell .castImage .noimageText {
	position:absolute;
	top:0px;
	bottom:0px;
	left:3%;
	right:3%;
	padding-top:57%;
	text-align:center;
	font-size:30px;
	line-height:1.4;
	font-weight:700;
	color:#000;
	text-shadow:0px 0px 5px #fff ,0px 0px 5px #fff ,0px 0px 5px #fff
				,0px 0px 10px #fff ,0px 0px 10px #fff ,0px 0px 10px #fff
				,0px 0px 10px #fff ,0px 0px 10px #fff ,0px 0px 10px #fff;
}
ul.castList li.castCell .castImage .noimageText > span {
	display:block;
	width:100%;
	overflow:hidden;
	white-space:nowrap;
}

@media screen and (max-width:1620px) { 
	ul.castList li.castCell .castImage .noimageText {
		font-size:1.5vw;
	}
}
@media screen and (max-width:1120px) { 
	ul.castList li.castCell .castImage .noimageText {
		font-size:14px;
	}
}
@media screen and (max-width:799px) { 
	ul.castList li.castCell .castImage .noimageText {
		font-size:14px;
	}
}


ul.castList li.castCell .aFrame {
	display:block;
	color:#fff;
	background:#300;
	padding-bottom:5px;
	outline: 1px solid #fff;
}



ul li.castFlagNewface .castImage:before ,
ul li.castFlagPickup .castImage:after {
	content:"";
	position:absolute;
	width:25%;
	aspect-ratio:1/1;
	background-image:url(images/icons/newface_icon.png);
	background-repeat:no-repeat;
	background-position:0 0;
	background-size:contain;
	z-index:5;
}
ul li.castFlagNewface .castImage:before {
	top:1px;
	right:1px;
}
ul li.castFlagPickup .castImage:after {
	left:1px;
	bottom:1px;
	background-image:url(images/icons/pickup_icon.png);
	background-position:0 100%;
}



ul.castList li.castCell .castInfo {
	display:block;
	font-size:14px;
	line-height:1.6;
	color:#fff;
	margin:0 5px;
}
ul.castList li.castCell .castInfo .castName {
	display:block;
	font-size:24px;
	line-height:1.3;
	border-bottom:1px solid #fff;
}
ul.castList li.castCell .castInfo .castSize {
	display:block;
	height:24px;
	overflow:hidden;
}
ul.castList li.castCell .castInfo .castIcon {
	display:flex;
	height:24px;
	line-height:24px;
	justify-content:center;
	flex-wrap:wrap;
	overflow:hidden;
}
ul.castList li.castCell .castInfo .castIcon .textIcon {
	display:block;
	min-width:25%;
	margin:0 3px;
	padding:0 2px;
	font-size:12px;
	letter-spacing:0;
	color:#fff;
	background:#c06;
}

ul.castList li.castCell .castInfo .castTime {
	display:block;
	margin-top:5px;
	height:24px;
	line-height:24px;
	overflow:hidden;
	color:#000;
	background:#fff;
}
ul.castList li.castCell .castInfo .castTime.castFlagToday {
}
ul.castList li.castCell .castInfo .castTime.castFlagToday:before {
	content:"本日出勤 ";
}
ul.castList li.castCell .castInfo .castText {
	display:none;
}
ul.castList li.castCell .castInfo .castProf {
	display:none;
}


ul.castList li.castCell a.aFrame {
	transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
}
ul.castList li.castCell a.aFrame:hover {
	background:#900;
	box-shadow:0 0 0 3px #fff;
}


@media screen and (max-width:1320px) { 
	ul li.castFlagNewface .castImage:before {
		top:5px;
		left:5px;
	}
	ul li.castFlagPickup .castImage:after {
		left:3px;
	}

	ul.castList li.castCell .castInfo {
		font-size:12px;
	}
	ul.castList li.castCell .castInfo .castName {
		font-size:18px;
	}
	ul.castList li.castCell .castInfo .castSize {
		height:36px;
		line-height:1.4;
		letter-spacing:0;
	}
	ul.castList li.castCell .castInfo .castSize span {
		display:block;
	}
	ul.castList li.castCell .castInfo .castIcon .textIcon {
		min-width:25%;
		margin:0 1px;
		padding:0 2px;
	}
	ul.castList li.castCell .castInfo .castCatch {
		height:22px;
		font-size:11px;
		letter-spacing:-1px;
	}
	ul.castList li.castCell .castInfo .castTime {
		height:22px;
		line-height:22px;
	}
}
@media screen and (max-width:1120px) { 
	ul.castList li.castCell a.aFrame {
		padding:3px;
	}
	ul.castList li.castCell .castInfo {
		margin-top:5px;
	}
	ul.castList li.castCell .castInfo .castName {
		font-size:14px;
		height: 1.3em;
	}
	ul.castList li.castCell .castInfo .castTime.castFlagToday:before {
		content:"";
	}
}
@media screen and (max-width:799px) { 
	ul.castList li.castCell {
		width:calc(100% / 3);
	}
	ul.castList li.castCell {
		padding: 5px 3px 10px;
	}
	ul.castList li.castCell a.aFrame {
		padding:3px;
	}
	ul.castList li.castCell .castInfo {
		margin:4px 0 0;
	}
	ul.castList li.castCell .castInfo .castSize {
		height:36px;
	}
	ul.castList li.castCell .castInfo .castSize span {
		display:block;
	}
	ul.castList li.castCell .castInfo .castIcon {
		height:20px;
		line-height:20px;
	}
	ul.castList li.castCell .castInfo .castIcon .textIcon {
		min-width:initial;
		margin:0 1px;
		padding:0 2px;
		font-size:10px;
	}
}



/* ==============================================
	cast schedule
=============================================== */
#dateList {
	width:100%;
	padding:1em 0;
	display:flex;
	justify-content:space-between;
	text-align:center;
}
#dateList li {
	width:calc(100% / 7 - 0.3em);
	padding:0.3em 0 0.4em;
	font-size:120%;
	color:#fff;
	background:#300;
	border:2px solid #fff;
	cursor:pointer;
}
#dateList li.on {
	color:#f69;
	background:#fff;
	border-color:#f69;
	-webkit-text-stroke:1px;
}
#dateList li:not(.on):hover {
	background:#633;
}

#dateList li span.wday {
	font-size:80%;
}

@media screen and (max-width:799px) { 
	#dateList li {
		width:calc(100% / 7 - 2px);
		padding:10px 0;
		font-size:110%;
		letter-spacing:-2px;
		text-indent:-2px;
		line-height:1.2;
	}
	#dateList li span.wday {
		display:block;
	}
}




/* ==============================================
	cast ranking
=============================================== */
#PAGE_ranking ul.castList li.rankTitle {
	margin-top:20px;
	margin-bottom:20px;
}

#PAGE_ranking ul.castList li.castCell {
	width:19%;
	margin:5px 0.5% 15px;
}

.castRank {
	display:inline-block;
	width:100%;
	font-size:16px;
	font-weight:bold;
	line-height:26px;
	color:#fff;
	background:#f69;
}
.ranking ul.castList li.castCell.castFlagNewface a.aFrame:after {
	top:35px;
}

/*
#ranking0 .castRank {
	color:#f06;
}
#ranking1 .castRank {
	color:#60f;
}
#ranking2 .castRank {
	color:#f60;
}
#ranking3 .castRank {
	color:#06f;
}
*/


@media screen and (max-width:799px) {
	#PAGE_ranking ul.castList li.castCell {
		width:calc(100% / 3 - 2%);
		margin:5px 1% 15px;
	}

	/* ==============================================
		rank 1 custom
	=============================================== */
/*
	#PAGE_ranking ul li.castPickupCell.rank1 {
		display:block;
		width:98%;
		text-align:center;
		display:flex;
		flex-wrap:wrap;
		justify-content:space-around;
	}
	#PAGE_ranking ul li.castPickupCell.rank1 .castRank {
		width:100%;
		height:30px;
		line-height:30px;
		font-size:20px;
	}
	#PAGE_ranking ul li.castPickupCell.rank1 .castImage {
		float:none;
		position:relative;
		width:188px;
		height:248px;
	}

	#PAGE_ranking ul li.castPickupCell.rank1 .castInfo {
		display:block;
		float:none;
		width:calc(100% - 188px - 20px);
		margin-top:0;
		height:248px;
	}

	#PAGE_ranking ul li.castPickupCell.rank1 .castInfo .castName {
		font-size:24px;
		padding-top:5px;
	}
	#PAGE_ranking ul li.castPickupCell.rank1 .castInfo .castSize {
		height:auto;
		font-size:16px;
		padding-top:10px;
	}
	#PAGE_ranking ul li.castPickupCell.rank1 .castInfo .castIcon {
		height:auto;
		padding-top:10px;
	}
	#PAGE_ranking ul li.castPickupCell.rank1 .castInfo .castIcon .textIcon {
		padding:2px 5px;
		font-size:14px;
	}
*/

	/* ==============================================
		rank 2,3 custom
	=============================================== */
	#PAGE_ranking ul.castList li.castCell.rank1 ,
	#PAGE_ranking ul.castList li.castCell.rank2 {
		width:calc(100% / 2 - 2%);
	}
}




/* ==============================================
	system
=============================================== */
.system {
	width:1000px;
	padding-top:15px;
	max-width:100%;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

.system ul.infoBox {
	padding:1em;
	line-height:1.4;
}

.system ul.infoBox li.cate {
	padding-bottom:0.5em;
	border-bottom:1px solid #fff;
	margin-bottom:0.5em;
}
.system ul.infoBox li.cate > span.course {
	font-size:250%;
	color:#f06;
	-webkit-text-stroke:1px;
}
.system ul.infoBox li.cate > span.playtime {
	font-size:200%;
}
.system ul.infoBox li.cate > .comment {
	font-size:140%;
}

.system ul.infoBox li.cate > span.image {
	width:100%;
}

.system ul.infoBox li.flex {
	padding:0 1em;
	display:flex;
	flex-wrap:wrap;
	align-items:flex-start;
	text-align:center;
}
.system ul.infoBox li.flex > span.time {
	width:50%;
	font-size:210%;
	color:#06f;
	-webkit-text-stroke:1px;
}
.system ul.infoBox li.flex > span.price {
	width:50%;
	color:#06f;
	font-size:210%;
	-webkit-text-stroke:1px;
}
.system ul.infoBox li.flex > span.text {
	width:100%;
	padding-bottom:0.5em;
	font-size:140%;
}


.system.notice ul.infoBox li.title {
	font-size:180%;
	padding-bottom:0.3em;
	border-bottom:1px solid #666;
	margin-bottom:0.5em;
	-webkit-text-stroke:1px;
}
.system.notice ul.infoBox li.text {
	padding:0 1em;
	text-align:left;
}


@media screen and (max-width:799px) { 
	.system ul.infoBox {
		padding:10px 15px;
	}
	.system ul.infoBox li.cate > span.course {
		display:block;
		font-size:180%;
	}
	.system ul.infoBox li.cate > span.playtime {
		display:block;
		padding:0;
		font-size:150%;
	}
	.system ul.infoBox li.cate > .comment {
		font-size:120%;
	}


	.system ul.infoBox li.flex {
		padding:0 0.5em;
	}
	.system ul.infoBox li.flex > span.time {
		font-size:160%;
		text-align:left;
	}
	.system ul.infoBox li.flex > span.price {
		font-size:160%;
		text-align:right;
	}
	.system ul.infoBox li.flex > span.text {
		font-size:110%;
	}

	.system.notice ul.infoBox li.title {
	font-size:150%;
	}
	.system.notice ul.infoBox li.text {
		padding:0 0.5em;
	}

}





/* ==============================================
	access
=============================================== */
.access {
	max-width:100%;
	text-align:center;
}
.access iframe {
	width:90%;
	height:360px;
	margin:auto auto 15px;
	border:1px solid #fff;
}
.access .infoBox {
	width:90%;
	margin:auto;
}

.access .infoBox .shopName {
	color:#f06;
	font-size:24px;
}



/* ==============================================
	recruit button
=============================================== */
.recruitButton {
	padding:20px 0;
	text-align:center;
}
.recruitButton a {
	display:inline-block;
	padding:0.5em 3em;
	color:#c06;
	background-color:rgba(255,255,255,0.8);
	font-size:150%;
	border:2px solid #c06;
	border-radius:0.5em;
	-webkit-text-stroke:1px;
}
.recruitButton a:before {
	content:">> ";
}
.recruitButton a:hover {
	color:#fff;
	background-color:#c06;
	border:2px solid #fff;
}



/* ==============================================
	recruit color
=============================================== */
.recruit-1 {
	--main-color:#06c;
}
.recruit-1 .titleBar {
	color:var(--main-color);
}
.recruit-1 .titleBar > span:nth-child(1):after {
	background-color:var(--main-color);
}
.recruit-1 .infoBox.white {
	border-color:var(--main-color);
}
.recruit-1 .recruitButton a {
	color:var(--main-color);
	border-color:var(--main-color);
}
.recruit-1 .recruitButton a:hover {
	color:#fff;
	background-color:var(--main-color);
}


@media screen and (max-width:799px) {
	.contentsBloc.recruitBloc .infoBox {
		padding:5px 10px;
	}
}

/* ==============================================
	recruit parts
=============================================== */
.formNotes {
	padding-bottom:30px;
	font-size:20px;
	letter-spacing:0.1em;
	padding-left:3em;
	text-align:left;
}
.formNotes.center {
	text-align:center;
}
.formNotes.center.pb30 {
	padding-bottom:30px;
}

.error {
	display:block;
	color:#f06;
}

@media screen and (max-width:799px) {
	.formNotes {
		font-size:16px;
	}
}



/* ==============================================
	recruit form
=============================================== */
form .commonTable {
	width:100%;
	padding:0 2em;
	text-align:left;
	color:#000;
}
form .commonTable th {
	width:35%;
	padding:20px 0 20px 20px;
	text-align:right;
}
form .commonTable td {
	width:65%;
	padding:20px;
	border-bottom:1px solid #999;
}

#PAGE_recruit_form .commonTable td:not(.noData) ,
form.status2 .commonTable td:not(.noData) {
	padding:20px 10px;
}

@media screen and (max-width:799px) {
	#PAGE_recruit_form .commonTable td:not(.noData) {
		padding-top:5px;
	}
}

form .commonTable .flex {
	display:flex;
	justify-content:flex-start;
}

form .commonTable .form-comment {
	font-size:80%;
	letter-spacing:1px;
}

form .commonTable label {
	display:inline-block;
	text-align:left;
	padding-right:1em;
}


form th {
	text-align:right;
}
form td span {
	display:block;
}
form th .required:after ,
form th .required:before {
	display:inline-block;
	padding:0 0.3em;
	font-size:80%;
	color:#fff;
	background:#f06;
	border-radius:3px;
}

form .form-comment {
	padding-top:0.3em;
	font-size:90%;
	color:#666;
}


@media screen and (min-width:800px) { 
	form th .required:after {
		content:attr(data-text);
		margin-left:0.3em;
	}
}

@media screen and (max-width:799px) { 
	form .commonTable ,
	form .commonTable caption,
	form .commonTable thead,
	form .commonTable tbody,
	form .commonTable tfoot,
	form .commonTable tr,
	form .commonTable th,
	form .commonTable td {
		display:block;
		text-align:left;
	}
	form .commonTable {
		padding:0 0.5em;
	}
	form .commonTable th {
		width:100%;
		padding:0.5em 1em;
		border-bottom:0 none;
	}
	form .commonTable td {
		width:100%;
		padding:0 2em 0.5em;
	}
	form .commonTable .flex.field-group {
		flex-direction:column;
	}
	form th .required:before {
		content:attr(data-text);
		margin-right:0.3em;
	}
}



input {
	max-width:100%;
}
input.widthS {
	width:3em;
}
input.widthMS {
	width:8em;
}
input.widthM {
	width:10em;
}
input.widthL {
	width:20em;
}
textarea {
	width:80%;
	max-width:100%;
	height:5em;
}
textarea.heightL {
	height:8em;
}
.formButton {
	width:100%;
	margin:auto 10px;
	padding:30px 0;
	text-align:center;
	font-size:13px;
}

@media screen and (max-width:799px) { 
	textarea {
		display:block;
		margin:suto 0;
	}
}




.recruitBloc #formTable {
	padding:0;
	letter-spacing:0.1em;
}
.recruitBloc #formTable dt {
	width:40%;
	text-align:right;
	padding:10px 5px;
}
.recruitBloc #formTable dd {
	width:60%;
	padding:10px 5px;
}


@media screen and (max-width:799px) {
	.recruitBloc #formTable dt {
		width:100%;
		text-align:left;
		padding-left:1em;
		padding-bottom:0;
	}
	.recruitBloc #formTable dd {
		width:100%;
		padding-left:2em;
	}

}




/* ==============================================
	mailmagazine
=============================================== */
#PAGE_melmaga {
}

#PAGE_melmaga input[type='text'] {
	width:480px;
	max-width:75%;
}
#PAGE_melmaga input[type='submit'] {
	padding:0.2em 1em;
}

#PAGE_melmaga .infoBox.notes p {
	padding:10px 0;
}

@media screen and (max-width:799px) {
	#PAGE_melmaga input[type='submit'] {
		margin-top:0.5em;
	}
}


/* ==============================================
	link banner
=============================================== */
.linkList {
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}
.linkList li {
	padding:5px;
}
.linkList li.w100 {
	width:100%;
	text-align:center;
}

.linkList li a {
	display:block;
	padding:5px;
	text-align:center;
	font-size:11px;
	color:#333;
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	-webkit-text-overflow:ellipsis;
	border-radius:5px;
}
.linkList li a:hover {
	color:#fff;
	background:#f9c;
}




/* ==============================================
	profile
=============================================== */
.profileName {
	text-align:center;
	font-size:42px;
}
.profileName .number {
}
.profileName .profileSize {
	display:block;
	font-size:24px;
}

#PAGE_profile h3.titleBar.sub {
	padding-bottom:0;
}



/* ==============================================
	profile icons
=============================================== */
.profileIcons {
	text-align:center;
	margin-top:15px;
	margin-bottom:15px;
}
.profileIcons .textIcon {
	display:inline-block;
	margin:5px 5px;
	padding:0.1em 1em 0.2em;
	font-size:120%;
	letter-spacing:1px;
	color:#fff;
	background:#c06;
}



/* ==============================================
	profile thumbs slider
=============================================== */
#profileImageFrame {
	position:relative;
	text-align:center;
	margin:auto auto 60px;
	max-width:730px;
	padding:5px;
}

#profileImageFrame.castFlagNewface:before ,
#profileImageFrame.castFlagPickup:after {
	content:"";
	position:absolute;
	top:15px;
	left:calc(50% - 290px);
	width:20%;
	height:100px;
	background-image:url(images/icons/newface_icon.png);
	background-repeat:no-repeat;
	background-position:0 0;
	background-size:contain;
	z-index:5;
}
#profileImageFrame.castFlagPickup:after {
	top:initial;
	bottom:10px;
	left:calc(50% - 295px);
	width:30%;
	background-image:url(images/icons/pickup_icon.png);
	background-position:0 100%;
}



#profileImageFrame .bx-wrapper .bx-pager {
	bottom:-55px;
	text-align:center;
}
#profileImageFrame #profileThumbs li img {
	border:5px solid #fff;
}


#profileImageFrame ul#profileThumbs li.noimage {
	position:relative;
	display:inline-block;
}
#profileImageFrame ul#profileThumbs li.noimage > .noimageText {
	position:absolute;
	top:0px;
	bottom:0px;
	left:5%;
	right:5%;
	padding-top:55%;
	text-align:center;
	font-size:60px;
	line-height:1.4;
	font-weight:700;
	color:#000;
	text-shadow:0px 0px 5px #fff ,0px 0px 5px #fff ,0px 0px 5px #fff
				,0px 0px 10px #fff ,0px 0px 10px #fff ,0px 0px 10px #fff
				,0px 0px 10px #fff ,0px 0px 10px #fff ,0px 0px 10px #fff;
}
#profileImageFrame ul#profileThumbs li.noimage > .noimageText > span {
	display:block;
	width:100%;
	overflow:hidden;
	white-space:nowrap;
}

@media screen and (max-width:799px) { 
	#profileImageFrame.castFlagNewface:before {
		left:15px;
	}
	#profileImageFrame.castFlagPickup:after {
		left:10px;
	}
	#profileImageFrame ul#profileThumbs li.noimage > .noimageText {
		font-size:48px;
	}
}






/* ==============================================
	profile information
=============================================== */
#profileInfoFrame {
	max-width:800px;
	margin:auto auto 60px;
	font-size:95%;
	line-height:1.8;
}


#profileInfoFrame #profileProfileBloc {
}
#profileInfoFrame #profileProfileBloc img {
	vertical-align:top;
}
#profileInfoFrame #profileTable {
	padding:0.5em;
	color:#000;
	background:#fff;
	text-align:left;
	display:flex;
	flex-wrap:wrap;
}
#profileInfoFrame #profileTable dt {
	color:#c06;
	width:330px;
	padding:5px 0.5em;
	-webkit-text-stroke:1px;
}
#profileInfoFrame #profileTable dd {
	width:calc(100% - 330px);
	padding:5px 1em;
}

#profileInfoFrame #profileMessageBloc {
	background:#98999b;
	padding:0.5em;
}
#profileInfoFrame .profileSubHeader {
	color:#f06;
	padding-left:1em;
}

#profileInfoFrame #profileMessageBloc p {
	padding-left:2em;
}

@media screen and (max-width:799px) { 
	#profileInfoFrame {
	}
	#profileInfoFrame #profileTable {
		font-size:120%;
		line-height:1.6;
	}
	#profileInfoFrame #profileTable dt {
		width:100%;
		padding:0 0.5em;
	}
	#profileInfoFrame #profileTable dd {
		width:100%;
		padding-top:0;
		padding-left:2em;
	}
}



/* ==============================================
	profile > right info frame > bottom schedule
=============================================== */
#profileScheduleBloc {
	max-width:800px;
	margin:40px auto;
	color:#333;
}

.profileScheduleCaption {
	text-align:center;
	line-height:2;
	font-size:130%;
	-webkit-text-stroke:1px;
}
.profileSchedule {
	width:100%;
	margin:auto;
	font-size:14px;
	text-align:center;
	border-spacing:3px;
	padding:3px;
	line-height:1.6;
	border-collapse:collapse;
}
.profileSchedule caption {
}
.profileSchedule th ,
.profileSchedule td {
	width:14%;
	border:1px solid #666;
	background:#fff;
}
.profileSchedule th {
	padding:5px 0;
	color:#fff;
	background:#999;
	font-size:16px;
}
.profileSchedule th.week0 {
	background-color:#e65380;
}
.profileSchedule th.week6 {
	background-color:#3355b5;
}

.profileSchedule th span.wday {
	font-size:13px;
}

.profileSchedule td {
	padding:10px 0;
}

@media screen and (max-width:799px) { 
	.profileScheduleCaption {
		padding:10px 0;
		font-size:20px;
	}
	.profileSchedule th ,
	.profileSchedule td {
		font-size:20px;
	}
	.profileSchedule th span.wday {
		font-size:16px;
	}
}




/* ==============================================
	profile review
=============================================== */
#profileReviewFrame {
	max-width:800px;
	margin:auto auto 60px;
	font-size:14px;
	line-height:1.8;
}

#profileReviewFrame .reviewList {
	width:90%;
	margin:auto;
}



/* ==============================================
	profile diary
=============================================== */
#profileDiaryFrame {
	max-width:800px;
	margin:auto auto 60px;
	font-size:14px;
	line-height:1.8;
}




/* ==============================================
	profile(event)
=============================================== */
#profileInfoFrame.eventInfo {
}
#profileInfoFrame.eventInfo #profileProfileBloc {
	display:none;
}
#profileInfoFrame.eventInfo #profileMessageBloc {
	float:none;
	width:100%;
}




/* ==============================================
	profile > guide(bottom)
=============================================== */
#profileGuideBottom {
	padding:3em 0 2em;
	overflow:hidden;
	display:flex;
	justify-content:center;
	text-align:center;
}
#profileGuideBottom li {
	width:150px;
	padding:0 1px;
}

#profileGuideBottom li a {
	display:block;
	width:100%;
	height:100%;
	padding:0.5em 0 0.6em;
	color:#c06;
	background:#fff;
}
#profileGuideBottom li a span {
}
#profileGuideBottom li a:hover {
	background:#f9c;
	color:#fff;
}




/* ==============================================
	loading filter
=============================================== */
#loadingFilter {
	display:none;
	position:fixed;
	top:0;
	left:0;
	margin:0;
	width:100%;
	height:100%;
	z-index:9999;
	background-color:rgba(255,255,255,0.8);
}
body:not(#PAGE_index) #loadingFilter #loadingFrame {
	width:100%;
	height:100%;
	padding-bottom:15%;
}
#loadingFilter #loadingFrame #loadingImg {
	width:100%;
	height:100%;
	background-image:url(img/loading.gif);
	background-position:50% 50%;
	background-repeat:no-repeat;
}

@media screen and (min-width:800px) { 
	body:not(#PAGE_index) #loadingFilter #loadingFrame {
		min-width:1000px;
		max-width:1600px;
		padding-left:300px;
		padding-right:10px;
	}
}




/* ==============================================
	scrollTop
=============================================== */
#scrollTop {
	position:fixed;
	bottom:0;
	right:0;
	display:none;
	width:60px;
	height:60px;
	padding:5px;
	text-align:center;
	background:#fff;
}
#scrollTop #scrollTopInner {
	cursor:pointer;
}
#scrollTop img {
}






/* ==============================================
	transfer Banner
=============================================== */
.innerFrame.comingsoon .date {
	font-size:48px;
}
.innerFrame.comingsoon .dispPC img {
	max-width:900px;
}

.transBanner {
	margin:60px auto 30px;
	text-align:center;
}
.transBanner a {
	display:inline-block;
	font-size:18px;
	line-height:2;
	color:#c06;
}
.transBanner a img {
	border:2px solid transparent;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.transBanner a:hover img {
	border:2px solid #fff;
}


@media screen and (max-width:799px) { 
	.innerFrame.comingsoon .date {
		font-size:32px;
	}
	.transBanner a {
		font-size:14px;
	}

}


/* ==============================================
	price panel(sp)
=============================================== */
@media screen and (max-width:799px) { 
	#PAGE_home .imageList.eventList {
		padding-bottom:0;
	}
	#spPrice {
		padding:0 20px 40px;
		text-align:center;
	}
	#spPrice #spPriceC {
		color:#b83;
		font-size:16px;
	}
}




/* ==============================================
	index recruitpage link
=============================================== */
.recLink {
	padding:60px 20px 30px;
	text-align:center;
}
.recLink a {
	display:inline-block;
}
.recLink a:hover {
	box-shadow:0 0 15px #fff !important;
}
@media screen and (max-width:799px) { 
	.recLink {
		padding-top:0;
	}
}


#filterBg {
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display:block;
	width:100%;
	height:100%;
	background:#fff;
	z-index:10000;
	opacity:0;
}




/* ==============================================
	review
=============================================== */
.review {
	width:100%;
	display:flex;
	justify-content:space-evenly;
	align-items:flex-start;
}
.review .infoBox.white{
	background:rgba(255,255,255,0.4);
}

.review > .reviewBloc {
	width:48%;
}
.reviewCell {
	width:100% !important;
}
.reviewCell .reviewDate {
	padding-right:1em;
	font-size:80%;
	text-align:right;
}
.reviewCell .infoBox.white {
	border-radius:0.5em;
	padding:0.5em 1em;
}
.reviewCell:last-child > .infoBox.white {
	margin-bottom:0;
}


.reviewCell .text {
	padding-left:1em;
}
.reviewCell .body {
	padding-left:1em;
}

.reviewCell .reviewCast {
	padding-bottom:0.3em;
}

.reviewText.infoBox.white {
	margin-bottom:0.5em;
}

.reviewNotes.infoBox.white {
	margin:0.5em 0 0.3em;
}


.reviewButton {
	padding:0 1em;
	display:flex;
	justify-content:center;
	align-items:center;
}
.reviewButton > span ,
.reviewButton > a {
	padding:0 1.5em;
	line-height:2;
	letter-spacing:0.05em;
	color:#fff;
	border:2px solid;
	border-radius:1.5em;
	cursor:pointer;
}
.reviewButton > a {
	margin-left:auto;
}

@media screen and (max-width:1500px) { 
	.review .titleBar > span:nth-child(1) {
		padding:0 0.3em;
	}
}
@media screen and (max-width:799px) { 
	.review {
		align-items:center;
		flex-direction:column;
	}
	.review > .reviewBloc {
		width:100%;
	}
	.reviewBloc.shop {
		margin-bottom:50px;
	}
	.reviewCell .reviewDate {
		padding-right:0.5em;
		font-size:95%;
	}
}



// color

.reviewBloc.shop {
}
.reviewBloc.shop .titleBar {
	color:#06f;
}
.reviewBloc.shop .head {
	color:#03f;
}
.reviewBloc.shop .titleBar span:nth-child(1) ,
.reviewBloc.shop .titleBar.sub ,
.reviewBloc.shop .reviewList.infoBox.white ,
.reviewBloc.shop .reviewButton > * {
	border-color:#09f;
}
.reviewBloc.shop .infoBox.white {
	border-color:#0cf;
}
.reviewBloc.shop .reviewButton > * {
	background-color:#06f;
}
.reviewBloc.shop .reviewButton > *:hover {
	color:#06f;
	background-color:#def;
}


.reviewBloc.cast {
}
.reviewBloc.cast .titleBar {
	color:#f60;
}
.reviewBloc.cast .head {
	color:#f30;
}
.reviewBloc.cast .titleBar span:nth-child(1) ,
.reviewBloc.cast .titleBar.sub ,
.reviewBloc.cast .reviewList.infoBox.white ,
.reviewBloc.cast .reviewButton > * {
	border-color:#f90;
}
.reviewBloc.cast .infoBox.white {
	border-color:#fc0;
}
.reviewBloc.cast .reviewButton > * {
	background-color:#f60;
}
.reviewBloc.cast .reviewButton > *:hover {
	color:#f60;
	background-color:#fed;
}



#profileReviewFrame:not(.all) .reviewList .reviewCell:nth-child(n + 2){
	display:none;
}

@media screen and (max-width:799px) { 
	#profileReviewFrame .titleBar.sub {
		font-size:32px;
		letter-spacing:0.1em;
		text-indent:0.1em;
	}
}




/* ==============================================
	diary
=============================================== */
.diaryList {
	padding:0 1em;
	line-height:1.6;
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
}
.diaryList > li {
	width:calc(100% / 3);
	padding:0 0.5em 1em;
}
.diaryCell {
	display:block;
	padding:0.5em 1em;
	text-align:center;
	background:#fff;
	border:2px solid;
}
.diaryCell .diaryDate {
	font-size:80%;
}
.diaryCell .diaryCate {
	font-size:80%;
}

.diaryCell .diaryImage {
	padding:0 1em;
	height:120px;
}
.diaryCell .diaryImage > * {
	width:100%;
	height:100%;
	object-fit:cover;
}

.diaryCell .diaryText {
	position:relative;
	text-align:left;
	height:calc(1.6em * 3);
	overflow:hidden;
}
.diaryCell .diaryText:after {
	content:"";
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	display:block;
	height:calc(1.6em * 1.5);
	z-index:2;
	background:linear-gradient(#fff0 ,#ffff 80%);
}


.diaryButton {
	padding:0.5em 0;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
}
.diaryButton > a {
	width:80%;
	line-height:2;
	letter-spacing:0.05em;
	color:#fff;
	border:2px solid;
	border-radius:1.5em;
	cursor:pointer;
}


.diaryButton.cate {
	font-size:130%;
}
.diaryButton.cate a {
	width:60%;
}

.diary {
	width:100%;
	display:flex;
	justify-content:space-evenly;
	align-items:flex-start;
}
.diary .infoBox.white{
	background:rgba(255,255,255,0.4);
}

.diary > .diaryBloc {
	width:48%;
}

.diary .diaryList {
	padding:0.5em;
	flex-direction:column;
}
.diary .diaryList > li {
	width:100%;
	padding:0.5em;
}
.diary a.diaryCell {
	color:#000;
	display:flex;
	justify-content:flex-start;
	align-items:flex-start;
}
.diary a.diaryCell > .diaryInfo {
	order:2;
	width:60%;
	text-align:left;
}
.diary a.diaryCell > .diaryImage {
	order:1;
	width:40%;
}
.diary a.diaryCell > .diaryImage > * {
	object-position:50% 0;
}


@media screen and (max-width:1500px) { 
	.diary .titleBar > span:nth-child(1) {
		padding:0 0.3em;
	}
}
@media screen and (max-width:799px) { 
	.diary {
		align-items:center;
		flex-direction:column;
	}
	.diary > .diaryBloc {
		width:100%;
	}
	.diaryBloc.shop {
		margin-bottom:50px;
	}
	.diaryList {
		font-size:16px;
		align-items:center;
		flex-direction:column;
	}
	.diaryList > li {
		width:100%;
	}
	.diaryButton > a {
		width:40%;
	}
}



// color

.diaryBloc.shop {
}
.diaryBloc.shop .titleBar {
	color:#06f;
}
.diaryBloc.shop .head {
	color:#03f;
}
.diaryBloc.shop .titleBar span:nth-child(1) ,
.diaryBloc.shop .titleBar.sub ,
.diaryBloc.shop .diaryList.infoBox.white ,
.diaryBloc.shop .diaryButton > * {
	border-color:#09f;
}
.diaryBloc.shop .infoBox.white {
	border-color:#0cf;
}
.diaryBloc.shop .diaryButton > * {
	background-color:#06f;
}
.diaryBloc.shop .diaryButton > *:hover {
	color:#06f;
	background-color:#def;
}
.diary .shop a.diaryCell:hover {
	background:#def;
}


.diaryBloc.cast {
}
.diaryBloc.cast .titleBar {
	color:#f60;
}
.diaryBloc.cast .head {
	color:#f30;
}
.diaryBloc.cast .titleBar span:nth-child(1) ,
.diaryBloc.cast .titleBar.sub ,
.diaryBloc.cast .diaryList.infoBox.white ,
.diaryBloc.cast .diaryButton > * {
	border-color:#f90;
}
.diaryBloc.cast .infoBox.white {
	border-color:#fc0;
}
.diaryBloc.cast .diaryButton > * {
	background-color:#f60;
}
.diaryBloc.cast .diaryButton > *:hover {
	color:#f60;
	background-color:#fed;
}
.diary .cast a.diaryCell:hover {
	background:#fed;
}



#profileDiaryFrame .diaryCell .diaryHead {
	color:#fff;
	background-color:#f90;
}
#profileDiaryFrame .diaryCell .diaryImage {
	padding:1em 0.5em;
	height:160px;
}

#profileDiaryFrame .diaryList .diaryCell .diaryCate {
	display:none;
}

@media screen and (max-width:799px) { 
	#profileDiaryFrame:not(.all) .diaryList .diaryCell:nth-child(n + 2){
		display:none;
	}
	#profileDiaryFrame .titleBar.sub {
		font-size:32px;
		letter-spacing:0.1em;
		text-indent:0.1em;
	}
}




/* ==============================================
	diary page > main
=============================================== */
.diary.page {
}
.diary.page .diaryBloc#profileDiaryFrame {
	width:70%;
	margin:0;
}

.diary.page .diaryList {
	font-size:140%;
}
.diary.page .diaryBloc#profileDiaryFrame .diaryInfo {
	padding:0.5em 1em;
	color:#fff;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	text-align:left;
}
.diary.page .diaryBloc#profileDiaryFrame .diaryInfo > .diaryDate {
	order:2;
}
.diary.page .diaryBloc#profileDiaryFrame .diaryInfo > .diaryCate {
	order:1;
	display:initial;
}
.diary.page .diaryBloc#profileDiaryFrame .diaryInfo > .diaryHead {
	order:3;
	font-size:120%;
	width:100%;
	background:initial;
}




.diary.page .diaryBloc#profileDiaryFrame .diaryImage {
	margin:auto;
	width:80%;
	padding:1em 2em;
	height:auto;
}

.diary.page.list .diaryBloc#profileDiaryFrame .diaryImage {
	height:15em
}



/* ==============================================
	diary page > right menu
=============================================== */
.diary.page > .diaryNavBloc {
	width:25%;
}

.diaryNavCell {
	padding-bottom:60px;
}

.diaryNaviTitle {
	margin-bottom:30px;
	font-size:24px;
	line-height:2;
	background:rgba(255,255,255,0.8);
	border:2px solid;
	text-align:center;
}
.diaryNavBloc ul {
	border-top:1px solid;
}
.diaryNavBloc li {
	border-bottom:1px solid;
}


.diaryNavBloc li a {
	display:block;
	color:#000;
	padding:0.5em 1em;
}
.diaryNavBloc li a:hover {
	color:#f00;
}

.diaryNavBloc .rank {
	padding-right:1em;
}
.diaryNavBloc .name {
	padding-left:0.5em;
}

.diaryNavBloc .flexStart{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	font-size:120%;
}

.diaryNavBloc .flexEnd{
	display:flex;
	justify-content:flex-end;
	align-items:center;
}

.diaryCategory .count {
	padding-left:0.5em;
	font-size:90%;
}

@media screen and (max-width:799px) { 
	.diary.page .diaryBloc#profileDiaryFrame {
		width:100%;
	}
	.diary.page > .diaryNavBloc {
		padding-top:3em;
		width:90%;
	}
}



/* ==============================================
	diary page > navilist
=============================================== */
.navigation {
	padding-bottom:1em;
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.navigation li:before {
	content:">";
	padding-right:0.5em;
}
.navigation li + li:before {
	padding-left:0.5em;
}
.navigation a {
	color:#000;
	text-decoration:underline;
}

@media screen and (max-width:799px) { 
	.navigation {
		font-size:90%;
	}
}



/* ==============================================
	diary page > article
=============================================== */

.diaryCell.article .diaryButton {
	display:none;
}
.diaryCell.article .diaryText {
	padding-bottom:1em;
	height:auto;
}
.diaryCell.article .diaryText:after {
	content:none;
}



/* ==============================================
	diary - color
=============================================== */
.diary.page .cast.diaryBloc#profileDiaryFrame .diaryInfo {
	background-color:#f90;
}
.cast .diaryCell ,
.cast .diaryNaviTitle ,
.cast.diaryNavBloc ul ,
.cast.diaryNavBloc li {
	border-color:#f90;
}
.diary.page .shop.diaryBloc#profileDiaryFrame .diaryInfo {
	background-color:#09f;
}
.shop .diaryCell ,
.shop .diaryNaviTitle ,
.shop.diaryNavBloc ul ,
.shop.diaryNavBloc li {
	border-color:#09f;
}



/* ==============================================
	diary - pager
=============================================== */
.pager {
	padding:2em 0;
}
.pager ul {
	display:flex;
	justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap
}
.pager ul > li {
	padding:0.2em;
}
.pager ul > li a {
	display:block;
	width:3.4em;
	height:3.4em;
	color:#999;
	background:rgba(255,255,255,0.8);
	border:1px solid #999;
	border-radius:0.3em;
	display:flex;
	justify-content:center;
	align-items:center;
}
.pager ul > li.active a {
	color:#f00;
	background:rgba(255,240,240,0.8);
	border:1px solid #f00;
}
.pager ul > li:not(.active) a:hover {
	color:#00f;
	background:rgba(240,240,255,0.8);
	border:1px solid #00f;
}

@media screen and (max-width:799px) { 
	.pager ul > li {
		padding:0.1em;
	}
	.pager ul > li a {
		width:3.1em;
		height:3.1em;
	}
}



/* ==============================================
	cast catchcopy
=============================================== */
ul.castList li.castCell .castCatch {
	display:block;
	border:1px solid #ccc;
}
ul.castList li.castCell .castCatch > span {
	display:block;
	height:24px;
	line-height:24px;
	color:#000;
	background:#fff;
}

@media screen and (max-width:799px) { 
	ul.castList li.castCell .castCatch > span {
		font-size:80%;
		letter-spacing:-0.5px;
	}
}




.indexText {
	width:800px;
	max-width:100%;
	margin:0 auto;
	padding-top:2em;
	text-align:center;
	font-weight:bold;
	color:#fff;
}
.indexText > * {
	white-space:nowrap;
}
.indexText .pt {
	padding-top:0.5em;
}
.indexText h2 {
	color:#fcf;
}
.indexText strong {
	color:#ffc;
}
.indexText a {
	color:inherit;
}



