/* reset */
html, body, div, span, applet, object, iframe, strong,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, caption, 
tbody, tfoot, thead, label, table, tr, td, th, body, blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
    line-height:100%;
    list-style: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}

/*
 * Copyright (C) 2014 Adobe Systems Incorporated
 *      https://github.com/adobe-fonts/source-han-sans/tree/master
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

@font-face {
   font-family:'cbg';
   src: url('../centurygothic.woff') format("woff");
}

@font-face {
   font-family:'icon';
   src: url('../icon.woff') format("woff");
}

a{
	color:#00C95E;
	font-style:normal;
	text-decoration:none;
	outline:none;
    word-wrap: break-word;
    transition:0.1s linear;
    -webkit-transition:0.1s linear;
}

a:link {
	color:#00C95E;
	font-style:normal;
	text-decoration:none;
}

a:visited {
	color:#00C95E;
	text-decoration:none;
}

a:hover {
	color:#00C95E;
	font-style:normal;
	text-decoration:underline;
}

a:active {
	text-decoration:underline;
}

.bold {
	font-weight: bold;
}

/* common */
body{
    font-family:"Noto Sans JP", 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	width: 100%;
	height: auto;
    color:#333333;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

html {
	scroll-padding-top: 60px;
}

.wrapper {
	width: 100%;
    max-width:960px;
    margin:0 auto;
}

img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

p {
	font-size: 16px;
	line-height: 32px;
}

.forpc {
	display: block;
}

.forsp {
	display: none;
}

/* loading */
#loader-bg {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #191919;
  z-index: 999998;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  text-align: center;
  z-index: 999999;
}

.loader-box {
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#loader img {
	padding-bottom: 0px;
	width: 75px;
	height:auto;
}
#loader p {
	font-size: 10px;
	color: #cccccc;
	font-weight: bold;
}

#loader-text {
	padding-top: 10px;
}

#loader-text img {
	width: 65px;
	height: auto;
}

@keyframes top {
0% {opacity:0;}
50% {opacity:0;}
100% {opacity:1;}
}


/* menu */
/* thanks : https://lopan.jp/css-animation-drawer/ */
/* :::::: toggle button :::::: */
.drawer-box {
	position: relative;
	z-index: 999998;
}

#navTgl {
	display: none;
}
.drawer-box label {
	cursor: pointer;
	position: fixed;
	top: 0;
	right: 0;
}
.open {
	z-index: 2;
	width: 60px;
	height: 60px;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: rgba(51, 51, 51, 100%);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #ffffff;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .6s;
}
#navTgl:checked + .open {
	transform: translateX(-280px);
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.drawer-menu {
	z-index: 1;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	box-sizing: border-box;
	background: #333333;
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.drawer-menu ul {
	border-bottom:1px solid #474747;
}

.drawer-menu li {
	color:#333333;
	border-top:1px solid #474747; 
}

.drawer-menu li a {
	color:#ffffff;
    text-decoration:none;
	padding:15px 15px;
    background:#333333;
    transition: 0.1s;
	font-size:12px;
	line-height: 18px;
	height: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	box-sizing: border-box;
	font-family:"Noto Sans JP", 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

.drawer-menu li a:hover {
	background: #474747;
}

.drawer-menu li ul li a::before {
	content: "･";
}

.drawer-menu li ul li a {
	padding:10px 20px;
	font-size:10px;
}

#navTgl:checked ~ .drawer-menu {
	transform: none;
}

.drawer-menu .drawer-menu-logo a {
	padding: 20px;
}

.drawer-menu .drawer-menu-logo a img {
	width: 40px;
	height: auto;
	display: block;
}

.drawer-box .footer-box {
	width: calc(100%);
	padding: 20px;
	box-sizing: border-box;
	margin: 0 auto;
	color: #ffffff;
	font-size: 10px;
	line-height: 16px;
	text-align: center;
}

.drawer-menu .footer-box a img {
	width: 180px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 10px;
}

.drawer-menu .footer-box .buttun a {
	font-size: 8px;
	font-weight: normal;
	width: 180px;
	border-radius: 25px;
	text-align: center;
	margin: 0 auto;
	padding: 10px 0px;
	color: #ffffff;
	border: 1px solid #ffffff; 
	margin-top: 10px;
}

.drawer-menu .footer-box .copyright {
	color: #ffffff;
	font-size: 8px;
	margin-top: 10px;
}

/* menu-box: */
.menu {
	width: 100%;
	height: 60px;
	overflow: hidden;
	box-sizing: border-box;
	background: #333333;
	position: fixed;
	z-index: 999;
}

.menu-box .wrapper {
	width: 1200px;
	display: flex;
	justify-content: center;
}

.menu-box ul {
	height: 60px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	z-index: 9;
}

.menu-box ul:first-child {
}

.menu-box ul li a {
	color: #ffffff;
	font-size: 14px;
	line-height: 0;
	font-weight: bold;
	padding: 20px 15px;
}

.bold-box .wrapper {
	width: 100%;
	padding: 15px 0px;
	display: flex;
	justify-content: flex-start;
	position: relative;
	z-index: 9;
}

h1, h1 a, h1 a img {
	width: auto;
	height: 30px;
	display: block;
}

.menu-box ul li a:hover {
	background: #474747;
	text-decoration: none;
}

.menu-box ul li {
}

/* slider */
.slider-box {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}

.slider-box .wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.slider-gradation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(90deg, #b37fb5, #f6c78e);
  mix-blend-mode: multiply;
}

.slider-box h2 {
	position: relative;
	top:0;
	left:0;
}

.slider-box h2, .slider-box h2 img {
	width:100%;
	height: auto;
	margin: 0 auto;
}

.slider-box h2 img {
	margin: 0 auto;
	text-align: center;
}

.video-wrap {
	position: absolute;
 	top: 60px;
 	width: 100%;
	height: 100%;
	max-height: 630px;
 	overflow: hidden;
 	z-index: -2;
	background: #2ea7e0;
}

.video-wrap video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* 中央基準 */
	height: 100%;
	max-height: 630px;
	width: auto;
	min-width: auto;
	object-fit: contain;   /* 縦横比を維持 */
	object-position: center;
}


/* container-box */
.container-box1, .container-box3, .container-box4 {
	padding: 150px 0px;
}

.container-box2 {
	padding: 150px 0px 00px 0px;
}

.container-box1 {
	background: #333333;
	color: #ffffff;
}

.container-box2 {
	background: #333333;
	color: #ffffff;
}

.container-box3 {
	background: #ffffff;
	color: #333333;
}

.container-box4, .news-context-box {
	background: #efefef;
	color: #333333;
}

.news-context-box {
	margin: 100px 0px 0px 0px;
}

h3 {
	margin: 0 auto;
	margin-bottom: 75px;
	text-align: center;
	font-weight: bold;
}

h3 img {
	width: auto;
	height: 30px;
}

h3 span {
	font-size: 16px;
	margin-top: 10px;
	display: block;
}

.trailer-slider {
	width: 100%;
	margin: 0 auto;
	background: #ffffff;
	margin-bottom: 75px;
}

.trailer-slider li a img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0;
	padding: 0;
}

.trailer-slider li {
    transition:0.1s linear;
    -webkit-transition:0.1s linear;
}

.trailer-slider li:hover {
	opacity: 0.85;
}

.slick-next { 
	right:10px!important;
}

.slick-prev { 
	left:10px!important;
}

.slick-arrow {
	z-index:2!important;
	box-sizing: border-box;
}

#introduction .container-list-box {
	text-align: left;
}

#introduction .container-list-box li {
	margin-bottom: 100px;
}

#introduction .container-list-box li:last-child {
	margin-bottom: 0px;
}

#introduction .container-list-box span {
	display: block;
	margin-bottom: 25px;
	border-bottom: 2px solid #333333;
	padding-bottom: 10px;
}

.photo-slider {
	width: 100%;
	margin: 0 auto;
}

#introduction .container-list-box li li {
	width: 640px;
	margin: 0 auto;
	text-align: center;
}

.photo-slider li a img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom:0px;
}

.film-title-box {
	text-align: center;
}

.film-title {
	font-size: 20px;
	font-weight: bold;
}

.film-spec {
	font-weight: bold;
	font-size: 10px;
	margin-top: 15px;
}

.joueikai-menu-box ul {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	margin-bottom: 50px;
}

.joueikai-menu-box ul li {
	margin-bottom: 15px;
}

.joueikai-menu-box ul li:last-child {
	margin: 0;
}

.joueikai-menu-box ul li a {
	width: 100%;
	text-align: center;
	background: #ffffff;
	display: block;
	border-radius: 5px;
}

.joueikai-menu-box ul li a:hover {
	transform: scale(1.05);
}

.joueikai-menu-box ul li a img {
	display: block;
	margin: 0 auto;
	width: auto;
	height: 110px;
}

.joueikai-menu-box .sns-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap:15px;
}

h7 {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 15px 0px;
}

h7::before, h7::after {
	content: "ー";
	padding: 0px 5px;
}

.joueikai-menu-box .sns-box a {
	padding: 15px;
	box-sizing: border-box;
	border-radius: 5px;
}

.joueikai-menu-box .sns-box a img {
	width: 30px;
	height: auto;
}

#news h3 {
	margin-bottom: 50px;
}

.news-list-box {
	width: 100%;
	padding: 50px;
	box-sizing: border-box;
	background: #ffffff;
}

.news-list-box .buttun {
	margin-top: 50px;
}

.news-list-box li {
	border-top:2px solid #cccccc;
	margin-top: 25px;
	padding-top: 25px;
}

.news-list-box li:first-child {
	border-top:none;
	margin-top: 0px;
	padding-top: 0px;
}

.news-list-box li a {
	display: block;
	padding: 0px;
	color: #333333;
}

.news-list-box li a:hover {
	color: #333333;
}

.news-day {
	font-size: 14px;
	margin-bottom: 10px;
}

.news-title {
	font-weight: bold;
	line-height: 150%;
}

.sakuhin-list-box ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 50px;
	margin: 0 auto;
}

.sakuhin-list-box ul li {
	width: calc(50% - 25px);
	box-sizing: border-box;
}

.sakuhin-list-box ul li a img:hover {
	transform: scale(1.05);
}

.sakuhin-list-box ul li a img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 15px;
    transition:0.1s linear;
    -webkit-transition:0.1s linear;
}

.container-list-box {
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.container-list-box a {
	color: #333333;
	display: inline-block;
}

.container-list-box li {
	margin-bottom: 50px;
}

.time .container-list-box li:last-child {
	margin-bottom: 0px;
	padding-top: 25px;
}

.time-day img {
	width: auto;
	height:50px;
	margin-bottom: 10px;
}

.time-day span {
	font-size: 16px;
	font-weight: bold;
}

.time-attention {
	line-height: 25px;
}

.time-film {
	margin-bottom: 10px;
}

.time-filmend {
	font-size: 12px;
	margin-top: 10px;
}

.cation {
	line-height: 25px;
	padding: 25px;
	box-sizing: border-box;
	border:2px solid #333333;
	font-weight: bold;
}

.ticket-number {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	margin-bottom: 25px;
	border: 2px solid #333333;
	border-radius: 25px;
	box-sizing: border-box;
	font-weight: bold;
}

.ticket-number img {
	width: auto;
	height: 20px;
	display: block;
}

.ticket-midashi {
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
	margin-bottom: 25px;
}
#ticket .container-list-box li {
	border-top: 2px solid #333333;
	padding-top: 50px;
}

#ticket .container-list-box li:first-child {
	border-top: none;
}

#introduction .wrapper, #news .wrapper, #time .wrapper, #ticket .wrapper, #theater .wrapper, #news-box .wrapper {
	width: 100%;
	max-width: 640px;
}

#theater .wrapper {
	text-align: center;
}

.thater-logo {
	width: 100%;
	max-width: 480px;
	height: auto;
	margin: 0 auto;
	margin-top: 25px;
	margin-bottom: 25px;
    transition:0.1s linear;
    -webkit-transition:0.1s linear;
}

.thater-logo:hover {
	transform: scale(1.05);
}

#theater .wrapper p {
	margin-bottom: 34px;
}

.text-midashi {
	text-align: center;
	font-size: 28px;
	font-weight: bold;
	line-height: 38px;
	padding: 0px 0px;
	margin-bottom: 50px;
}

/* footer */
.footer {
	background: #333333;
	padding: 100px 0px;
	color: #ffffff;
}

.pagetop {
    width:100%;
    height:55px;
    overflow:hidden;
    color:#ffffff;
    text-align:center;
}

.pagetop a {
	width:100%;
    font-size:14px;
    letter-spacing:2px;
    background:#424142;
    text-decoration:none;
    color:#ffffff;
    padding:20px 0px;
	display:flex;
    justify-content:center;
	-webkit-display:flex; /* Safari */
    -webkit-justify-content:center; /* Safari */
    transition:background-color 0.1s linear;
    -webkit-transition:background-color 0.1s linear;
}

.pagetop a:hover {
    text-decoration:none;
    color:#ffffff;
    background-color:#545455;
}

.arrow {
	width: 10px;
	height: 10px;
	border-top: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
    transform: rotate(-45deg);
	transform: -moz-rotate(-45deg);
	transform: -webkit-rotate(-45deg);
	transform: -o-rotate(-45deg);
	transform: -ms-rotate(-45deg);
    margin-top:4px;
    margin-right:15px;
}

.footer .wrapper {
	width: 100%;
	max-width: 480px;
	text-align: center;
	margin: 0 auto;
	font-size: 14px;
}

.footer-box {
	display: block;
	margin-bottom: 15px;
	line-height: 25px;
}

.footer-box a, .footer-box a img {
	width: 320px;
	height: auto;
	margin-bottom: 15px;
    transition:0.1s linear;
    -webkit-transition:0.1s linear;
}

.footer-box a img:hover {
	transform: scale(1.05);
}

.buttun a {
	width: calc(100% - 30px);
	max-width: 320px;
	display: block;
	box-sizing: border-box;
	color: #ffffff;
	background-color: #333333;
	border-radius: 30px;
	text-align: center;
	margin: 0 auto;
	padding: 20px;
}

.buttun a:hover {
	text-decoration: none;
	transform: scale(1.05);
}

.window {
	background-image: url(../jimi12/images/icon_windows.png);
	background-size: 16px auto;
	background-position: calc(100% - 30px) center;
	background-repeat: no-repeat;
}

.footer .buttun a, #trailer .buttun a {
	text-align: center;
	border: 1px solid #ffffff;
}

.footer .buttun a:hover, #trailer .buttun a:hover {
	text-decoration: none;
}

.copyright {
	font-size: 10px;
}

.footer .copyright {
	margin-top: 15px;
}

/* parallax */
.parallax-box1, .parallax-box2, .parallax-box3, .parallax-box4, .parallax-box5, .parallax-box6 {
  clip-path: inset(0);
  width: 100%;
  height: 450px;
  box-sizing:border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.parallax-box1::before, .parallax-box2::before, .parallax-box3::before, .parallax-box4::before, .parallax-box5::before, .parallax-box6::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  background-image: linear-gradient(90deg, #b37fb5, #f6c78e);
  z-index: -9;
  mix-blend-mode:multiply;
}

.parallax-box1::after, .parallax-box2::after, .parallax-box3::after, .parallax-box4::after, .parallax-box5::after, .parallax-box6::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width:100%;
  height:100%;
  background-size: cover;
	background-position: center;
}
.parallax-box1::after {
  background-image: url("../jimi12/images/back_parallax1.jpg");
}
.parallax-box2::after {
  background-image: url("../jimi12/images/back_parallax2.jpg");
}
.parallax-box3::after {
  background-image: url("../jimi12/images/back_parallax3.jpg");
}
.parallax-box4::after {
  background-image: url("../jimi12/images/back_parallax4.jpg");
}
.parallax-box5::after {
  background-image: url("../jimi12/images/back_parallax5.jpg");
}
.parallax-box6::after {
  background-image: url("../jimi12/images/back_parallax6.jpg");
}

.parallax-box6 {
	position: relative;
	padding-top: 60px;
	z-index: 1;
}

.parallax-box6 h3 {
	margin-bottom: 0px;
	color: #ffffff;
}


/* photo-slider */
.photo-slider1 {
	width: 100%;
	height: 120px;
	background: url("../jimi12/images/photo_slider1.jpg");
	background-size: auto 120px;
	animation: 60s linear infinite photo-slider1;
	display: block;
}

.photo-slider2 {
	width: 100%;
	height: 120px;
	background: url("../jimi12/images/photo_slider2.jpg");
	background-size: auto 120px;
	animation: 60s linear infinite photo-slider2;
	display: block;
}

@keyframes photo-slider1 {
    0% {
        background-position: 1280px center;
    }
	100% {
        background-position: 0px center;
    }
}

@keyframes photo-slider2 {
    0% {
        background-position: 0px center;
    }
	100% {
        background-position: 1280px center;
    }
}

/* news */
.news-context-box li {
	width: 100%;
	padding: 50px;
	box-sizing: border-box;
	background: #ffffff;
	margin-bottom: 50px;
}

.news-context-box li:last-child {
	margin-bottom: 0px;
}

.news-context-box .news-title, .news-context-box img, .news-context-box p  {
	margin-bottom: 30px;
}

/* sakuhin */
.sakuhin-box {
	position: relative;
	padding-top: 60px;
}

.sakuhin-box .sakuhin-ph .wrapper {
	width: 100%;
	max-width: 960px;	
	margin: 0 auto;
}

.sakuhin-box .wrapper {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.sakuhin-ph {
	width: 100%;
	background: #000000;
}

.sakuhin-box ul {
	padding: 100px 0px;
}

.sakuhin-box ul li {
	margin-bottom: 100px;
}

.sakuhin-box ul li:last-child {
	margin-bottom: 0px;
}

.sakuhin-box .film-title {
	font-size: 26px;
}

.sakuhin-box h3 {
	margin: 0 auto;
	margin-bottom: 25px;
	text-align: left;
	font-weight: bold;
	padding-bottom: 15px;
	border-bottom: 2px solid #333333;
}

.thanks-credit, .senden-credit {
	font-size: 12px;
	line-height: 22px;
	margin-top: 25px;
}

.text-right {
	width: 100%;
	display: block;
	text-align: right;
}

.text-center {
	width: 100%;
	text-align: center;
}

.sakuhin-box .text-center {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.sakuhin-visual {
	width: 380px;
	margin: 0 auto;
}

.sakuhin-visual a img {
	box-sizing: border-box;
	border: 1px solid #cccccc;
}

.sakuhin-box .sns-box {
	width: 100%;
	display: flex;
	justify-content: center;
	gap:30px;
}

.sakuhin-box .sns-box a {
	padding: 0px;
	border-radius: 0px;
}

.sakuhin-box .sns-box a:hover {
	transform: scale(1.25);
}

.sakuhin-box .sns-box a img {
	width: 30px;
	height: auto;
}

.sakuhin-box ul ul {
	padding: 0px;
}

.sakuhin-box ul li ul li {
	margin-bottom: 1em;
	line-height: 24px;
}

.sakuhin-box ul li ul li a {
	color: #333333;
}

.sakuhin-box ul li ul li::before {
	content: "･";
}

/* youtube */
.youtube {
	position: relative;
	width: 100%;
    height:auto;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* 2512追加 */
.banner-box, .banner-box li, .banner-box li a {
	width: 100%;
	max-width: 480px;
}

.banner-box {
	padding: 0;
	margin: 0 auto;
}

.banner-box a {
	box-sizing: border-box;
	border: 1px solid #cccccc;
}

#introduction .container-list-box li .banner-box li {
	margin-bottom: 15px;
}

#introduction .container-list-box li .banner-box li:last-child {
	margin-bottom: 15px;
}

.banner-box li a:hover {
	text-decoration: none;
	transform: scale(1.05);
}