@charset "UTF-8";

html {
	margin: 0;
	padding: 0;
}

body {
	background-image: url('/img/bg.png');
	background-repeat: repeat;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-size: 14px;
}

h1 {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	background: rgba(255, 239, 243, 0.8);
	padding: 7px 0 7px 15px;
	color: #ff7799;
	border-radius: 7px;
	width: 100%;
}
.futura { 
	font-family: "futura-pt", sans-serif;
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
	max-width: 800px;
}

.card {
	box-shadow: inset 0px 0px 5px rgba(0,0,0,0.4);
	background-color: rgba(255,255,255,0.75);
}

.card.cast {
	box-shadow: none;
	background-color: #fff;
	border: 1px solid #ff7799;
}

.card.cast img {
	height: 200px;
	object-fit: cover;
}

.card.cast .card-body {
	padding: 0;
}

.card.cast .card-footer {
	text-align: center;
}


#copy {
	color: #fff;
	background: #ff7799;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5em;
}
#copy p {
	margin: 5px 0;
}
#copy p:last-child {
	margin: 5px 0 0;
}
#copy a:visited, #copy a:hover, #copy a:link, #copy a:active {
	color: #fff;
}

.pconly {
	display: block;
}
.sponly {
	display: none;
}

footer {
	background-color: #ff7799;
	color: #fff;
	padding: 20px 0;
	margin-top: 20px;
}

@media screen and (max-width: 800px) {
	.pconly {
		display: none;
	}
	.sponly {
		display: block;
	}
}