@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');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&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' ,'Noto Sans JP' ,sans-serif;
	--fontFamily-KosugiM:'Inter' ,'Kosugi Maru' ,sans-serif;

	--img-border:1px solid #0cf;
}

@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;
}

/* ============================================================================================
	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;
	}

	.navMenu09 ,
	.navMenu10 ,
	.navMenu11 ,
	.navMenu13 {
		display:none;
	}

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

.noDisp {
	display:none;
}

.anchorLink {
	cursor:pointer;
}


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

.strong {
	color:#f06;
	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 {
	padding:0.3em 1em;
	color:#60f;
	background:#fffc;
	border-bottom:3px solid #69f;
	box-shadow:0 0 3px #69f;
}
.title > .flex > .en {
	order:1;
	padding-left:1.8em;
	font-size:180%;
	background:url(images/icons/title_icon.png) 0 50% no-repeat;
	background-size:1.5em;
	font-family:var(--fontFamily-CGothic);
}
.title > .flex > .jp {
	order:2;
}

.title.sub > .flex > .jp {
	font-size:150%;
}

@media screen and (max-width:799px) { 
	.title.sub {
		padding-bottom:1em;
	}
	.title > .flex {
		padding:0.2em 0.5em;
	}
	.title > .flex > .en {
		padding-left:1.6em;
	}
	.title.sub > .flex > .jp {
		font-size:130%;
	}
}


/* ==============================================
	box
=============================================== */
.infoBox {
	width:100%;
	padding:1.5em 2em;
	border:var(--img-border);
	background:#fff;
}
.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;
}

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



/* ==========================================================================================================================================
	body
=========================================================================================================================================== */
body {
	position:relative;
	font-size:var(--font-size);
	line-height:1.6;
	color:#000;
	background:url(images/common/bg.jpg) 50% 0 repeat-y #fff;
	font-family:var(--fontFamily-body);
}

.innerFrame {
	width:100%;
	min-width:1400px;
	max-width:1600px;
	margin:0 auto;
	background:rgba(255,255,255,0.2);
}


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


#main > .innerFrame > .sidemenu {
	width:18.5%;
	padding:1em;
}

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

@media screen and (max-width:799px) { 
	.innerFrame {
		width:480px;
		min-width:480px;
		max-width:480px;
	}

	#main > .innerFrame > #mainContents {
		width:100%;
	}
}


/* ==============================================
	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 #06f;
}

.sidemenu #twitterBloc {
	width:100%;
}



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



/* ==============================================
	header
=============================================== */
#header {
	position:relative;
	margin:0 auto;
}
#header #h1 {
}

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


#headerMain.flex {
}

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

	font-family:var(--fontFamily-KosugiM);

	text-shadow:2px 2px 0 #fff ,2px -2px 0 #fff ,-2px 2px 0 #fff ,-2px -2px 0 #fff
				,0 2px 0 #fff ,0 -2px 0 #fff ,-2px 0 0 #fff ,2px 0 0 #fff;
}

#headerMain.flex a {
	display:block;
}

#headerMain.flex > .info.flex .text1 {
	font-size:120%;
	color:#60c;
}
#headerMain.flex > .info.flex .text2 {
	font-size:110%;
	color:#06f;
}
#headerMain.flex > .info.flex .tel {
	font-size:240%;
	line-height:1.2;
}
#headerMain.flex > .info.flex .tel a {
	padding-left:1em;
	color:#06f;
	background:url(images/icons/icon_tel.png) 0 60% no-repeat;
}

@media screen and (max-width:799px) {
	#headerMain.flex {
		padding:0.2em;
		border-bottom:2px solid #06f;
	}
	#headerMain.flex > .logo {
		width:40%;
	}
	#headerMain.flex > .info.flex {
		padding:0 0.5em;
		justify-content:center;
	}
	#headerMain.flex > .info.flex .tel {
		font-size:160%;
	}
	#headerMain.flex > .info.flex .tel a {
		padding-left:1.3em;
	}
}



/* ==============================================
	header > menu
=============================================== */
#headerNav {
/*
	position:sticky;
	top:0;
	left:0;
	z-index:1000;
*/
}

@media screen and (min-width:800px) {
	#headerNav .navMenu {
		text-align:center;
		font-family:var(--fontFamily-CGothic);
		line-height:1.3;
		background:#fff;
	}
	#headerNav .navMenu > li {
		position:relative;
		width:calc(100% / 9);
		height:5em;
	}
	#headerNav .navMenu > li + li:before {
		content:'';
		position:absolute;
		top:calc(50% - 1em);
		left:0;
		display:block;
		width:1px;
		height:2em;
		background:#ccc;
	}

	#headerNav .navMenu > li a {
		width:100%;
		height:100%;
		color:#36f;
		border-bottom:3px solid #6cf;
		display:flex;
		justify-content:center;
		align-items:center;
		flex-direction:column;
	}

	#headerNav .navMenu > li a > .en {
		font-size:120%;
		font-weight:bold;
		letter-spacing:0.1em;
		text-indent:0.1em;
	}
	#headerNav .navMenu > li a > .jp {
		color:#666;
		font-size:75%;
	}

	#headerNav .navMenu > li:not(.active) a:hover {
		background:#9fe;
	}
	#headerNav .navMenu > li.active a {
		color:#f69;
		border-bottom-color:#f69;
	}
}

@media screen and (max-width:799px) {
	#spTopMenu {
		position:sticky;
		top:0;
		left:0;
		right:0;
		z-index:10000;
	}

	.filter header ,
	.filter main ,
	.filter footer {
		filter:blur(4px) grayscale(0.8);
	}

	#headerNav {
		position:fixed;
		top:0;
		left:0;
		right:0;
		border-radius:0 0 1em 1em;
		background:#36f;
		z-index:10010;
		display:none;
	}
	#headerNav .navMenu.flex {
		flex-wrap:wrap;
		padding:2px;
	}
	#headerNav .navMenu > li {
		width:calc(100% / 4);
		padding:2px;
	}


	#headerNav .close {
		width:100%;
		text-align:center;
		padding-top:0.2em;
	}
	#headerNav .close span {
		display:inline-block;
		line-height:2em;
		padding:0 1em;
		color:#fff;
		font-weight:bold;
		letter-spacing:0.1em;
		text-indent:0.1em;
		background:#336;
		border-radius:0.5em 0.5em 0 0;
		font-family:var(--fontFamily-KosugiM);
	}
}


/* ==============================================
	footer
=============================================== */
#footer > .innerFrame {
	padding-top:2em;
	text-align:center;
}

#footerMain {
	padding:1em 0 2em;
	background:linear-gradient( #fff ,#9cf );
}

#footer .navMenu.flex > li {
}
#footer .navMenu li a {
	padding:0 1em;
	line-height:2;
	color:#36f;
	font-weight:bold;
	font-family:var(--fontFamily-CGothic);
}
#footer .navMenu .jp {
	display:none;
}
#footer .navMenu li a:hover {
	color:#f69;
}


.footerInfo {
	text-align:center;
	padding:1em;
	padding:2em;
}
.footerInfo a.tellink {
	font-size:120%;
	color:#000;
}
.footerInfo a.tellink:hover {
	color:#f00;
}

.footerInfo .logo {
	display:inline-block;
	width:60%;
	padding-bottom:1em;
}


#copyright {
	line-height:3;
	font-size:80%;
	color:#333;
	text-align:center;
}
#copyright a {
	color:#333;
}
#copyright a:hover {
	color:#f00;
	text-decoration:underline;
}

#footerBanners .flex {
	padding:0 0.2em 1.5em;
}
#footerBanners .flex > * {
	padding:0.2em;
}
#footerBanners .flex img {
	border:var(--img-border);
}


@media screen and (max-width:799px) { 
	#footerMain {
		padding-bottom:0;
		background:transparent;
	}
	.footerInfo {
		background:linear-gradient( #fff ,#9cf );
	}

	#footerMenu {
		border-radius:1em 1em 0 0;
		background:#36f;
	}
	#footerMenu .anchorLink {
		width:100%;
		text-align:center;
		padding-bottom:0.2em;
	}
	#footerMenu .anchorLink span {
		display:inline-block;
		line-height:2em;
		padding:0 1em;
		color:#fff;
		font-weight:bold;
		letter-spacing:0.1em;
		text-indent:0.1em;
		background:#336;
		border-radius:0 0 0.5em 0.5em;
		font-family:var(--fontFamily-KosugiM);
	}

	#footerMenu .navMenu.flex {
		flex-wrap:wrap;
		padding:2px;
	}
	#footerMenu .navMenu.flex > li {
		width:calc(100% / 4);
		padding:2px;
	}
	#footer .navMenu li a {
		padding:0;
	}

}




/* ==============================================
	sp menu off
=============================================== */
@media screen and (max-width:799px) { 
	.navMenu.flex > li.off {
		position:relative;
		pointer-events:none;
	}
	.navMenu.flex > li.off:before ,
	.navMenu.flex > li.off:after {
		content:"";
		position:absolute;
		top:0;
		left:0;
		display:block;
		width:100%;
		height:100%;
	}
	.navMenu.flex > li.off:before {
		background:rgba(0,0,0,0.6);
		z-index:2;
	}
	.navMenu.flex > li.off:after {
		content:"準備中";
		font-size:120%;
		color:#fff;
		letter-spacing:0.1em;
		text-indent:0.1em;
		font-family:var(--fontFamily-KosugiM);

		display:flex;
		justify-content:center;
		align-items:center;
		z-index:3;
	}
}



/* ==========================================================================================================================================
	index
=========================================================================================================================================== */
#P-index #main > .innerFrame {
	padding:0 1em;
}
#P-index #spTopMenu {
	display:none;
}

.enterButtons.flex {
	padding:2em 0;
}

.enterButtons.flex > li {
	padding:0 2em;
}

.enterButtons.flex > li a:hover {
	filter:hue-rotate(60deg);
}


.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 {
		padding-top:2em;
	}

	.mainImage > img {
		height:300px;
		object-fit:cover;
	}
	.mainImage .openText img {
		width:96%;
	}

	.enterButtons.flex > li {
		padding:0 1em;
	}

}


/* ==============================================
	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 > header > slider
=============================================== */
#homeSliderBloc {
	width:100%;
}
#homeSliderBloc #homeSliderLoader {
	width:100%;
	height:100%;
	padding-top:150px;
	text-align:center;
}

#homeSlider > * {
	box-sizing:content-box;
}
#homeSlider {
	opacity:0;
}
#homeSlider img {
	width:100%;
}

#homeSliderBloc .bx-wrapper {
}
#homeSliderBloc .bx-wrapper .bx-viewport {
	border:0 none;
}
#homeSliderBloc .bx-wrapper img {
	border:var(--img-border);
}



#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:#f06;
	font-size:110%;
}
#homeNews li .news_time {
	color:#00f;
	font-size:80%;
}


@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);
}


#systemCampaign {
	width:100%;
}

#systemCampaign li {
	padding-bottom:2em;
}
.campaign {
	border:0.2em solid #69f;
	border-radius:0.5em;
	background:#fff;
}
.campaign h3.head.flex {
	padding:0.2em 1em;
	color:#000;
	text-shadow:1px 1px 0 #fff;
	font-weight:bold;
	background:linear-gradient( #fff ,#9cf );
	border-radius:0.3em 0.3em 0 0;
}
.campaign h3.head.flex > .jp {
	letter-spacing:1px;
}
.campaign h3.head.flex > .en {
	font-size:110%;
	color:#333;
	text-shadow:1px 1px 0 #fff;
	font-weight:900;
	font-style:oblique;
	font-family:var(--fontFamily-serif);
}
.campaign div.text {
	padding:0.5em 2em;
}


@media screen and (max-width:799px) { 
	#system li {
		padding-bottom:1.5em;
	}
	.campaign h3.head.flex {
		padding:0.2em 0.5em;
	}
	.campaign div.text {
		padding:0.5em 1em;
	}

	#systemCampaign li {
		padding-bottom:1.5em;
	}
}



/* ==============================================
	access
=============================================== */
#access {
}
#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;
}



/* ==========================================================================================================================================
	castlist
=========================================================================================================================================== */
ul.castList.flex {
	width:100%;
	padding-bottom:1.5em;
}
ul.castList.flex > li {
	display:block;
	width:calc(100% / 4);
	padding:0 0.5em 1em;
}

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

.castCell > a:hover {
	background:rgba(153,204,255,0.8);
}


.castCell .castName {
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:0.1em 0.5em;
}
.castCell .castName > span {
    color:#60f;
	font-size:110%;
	font-weight:bold;
	letter-spacing:1px;
}

.castCell .castImage {
	position:relative;
	display:block;
}
.castCell .castImage:before {
	content:"";
	display:block;
	width:100%;
	height:0;
	padding-top:calc(100% / 2 * 3);
}
.castCell .castImage img {
	position:absolute;
	top:0;
	right:0;
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	border:var(--img-border);
}
.castCell .castImage img.blogIcon {
	width:50px;
	height:50px;
	border:0 none;
}


ul.castList li.castCell .castInfo {
	position:relative;
	display:block;
	line-height:1.4;
	text-align:center;
	padding:0.3em 0;
}
ul.castList li.castCell .castInfo .castSize {
	display:block;
	font-size:90%;
	letter-spacing:1px;
	color:#000;
}
ul.castList li.castCell .castInfo .castTime {
	display:block;
	padding-top:0.3em;
	color:#f06;
}


@media screen and (max-width:799px) { 
	ul.castList.flex > li {
		width:calc(100% / 2);
		padding:0 0.5em 1em;
	}
	ul.castList.flex > li.noData {
		width:100%;
		min-height:auto;
		padding:3em 0;
	}
}




/* ============================================================================================
	schedule
============================================================================================= */
#dateList.flex {
	padding-bottom: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:#60f;
	background:linear-gradient( #6cfc ,#fffc ,#fffc ,#6cfc );
}
#dateList li:not(.on):hover > .label {
	color:#333;
	background:#cffc;
}


@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
=============================================== */
#rankingBloc.flex {
}

#rankingBloc .ranking {
	width:400px;
	padding-bottom:2px;
	background:url(images/common/ranking_bg.png) 0 0 no-repeat rgba(255,255,255,0.6);
	background-size:100%;
}

.ranking ul li.rankTitle h3 {
	line-height:45px;
	font-size:130%;
	font-weight:bold;
	text-align:center;
	color:#fff;
	text-shadow:1px 1px 2px #000;
}

.rankingCell {
	display:block;
	position:relative;
	width:100%;
	height:93px;
	padding-bottom:1px;
	overflow:hidden;
}
.rankingCell .flex {
	padding:4px 15px 4px 60px;
	height:100%;
	color:#f09;
}
.rankingCell .flex > .image {
	width:56px;
	height:84px;
	outline:1px solid #fcf;
}
.rankingCell .flex > .info {
	padding-left:1em;
	font-size:90%;
}

.rankingCell .flex > .info > span {
	display:block;
	line-height:1.4;
}
.rankingCell .flex > .info > span.name {
	font-size:120%;
	font-weight:bold;
}
.rankingCell .flex > .info > span.size {
	padding:0.2em 0 0.2em 0.5em;
	color:#666;
}

.rankingCell .flex > .rankingSche {
	margin-left:auto;

	width:6em;
	line-height:1.5em;
	font-size:90%;
	font-weight:bold;
	color:#fff;
	text-shadow:1px 1px 1px #000;
	background: linear-gradient(#ff0066, #ff66cc);
	box-shadow:1px 1px 1px #000;
	border:1px solid #fff;
	border-radius:1em;
	text-align:center;
}

.rankingCell a:hover {
	background:rgba(255,153,204,0.4);
}




.ranking#ranking1 {
	filter:hue-rotate(-60deg);
}
.ranking#ranking1 .image {
	filter:hue-rotate(60deg);
}


@media screen and (max-width:799px) { 
	#rankingBloc.flex {
		flex-wrap:wrap;
	}
	.ranking + .ranking {
		margin-top:1.5em;
	}
}



/* ==========================================================================================================================================
	mailmagazine
=========================================================================================================================================== */
#mailmagazineForm {
	padding:2em;
	text-align:center;
}



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

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

.eventImage {
	text-align:center;
}
.eventText {
	padding:1em 1em 2em;
	display:none;
}



/* ==========================================================================================================================================
	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 {
	width:90%;
	margin:15px auto;
	border:1px solid #333;
	font-size:90%;
}
.recruitTable th {
	vertical-align:top;
	font-weight:normal;
	width:180px;
	padding:1em;
	border:1px solid #333;
	color:#f9f;
}
.recruitTable th.blue {
	color:#9ff;
}
.recruitTable td {
	vertical-align:top;
	padding:1em;
	border:1px solid #333;
}




/* ============================================================================================
	recruit form
============================================================================================= */
#formTable {
	padding:0 1em;
}

#formTable {
	padding:0 1em;
	display:flex;
	justify-content:center;
	align-items:stretch;
	flex-wrap:wrap;
}

#formTable dt {
	width:40%;
	padding:1em 0.5em;
	text-align:right;
	border-bottom:1px dotted #666;
}
#formTable dd {
	width:50%;
	padding:1em 0.5em;
	border-bottom:1px dotted #666;
}

#formTable dd .memo {
	color:#666;
}

#formTable dd label {
	display:block;
}


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




.error {
	color:#f00;
}

input.widthS {
	width:4em;
}
input.widthMS {
	width:8em;
}
input.widthM {
	width:12em;
}
input.widthL {
	width:20em;
}
textarea {
	width:20em;
	max-width:100%;
	height:5em;
}

.formButton {
	padding:1em;
}





/* ==========================================================================================================================================
	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:0 1em 2em;
}

.linkList.flex {
}
.linkList.flex li {
	width:calc(100% / 6);
	padding:0.2em;
}
.linkList li a {
	display:block;
	width:100%;
	height:100%;
	padding:0.2em;
	text-align:center;
	font-size:80%;
	color:#60f;
}
.linkList li a img {
/*
	max-height:31px;
*/
}
.linkList li a:hover {
	color:#fff;
	background-color:rgba(102,0,255,0.4);
}



/* ==========================================================================================================================================
	profile
=========================================================================================================================================== */
.profileSubHeader {
	padding:0.5em 1em;
	text-align:left;
	color:#60f;
	background:linear-gradient( #6cfc ,#fffc ,#fffc ,#6cfc );
}

#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;
	padding:0 1em;
}
#profileImageFrame #profileImageBG {
	padding:1em;
	background-image:url(images/common/daiza.jpg);
	background-size:100% 100%;
}
#profileImageFrame #profileImageBG #profileImage {
	width:100%;
	border:var(--img-border);
}


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

.profileName {
	font-size:140%;
	padding:0.3em 0.6em;
	color:#60f;
	background:linear-gradient( #6cfc ,#fffc ,#fffc ,#6cfc );
}


#profileInfoFrame #profileIcons img {
	width:40px;
	margin-right:1px;
	vertical-align:top;
}

#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:#f06;
	font-weight:bold;
	text-align:left;
	padding-left:1em;
	width:8em;
}

#profileMessage {
	padding-top:2em;
}
#profileInfoFrame p {
	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) { 
	#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:#fee;
}
#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.2em 0;
	}
}



/* ============================================================================================
	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:#06f;
}

#profileGuideBottom li + li {
	border-left:0 none;
}
#profileGuideBottom li a span {
}
#profileGuideBottom li a:hover {
	color:#fff;
	background-color:#6cf;
}







/* 2019.7.18 */
.blogBanner {
	text-align:center;
	padding:0 0.5em 3em;
}

.blogBanner a {
	display:block;
}
.blogBanner a img {
	border:1px solid #fff;
}
.blogBanner a:hover {
	box-shadow:0 0 5px #60f;
}




