@charset "utf-8";
/* CSS Document */

.wrapper{
	max-width: 1000px;
	width: 100%;
	margin: 3% auto;
}

.wrapper img{
	display: block;
	line-height: 0;
}

.logo{
	width: 40%;
	margin: 5% auto;
}

.movie{
	width: 90%;
	margin: 0 auto 10%;
}

video{
	width: 100%;
	height: auto;
}

.lead{
	text-align: center;
	font-size: 13px;
	line-height: 1.8;
	margin: 10% auto;
}

.bnr{
	width: 90%;
	margin: 5% auto;
}

.category{
	margin: 15% auto 5%;
}

.title__border {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 25px;
	font-family: "Josefin Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.title__border:before,
.title__border:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
}

.title__border:before {
	margin-right: 1rem;
}

.title__border:after {
	margin-left: 1rem;
}

.category ul{
	padding: 0;
	list-style: none;
	margin-top: 5%;
}

.category ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #F1F0EE;
	box-sizing: border-box;
	padding: 2%;
	margin-bottom: 3%;
	position: relative;
}

.category ul li .thm{
	width: 65%;
}

.category ul li p{
	margin: 2% 0;
	font-size: 18px;
	line-height: 1.4;
	text-align: center;
	color: #7A7A7A;
}

.category ul li p span{
	font-size: 12px;
}

.category ul li a{
	display: block;
	background-color: #7A7A7A;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	width: 70%;
	margin: 3% auto 0;
	padding: 2% 5%;
	box-sizing: border-box;
	position: relative;
	text-align: center;
}

.category ul li a:after{
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.category ul li img{
	width: 30%;
	margin: 0;
}	

@media(min-width:750px){

.logo{
	width: 30%;
}

.movie{
	width: 100%;
}

.lead{
	font-size: 16px;
	line-height: 2;
}

.flex{
	display: flex;
	column-gap: 20px;
	margin: 5% auto;
}

.bnr{
	width: 100%;
	margin: 0 auto;
}

.category{
	margin: 15% auto 5%;
}

.title__border {
	font-size: 35px;
}

.category ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 10px 10px;
	justify-content: space-between;
}

.category ul li{
	width: calc(50% - 10px);
}

}