@charset "UTF-8";

html {
	font-size: 62.5%;
}

body {
	background: #fff;
	color: #231815;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	/* : Use a value from 400 to 500 to 700 to 900 */
	font-weight: 700;
	font-style: normal;
	line-height: 1.6;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	outline: none;
}

.pcOnly {
	display: block;
}

.spOnly {
	display: none;
}

.section_inner {
	max-width: 1240px;
	width: 90%;
	margin: 0 auto;
	padding: 80px 0;
	text-align: center;
}

.br-pc {
	display: block;
}

.br-sp {
	display: none;
}


@media screen and (max-width: 768px) {
	html {
		font-size: 50%;
	}

	.pcOnly {
		display: none;
	}

	.spOnly {
		display: block;
	}

	.br-pc {
		display: none;
	}

	.br-sp {
		display: block;
	}
}

@media screen and (max-width: 430px) {
	html {
		font-size: 47%;
	}

	.section_inner {
		padding: 40px 0;
	}
}



/*header style
---------------------------*/
#top-head {
	background: #006934;
	width: 100%;
	height: 60px;
	display: flex;
	position: fixed;
	top: 0;
	z-index: 9;
}

#top-head .inner {
	width: 100%;
	float: left;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav {
	margin: 0 auto;
}

ul.menu_link li {
	margin: 0 10px;
	transition: 1s;
}

ul.menu_link li:hover {
	opacity: 0.4;
}

ul.menu_link img {
	width: auto;
	height: 36px;
}

/*nav style*/
#top-head nav ul {
	display: flex;
	list-style-type: none;
}

#nav_toggle {
	display: none;
}

@media screen and (max-width:768px) {

	ul.menu_link img {
		width: auto;
		height: 40px;
	}

	/*hamburger menu style*/
	#nav_toggle {
		display: block;
		width: 50px;
		height: 50px;
		position: relative;
		top: 0px;
		z-index: 9;
		background: #006934;
		padding: 0 14px;
	}

	#nav_toggle div {
		position: relative;
	}

	/*hamburger menu close style*/
	#nav_toggle span {
		display: block;
		height: 1px;
		background: #fff;
		position: absolute;
		width: 22px;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}

	#nav_toggle span:nth-child(1) {
		top: 18px;
	}

	#nav_toggle span:nth-child(2) {
		top: 23px;
	}

	#nav_toggle span:nth-child(3) {
		top: 28px;
	}

	/*hamburger menu open style*/
	.open #nav_toggle span:nth-child(1) {
		top: 25px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}

	.open #nav_toggle span:nth-child(3) {
		top: 25px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/*nav style*/
	#top-head {
		background: transparent;
		height: 50px;
	}

	#top-head nav {
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: #006934;
		overflow: auto;
	}

	#top-head nav ul {
		display: block;
		width: 100%;
		margin: 80px auto;
	}

	#top-head nav ul li {
		text-align: center;
	}

	#top-head nav ul li:last-child {
		border: none;
	}

	/*nav link style*/
	#top-head nav ul li a {
		display: block;
		font-size: 45px;
	}
}



/*top
---------------------------*/
section#top {
	background: url(../img/kv_back.jpg);
	background-size: cover;
	background-position: top center;
}

#top .section_inner {
	max-width: 1024px;
	width: 90%;
	margin: 0 auto;
	padding: 0 0 20px;
	text-align: center;
	font-size: 0;
}

.kv_logo {
	width: 62%;
	margin: 0 auto;
	padding: 80vh 0 0;
}

.kv_textwrap {
	width: 90%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 0 20px;
}

.kv_textwrap p.text_pp {
	font-size: 1.8rem;
	color: #fff;
	border: 1px solid #fff;
	display: inline-block;
	margin: 2px;
	padding: 0 10px;
	font-weight: 500;
	letter-spacing: .06em;
	font-family: "Noto Sans JP", sans-serif;
}

.link_cmt {
	width: 10%;
	position: absolute;
	top: 120px;
	right: 4%;
}

.link_cmt img {
	width: 100%;
	transition: 1s;
}

.link_cmt img:hover {
	opacity: 0.6;
}

/* 脈打つ */
.pulse {
	-webkit-animation: pulse 1s infinite linear alternate;
	animation: pulse 1s infinite linear alternate;
}
@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}


@media screen and (max-width: 430px) {
	.kv_logo {
		width: 100%;
		padding: 40vh 0 0;
	}

	.kv_textwrap {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		padding: 0px 0 20px;
	}

	.kv_textwrap p.text_pp {
		font-size: 1.2rem;
		color: #fff;
		border: 1px solid rgba(255, 255, 255, 0.8);
		display: inline-block;
		margin: 2px;
		padding: 0 2px;
		font-weight: 400;
		letter-spacing: .06em;
		font-family: "Noto Sans JP", sans-serif;
	}
}



/*widgets
---------------------------*/
#widgets {
	background: #fff;
}

#widgets .section_inner {
	padding: 20px 0;
}

img.top_billimg {
	width: 100%;
	display: block;
}

.mvtk {
	width: 100%;
	margin: 0 auto;
}

div#mvtk-widgets-container {
	margin: 0 auto;
}

.loop_wrap {
	display: flex;
	width: 100vw;
	height: auto;
	overflow: hidden;
}

.loop_wrap img {
	width: auto;
	height: 100%;
}

ul.sns_link {
	position: fixed;
	top: 80px;
	left: 2%;
	z-index: 9;
}

ul.sns_link li {
	width: 45px;
	height: 45px;
	vertical-align: middle;
	display: inline-block;
	margin-right: 10px;
}

ul.sns_link li img {
	width: 100%;
}

@keyframes loop {
	0% {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes loop2 {
	0% {
		transform: translateX(0);
	}

	to {
		transform: translateX(-200%);
	}
}

.loop_wrap img:first-child {
	animation: loop 50s -25s linear infinite;
}

.loop_wrap img:last-child {
	animation: loop2 50s linear infinite;
}


@media screen and (max-width: 768px) {
	#widgets .section_inner {
		padding: 20px 0;
		border-bottom: none;
	}

	ul.sns_link {
		position: static;
		margin: 10px auto;
	}

	ul.sns_link li.snsimg {
		width: 60px;
		height: 60px;
		vertical-align: middle;
		display: inline-block;
		margin-right: 10px;
	}
	ul.sns_link li.cmtimg {
		width: 120px;
		height: 120px;
		vertical-align: middle;
		display: inline-block;
		margin-right: 10px;
	}
}


/*trailer
---------------------------*/
#trailer {
	background: #fff;
}

#trailer .section_inner {
	max-width: 900px;
	width: 90%;
	padding: 40px 0 80px;
}

img.title_trailer {
	width: 21%;
	display: block;
	margin: 0 auto 40px;
}

/*
.tyb_ttl {
	font-size: 2.9rem;
	color: #fff;
	letter-spacing: 8px;
}

.trailer_box {
	width: 68%;
	margin: 0 auto;
	display: block;
}

.trailer_box.box02 {
	margin-top: 40px;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

ul.ytList {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 20px;
	border: none;
}

ul.ytList li {
	width: calc(100% / 2 - 20px);
	padding: 0;
	background: #000;
}

ul.ytList li .loadBefore {
	position: relative;
}

ul.ytList li .loadBefore:before {
	content: "\f144";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 3.1em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.4;
	pointer-events: none;
}

ul.ytList li .loadBefore:hover:before {
	opacity: 1;
	color: #D80C18;
}

ul.ytList li img {
	cursor: pointer;
	height: 280px;
	object-fit: cover;
} */

#trailer .youtube_Wframe {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube_Wframe iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.select_wrap {
	font-size: 0;
	margin-top: 10px;
}

.select_wrap button {
	display: inline-block;
	border: none;
	font-size: 1.8rem;
	padding: 12px 20px;
	border: 1px solid #006934;
	box-sizing: border-box;
	border-radius: 10px;
	margin: 0px 10px;
}

.select_1 {
	background: #006934;
	color: #fff;
}

.select_2 {
	background: #fff;
	color: #006934;
}

@media screen and (max-width: 768px) {
	#trailer .section_inner {
		padding: 20px 0 40px;
	}

	img.title_trailer {
		width: 37%;
		margin: 0 auto 10px;
	}

	.trailer_box {
		width: 88%;
	}
}



/*intro
---------------------------*/
section#intro {
	background: #fff;
}

#intro .section_inner {
	padding: 0;
}

img.title_intro {
	width: 26%;
	margin-bottom: 40px;
	margin-top: -40px;
}

img.intro_main {
	width: 100%;
}

p.intro_text {
	width: 90%;
	margin: 0 auto;
	font-size: 1.8rem;
	color: #231815;
}

p.intro_text span.midori {
	color: #006934;
	font-size: 2.4rem;
}

img.intro_sub {
	width: 90%;
	margin: 60px auto 0;
}



@media screen and (max-width: 768px) {
	img.title_intro {
		width: 63.8%;
		margin-bottom: 10px;
		margin-top: 0;
	}

	p.intro_text {
		text-align: left;
	}

	img.intro_sub {
		width: 100%;
		margin: 20px auto 0;
	}
}



/*story
---------------------------*/
section#story {
	background: #006934;
}


img.title_story {
	width: 11%;
	margin-bottom: 40px;
}

p.story_text {
	width: 90%;
	margin: 40px auto;
	font-size: 1.8rem;
	color: #fff;
}

img.story_rule {
	width: 58%;
	padding: 20px;
	background: #fff;
	border-radius: 10px;
}

.storyswitch_wrap {
	width: 90%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.storyswitch_wrap::before {
	content: "";
	display: block;
	padding-top: 35%;
}

.storyswitch_inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.story_item {
	opacity: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: story_anime 6s 0s infinite;
	animation: story_anime 6s 0s infinite;
}

.story_item:nth-of-type(2) {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.story_item:nth-of-type(3) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

@keyframes story_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 8;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes story_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 8;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	img.title_story {
		width: 23%;
		margin-bottom: 10px;
	}

	p.story_text {
		text-align: left;
		margin: 20px auto;
	}

	.storyswitch_wrap {
		width: 100%;
	}

	img.story_rule {
		width: 90%;
	}
}


/*columu
---------------------------*/
section#columu {
	background: #fff;
}

img.title_columu {
	width: 19.6%;
	margin: 0 auto 40px;
	display: block;
}

img.column_heading {
	width: 60%;
}

img.column_text {
	width: 80%;
	margin-top: 30px;
}

.columuswitch_wrap {
	width: 90%;
	margin: 80px auto 0;
	overflow: hidden;
	position: relative;
}

.columuswitch_wrap::before {
	content: "";
	display: block;
	padding-top: 18%;
}

.columuswitch_inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.columu_item {
	opacity: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: column_anime 6s 0s infinite;
	animation: column_anime 6s 0s infinite;
}

.columu_item:nth-of-type(2) {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.columu_item:nth-of-type(3) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

@keyframes column_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 8;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes column_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 8;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	img.title_columu {
		width: 40%;
	}

	img.column_heading {
		width: 100%;
	}

	img.column_text {
		width: 100%;
	}

	.columuswitch_wrap {
		width: 100%;
		margin-top: 40px;
	}
}



/*cast_staff
---------------------------*/
section#cast_staff {
	background: #006934;
	color: #fff;
}

img.title_cast_staff {
	width: 23.6%;
	margin: 0 auto 20px;
	display: block;
}

.cast_staff_warp {
	display: flex;
	flex-wrap: wrap;
}

.cast_staff_column {
	width: 50%;
}

.cast_staff_inner {
	padding: 5%;
}

p.profile {
	width: 90%;
	margin: 10px auto 0;
	font-size: 1.6rem;
	text-align: left;
	text-align: justify;
}

img.cast_staff_img {
	width: 70%;
	margin-top: 10px;
}

img.name_img {
	width: 65%;
	display: block;
}

@media screen and (max-width: 768px) {
	img.title_cast_staff {
		width: 48.4%;
	}

	.cast_staff_column {
		width: 100%;
		margin-bottom: 40px;
	}

	.cast_staff_inner {
		padding: 0%;
	}

	img.name_img {
		width: 70%;
		display: block;
	}
}



/*comment
---------------------------*/
section#comment {
	background: #fff;
}

#comment .section_inner {
	/* padding: 0 0 80px; */
	/* background: #fff; */
	/* border: 1px solid #fff; */
}

img.title_comment {
	width: 21%;
	margin: 0 auto 20px;
}

.comment_warp {
	display: flex;
	flex-wrap: wrap;
}

.comment_column {
	width: 100%;
}

.comment_inner {
    padding: 2.5%;
    margin: 1.25% 0;
    border-radius: 10px;
	border: 1px solid #0d0d0d;
}

p.comment_namae {
	width: fit-content;
	font-size: 1.9rem;
	text-align: left;
	border-bottom: 1px solid;
}

p.comment_t {
	width: 100%;
	margin: 10px auto 0;
	font-size: 1.6rem;
	text-align: left;
	text-align: justify;
}

.pair_ttl {
	font-size: 1.6rem;
	text-align: left;
	color: #fff;
	background: #c30d23;
	width: fit-content;
	padding: 0 12px;
	border-radius: 10px;
}


.commentswitch_wrap {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.commentswitch_wrap::before {
	content: "";
	display: block;
	padding-top: 41%;
}

.commentswitch_inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.comment_item {
	opacity: 0;
	width: 100%;
	height: auto;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: comment_anime 6s 0s infinite;
	animation: comment_anime 6s 0s infinite;
}

.comment_item:nth-of-type(2) {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.comment_item:nth-of-type(3) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

@keyframes comment_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 7;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes comment_anime {
	0% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	35% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		z-index: 7;
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	#comment .section_inner {
		width: 90%;
	}

	img.title_comment {
		width: 49%;
	}

	.comment_column {
		width: 100%;
		margin-bottom: 20px;
	}

}




/*footer
---------------------------*/
footer {
	background: #006934;
}

footer .section_inner {
	padding: 40px 0;
}

img.footer_logo {
	width: 20%;
	margin: 0 auto 15px;
	display: block;
}

img.footer_billing {
	width: 45%;
}


@media screen and (max-width: 768px) {

	img.footer_logo {
		width: 50%;
	}

	img.footer_billing {
		width: 100%;
		color: #0d0d0d;
	}
}



/*loading
---------------------------*/
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10;
	background: #006934;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s 3.5s forwards;
	background: url(../img/loading.jpg) #004d26;
	background-size: cover;
	background-position: top left;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		visibility: hidden;
	}
}

.loading__logo {
	opacity: 0;
	animation: logo_fade 3s 0.5s forwards;
	max-width: 800px;
	width: 90%;
}

@keyframes logo_fade {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	60% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.loading {
		background: url(../img/loading_sp.jpg);
		background-size: cover;
		background-position: top center;
	}

	.loading__logo {
		max-width: 800px;
		width: 90%;
	}
}





/*theater_html
---------------------------*/
body#theater_page {
	background: #fff;
}

#theater_page header {
	background: #006934;
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
}

#theater_page img.title_theater {
	width: 160px;
	margin: 20px auto;
}

#theater_page .theater_inner {
	max-width: 980px;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	padding: 60px 0;
}

#theater_page table.cinema {
	width: 100%;
	padding: 0 0 40px;
	font-size: 1.6rem;
	background: #fff;
}

#theater_page table a {
	color: #0d0d0d;
	text-decoration: underline;
}

#theater_page table a:active {
	color: #006934;
}

#theater_page td,
th {
	padding: .8em .2em;
	border: 1px solid #0d0d0d;
}

#theater_page th {
	color: #fff;
	background: #006934;
}

#theater_page .update {
	font-size: 1.3rem;
	text-align: right;
	margin: 0 2px;
}

#theater_page .update span {
	font-size: 1.8rem;
}

#theater_page footer {
	background: #006934;
	text-align: center;
}

#theater_page footer img.theaterpage_backtop {
	width: 180px;
	margin: 40px auto;
}


/*popup（Trailer）
---------------------------*/
/* .popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;
	font-size: 0;
}

.popup.is-show {
	opacity: 1;
	visibility: visible;
}

.popup-inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1000px;
	padding: 20px;
	z-index: 2;
}

.popup-inner img {
	width: 100%;
}

.black-background {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .9);
	z-index: 1;
	cursor: pointer;
}

.subwindow-wrap button {
	display: inline-block;
	width: 50%;
	border: none;
	font-size: 1.8rem;
	height: 40px;
	border: 1px solid transparent;
	box-sizing: border-box;
}

.select1 {
	background: #006934;
	color: #fff;
}

.select2 {
	background: #fff;
	color: #006934;
}

.subwindow-wrap br {
	display: none;
}

iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
}

#js-show-popup {
	cursor: pointer;
}

.btn-close {
	width: 30px;
	height: auto;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 20px;
}

.btn-close::before,
.btn-close::after {
	display: block;
	content: "";
	width: 30px;
	height: 1px;
	border-radius: 0;
	background: #fff;
}

.btn-close::before {
	transform: rotate(-45deg);
}

.btn-close::after {
	transform: rotate(45deg);
} */


/*fadeIn animation　all
---------------------------*/
/* .fadeIn {
    animation: scrollAnime linear;
    animation-timeline: view();
    animation-range: entry;
}
@keyframes scrollAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
} */



/*page_top
---------------------------*/
#page_top {
	max-width: 60px;
	width: 10%;
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 9;
}