@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500;700;900&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');
}



@-webkit-keyframes blink {
	0%{opacity:0.5;} 100%{opacity:1;}
}
@keyframes blink{
	0%{opacity:0.5;} 100%{opacity:1;}
}
.blink {
	animation:blink 1s ease alternate;
	-webkit-animation:blink 0.5s ease infinite alternate;
}



/* ==========================================================================================================================================
	var setting
=========================================================================================================================================== */
* {
	--fontFamily-body:'Noto Sans JP' ,sans-serif;
	--fontFamily-sans:'Noto Sans JP' ,sans-serif;
	--fontFamily-serif:'Noto Serif JP' ,serif;
	--fontFamily-CGothic:'CGothic' ,'Murecho' ,sans-serif;
	--fontFamily-CSerif:'CSerif' ,'Noto Serif JP' ,serif;

	--fontFamily-em:'CSerif' ,'Noto Serif JP' ,serif;

	--img-border:1px solid #f6c;
	--gradient:linear-gradient( 0deg ,#f39 ,#f9c );
	--gradient:#f6c;
}

@media screen and (min-width:800px) { 
	* {
		--font-size:16px;
	}
}
@media screen and (max-width:799px) { 
	* {
		--font-size:16px;
	}
}





/* ==========================================================================================================================================
	CSS reset
=========================================================================================================================================== */
* {
	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 ,
strong ,em ,small ,blockquote ,q ,pre ,
header ,footer ,nav ,article ,section ,aside {
	margin:0;
	padding:0;
	border:0 none;
	color:inherit;
	font-size:inherit;
	font-weight:inherit;
	font-style:inherit;
	text-decoration:none;
	vertical-align:baseline;
}
th ,td {
	vertical-align:middle;
}
button ,input ,textarea ,select {
	font-size:var(--font-size);
	letter-spacing:1px;
	font-family:var(--fontFamily-body);
	max-width:100%;
}
button ,
input[type='submit'] {
	padding:0.3em 1.5em;
}

html ,body {
	min-height:100%;
}
a ,a:link ,a:visited {
	color:#f00;
	text-decoration:none;
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
a:hover {
	color:#00f;
	text-decoration:none;
}

img {
	vertical-align:bottom;
	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;
}
header ,footer ,nav ,article ,section ,aside {
	display:block;
}

iframe {
	touch-action:manipulation;
}


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



/* ============================================================================================
	flex
============================================================================================ */
.flex {
	display:flex;
	justify-content:center;
	align-items:center;
}
.flex.left {
	justify-content:flex-start;
}
.flex.right {
	justify-content:flex-end;
}
.flex.between {
	justify-content:space-between;
}
.flex.around {
	justify-content:space-around;
}
.flex.evenly {
	justify-content:space-evenly;
}

.flex.top {
	align-items:flex-start;
}
.flex.bottom {
	align-items:flex-end;
}
.flex.stretch {
	align-items:stretch;
}

.flex.column {
	flex-direction:column;
}
.flex.rev {
	flex-direction:row-reverse;
}
.flex.column.rev {
	flex-direction:column-reverse;
}

.flex.wrap {
	flex-wrap:wrap;
}

.flex.col2 > * {
	width:calc(100% / 2);
}
.flex.col3 > * {
	width:calc(100% / 3);
}
.flex.col4 > * {
	width:calc(100% / 4);
}


.flex > .half {
	width:50%;
}
.flex > .full {
	width:100%;
}

.height-inherit > * {
	height:100%;
}
.height-inherit-all * {
	height:100%;
}





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

.noDisp {
	display:none;
}

.anchorLink {
	cursor:pointer;
}


em {
	color:#f39;
}
small {
	color:#333;
	font-size:90%;
}
.bold {
	font-weight:bold;
}
.notice {
	padding:0 2em 2em;
}
.notice img {
	border:var(--img-border);
}

.strong {
	color:#f39;
	font-size:120%;
}

.center {
	text-align:center;
}

.ellipsis {
	overflow:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
	-webkit-text-overflow:ellipsis;
}

.line-clamp {
	display:-webkit-box;
	overflow:hidden;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:1;
}
.line-clamp.l2 {
	-webkit-line-clamp:2;
}
.line-clamp.l3 {
	-webkit-line-clamp:3;
}

.sendIP {
	padding-top:3em;
	color:#999;
	font-size:80%;
	text-align:right;
}

@media screen and (max-width:799px) { 
	.notice {
		padding:0 1em 1.5em;
	}
}



.textIcon > span {
	display:block;
	min-width:5em;
	padding:0 0.5em;
	font-size:70%;
	color:#fff;
	font-weight:normal;
	text-align:center;
	border-radius:0.3em;
}



/* ==============================================
	title
=============================================== */
.title {
	padding-bottom:1.5em;
}
.title > .flex {
	align-items:baseline;
	padding:0.3em 1em;
	color:#fff;
	background:url(images/common/title_bg.png) 0 0;
	font-weight:500;
}
.title > .flex > .ja {
	font-size:180%;
	order:1;
}
.title > .flex > .en {
	font-size:150%;
	order:2;
}
.title > .flex > .ja + .en {
	padding-left:0.5em;
}

.title-sub {
	padding-bottom:1em;
}
.title-sub > .flex {
	align-items:baseline;
	padding:0.3em 1em;
	color:#fff;
	background:url(images/common/title_bg.png) 0 0;
	font-weight:500;
	filter:hue-rotate(-90deg);
}
.title-sub > .flex > .ja {
	font-size:120%;
}


@media screen and (max-width:799px) { 
	.title > .flex > .ja {
		font-size:150%;
	}
	.title > .flex > .en {
		font-size:120%;
	}
}


/* ==============================================
	box
=============================================== */
.infoBox {
	width:100%;
	padding:1em;
	border:var(--img-border);
	border-radius:0.5em;
}
.noBorder {
    border:0 none !important;
}
.infoBox p + p {
	padding-top:1em;
}


.noData {
	width:100%;
	min-height:20em;
	padding-top:5em;
	color:#666;
	text-align:center;
}

.commonList {
	text-align:center;
	padding-bottom:2em;
}

.contentsBloc {
	padding-bottom:3em;
}

.sub-content {
	margin:0 auto;
	padding:0 1em 1em;
}
.sub-content p + p {
	padding-top:0.5em;
}

@media screen and (max-width:799px) {
	.infoBox {
		padding:1em;
	}

	.sub-content {
		padding:0 0.5em 1em;
	}
}



/* ==========================================================================================================================================
	body
=========================================================================================================================================== */
body {
	position:relative;
	font-size:var(--font-size);
	line-height:1.6;
	color:#000;
	background:#fff;
	font-family:var(--fontFamily-body);
}
.bgLayer {
	position:relative;
	width:100%;
	min-width:1400px;
	max-width:1920px;
	margin:0 auto;
}

.innerFrame {
	width:1400px;
	margin:0 auto;
}
.innerFrame.w1000 {
	width:1000px;
}

#main > .innerFrame {
	padding:1.5em 0.5em;
	display:flex;
	justify-content:space-between;
	align-items:stretch;
}


#main > .innerFrame > .sidemenu {
	width:280px;
	padding:1em;
}

#main > .innerFrame > #mainContents {
	order:2;
	width:calc(100% - 280px);
	padding:1em;
}
#sidemenuL {
	order:1;
}
#sidemenuR {
	order:3;
}

@media screen and (max-width:799px) { 
	body {
		background-position: 5% -200px;
		background-size: 3600px;
	}

	.bgLayer {
		width:480px;
		min-width:480px;
		max-width:480px;
	}

	.innerFrame {
		width:100%;
		min-width:100%;
		max-width:100%;
	}
	#main > .innerFrame > #mainContents {
		width:100%;
		padding:1em 0;
	}
}


/* ==============================================
	body sidemenu
=============================================== */
.sidemenu li {
	padding-bottom:1.5em;
}
.sidemenu li img {
	width:100%;
	border:var(--img-border);
}

.sidemenu li > a {
	display:block;
}
.sidemenu li > a:hover {
	box-shadow:0 0 5px #f00;
}

.sidemenu #twitterBloc {
	width:100%;
}



/* ==============================================
	body mainBloc
=============================================== */



/* ==============================================
	header
=============================================== */
#header {
	position:relative;
	margin:0 auto;
	border-bottom:3px solid #f6c;
}
#header #h1 {
	color:#fff;
	background: var(--gradient);
}

#header #h1 h1 {
	padding:0.1em 1em;
	font-size:80%;
}


#headerMain.flex .logo a {
	padding-left:2em;
}
#headerMain.flex .logo a img {
	height:8em;
}

#headerMain.flex > .info.flex {
	min-height:100%;
	padding-right:1em;
	padding-bottom:0.8em;
	justify-content:flex-end;
	align-items:flex-end;
	flex-direction:column;
}

#headerMain.flex a {
	display:block;
}

#headerMain.flex > .info.flex .text {
	line-height:1.4;
	font-size:110%;
	color:#06f;
	text-align:right;
	font-weight:700;
}
#headerMain.flex > .info.flex .tel {
	line-height:1;
	font-size:240%;
	font-weight:900;
	color:#f6c;
}
#headerMain.flex > .info.flex .tel a {
	color:inherit;
}

@media screen and (max-width:799px) {
	#headerMain.flex {
		padding:0.5em 0 0.3em;
		align-items:flex-end;
	}
	#headerMain.flex .logo a {
		padding-left:0.5em;
	}
	#headerMain.flex .logo a img {
		height:6em;
	}
	#headerMain.flex > .info.flex {
		padding-bottom:0.5em;
		white-space:nowrap;
	}
	#headerMain.flex > .info.flex .text {
		font-size:95%;
		line-height:1.3;
	}
	#headerMain.flex > .info.flex .tel {
		font-size:200%;
		letter-spacing:-1px;
		align-items:baseline;
	}
	#headerMain.flex > .info.flex .tel .telLabel {
		font-size:60%;
	}
}



/* ==============================================
	header > menu
=============================================== */
	#headerNav {
		background:url(images/common/menu_bg.png) 50% 50%;
		border-bottom:1px solid #fff;
		box-shadow:0 1px 0.5em #fff;
	}

	#headerNav .navMenu {
		text-align:center;
	}
	#headerNav .navMenu > li {
		position:relative;
		width:calc(100% / 10);
		height:5em;
	}

	#headerNav .navMenu > li a {
		width:100%;
		height:100%;
		padding-top:0.2em;
		color:#fe9;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}
	#headerNav .navMenu > li a > * {
		filter:brightness(0) invert(1);
	}
	#headerNav .navMenu > li a > .icon img {
		height:2.5em;
	}
	#headerNav .navMenu > li a > .en {
		display:none;
	}
	#headerNav .navMenu > li a > .ja {
		font-size:90%;
		font-weight:500;
	}


@media screen and (min-width:800px) {
	#headerNav {
		position:sticky;
		top:0;
		z-index:1000;
	}

	#headerNav .navMenu > li:first-child:before ,
	#headerNav .navMenu > li:after {
		content:'';
		position:absolute;
		top:calc(50% - 1em);
		right:0;
		display:block;
		width:1px;
		height:2em;
		background:#fbd;
	}
	#headerNav .navMenu > li:first-child:before {
		left:0;
		right:unset;
	}

	#headerNav .navMenu > li:not(.active) a:hover {
		background:rgba(255,0,102,0.4);
	}
	#headerNav .navMenu > li.active a {
		background:rgba(255,0,102,0.4);
	}
	#headerNav .navMenu > li.active a > * {
		filter:none;
	}
}

@media screen and (max-width:799px) {
	#headerNav .navMenu.flex {
		flex-wrap:wrap;
	}
	#headerNav .navMenu > li {
		width:calc(100% / 4);
		border:2px solid #fff;
	}

 	.navMenu .box.noLink {
		position:relative;
		display:block;
	}
 	.navMenu .box.noLink:after {
		content:"準備中";
		position:absolute;
		top:0;
		bottom:0;
		left:0;
		right:0;
		display:block;
		padding-top:0.4em;
		letter-spacing:0.2em;
		text-indent:0.2em;
		font-size:140%;
		font-weight:500;
		color:#fff;
		background:rgba(0,0,0,0.5);
		text-align:center;
	}


}


/* ==============================================
	header > slider
=============================================== */
#homeSliderBloc {
	width:100%;
	overflow:hidden;
}
#homeSliderLoader img {
	width:100%;
	height:600px;
	object-fit:none;
}

#homeSlider {
	opacity:0;
}
#homeSlider li {
	padding:0.6em 0.3em;
}
#homeSlider img {
	width:1200px;
	max-width:100%;
	aspect-ratio:2/1;
	object-fit:cover;
}

@media screen and (max-width:799px) { 
	#homeSlider img {
		width:480px;
	}
}



/* ==============================================
	footer
=============================================== */
#footerMain {
	padding:1em 0 8em;
	color:#fff;
	background:url(images/common/footer_bg.png) 50% 100% repeat-x #ff75bc;
	background-size:2em;
}

#footer > .innerFrame {
	text-align:center;
}


.footerInfo {
	text-align:center;
	padding:1em;
	padding:2em;
	font-weight:bold;
}

.footerInfo .logo {
	display:block;
	padding-bottom:0.5em;
}
.footerInfo .logo img {
	height:12em;
}

.footerInfo a.tellink {
	line-height:1.4;
	font-size:150%;
	color:#fff;
	font-weight:900;
}


#copyright {
	margin-top:-1px;
	padding:0 0 1em;
	font-size:90%;
	color:#fff;
	background:#ffabd6;
	text-align:center;
}
#copyright a {
	color:#fff;
}


@media screen and (min-width:800px) { 
	#footer .navMenu li a {
		padding:0 1em;
		line-height:2;
		color:#fff;
		font-weight:500;
	}
	#footer .navMenu .icon {
		display:none;
	}
	#footer .navMenu .en {
		display:none;
	}

	#footer .navMenu li a:hover {
		text-shadow:1px 1px 0 #ff9 ,0 0 0.5em #fff;
	}

	#copyright a:hover {
		text-decoration:underline;
	}
}
@media screen and (max-width:799px) { 
	#footerMain {
		min-height:auto;
		padding:0 0 5em;
		background-size:1.5em;
	}


	#footer .navMenu.flex {
		align-items:flex-start;
		flex-direction:column;
	}
	#footer .navMenu.flex > * {
		width:100%;
		border-bottom:1px solid #fff;
	}

	#footer .navMenu.flex a {
		width:100%;
		padding:0.5em 1.5em;
		color:#fff;
		background:url(images/icons/arrow_r.png) 98% 50% no-repeat;
		display:flex;
		align-items:baseline;
	}
	#footer .navMenu .icon {
		display:none;
	}
	#footer .navMenu.flex a .en {
		font-size:150%;
		font-weight:bold;
	}
	#footer .navMenu.flex a .ja {
		padding-left:0.6em;
	}

	.footerInfo .logo img {
		height:8em;
	}

	#copyright{
		padding-bottom:6em;
	}
}



/* ==============================================
	sp fixed menu 
=============================================== */
@media screen and (min-width:800px) { 
	#fixedFooter {
		display:none !important;
	}
}
@media screen and (max-width:799px) { 
	#fixedFooter {
		position:fixed;
		bottom:0;
		left:0;
		right:0;
		background:rgba(255,204,238,0.9);
		box-shadow:0 1px 0.3em #c09;
	}

	#fixedFooter .navMenu.flex > * {
		width:calc(100% / 5);
	}

	#fixedFooter .navMenu.flex a {
		width:100%;
		padding:0.3em 0;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}
	#fixedFooter .navMenu.flex a .icon > img {
		height:3em;
		filter:invert(1) hue-rotate(60deg)
	}
	#fixedFooter .navMenu.flex a .en {
		display:none;
	}
	#fixedFooter .navMenu.flex a .ja {
		line-height:1.2;
		color:#c09;
		font-weight:500:
	}



}



/* ==========================================================================================================================================
	index
=========================================================================================================================================== */
#P-index #main > .innerFrame {
	width:100%;
	max-width:none;
	padding:0;
}
#P-index #main > .innerFrame > #mainContents {
	width:100%;
	padding:0;
}
.mainImage img {
	width:100%;
	height:600px;
	object-fit:cover;
}

.enterButtons.flex {
	padding:3em 0;
	gap:3em;
}

.enterButtons.flex > li a {
	position:relative;
	display:block;
}
.enterButtons.flex > li a img {
	transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.enterButtons.flex > li a > img.hover {
	position:absolute;
	top:0;
	left:0;
	opacity:0;
}
.enterButtons.flex > li a:hover img.hover {
	opacity:1;
}



.mainImage {
	position:relative;
}

.mainImage .openText {
	position:absolute;
	top:0;
	left:0;
	right:0;
	text-align:center;
}
.mainImage .openText img {
	width:70%;
}


@media screen and (max-width:799px) { 
	#P-index #main .innerFrame {
		padding-top:1em;
	}

	.mainImage > img {
		height:auto;
	}
	.mainImage .openText img {
		width:96%;
	}

	.enterButtons.flex {
		padding:3em 0.5em;
		gap:0.5em;
	}
	.enterButtons.flex > li {
	}

}


/* ==============================================
	index > shoplink
=============================================== */
#shopLink {
	text-align:center;
	padding-bottom:40px;
}
#shopLink a {
	display:inline-block;
	width:90%;
	box-shadow:0 0 5px #fff;
}
#shopLink a:hover {
	box-shadow:0 0 5px #f60,0 0 10px #f60;
}






/* ==============================================
	home > news
=============================================== */
#homeNews {
	min-height:6em;
	max-height:1100px;
	overflow:auto;
	padding:0.5em;
	border:var(--img-border);
	word-break:break-all;
	background:#fff;
}

#homeNews li {
	position:relative;
	padding:1em;
}
#homeNews li + li {
	border-top:1px dashed #90f;
}
#homeNews li .news_head {
	color:#f39;
	font-size:150%;
	font-weight:bold;
}
#homeNews li .news_time {
	color:#00f;
	font-size:90%;
}
#homeNews li .news_text {
	padding-top:0.5em;
}
#homeNews li .news_text strong {
	font-weight:bold;
}
#homeNews li .news_text p + p {
	padding-top:0;
}

#homeNews li .news_image {
	padding-top:1em;
	text-align:center;
}

@media screen and (max-width:799px) { 
	#homeNews li {
		padding:0.3em;
	}
}



/* ==========================================================================================================================================
	system
=========================================================================================================================================== */
#system {
}
#system li {
	position:relative;
	text-align:center;
	padding-bottom:2em;
}
#system li img {
	position:relative;
	border:var(--img-border);
}

.systemText {
	margin-top:-1.5em;
}
.systemText > .text {
	border:var(--img-border);
	padding:1em;
	text-align:left;
}
.systemText > .text strong {
	font-weight:bold;
}


@media screen and (max-width:799px) { 
	#homeNews.systemNews li .news_head {
		font-size:130%;
	}
	#homeNews.systemNews li .news_text {
		padding:0 0 0.5em 1em;
		font-size:90%;
	}
}


/* ==========================================================================================================================================
	faq
=========================================================================================================================================== */
#homeNews.faqNews li .news_head {
	font-size:110%;
}
#homeNews.faqNews li .news_text {
	padding:0.3em 0 0 1em;
	font-size:100%;
}


@media screen and (max-width:799px) { 
	#homeNews.faqNews li .news_head {
	}
	#homeNews.faqNews li .news_text {
	}
}



/* ==========================================================================================================================================
	access
=========================================================================================================================================== */
.accessList {
	display:flex;
	justify-content:flex-start;
	align-items:stretch;
	flex-wrap:wrap;
}
.accessList > * {
	width:calc(100% / 3);
	padding:0 0.5em 1em;
}
.accessCell {
	height:100%;
	padding:0.5em;
	border:var(--img-border);
}
.accessCell .image {
	text-align:center;
}
.accessCell .text {
	padding:0.5em 0.5em 0
}


#access iframe {
	display:block;
	width:100%;
	height:480px;
	border:var(--img-border);
}
#access p {
	text-align:center;
}
#access p.shopName {
	font-size:150%;
	color:#339;
}

@media screen and (max-width:799px) { 
	.accessList > * {
		width:calc(100% / 2);
		padding:0 0.2em 0.5em;
	}
	.accessCell .image img{
		width:90%;
		aspect-ratio:1/1;
		object-fit:cover;
	}
	.accessCell .text {
		padding:0.5em 0;
		line-height:1.4;
		font-size:95%;
		text-align:justify;
	}

}




/* ==========================================================================================================================================
	castlist
=========================================================================================================================================== */
.sub-content + .castList {
	padding-top:1em;
}

.castList.flex {
	width:100%;
}
.castList.flex > li {
	display:block;
	width:calc(100% / 4);
	padding:0 0.5em 1em;
}

.castCell > .aFrame {
	position:relative;
	display:block;
	padding:2px;
	color:#333;
	border:1px solid #fff;
	box-shadow:0 0 3px #f66;
	background:rgba(255,255,255,0.5);
}

@media screen and (min-width:800px) { 
	.castCell > a.aFrame:hover {
		box-shadow:0 0 5px #f66 ,0 0 10px #f66;
	}
}

.castCell .castCatch {
	padding:0.2em 0.3em 0.3em;
	line-height:1.2;
	font-size:90%;
	font-weight:bold;
	color:#fff;
	background:#f6c;
	text-align:center;
}

.castCell .castImage {
	position:relative;
	display:block;
}

.castCell .castImage img {
	width:100%;
	aspect-ratio:3/4;
	object-fit:cover;
	border:var(--img-border);
}
.castCell .castImage img.blogIcon {
	width:50px;
	height:50px;
	border:0 none;
}

.castList .castInfo {
	position:relative;
	display:block;
	line-height:1.4;
	text-align:center;
	color:#000;
}
.castList .castInfo .castName {
    color:#f39;
	font-size:130%;
	font-weight:bold;
}

.castList .castInfo .castSize {
	display:block;
	font-size:90%;
	color:#333;
}

.castList .castIcons {
	height:4em;
	display:flex;
	justify-content:center;
	align-items:center;
}
.castList .castIconsList {
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
	gap:2px;
}
.castList .castIconsList > li {
	width:calc(100% / 3 - 2px);
	color: #333;
	background:#fef;
	border:var(--img-border);
	border-radius:2px;
	display:flex;
	justify-content:center;
}
.castList .castIconsList > li span {
	height:1.4em;
	font-size:70%;
	overflow:hidden;
}

.castList .castTime {
	padding-bottom:0.2em;
	color:#fff;
	font-weight:bold;
	display:flex;
	justify-content:center;
	align-items:flex-end;
}
.castList .castTime .weekday {
	font-size:90%;
}

.castList li.castCell .castInfo .castTime.today {
	background:url(images/common/time_bg.png);
}
.castList li.castCell .castInfo .castTime.next {
	background:url(images/common/time_bg.png);
	filter:hue-rotate(60deg);
}

.castList li.castCell .newicon {
	position:absolute;
	top:1.8em;
	right:0;
	width:25%;
	aspect-ratio:1/1;
	object-fit:scale-down;
}


@media screen and (min-width:800px) { 
	.castList li.castCell .castInfo .castTime.today:before {
		content:"本日出勤";
		font-size:90%;
	}
	.castList li.castCell .castInfo .castTime.next:before {
		content:"次回出勤";
		font-size:90%;
	}
}
@media screen and (max-width:799px) { 
	.castList.flex > li {
		width:calc(100% / 2);
		padding:0 0.2em 0.5em;
	}
	.castList.flex > li.noData {
		width:100%;
		min-height:auto;
		padding:3em 0;
	}
	.castCell .castName > span {
		font-size:100%;
	}
	.castList li.castCell .castInfo .castSize {
		font-size: 90%;
	}
}


/* ============================================================================================
	schedule
============================================================================================= */
.mixitup-button {
	padding:0 1em;
	display:flex;
	flex-wrap:wrap;
	gap:0.5em;
}
.mixitup-button > * {
	width:calc(100% / 8 - 0.5em);
	padding:0.3em 0;
	font-size:90%;
	color:#999;
	background:#fff;
	border:0 none;
	outline:1px solid #999;
	border-radius:0.3em;
}
.mixitup-button.grow > * {
	flex-grow:1;
}
.mixitup-button > *.mixitup-control-active {
	color:#f39;
	background:#fff7fa;
	outline:2px solid #f6c;
}


.mix-accordion {
}
.mix-accordion.sub-content {
	padding-bottom:0;
}
.mix-accordion .mix-details {
	width:100% !important;
	display:none;
}
.mix-accordion .mixitup-button {
	padding:0 1em 1em !important;
}
.mix-accordion .title-sub > .flex {
	cursor:pointer;
}
.mix-accordion .title-sub > .flex .ja {
	padding-left:0.3em;
}

.mix-accordion .title-sub > .flex:before {
	content:"▼";
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
}
.mix-accordion .title-sub > .flex.open:before {
	transform:rotate(180deg);
}


@media screen and (max-width:799px) {
	.mixitup-button {
		gap:0.3em;
	}
	.mixitup-button > * {
		width:calc(100% / 5 - 0.3em);
	}
	.mix-accordion .mixitup-button {
		padding:0 0.3em 1em !important;
	}
	.mix-accordion .mixitup-button > * {
		font-size:85%;
		letter-spacing:-1px;
	}
}



/* ============================================================================================
	schedule
============================================================================================= */
#dateList.flex {
	padding:1em 0 2em;
	text-align:center;
}
#dateList.flex > li {
	width:calc(100% / 7);
	padding:0 0.5em;
}
#dateList.flex > li > .label {
	padding:0.5em 0;
	font-weight:bold;
	color:#666;
	background:#fff;
	border:var(--img-border);
	cursor:pointer;
}
#dateList li.on > .label {
	color:#fff;
	background:var(--gradient);
}
#dateList li:not(.on):hover > .label {
	color:#333;
	background:#fccc;
}


@media screen and (max-width:799px) { 
	#dateList.flex > li {
		padding:0 0.1em;
	}
	#dateList.flex > li > .label {
		padding:0.5em 0;
		line-height:1.3;
	}
}




/* ==============================================
	ranking
=============================================== */
.ranking {
	padding:1em 0;
}

.ranking .castList.flex > li {
	width:calc(100% / 5);
	padding:0 0.2em 1em;
}

@media screen and (max-width:799px) { 
	.ranking .castList.flex > li {
		width:calc(100% / 2);
	}
	.ranking .castList.flex > li:nth-child(n + 3) {
		width:calc(100% / 3);
	}
}



/* ==========================================================================================================================================
	event
========================================================================================================================================== */
.eventList {
}

.eventList li {
	padding-bottom:2em;
}

.eventImage {
	text-align:center;
}
.eventImage img {
	max-width:80%;
}

.eventText {
	padding:2em 2em 1em;
}


@media screen and (max-width:799px) { 
	.eventImage img {
		max-width:90%;
	}
	.eventText {
		padding:1em 0.5em 1em;
	}
	.eventText-frame {
		font-size:90%;
	}

}



/* ==========================================================================================================================================
	recruit
=========================================================================================================================================== */
.recruitImages {
	text-align:center;
}
.recruitImages li {
	padding-bottom:2em;
}
.recruitImages img {
	border:var(--img-border);
}
.recruitImages a {
	display:inline-block;
}
.recruitImages a img {
	border:0 none;
}
.recruitImages a:hover {
	opacity:0.75;
}


@media screen and (max-width:799px) { 
	.recruitImages li {
		padding-bottom:1.5em;
	}
}


.recruitTable.infoBox {
	background:url(images/common/recruit_bg.jpg) 0 0 no-repeat;
	background-size:cover;
}
.recruitTable table {
	width:100%;
	font-size:110%;
	background:rgba(255,255,255,0.6);
}
.recruitTable tr > * {
	font-weight:normal;
	padding:0.5em 1em;
	border-bottom:1px solid #ccc;
	vertical-align:top;
}
.recruitTable th {
	width:12em;
	color:#f00;
	font-weight:bold;
	letter-spacing:0.1em;
}
.recruitTable td {
	font-weight:500;
}

.recruitTable div {
	position:relative;
}
.recruitTable div > span.fore {
	position:relative;
	z-index:2;
	display:block;
}
.recruitTable div > span.back {
	position:absolute;
	z-index:1;
	display:block;
	top:0;
	bottom:0;
	left:0;
	right:0;
	-webkit-text-stroke:0.3em #fff;
}


.recruitImages.staff img ,
.recruitImages.staff .recruitTable.infoBox {
	border-color:#00f;
}
.staff .recruitTable th {
	color:#00f;
}


@media screen and (max-width:799px) { 
	.recruitTable table {
		font-size:100%;
	}
	.recruitTable th {
		width:5em;
		padding:0.3em;
	}
	.recruitTable td {
		padding:0.3em;
		text-align:left;
	}
}


/* ======================================================================================================
	form
====================================================================================================== */
#form {
	padding-top:2em;
}

.form-notes {
	width:1000px;
	max-width:100%;
	margin:0 auto;
	line-height:1.8;
	text-align:center;
}
.form-notes.wide {
	width:1200px;
}
.top-padding {
	padding-top:2em;
}

.form-logo {
	max-width:20em;
	margin:0 auto;
	padding:2em 0;
}

.form-wrapper {
	padding:2em 0 6em;
}
#form-table {
	width:800px;
	max-width:100%;
	margin:0 auto;
	font-size:110%;
}


dl#form-table {
	width:100%;
	max-width:800px;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
}

dl#form-table dt {
	width:32%;
	padding:0.6em 0 0;
	text-align:right;
	margin-bottom:1em;
}

dl#form-table dd {
	width:calc(100% - 32%);
	padding-left:1em;
	padding-top:0.3em;
	margin-bottom:1em;
}

.form-comment {
	padding-top:0.5em;
	font-size:110%;
}

.status2 dl#form-table dt {
	width:45%;
	margin-bottom:0.5em;
}
.status2 dl#form-table dd {
	width:calc(100% - 45%);
	padding-top:0.7em;
	margin-bottom:0.5em;
}

@media screen and (max-width:799px){
	.form-notes {
		padding:0 1em;
		line-height:1.6;
	}
	.form-header h1 {
		font-size:240%;
	}
	.form-wrapper dl {
		padding:0 0.5em;
		font-size:110%;
	}

	.form-wrapper {
		padding:0 0 3em;
	}

	.form-notes.wide p{
		padding-bottom:1em;
	}

	dl#form-table dt {
		width:100%;
		text-align:left;
		margin-bottom:0.3em;
	}
	dl#form-table dd {
		width:100%;
		padding-bottom:0.5em;
		border-bottom:1px dashed #ccc;
	}
}




/* ====================================================================
	form - optional / required
==================================================================== */
.optional,
.required{
	display:flex;
	justify-content:flex-end;
	align-items:center;
}
.optional:after,
.required:after{
	content:attr(data-text);
	display:inline-block;
	margin-left:0.5em;
	padding:0 0.3em;
	background-color:#f00;
	border-radius:0.3em;
	color:#fff;
	font-size:80%;
	line-height:1.6;
	white-space: nowrap;
}
.optional:after{
	background-color:#ccc;
	opacity:0;
}

@media screen and (max-width:799px){
	.optional,
	.required{
		flex-direction:row-reverse;
	}

	.optional:after{
		content:" ";
	}
	.required:after{
		margin-right:0.3em;
		padding:0.1em 0.3em 0.2em;
	}
}



/* ====================================================================
	form - field
==================================================================== */
input ,textarea{
	width:100%;
	-webkit-appearance:none; 
	appearance:none;
	border-radius:0.3em;
}
input[type='radio'] ,input[type='checkbox']{
	width:1em;
	height:1em;
	-webkit-appearance:auto; 
	appearance:auto;
}

input:not([type="submit"]) ,select{
	border:2px solid #999;
	padding:0.3em 0.5em;
	border-radius:0.3em;
}

.textarea-text{
	padding:2.5em 5em !important;
}

textarea{
	resize:none;
	height:8em;
	padding:0.5em;
	border:2px solid #999;
}

span.check {
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
span.check > label {
	padding-left:0.3em;
}


.field-group.flex {
	justify-content:flex-start;
	flex-wrap:wrap;
}
.field-group.flex > * {
	margin-left:0.3em;
	margin-bottom:0.3em;
	justify-content:flex-start;
}

input[type="checkbox"],
input[type="radio"] {
	position:relative;
	width:20px;
	z-index:2;
}
input[type="checkbox"] + label ,
input[type="radio"] + label {
	position:relative;
	margin-left:-1.8em;
	padding:0.1em 1em 0.2em 2em;
	border-radius:0.3em;
	transition:all 0.1s ease;
	-webkit-transition:all 0.1s ease;
}
input[type="checkbox"] + label > span ,
input[type="radio"] + label > span {
	padding-left:0.3em;
}
input[type="checkbox"]:checked + label ,
input[type="radio"]:checked + label {
	color:#fff;
	background:#09f;
}


@media screen and (max-width:799px){
	input[type="submit"]{
		width:auto;
		padding:0.5em 1em;
	}

	input:focus ,textarea:focus{
		border:solid 2px #000000;
		outline:none;
		background-color:#99e5ff;
	}

	input:focus[type="submit"]{
		opacity:0.8;
		border:none;
		outline:none;
		background-color:#000f4c;
	}
}



/* ====================================================================
	form - button
==================================================================== */
.formButton{
	padding:2em 0;
	text-align:center;
}
input[type="submit"] ,.formButton a{
	width:auto;
	padding:0.5em 3em;
	line-height:1;
	font-size:120%;
	color:#333;
	background:linear-gradient(180deg, #fff, #ddd);
	transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	cursor:pointer;
}
input[type="submit"]:hover ,.formButton a:hover {
	color:#fff;
	background:linear-gradient(180deg, #f33, #900);
}

.formButton a{
	font-size:100%;
	border-radius:0.5em;
}

@media screen and (max-width:799px){
	.button-wrapper{
		padding:2em 7em 0;
	}
}


/* ====================================================================
	form - error
==================================================================== */
.error {
	margin:0.3em 0 0.5em;
	display:inline-block;
	padding:0.1em 0.6em;
	color:#f00;
	font-weight:500;
	border:1px solid #f00;
	border-radius:0.2em;
	font-size:90%;
}


/* ====================================================================
	form - custom
==================================================================== */
.form-10 .field-group.flex > * {
	width:32%;
}
.form-12 .field-group.flex > * {
	width:32%;
}





/* ==========================================================================================================================================
	link
=========================================================================================================================================== */
/* ============================================================================================
	link table
============================================================================================= */
table.bannerTable {
	margin:0 auto;
	padding:1em 0 2em;
}
table.bannerTable th {
	font-size:90%;
	color:#60f;
	vertical-align:middle;
}
table.bannerTable td {
	padding:1em;
}
table.bannerTable td img {
	border:var(--img-border);
}


/* ============================================================================================
	link banner
============================================================================================= */
.linkBox {
	padding:2em 0.5em 0;
}
.linkBox .notice {
	padding:0 0.5em 0.5em;
	line-height:1.4;
	font-size:90%;
}

.linkList {
	text-align:center;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-direction:column;
}

.linkList li {
	padding:0.5em 0.5em 0;
}
.linkList li a {
	display:block;
	width:100%;
	height:100%;
	padding:0.5em;
	text-align:center;
	font-size:80%;
	color:#60f;
}
.linkList li a:hover {
	color:#fff;
	background-color:rgba(255,0,102,0.4);
}

@media screen and (max-width:799px) { 
}


/* ==========================================================================================================================================
	profile
=========================================================================================================================================== */
.profileTitle.title > .flex {
	padding:0.7em 1em;
	align-items:center;
}

.profileTitle .en {
	line-height:1.4;
	font-size:180%;
}


.profileIcons {
	gap:3px;
}
.profileIcons > li {
}
.profileIcons > li > span {
	padding:0 0.3em 0.1em;
	font-size:90%;
	color:#f39;
	background:#fff;
	border:var(--img-border);
	border-radius:0.3em;
}


.profileCatch {
	padding:0.5em 1em;
	text-align:left;
	font-weight:700;
	color:#fff;
	background:var(--gradient);
}

.profileSubHeader {
	padding:0.5em 1em;
	text-align:left;
	font-weight:700;
	color:#f39;
	border:var(--img-border);
}

#profileThumbs {
	padding-top:1em;
}
#profileThumbs li {
	width:calc(100% / 5);
	padding:2px;
}
#profileThumbs li.imageOn {
	cursor:pointer;
}
#profileThumbs li:not(.imageOn) {
	display:none;
}

#profileThumbs li .thumbPanel {
	position:relative;
}
#profileThumbs li .thumbPanel:before {
	content:'';
	display:block;
	width:100%;
	height:0;
	padding-top:calc(100% / 2 * 3);
}

#profileThumbs li img {
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	border:var(--img-border);
}


#profileImageFrame {
	position:relative;
	width:45%;
	padding:0 1em;
}

#profileImageFrame #profSlider > li img {
	width:100%;
	aspect-ratio:3/4;
	object-fit:cover;
}
#profileImageFrame #bx-pager a img {
	width:100%;
	aspect-ratio:3/4;
	object-fit:cover;
}


#profileInfoFrame {
	position:relative;
	width:55%;
	padding:0 1em;
}

.profileName {
	font-size:140%;
	padding:0.3em 0.6em;
	color:#fff;
	background:var(--gradient);
}

.profileName .icons.flex img {
	width:60px;
	margin-left:2px;
}

#profileInfoFrame #profileTable {
	width:100%;
	background:#fff;
	border:var(--img-border);
}
#profileInfoFrame #profileTable th ,
#profileInfoFrame #profileTable td {
	padding:0.3em;
	border-bottom:var(--img-border);
}
#profileInfoFrame #profileTable th {
	color:#f39;
	font-weight:bold;
	text-align:left;
	padding-left:1em;
	width:12em;
}

.profileMessage {
	padding-top:2em;
}
.profileMessage div {
	padding:1em 1.5em 1.5em;
	line-height:1.8;
	background:#fff;
	border:var(--img-border);
}

#prof_blog {
	padding-top:2em;
}


#profileInfoFrame .profEvent {
	display:none;
}


@media screen and (max-width:799px) { 
	.profileTitle > .flex ,
	.profileTitle > .flex > .flex.left {
		flex-direction:column;
	}

	.profileIcons.flex {
		padding-top:0.5em;
		flex-wrap:wrap;
	}

	#profileMain.contentsBloc.flex {
		padding-top:1.5em;
		flex-wrap:wrap;
	}
	#profileMain.contentsBloc.flex > #profileImageFrame {
		width:100%;
	}
	#profileMain.contentsBloc.flex > #profileInfoFrame {
		width:100%;
		padding-top:1.5em;
	}
}




/* ============================================================================================
	profile > schedule
============================================================================================= */
#profileSchedule {
	width:100%;
	margin:auto;
	text-align:center;
	border-spacing:0.1em;
	padding:0.1em;
	border-collapse:separate;
	font-size:90%;
}
#profileSchedule caption {
}
#profileSchedule th ,
#profileSchedule td {
	width:calc(100% / 7);
	padding:1em 0;
	font-weight:normal;
	border:var(--img-border);
	background-color:#fff;
	vertical-align:middle;
}
#profileSchedule .week0 {
	background-color:#fef;
}
#profileSchedule .week6 {
	background-color:#eef;
}


#profileSchedule td .flex {
	display:flex;
	width:100%;
	height:100%;
	justify-content:center;
	flex-wrap:wrap;
	align-items:center;
}

@media screen and (max-width:799px) { 
	#profileSchedule th {
		padding:0.3em 0;
		line-height:1.4;
	}
	#profileSchedule th span {
		display:block;
	}
}



/* ============================================================================================
	profile > option
============================================================================================= */
.optionList > .options {
	width:calc(100% / 8);
	padding:3px;
}
.options > span.flex {
	height:3em;
	line-height:1.4;
	color:#f39;
	background:#fef;
	border:var(--img-border);
	border-radius:0.3em;
}
.options > span.flex > span {
	font-size:80%;
}

.options.on > span.flex > span {
	font-weight:500;
}

.options.off > span.flex {
	opacity:0.4;
}

@media screen and (max-width:799px) { 
	.optionList > .options {
		width:calc(100% / 3);
	}
}


/* ============================================================================================
	profile > guide(bottom)
============================================================================================= */
#profileGuideBottom {
	padding-top:5em;
	display:flex;
	justify-content:center;
	align-items:center;
}
#profileGuideBottom li {
	width:10em;
	line-height:3em;
	font-size:90%;
	text-align:center;
	border:var(--img-border);
	background-color:#fff;
}
#profileGuideBottom li a {
	display:block;
	color:#f69;
}

#profileGuideBottom li + li {
	border-left:0 none;
}
#profileGuideBottom li a span {
}

@media screen and (max-width:799px) { 
	#profileGuideBottom li a:hover {
		color:#f00;
		background-color:#fef;
	}
}
