
@charset "utf-8";

.sp {
	display: none;
}


a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

.inner_1000 {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
}
.heading {
	position: relative;
	padding: 80px 0;
}

.limited-img {
	position: absolute;
	width: 40%;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
}

.bg-wrap {
	position: relative;
	background: url('../img/bg.jpg') no-repeat center/ cover;
	padding: 100px 0;
	overflow: hidden;
}

.content {
	position: relative;
}
.ttl_wrap {
	text-align: center;
	margin-bottom: 60px;
}

.sub_ttl {
	font-size: 26px;
	font-weight:600;
}

.ttl {
	font-size: 62px;
	color: #0055a2;
	font-weight:600;
	margin-bottom: 30px;
}

.lead {
	line-height: 1.8;
	letter-spacing: .06em;
}

.typo {
	line-height: 1.6;
	letter-spacing: .06em;
}

.form_block {
	background: #fff;
	width: 85%;
	max-width: 600px;
	margin: 0 auto;
	padding: 40px;
	text-align: center;
	line-height: 1.5;
	border-radius: 10px;
	box-shadow: 4px 4px 5px rgba(0,0,0,.1),
	-4px -4px 5px rgba(0,0,0,.1),
	4px -4px 5px rgba(0,0,0,.1),
	-4px 4px 5px rgba(0,0,0,.1);
}

.mb-xs {
	margin-bottom: .8em;
}

.mb-s {
	margin-bottom: 1.5em;
}

.input_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px 5px 2px 20px;
	border: 2px solid #264477;
	border-radius: 9999px;
	margin: .5em auto;
	width: 80%;
}

.input_box input {
	text-align: left;
	width: 100%;
	height: 100%;
	padding: 5px;
	margin-right: 20px;
}

.input_box input:focus {
  outline: none;
}

.input_box button {
	background: #264477;
	color: #fff;
	padding: 6px 20px;
	border-radius: 9999px;
	letter-spacing: .1em;
}

/* limited */

.limited-page .bg-wrap {
	padding-top: 186px
}

.movie_block {
	display: flex;
	gap: 20px;
	background: #fff;
	box-shadow: 4px 4px 5px rgba(0,0,0,.1),
	-4px -4px 5px rgba(0,0,0,.1),
	4px -4px 5px rgba(0,0,0,.1),
	-4px 4px 5px rgba(0,0,0,.1);
	padding: 40px;
	margin-bottom: 50px;
}

.hidden {
  display: none !important;
}

.item_movie {
	width: 50%;
}

.item_movie iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.item_text {
	position: relative;
	width: 50%;
}

span.f-red {
 	color: #d32f2f;
}

.item_text .details {
	font-size: 14px;
	display: flex;
	gap: 10px;
	margin-bottom: .5em;
}

.item_text .title {
	font-size: 24px;
	color: #0055a2;
	font-weight:600;
	margin-bottom: 10px;
	line-height: 1.7;
}

.item_text .summary {
	font-size: 14px;
	margin-bottom: 20px;
}

.item_text .name {
	font-weight: 600;
	margin-bottom: 10px;
}

.item_text .profile {
	font-size: 14px;
}

.item_text .name span {
	margin-right: 1em;
}
.item_text .space{
	padding: 2em 0;
}

.item_text .text-indent {
	padding-left: 3em;
}

.item_text .button {
	position: absolute;
	background: #0055a2;
	color: #fff;
	font-size: 14px;
	bottom: 0;
	right: 0;
	transition: .3s;
}

.item_text .button img {
	width: 28px;
	filter: brightness(0) invert(1);
}

.item_text .button:hover {
	opacity: .7;
}

.item_text .button a:hover {
	text-decoration: none;
	color: inherit;
}

.item_text .button a {
	display: flex;
	align-items: center;
	padding: 5px 15px 5px 10px;
}

.pagination .active a {
  font-weight: bold;
}

.pagination ul {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.pagination li .page-num {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	color: #0055a2;
	border: 1px solid #0055a2;
	border-radius: 50%;
	background: #fff;
}

.pagination li .page-num.active {
	color: #fff;
	background: #0055a2;
}

.pagination li .prev-btn,
.pagination li .next-btn {
	opacity: 1;
  	cursor: pointer;
	width: 60px;
}
.pagination li .prev-btn{
	margin-right: 10px;
}
.pagination li .next-btn{
	margin-left: 10px;
}

.pagination button.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

@media (max-width:768px) {

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.heading {
		padding: 40px 0;
	}

	.limited-img {
		width: 50%;
		min-width: 280px;
	}

	.bg-wrap {
		padding: 50px 0;
	}

	.ttl_wrap {
		text-align: center;
		margin-bottom: 50px;
	}

	.limited-page .bg-wrap {
		padding-top: 108px
	}


	.sub_ttl {
		font-size: 16px;
		margin-bottom: .2em;
	}

	.ttl {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.lead {
		font-size: 14px;
		letter-spacing: .02em;
	}

	.form_block {
		font-size: 14px;
		padding: 20px;
		max-width: 400px;
	}

	.input_box {
		width: 90%;

	}

	.pagination li .prev-btn,
	.pagination li .next-btn {
		opacity: 1;
		cursor: pointer;
		width: 50px;
	}
	.pagination li .prev-btn{
		margin-right: 0px;
	}
	.pagination li .next-btn{
		margin-left: 0px;
	}

	.movie_block {
		padding: 20px;
		flex-direction: column;
	}
	.item_text .title {
		font-size: 18px;
		color: #0055a2;
		font-weight:600;
	}
	.item_text .summary {
		margin-bottom: 20px;
	}
	.item_text .name {
		font-size: 14px;
	}

	.item_text .space{
		padding: 0;
	}
	.item_movie {
		width: 100%;
	}
	.item_text {
		width: 100%;
	}

	.item_text .button {
		position: static;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}
	.item_text .button:hover {
		opacity: 1;
	}
	.item_text .button a {
		justify-content: center;
		padding: 10px 0px;
		margin-top: 30px;
	}

}