@charset "UTF-8";
/* クラブミラノ */
.milano {}

.toRealtimeBtn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 360px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: #c62e8b;
    filter: drop-shadow(0px 2px 4px #f76dba);
}
.toRealtimeBtn a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.toRealtimeBtn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgb(0 0 0 / 15%),
			0 0 5px rgb(0 0 0 / 10%);
}

/* ==================================================================== */
/* SMARTPHONE
======================================================================= */
@media screen and (max-width: 768px) {
	
	.toRealtimeBtn a {
		max-width: 280px;
		font-size: 1.3rem;
	}
  
	#schedule .weekly {
		display: flex;
		justify-content: space-between;
		margin: 0 auto 30px;
		padding: 30px 1% 0;
	}
	#schedule .weekly li {
		width: 13%;
		font-size: 1.2rem;
		text-align: center;
		border: 2px solid #1a205c;
	}
	#schedule .weekly li span {
		display: block;
		font-size: 1rem;
	}
	#schedule .weekly li a {
		display: block;
		padding: 12px 0;
		line-height: 1;
		color: #1a205c;
	}
	#schedule .weekly li.current {
		background-color: #1a205c;
		box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1),
			0 1px 2px 0 rgba(0, 0, 0, .4);
	}
	#schedule .weekly li.current a {
		font-weight: 700;
		color: #FFF;
	}
	#schedule .weekly li:hover {
		background-color: #4fa6e9;
		color: #FFF;
	}
	
	.cast--item-inner {
		display: flex;
		flex-flow: column;
	}
	.cast--item-thum {
		order: 2;
	}
	.cast--item-text {
		order: 3;
		margin-bottom: 0;
	}
	.cast--item-time {
		order: 1;
		margin-bottom: 1px;
	}
	
}

/* ==================================================================== */
/* DESKTOP
======================================================================= */
@media screen and (min-width: 768px), print {
	
	#schedule .weekly {
		display: flex;
		justify-content: space-between;
		margin: 0 auto 30px;
		padding: 60px 5% 0;
	}
	#schedule .weekly li {
		width: 13%;
		text-align: center;
		border: 2px solid #1a205c;
		background-color: #FFF;
	}
	#schedule .weekly li a {
		display: block;
		padding: 12px 0;
		line-height: 1;
	}
	#schedule .weekly li.current {
		background-color: #1a205c;
		box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1),
			0 1px 2px 0 rgba(0, 0, 0, .4);
	}
	#schedule .weekly li.current a {
		font-weight: 700;
		color: #FFF;
	}
	#schedule .weekly li:hover {
		background-color: #1a205c;
	}
	#schedule .weekly li:hover a {
		color: #FFF;
	}
	
	.cast--item-inner {
		display: flex;
		flex-flow: column;
	}
	.cast--item-thum {
		order: 2;
	}
	.cast--item-text {
		order: 3;
		margin-bottom: 0;
	}
	.cast--item-time {
		order: 1;
		margin-bottom: 1px;
	}
  
}

