@charset "UTF-8";
/* ----------------------------------------------------------------------------------------
固定css
-------------------------------------------------------------------------------------------- */
a {
 display: block;
 transition: all 300ms ease-in-out;
 -webkit-transition: all 300ms ease-in-out;
}
a.opacity:hover {
 opacity: .6;
}
img {
	width: 100%;
	height: 100%;
}
/* ----------------------------------------------------------------------------------------
813px以上の固定css(PC)
-------------------------------------------------------------------------------------------- */
@media screen and (min-width: 813px) {
.sp {
  display: none;
 }
 .pc {
  display: block;
 }
.home {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 20%;
  max-width: 120px;
  z-index: 1000;
}
}
/* ----------------------------------------------------------------------------------------
今回追加した813px以上のcss(PC)
-------------------------------------------------------------------------------------------- */
body {
  font-family: "Shippori Mincho",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  font-style: normal;
}
main {
  position: relative;
  z-index: 0;
  font-size: 16px;
  background:linear-gradient(60deg,rgba(30, 54, 31, 1) 0%, rgba(79, 104, 58, 1) 25%, rgba(180, 104, 34, 1) 75%, rgba(206, 68, 31, 1) 100%);
	background-color: #1E361F;
  line-height: 1.5;
  color: #f9f2ed;
}

.copy {
  text-align: center;
  font-size: 12px;
}
small {
	font-size: 75%;
	font-weight: 300;
}
.big {
	font-size: 125%;
}
.bold {
	font-weight: bold;
}
.pb15 {
	padding-bottom: 15px;
}
.tac {
	text-align: center;
}
.en_font {
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
	font-style: normal;
}
.jp_font {
	font-family: "Shippori Mincho",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  font-style: normal;
}
.tx_orange {
	color: #e14b1b;
}
.mw500 {
	max-width: 500px;
	width: 100%;
	margin: auto;
}
/*----------------------------------------------------------
bg
----------------------------------------------------------*/
.bg_gradation {
	position: relative;
  z-index: 0;
	background: linear-gradient(60deg,rgba(30, 54, 31, 1) 0%, rgba(79, 104, 58, 1) 25%, rgba(180, 104, 34, 1) 75%, rgba(206, 68, 31, 1) 100%);
	padding-bottom: 100px;
	text-shadow: 4px 4px 8px rgba(55,55,55,0.5);
}
.bg_gradation::before {
	content: "";
	display: inline-block;
	background: url("../images/bg_pc.png") no-repeat top left /100% 100%;
	background-attachment: fixed;
	width: 100%;
	height: 100vh;
	z-index: -1;
	position: fixed;
	top: 0;
	left: 0;
	mix-blend-mode: soft-light;
}
.bg_white {
	background-color: #f9f2ed;
	color: #444;
	position: relative;
	z-index: 2;
}
.bg_white::before {
	content: "";
	display: inline-block;
	background: url("../images/bg_round.png") no-repeat top center/100%;
	width: 100%;
	min-height: 80px;
	position: absolute;
	top: -55px;
}
.bg_white .contents_wrap:first-of-type{
	padding-top: 40px;
}
.bg_gray {
	background-color: #e9e3de;
	color: #333;
	position: relative;
	z-index: 2;
}

/*----------------------------
flex
----------------------------*/
.flex_box {
	display: flex;
	justify-content: center;
}
.flex_box .btn {
	width: 48%;
}
.flex_box .btn a{
	width: 100%;
}
.flex_box > div {
	margin-right: 3em;
}
.flex_box > div:last-of-type {
	margin-right: 0;
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 1.0s ease-in-out;
  transform: translateY(20px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.start {
  display: none;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
  opacity: 0;
  transform: translateY(50px);
  }
  to {
  opacity: 1;
  transform: translateY(0);
  }
}
/* -------------------------------------------------------------------
parallax
---------------------------------------------------------------------*/
.parallax_content{
  min-height: 600px;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.front_content{
}
.parallax_content.img_bg_01{
  background-image: url( "../images/top_bg.webp");
}
/* -------------------------------------------------------------------
header
---------------------------------------------------------------------*/
.menu {
  display: flex;
  justify-content: flex-end;
  text-align: center;
	letter-spacing: 3px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99999;
	align-items: center;
	width: 100%;
	color: #f9f2ed;
}
.midnightHeader.white {
	color: #333;
}
.midnightHeader.white img {
	filter: invert(90);
}
.midnightInner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.menu li {
	margin-right: 30px;
	padding: 5px 0;
}
.menu li.img {
	margin-right: 10px;
}
.menu li a {
  display: block;
}
.menu li.img a {
}
.menu li.img a img {
	height: 30px;
}
.menu li a:hover {
  animation: text-blur 1.2s;
}
@keyframes text-blur {
  0% {
    filter: blur(0);
  }
  50% {
    filter: blur(4px); /* ぼかしの強さ */
  }
  100% {
    filter: blur(0);
  }
  }
/* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
.top_wrap {
	position: relative;
	z-index: 0;
	background: linear-gradient(110deg,rgba(27, 58, 52,0.4) 0%, rgba(207, 92, 23, 0.3) 100%);
	padding: 60px 0;
}
.top_wrap::before {
	display: inline-block;
	content: "";
	background: url("../images/top_circle.png") no-repeat top left/ 100%;
	width: 300px;
	height: 300px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1
}
.top_wrap::after {
	display: inline-block;
	content: "";
	background: url("../images/top_circle_02.png") no-repeat top left/ 100%;
	width: 300px;
	height: 300px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
h1 {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	box-shadow: 10px 10px 20px rgba(35,24,21,0.2);
}
.logo {
	max-width: 600px;
	margin: 50px auto 0;
}
.logo.top {
	margin: 0 auto;
	padding: 0 0 30px;
	max-width: 650px;
	width: 90%;
	animation: img-blur 0.8s ease-in-out forwards;
} 
/*
.top_lead {	
	font-size: 2vw;
	letter-spacing: 3px;
	padding-top: 50px;
	animation: slideIn 1.5s ease-in-out forwards;
	text-align: center;
}
.top_ttl {
	font-size: 6vw;
	margin: 15px 0 30px;
	display: inline-block;
	background-color: #f9f2ed;
	color: #444;
	line-height: 1;
	padding: 3px 10px 0;
	text-shadow: 0 0 0;
	animation: slideIn 1.5s ease-in-out forwards;
	text-align: center;
}
@keyframes slideIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*/
@keyframes img-blur {
  0% {
    filter: blur(16px);
  }
  100% {
    filter: blur(0);
  }
  }
/* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
.btn a {
  display: block;
	background-color: #dde500;
  width: 100%;
	max-width: 500px;
  margin:40px auto 0;
  border-radius: 100px;
  color: #444;
  min-height: 60px;
	padding: 20px 0;
	align-content: center;
  position: relative;
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 3px;
	text-shadow: 0 0 0;
}
.btn.lemino a {
 background: linear-gradient(90deg,rgba(255, 187, 44, 1) 0%, rgba(255, 114, 107, 1) 50%, rgba(255, 7, 119, 1) 100%);
 border: 0;
 color: #fff;
}
.btn.orange a {
 background-color: #e14b1b;
 color: #f9f2ed;
}
.btn.green a {
 background-color: #2a522a;
 color: #f9f2ed;
}
.btn.white a {
	background-color: #f9f2ed;
	color: #e14b1b;
}
.btn {
  position: relative;
	text-align: center;
}
.btn .btn_text {
	font-size: 14px;
}
.btn a span.arrow {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: url("../images/arrow_white.webp") no-repeat center/100%;
	display: inline-block;
	width: 35px;
	height: 35px;
}
.btn.white a span.arrow {
	background: url("../images/arrow_orange.webp") no-repeat center/100%;
}

.btn a:hover span.arrow{
	transition: all .3s ease-in-out;
	transform: translateX(10px)translateY(-50%);
}
/* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
.contents_wrap {
	padding: 80px 0;
	position: relative;
	width: 90%;
	margin: auto;
}
.contents_wrap h2 {
	text-align: center;
	font-weight: 500;
	font-size: 2.0em;
	position: relative;
	padding-bottom: 40px;
	line-height: 1;
	letter-spacing: 5px;
}
.contents_wrap h2 span {
	color: #2a522a;
	font-size: 0.6em;
	letter-spacing: 6px;
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
	background-color: #f9f2ed;
	display: inline-block;
	padding: 3px 0 3px 5px;
	text-shadow: 0 0 0;
}
.bg_white .contents_wrap h2,.bg_gray .contents_wrap h2 {
	text-align: left;
	padding-bottom: 15px;
	border-bottom: 1px solid #d6cec9;
	margin-bottom: 30px;
}
.bg_white .contents_wrap h2 span,.bg_gray .contents_wrap h2 span {
	color: #e14b1b;
	letter-spacing: 0;
	background-color: rgba(0,0,0,0);
	padding: 0;
}
/* ---------------------------------------------------------
About
-----------------------------------------------------------*/
.text_large {
	font-weight: 600;
	font-size: 2.4vw;
}
.about_tx {
	padding-left: 20px;
	margin: 30px 0 30px 20px;
	border-left: 1px solid #cbc0b8;
	line-height: 1.6;
}

/*----------------------------------------------------------------
youtube
----------------------------------------------------------------*/
.flex_box > div.left_box {
	width: 50%;
}
.right_box {
	width: 50%;
}
.youtube {
  width:100%;
  aspect-ratio:16/9;
	margin: auto;
	position: relative;
	z-index: 1;
	align-content: center;
}
.youtube:before {
	content: "";
	display: inline-block;
	background: url("../images/grid_shadow.webp") no-repeat bottom right / 100%;
	width: 715px;
	height: 402px;
	position: absolute;
	right: -60px;
	bottom: -60px;
	z-index: -1;
}
iframe {
  width: 100%;
  height: 100%;
}
video {
	width: 100%;
  height: 100%;
}
/* ---------------------------------------------------------
メインパートナー
-----------------------------------------------------------*/
.left_img {
	width: 25%;
	position: relative;
}
.left_img::before,.left_img::after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	position: absolute;
}
.left_img::before{
	background: url("../images/top_kagi.webp") no-repeat top left / 100%;
	top: -15px;
	left: -15px;
}
.left_img::after{
	background: url("../images/bottom_kagi.webp") no-repeat top left / 100%;
	bottom: -15px;
	right: -15px;
}
.right_tx {
	width: 65%;
}
.cast_name {
	font-size: 2em;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid #cbc0b8;
}
.cast_tx_list li {
	padding-bottom: 30px;
}
.cast_tx_list li:last-of-type {
	padding-bottom: 0;
}
.cast_tx_list li span {
	display: inline-block;
	padding-bottom: 8px;
	font-size: 1.1em;
}
/* ---------------------------------------------------------
映画
-----------------------------------------------------------*/
.section_lead {
	text-align: center;
	font-size: 1.2em;
}

/* ---------------------------------------------------------
募集要項
-----------------------------------------------------------*/
.requirements_box {
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: 1px solid #cbc0b8;
	margin-bottom: 30px;
	align-items: center;
}
.requirements_box h3 {
	width: 30%;
	text-align: center;
	color: #e14b1b;
	font-size: 1.4em;
	line-height: 1;
}
.requirements_box h3 span {
	font-size: 14px;
	color: #666;
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
	font-style: normal;
}
.requirement_right {
	width: 70%;
}
.casting {
	padding-top: 50px;
}
.tx_list li {
	text-indent: -1em;
	margin-left: 1em;
	padding: 2px 0;
}
.tx_list .small_tx {
	font-size: 0.85em;
	font-weight: 400;
}
.tx_list li a {
	display: inline;
	color: #e14b1b;
	text-decoration: underline;
}
/* ---------------------------------------------------------
詳細
-----------------------------------------------------------*/
.accordion-006 {
    
}
.accordion-006 summary {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
		margin-top: 10px;
		color: #3f5c37;
		font-weight: bold;
}
.accordion-006 summary::-webkit-details-marker {
    display: none;
}
.accordion-006 summary::before {
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background-color: #3f5c37;
		color: #f9f2ed;
    content: '+';
    transition: all .3s;
		text-align: center;
		align-content: center;
		border-radius: 100%;
}
.accordion-006[open] summary::before {
    transform: rotate(-45deg)
}
.accordion-006 summary:hover::before {
	background-color: #e14b1b;
}
.accordion_inner {
	border-left: 1px solid #659259;
	padding-left: 20px;
	margin-left: 15px;
	font-size: 14px;
}
.detail_box{
	margin: 30px auto;
}
.detail_box h4 {
	font-weight: 600;
	padding-bottom: 10px;
}
.attention_list {
	font-size: 14px;
	margin: 20px 0 0;
	
}
.attention_list li {
	text-indent: -1em;
	margin-left: 1em;
}
/* ---------------------------------------------------------
step
-----------------------------------------------------------*/
.step_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.step_list li {
	width: 22%;
	margin-right: 3%;
	position: relative;
	text-align: center;
}
.step_list li:nth-of-type(n+5) {
	margin-top: 5%;
}
.step_list li::after {
	content: "";
	display: inline-block;
	background-color: #e14b1b;
	width: 12px;
	height: 12px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 45%;
	right: -18px;
}
.step_list li:last-of-type::after {
	display: none;
}
.step_list li p {
	font-size: 12px;
}
/*----------------------------------------------
FAQ
----------------------------------------------*/
.faq_section.contents_wrap {
	margin-bottom: 0;
}
.faq_list {
	
}
.faq_item {
	border-bottom: 1px solid #cbc0b8;
	padding-bottom: 20px;
	margin: 20px auto;
}
.question_box {
	display: flex;
	justify-content: space-between;
}
.faq_question {
	display: flex;
	cursor: pointer;
	position: relative;
	text-align: left;
}
.faq_question span {
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
	font-style: normal;
	background-color: #3f5c37;
	color: #f9f2ed;
	padding:0 5px 3px 5px;
	border-radius: 5px;
	font-size: 1.2em;
	display: inline-block;
	margin-right: 10px;
	height: 25px;
}
.acc_button {
	width: 12%;
	height:30px;
	background-color: #3f5c37;
	color: #f9f2ed;
	transition: .2s;
	text-align: right;
	align-content: center;
	border-radius: 5px;
	padding: 0 5px;
	font-size: min(1.2vw, 14px);
	position: relative;
}
.acc_button:after{
	display: block;
	content: "";
	transform: translateY(-25%) rotate(45deg);
	width: 5px;
	height: 5px;
	border-bottom: 2px solid #f9f2ed;
	border-right: 2px solid #f9f2ed;
	position: absolute;
	top: 13px;
	left: 10px;
}
.faq_answer {
	padding:20px 0 0;
	display: flex;
}
.faq_answer span {
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
	font-style: normal;
	background-color: #e14b1b;
	color: #f9f2ed;
	padding:0 5px 3px 5px;
	border-radius: 5px;
	font-size: 1.2em;
	display: inline-block;
	margin-right: 10px;
	height: 25px;
}
/*.faq_question:before{
	display: block;
	content: "回答を見る";
	position: absolute;
	top:0; 
	right:0;
	margin:auto;
	width: 80px;
	height: 30px;
	background-color: #3f5c37;
	color: #f9f2ed;
	transition: .2s;
	text-align: right;
	align-content: center;
	border-radius: 5px;
	padding: 0 5px;
	font-size: 12px;
}*/
.question_box.is-active .acc_button:after{
	transform: rotate(225deg)translateY(-25%);
}
.question_box:hover .acc_button {
	background-color: #e14b1b;
}
.in_img {
	max-width: 750px;
	margin: auto;
	width: 100%;
}
/* ---------------------------------------------------------
規約
-----------------------------------------------------------*/
.tokuten_scroll {
  color: #151515; 
  overflow: hidden;
  width: 100%;
  margin:15px auto 0;
  font-size: 14px;
  font-weight: 400;
  background-color: rgba(11,11,11,0.1);
  padding: 15px;
	border-radius: 15px;
}
.tokuten_scroll .inn {
  height: 250px;
  overflow-y: scroll;
  text-align: left;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn .inn_box > ul > li {
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 0.3em;
}
.tokuten_scroll .inn .inn_box > ul > li a{
  color: #2d4b70;
  display: inline;
  text-decoration: underline;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 12px;
    margin-right: 10px;
 }
.tokuten_scroll .inn::-webkit-scrollbar-thumb {
    background: #2d4b70;
    width: 10px;
    border-radius: 100px;
}
.copy {
  padding: 30px 0 0;
}
/* ------------------------------------------------------------
PAGE TOPボタン
--------------------------------------------------------------*/
.totop a {
 display: none!important;
}
#totop_btn {
 width: 120px;
}
#totop_btn.is-fixed {
 position: fixed;
 right: 10px;
 bottom: 80px;
 z-index: 1001;
}
/*----------------------------------------------------------------------
追従
----------------------------------------------------------------------*/
.lp_cta_fixed.is-fixed {
  padding: .5em;
  text-align: center;
  width: 100%;
  background-color:rgba(21,21,21,0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  font-weight: 700;
  }
.btn_wrap {
  display: flex;
  width: 70%;
  margin: auto;
  justify-content: center;
}
.btn.fix {
  width: 49%;
	margin-right: 1%;
}
.btn.fix:last-of-type {
	margin-right: 0;
}
.btn.fix a {
   width: 100%;
   margin: 0;
	 max-width: 1000px;
}
/* ----------------------------------------------------------------------------------------
今回追加した812px以下のcss(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
/*.wrapper::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url("../images/bg_sp.png") no-repeat top left /100% 100% #fff;
}*/
main {
	font-family: "Shippori Mincho",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  font-style: normal;
}
/* -------------------------------------------------------------------
parallax
---------------------------------------------------------------------*/
.parallax_content{
	height: 100%;
	min-height: 400px;
	background: none!important;
}
.parallax_content::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translate3d(0, 0, -1px);
	transform: translate3d(0, 0, -1px);
	width: 100%;
	height: 100%;
	-webkit-background-size: cover;
	background-size: cover!important;
	z-index: -1;
}
.parallax_content.img_bg_01::before{
	background-image: url( "../images/top_bg_sp.webp");
}
/* -------------------------------------------------------------------
TOP
---------------------------------------------------------------------*/
.top_wrap {
	background: none;
	padding-bottom: 0;
}
.top_wrap::before,.top_wrap::after {
	width: 25%;
	height: 25%;
}
.top_wrap::after {
	display: none;
}
h1 {
	width: 95%;
}
.top_lead {	
	font-size: 3.4vw;
	padding-top: 50px;
	letter-spacing: 0;
}	
.top_ttl {
	font-size: 9.2vw;
	margin: 10px 0 15px 0;
}
/*----------------------------------------------------------
bg
----------------------------------------------------------*/
.bg_gradation {
	background: linear-gradient(70deg,rgba(30, 54, 31, 1) 0%, rgba(79, 104, 58, 1) 25%, rgba(180, 104, 34, 1) 75%, rgba(206, 68, 31, 1) 100%);
	padding-bottom: 50px;
}
.bg_gradation::before {
	background: url("../images/bg_sp.png") no-repeat top left /100% auto;
	position: fixed;
	content: "";
	display: block;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
}
.bg_white::before {
	min-height: 50px;
	top: -30px;
}
.bg_white .contents_wrap:first-of-type{
	padding-top: 20px;
}
/*----------------------------
flex
----------------------------*/
.flex_box {
	flex-direction: column;
}
.flex_box .btn {
	width: 100%;
}
.flex_box > div {
	margin-right: auto;
}
/* ------------------------------------------------------------
BTN
--------------------------------------------------------------*/
.btn a {
  width: 90%;
  margin:30px auto 0;
  min-height: 40px;
	padding: 15px 0;
}
span.arrow {
	right: 15px;
	width: 30px;
	height: 30px;
}
/* -------------------------------------------------------------------
SECTION
---------------------------------------------------------------------*/
.contents_wrap {
	padding: 40px 0;
}
.contents_wrap h2 {
	font-size: 1.8em;
	padding-bottom: 30px;
	letter-spacing: 3px;
}
.contents_wrap h2 span {
	font-size: 0.5em;
}
.bg_white .contents_wrap h2,.bg_gray .contents_wrap h2 {
	margin-bottom: 20px;
}
/* ---------------------------------------------------------
About
-----------------------------------------------------------*/
.text_large {
	font-size: 1.4em	;
}
.about_tx {
	padding-left: 10px;
	margin: 20px 0 20px 5px;
	font-size: 0.8em	;
}
.logo {
	margin: 20px auto 0;
}
/*----------------------------------------------------------------
youtube
----------------------------------------------------------------*/
.flex_box > div.left_box {
	width: 100%;
	margin-right: 0;
}
.right_box {
	width: 100%;
}
.youtube {
  width:100%;
	margin-bottom: 20px;
}
.youtube:before {
	width: 100%;
	height: 50%;
	right: -10px;
	bottom: -10px;
}
/* ---------------------------------------------------------
メインパートナー
-----------------------------------------------------------*/
.left_img {
	width: 50%;
	margin: auto!important;
}
.left_img::before,.left_img::after {
	width: 20px;
	height: 20px;
}
.left_img::before{
	top: -10px;
	left: -10px;
}
.left_img::after{
	bottom: -10px;
	right: -10px;
}
.right_tx {
	width: 100%;
}
.cast_name {
	font-size: 1.6em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding-top: 20px;
	text-align: center;
}
.cast_tx_list li {
	padding-bottom: 20px;
	font-size: 0.8em;
}
.cast_tx_list li span {
	padding-bottom: 5px;
}
/* ---------------------------------------------------------
映画
-----------------------------------------------------------*/
.section_lead {
	text-align: center;
	font-size: 0.9em;
}
#movie .tx_list {
	font-size: 0.88em;
}
/* ---------------------------------------------------------
募集要項
-----------------------------------------------------------*/
.requirements_box {
	flex-direction: column;
	padding-bottom: 30px;
	margin-bottom: 30px;
	font-size: 14px;
}
.requirements_box h3 {
	width: 100%;
	text-align: left;
	font-size: 1.2em;
	font-weight: 600;
	padding-bottom: 15px;
}
.requirement_right {
	width: 100%;
}
.casting {
	padding-top: 40px;
	font-size: 12px;
}
.tx_list li {
	padding: 3px 0;
}
.tx_list .small_tx {
	font-size: 0.9em;
	font-weight: 500;
}
/* ---------------------------------------------------------
詳細
-----------------------------------------------------------*/
.accordion-006 summary {
		margin-top: 15px;
		font-size: 16px;
}
.accordion_inner {
	padding-left: 15px;
	margin-left: 0;
	font-size: 14px;
}
.detail_box{
	margin: 10px auto 30px;
}
.detail_box:last-of-type {
	margin-bottom: 0;
}
.detail_box h4 {
	font-size: 15px;
}
.attention_list {
	font-size: 12px;
	margin: 20px 0 0;
}
.attention_list li {
	padding: 2px 0;
}
/* ---------------------------------------------------------
step
-----------------------------------------------------------*/
.step_list li {
	width: 42%;
	margin-right: 8%;
}
.step_list li:nth-of-type(n+3) {
	margin-top: 5%;
}
.step_list li::after {
	top: 40%;
	right: -19px;
}
/*----------------------------------------------
FAQ
----------------------------------------------*/
.faq_item {
	padding-bottom: 20px;
	margin: 20px auto;
}
.faq_question {
	width: 78%;
	margin-right: 1%;
}
.faq_answer {
	padding:20px 0 0;
	display: flex;
}
.acc_button {
	width: 21%!important;
	padding: 0 3px;
	font-size: 10px;
}
.acc_button:after{
	display: block;
	top: 13px;
	left: 5px;
}
.faq_question.is-active .acc_button:after{
	transform: rotate(225deg)translateY(-25%);
}
#contact  {
	font-size: 14px;
}
/* -------------------------------------------------------------
規約
---------------------------------------------------------------*/
.tokuten_scroll {
  width: 100%;
  font-size: 12px;
}
.tokuten_scroll .inn {
  height: 200px;
  padding: 10px  ;
	overflow-x: hidden;
}
.tokuten_scroll .inn .inn_box {
  margin-bottom: 2em;
}
.tokuten_scroll .inn::-webkit-scrollbar {
    width: 10px;
 }
/* ----------------------------------------------------------------
PAGE TOPボタン
------------------------------------------------------------------*/
#totop_btn {
 width: 80px;
}
#totop_btn.is-fixed {
 right: 10px;
 bottom: 80px;
}
/*----------------------------------------------------------------------
追従
----------------------------------------------------------------------*/
.lp_cta_fixed.is-fixed {
  }
.btn_wrap {
  display: flex;
  width: 100%;
  margin: auto;
  justify-content: center;
}
.btn.fix {
  width: 98%;
	margin-right: 0;
}
.btn.fix a {
   min-height: 50px;
	 padding: 0;
	 font-size: 0.9em;
	 line-height: 1;
	 border-radius: 10px;
}
/* -----------------------------------------------------------------------
ハンバーガーメニュー
-------------------------------------------------------------------------*/
#nav-drawer {
  position: relative;
}
.nav-unshown {
  display:none;/*チェックボックス等は非表示に*/
}
/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 50px;
  height:50px;
  right: 5px;
  top: 5px;
  z-index: 99999;
	border-radius: 100px;
	background: linear-gradient(60deg,rgba(30, 54, 31, 1) 0%, rgba(79, 104, 58, 1) 25%, rgba(180, 104, 34, 1) 75%, rgba(206, 68, 31, 1) 100%);
	color: #f9f2ed;
	box-shadow: 1px 3px 4px rgba(0,0,0,0.2);
}
/*ハンバーガーの形をCSSで表現*/
#nav-open span.nav_line {
	position: absolute;
	left: 15px;
  height: 1.5px;/*線の太さ*/
  width: 20px;/*長さ*/
  background:  #f9f2ed;
  display: block;
  content: '';
  cursor: pointer;
  transition: 0.5s;
  z-index: 9999;
}
#nav-open span.nav_line.first {
	top: 18px;
}
#nav-open span.nav_menu {
	position: absolute;
	font-size: 9px;
	bottom: 4px;
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif; 
	font-weight: bold;
}
/* アイコンがクリックされたらMENUを消す */
#nav-input:checked ~ #nav-open span.nav_menu {
  opacity: 0;
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#nav-input:checked ~ #nav-open span.nav_line.first {
  transform: rotate(225deg);
	top: 24px;
}
#nav-input:checked ~ #nav-open span.nav_line.second {
  transform: rotate(-225deg);
}  
/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #333;
  opacity: 0;
  transition: .3s ease-in-out;
}
/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1010;
  width: 90%;
  max-width: 300px;
  height: 100vh;
	background: linear-gradient(60deg, rgba(79, 104, 58, 1) 0%, rgba(180, 104, 34, 1) 50%, rgba(206, 68, 31, 1) 100%);
  transition: .3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  color: #f9f2ed;
	font-family: "Shippori Mincho",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: 500;
  font-style: normal;
}
.nav_item {
  font-size: 20px;
  padding: 100px 20px 0;
  position: relative;
}
.nav_item li{
	margin: 0 0 30px;
	
}
.nav_item li:last-of-type{
	border-bottom:0 dashed #f9f2ed;
}
.nav_item li a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
}
.hum_sns {
	display: flex;
	justify-content: center;
	align-content: center;
	border-top: 1px solid #f9f2ed;
	padding: 20px 0 0;
	margin: 0 20px ;
}
.hum_sns li a {
	width: 30px;
	margin: auto;
}
.hum_sns li {
	margin-right: 10px;
}
.hum_sns li:last-of-type {
	margin-right: 0;
}
/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  opacity: .5;
  display: block;
}
#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
	height: 100vh;
}
.header_menu{
 display: flex;
 display: -moz-flex;
 display: -o-flex;
 display: -webkit-flex;
 display: -ms-flex;
 flex-direction: row;
 -moz-flex-direction: row;
 -o-flex-direction: row;
 -webkit-flex-direction: row;
 -ms-flex-direction: row;
}
}
/* ----------------------------------------------------------------------------------------
812px以下の固定css(SP)
-------------------------------------------------------------------------------------------- */
@media screen and (max-width: 812px) {
 .common_footer_wrapper .footer_inner {
  width: 93%!important;
 }
 /*ユーザーエージェント出し分け用*/
.iphone .android_show, .iphone .pc_show {display:none;}
.android .iphone_show, .android .pc_show {display:none;}
.pc .iphone_show, .pc .android_show {display:none;}
.pc .visible .iphone_show, .pc .visible .android_show {display:block;}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic", Helvetica, sans-serif;
  }
 .sp {
  display: block;
 }
 .pc {
  display: none;
 }
 .home {
  position: fixed;
  top: 14px;
  left: 10px;
  width: 20%;
  max-width: 90px;
  z-index: 1000;
 }
}
