@charset "utf-8";
/* CSS Document */
/*480 600 960 1280*/
/*margin-bottom: 100px(PC)margin-bottom: 60px(SP)*/
/*========================================   タブ   ========================================*/	
/*タブ*/
#tab{
	max-width: 1200px;
	/*max-width: 780px;*/
	width:90%;
	margin:0 auto 30px;
	display:flex;
	/*justify-content: center;*/
	overflow-x: scroll;
	padding: 10px 0;
}
#tab li a{
	margin:0 auto;
	display: block;
	text-align: center;
	line-height: 1.2;
	box-sizing: border-box;
	background-color:rgba(105,73,26,1.00);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#tab li a:link{
	color:#FFFFFF;
}
#tab li a:visited{
	color:#FFFFFF;
}
#tab li a:hover{
	color:#FFFFFF;
	background-color:rgba(105,73,26,0.75);
}
#tab li.present a{
	background-color:rgba(242,171,57,1.00);
}
@media screen and (min-width : 700px) {/*700以上(タブレット/PC)*/
	#tab li{
		width:14.28%;
	}
	#tab li a{
		width:80px;
		height:80px;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
		margin: 0 5px;
	}
}
@media screen and (min-width : 960px) {/*960以上(タブレット/PC)*/
	#tab li a{
		width:110px;
		height:110px;
		line-height: 110px;
	}
}
@media screen and (min-width:0px) and ( max-width:959px) {/*960まで(SP/タブレット/PC)*/
	#tab li a{
		padding-top: 26px;
		font-size: 1.2rem;
	}
	#tab li a span{
		display: block;
	}
}
@media screen and (min-width:0px) and ( max-width:699px) {/*700まで(SP/タブレット/PC)*/
	.tab_wrapper{
		position: relative;
	}
	.tab_wrapper::before{
		position: absolute;
		left: 5px;
		top: 25%;
		content: "◀";
		display: block;
		color: #CCCCCC;
	}
	.tab_wrapper::after{
		position: absolute;
		right: 5px;
		top: 25%;
		content: "▶";
		display: block;
		color: #CCCCCC;
	}
	#tab li{
		min-width:60px;
	}
	#tab li a{
		padding: 8px 0;
		width: 90%;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px
		border-radius: 4px;
	}
	#tab li a span{
		font-size: 1.0rem;
	}
}
@media screen and (min-width:0px) and ( max-width:479px) {/*480まで(SP)*/
}

/*========================================   リスト   ========================================*/
/*リスト*/
.schedule ul{
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.schedule li{
	text-align: center;
	padding: 5px 1%;
	box-sizing: border-box;
	margin-bottom: 30px;
	width: 48%;
	background-color:rgba(244,239,231,0.75);
	margin: 0 1% 15px;
}
.list_castcomment{/*キャストコメント*/
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden; 
	height: 1.6em;
	line-height: 1.6;
}

.list_castprof{
	margin-top: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}
.list_castname{
	font-size: 1.8rem;
}
.list_castsize{
	margin-bottom: 10px;
}
.schedule_time{
	max-width: 300px;/*画像サイズに合わせる*/
	margin: 0 auto 3px;
	padding: 5px;
	box-sizing: border-box;
	background-color: rgba(105,73,26,1.00);
	color: #FFFFFF;
	line-height: 1.2;
}
.schedule_time span{
	display: inline-block;
}
.schedule_status span{
	color: #E0575B;
}
@media screen and (min-width : 600px) {/*600以上(タブレット/PC)*/
	.schedule{
		margin: 0 auto 100px;
	}
}
@media screen and (min-width : 960px) {/*960以上(タブレット/PC)*/
	.schedule li{
		width: 32%;
		margin: 0 0.5% 45px;
	}
}
@media screen and (min-width : 1280px) {/*1280以上(PC)*/
	.schedule li{
		width: 24%;
	}
}
@media screen and (min-width:0px) and ( max-width:959px) {/*960まで(SP/タブレット/PC)*/
	.list_castcomment{/*キャストコメント*/
		font-size: 1.4rem;
	}
	.list_castprof small{
		font-size: 1.4rem;
	}
	.schedule_time span{
		font-size: 1.4rem;
	}
}
@media screen and (min-width:0px) and ( max-width:599px) {/*600まで(SP)*/
	.schedule{
		justify-content: space-between;
	}
	.list_castcomment{/*キャストコメント*/
		font-size: 1.2rem;
	}
	.schedule_time span{
		font-size: 1.2rem;
	}
}


.list_castphoto{
	position: relative;
	max-width: 300px;
	position: relative;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	/*background-color: rgba(238,238,238,0.75);*/
}
.list_castphoto:before {
		content:"";
		display: block;
		padding-top: 133.4%; /* 高さを幅の75%(4:3)に固定 100%1:1()*/
}
.list_castphoto div {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.list_castphoto div img{
	vertical-align: middle;
}
@media screen and (min-width:0px) and ( max-width:479px) {/*480まで(SP)*/
	.list_castprof small{
		letter-spacing: -0.02em;
		font-size: 1.4rem;
	}
	.list_castsize,.schedule_status{
		font-size: 1.2rem;
	}
}

/*新人*/
.list_newface{
	position: absolute;
	right: 0;
	top:0;
	width: 0;
	height: 0;
	border-top: 30px solid rgba(242,171,57,0.75);
	border-right: 30px solid rgba(242,171,57,0.75);
	border-bottom: 30px solid transparent;
	border-left: 30px solid transparent;
}
.list_newface span{
	color: #FFFFFF;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4rem;
	position: absolute;
		top:-20px ;
		left: -5px;
		display: inline-block;
		 transform: rotate(45deg);
}


/*WEB予約ボタン*/
.schedule_reserve_btn{
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 1.4rem;
	max-width: 200px;
	width: 90%;
	margin: 3px auto 0;
}
.schedule_reserve_btn a{
	display: block;
	padding: 3px 0;
	background-color: #DFD2C4;
	color: #69491A;
}
.schedule_reserve_btn a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}


/*体験入店orレアor復活*/
.list_caststatus{
	background-color: rgba(108,150,106,0.75);
	color: #FFFFFF;
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
}


/*各アイコン*/
.list_casticon{/*共通*/
	padding: 0 6px;
	height: 26px;
	line-height: 26px;
	display: inline-block;
	border-radius: 5px;
	margin-right: 1%;
	vertical-align: top;
}
.list_casticon:last-of-type{
	margin-right: 0;
}
.list_casticon_nonsmoking{/*非喫煙*/
	background-color: #F4EFE7;
}
.list_casticon_nonsmoking i{
	color: #FF0000;
	margin-right: 0.2em;
}
.list_casticon_nonsmoking small{
	font-size: 1.2rem;
}


span.list_casticon_rea{/*レア*/
	background-color: #F2AB39;
	color: #000000;
	font-size: 1.2rem;
	letter-spacing: -0.2em;
}
.list_casticon_return{/*復帰*/
	background-color: #FFD954;
	color: #FFFFFF;
}

/*各アイコン　リンク*/
.list_casticon_link{
	max-width: 300px;
	width: 100%;
	height: 30px;
	margin: 0 auto 10px;
}
.list_casticon_link span{
	width: 31%;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	border-radius: 5px;
	vertical-align: middle;
	margin-right: 1.5%;
}

.list_casticon_link a:link,.list_casticon_link a:visited{
	color: #FFFFFF;
}
.list_casticon_link a:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.list_casticon_link span i{
	font-size: 1.6rem;
	margin-right: 0.2em;
}
.list_casticon_link span small{
	font-size: 1.2rem;
}
.list_casticon_photoblog{/*写メ日記*/
	background-color: #F291B8;
}
.list_casticon_news{/*NEWS*/
	background-color: #0088E7;
}
.list_casticon_kuchikomi{/*口コミあり*/
	background-color: #E3007F;
}
.list_casticon_kuchikomi small{
	letter-spacing: -0.2em;
}

@media screen and (min-width:0px) and ( max-width:599px) {/*600まで(SP)*/
	.list_casticon_link span i{
		font-size: 1.4rem;
	}
	.list_casticon_link span small{
		font-size: 1.0rem;
	}
}
@media screen and (min-width:0px) and ( max-width:479px) {/*480まで(SP)*/
	.list_casticon_link{
		display: flex;
		justify-content: center;
	}
	.list_casticon_link span{
		width: 31%;
		margin-right:2%;
	}
	.list_casticon_link span i{
		display: none;
	}
	.list_casticon_photoblog small,.list_casticon_kuchikomi small{
		letter-spacing: -0.2em;
	}
	.list_casticon_nonsmoking i{
		margin-right: 0;
	}
	.list_casticon_nonsmoking small{
		display: none;
	}
}
.list_casticon_link span:last-of-type{
	margin-right: 0;
}


/*出勤なし*/
p.schedule_empty{
	text-align: center;
	padding: 50px 0;
}

/*出勤なし*/
.schedule li.schedule_empty{
	width: 100%;
	text-align: center;
	height: 100px;
	line-height: 100px;
}
@media screen and (min-width : 600px) {/*600以上(タブレット/PC)*/
	.schedule li.schedule_empty{
		height: 500px;
		line-height: 500px;
	}
}
