@charset "utf-8";

/* ========================================================
	INDEX
======================================================== */


/* cinema_list
============================================================================================================ */
.cinema_list {
}
.cinema_list a {
	position: relative;
	display: block;
	background-color: #fff;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.6;
}
.cinema_list a .ph {
	background-position: 50%;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
@media screen and (min-width: 769px), print {
	.cinema_list {
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
		display: flex;
		justify-content: space-between;
	}
	.cinema_list > * {
		width: 230px;
	}
	.cinema_list a::after {
		content: "";
		position: absolute;
		right: 45px;
		left: 45px;
		bottom: 0;
		border-top: 2px solid #af8b3e;
	}
	.cinema_list a .ph {
		display: block;
		height: 160px;
	}
	.cinema_list a .name {
		display: table-cell;
		width: 230px;
		height: 100px;
		vertical-align: middle;
	}
}
@media screen and (max-width: 768px) {
	.cinema_list > * + * {
		margin-top: 10px;
	}
	.cinema_list a {
		display: table;
		width: 100%;
		height: 110px;
		font-size: 1.3rem;
	}
	.cinema_list a::after {
		content: "";
		position: absolute;
		right: 0;
		top: 18px;
		bottom: 18px;
		border-right: 2px solid #af8b3e;
	}
	.cinema_list a > * {
		display: table-cell;
		vertical-align: middle;
		width: 50%;
	}
}