/*
Theme Name: nelke2024
Author: nelke planning
Description: nelke2024 Theme
Version: 1.0
Tested up to: 6.5.4
*/
@charset "UTF-8";

/* font-family: "Noto Sans JP", sans-serif; */
/* font-weight　Regular400　Medium500　Bold700 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* font-family: "Poppins", sans-serif; */
/* font-weight　Medium500　SemiBold 600 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');


/* reset */
:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg *,symbol *)){all:unset;display:revert}*,::after,::before{box-sizing:content-box}menu,ol,ul{list-style:none}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert}::placeholder{color:unset}::marker{content:initial}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable=false])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable=true]){-webkit-user-drag:element}:where(dialog:modal){all:revert}
summary::-webkit-details-marker{display: none;}
a,button{cursor: pointer;}





:root{
	--jp: "Noto Sans JP", sans-serif;
	--jp-regular: 400;
	--jp-medium: 500;
	--jp-bold: 700;
	--en: "Poppins", sans-serif;
	--en-medium: 500;
	--en-bold: 600;
	--orange: #F6BB00;
	--pink: #de83ae;
	--lightorange:rgba(246,187,0,20%);
	--blue: #18B2C8;
	--lightblue:#D0F0F4;
	--red: #FA3030;
	--black: #000000;
	--white: #FFFFFF;
	--lightgray: #F5F5F5;
	--gray: #D5D5D5;
	--hover: all 0.2s;
	--week: calc(100% / 7);
}

/* commom　ここから　------------------------------------ */
html{
	scroll-behavior: smooth;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 62.5%;
	font-weight: var(--jp-regular);
	font-style: normal;
	letter-spacing: 0rem;
	color: var(--black);
}
body{
	-webkit-text-size-adjust: 100%;
	font-size: 1.4rem;
	position: relative;
	z-index: 0;
}
img{ max-block-size: unset;}

.card{
	border-radius: 1rem;
	background: var(--white);
	overflow: hidden;
}
.card_orange{
	background: var(--lightorange);
}
.card_inner{
	padding: 3rem 2rem;
}

.fw-medium{font-weight:var(--jp-medium);}
b,
.fw-bold,
.bold,
strong{font-weight:var(--jp-bold)!important;}
.en{
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}
.en.fw-bold,
.en.bold{
	font-weight: 600!important;
}

ruby > rt{font-size: 0.5em;}

del{text-decoration: line-through;}

.hide{display: none!important;}
.se_only{display: none!important;}
.sp_only{display: block!important;}
.pc_only{display: none!important;}

.red{color: var(--red)!important;}
.black{color: var(--black)!important;}
.blue{color: var(--blue)}
.orange{color: var(--orange);}

.bg_red{background-color: rgba(242, 45, 76, 20%)!important;}
.bg_blue{background-color: rgba(24, 178, 200, 20%)!important;}
.bg_lightblue{background-color: var(--lightblue)!important;}
.bg_lightorange{background-color: var(--lightorange)!important;}
.bg_white{background-color: var(--white)!important;}
.bg_unset{background-color: unset!important;}
.bg_dot{
	background-image: url('img/bg_dot.png');
	background-size: 2rem;
	background-repeat: repeat;
	background-position: top center;
}

.nowrap{white-space: nowrap;}
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}
.m-center{
	margin-left: auto;
	margin-right: auto;
}

.fix{
	max-width: 100vh;
	max-height: 100vw;
	overflow: hidden;
}

/* hover */
a,
/* a *, */
button
/* button * */
{
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}


/* 見出し */
.page_wrap h2{
	color: var(--blue);
	font-size: 2rem;
	font-weight: var(--jp-bold);
	line-height: 3rem;
}

/* cookie */
.section-cookie{
	position: fixed;
	z-index: 99999;
	bottom: 0;
	left: 0;
	width: 100%;
	height: fit-content;
	background-color: rgba(0, 0, 0, 85%);
	color: #FFFFFF;
	padding: 2rem 0;
}
.section-cookie_inner{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	margin: auto;
	width: calc(100% - 2rem);
	max-width: 130rem;
}
.section-cookie_inner p{
	padding-right: 1rem;
	font-size: 1.2rem;
	line-height: 1.5em;
}
.section-cookie_btn{
	display: block;
	white-space: nowrap;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	background: var(--blue);
	color: var(--white);
	font-size: 1.4rem;
}

/* select */
.select_wrap{
	display: block;
	position: relative;
	z-index: 0;
}
.select_wrap::after{
	content: '';
	display: block;
	background-image: url('img/arrow2_right.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 0.6rem;
	height: 1.2rem;
	position: absolute;
	top: 0; bottom: 0;
	right: 1.5rem;
	margin: auto;
	transform: rotate(90deg);
	pointer-events: none;
}
.select_wrap select{
	display: block;
	background-color: var(--white);
	padding: 1.1rem 3rem 1.1rem 1.8rem;
	width: calc(100% - 5rem);
	border: 0.1rem solid var(--gray);
	border-radius: 0.5rem;
}


/* 絞り込み */
details{

}
details summary{
	display: block;
	cursor: pointer;
}
.search_option_wrap details{
	position: relative;
}
.search_option_wrap details summary{
	width: fit-content;
	margin: 1.5rem auto 0;
	padding-right: 2rem;
	color: var(--blue);
	position: absolute;
	top: auto; right: 0; bottom: -3.5rem; left: 0;
	margin: 0 auto;
	font-size: 1.4rem;
}
.search_option_wrap details summary::before,
.search_option_wrap details summary::after{
	content: '';
	display: block;
	width: 1rem;
	height: 0.2rem;
	background-color: var(--blue);
	position: absolute;
	top: 0; right: 0; bottom: 0; left: auto;
	margin: auto 0;
	border-radius: 0.2rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
	opacity: 1;
}
.search_option_wrap details summary::after{
	transform: rotate(90deg);
}
.search_option_wrap details .details_on{
	display: block;
}
.search_option_wrap details .details_off{
	display: none;
}
.search_option_wrap details[open] .details_on{
	display: none;
}
.search_option_wrap details[open] .details_off{
	display: block;
}
.search_option_wrap details[open]{

}
.search_option_wrap details[open] summary{

}
.search_option_wrap details[open]  summary::after{
	transform: rotate(0);
	opacity: 0;
}

.details_content{
	overflow: hidden;
}
.details_content_inner{
	padding: 0;
}

.search_option_wrap{
	width: calc(100% - 3rem);
	max-width: 90rem;
	margin: 0 auto;
}

#stage_filter_reset{
	width: fit-content;
	margin: 2rem 0 2rem auto;
	color: var(--blue);
	font-size: 1.4rem;
	cursor: pointer;
}
#stage_filter_reset:hover{
	opacity: 0.7;
}



/* ボタン */
.btn_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}
[class*="btn__"]{
	display: block;
	width: fit-content;
	font-size: 1.2rem;
	padding: 1rem 2.8rem;
	border-radius: 2.1rem;
	white-space: nowrap;
	color: var(--white)!important;
	text-decoration: none!important;
}
[class*="btn__"][class*="_orange"]{
	border: 0.2rem solid var(--orange)!important;
	background: var(--orange)!important;
}
[class*="btn__"][class*="_blue"]{
	border: 0.2rem solid var(--blue)!important;
	background: var(--blue)!important;
}
[class*="btn__"][class*="_w100"]{
	width: calc(100% - 0.4rem);
	padding: 1rem 0;
	text-align: center;
	margin-bottom: 1rem;
}
[class*="btn__"][class*="_orange"][class*="_arrow"],
[class*="btn__"][class*="_blue"][class*="_arrow"]{
	position: relative;
}
[class*="btn__"][class*="_orange"][class*="_arrow"]::after,
[class*="btn__"][class*="_blue"][class*="_arrow"]::after{
	content: '';
	display: block;
	width: 1.3rem;
	height: 1.3rem;
	background-image: url('img/arrow_right_white.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	right: 2rem;
	bottom: 0;
	left: auto;
	margin: auto;
	pointer-events: none;
}
[class*="_center"]{
	display: block!important;
	margin-right: auto!important;
	margin-left: auto!important;
}
[class*="_mw43"]{
	max-width: 43rem;
}
[class*="_mw110"]{
	max-width: 110rem;
}
[class*="_mw90"],
.mw90{
	max-width: 90rem;
}


/* スクロールバー */
main ::-webkit-scrollbar,
.modal ::-webkit-scrollbar{
	background: var(--gray);
	width: 0.2rem;
	height: 0.2rem;
}
main ::-webkit-scrollbar{
	height: 0;
}
main ::-webkit-scrollbar-thumb,
.modal ::-webkit-scrollbar-thumb{
	background-color: var(--blue);
}
main ::-webkit-scrollbar-thumb:hover,
.modal ::-webkit-scrollbar-thumb:hover{
	background-color: var(--blue);
}

.simplebar-scrollbar{
	top: 10px;
	background: var(--blue);
	border-radius: 0.2rem;
	padding: 0;
	overflow: hidden;
}
.simplebar-scrollbar::before{
	background: transparent;
}
/* スクロールバーの背景 */
.simplebar-track{
	border-radius: 0;
	background: var(--lightgray);
	width: 100%!important;
}
/* スクロールバーを常に表示 */
.simplebar-scrollbar.simplebar-visible::before{
	background-color: var(--blue);
	opacity: 1;
}
/* 横スクロールバーの調整 */
.simplebar-track.simplebar-horizontal{
	height: 0.2rem!important;
	/* left: 3%; */
}


/* 装飾サークル */
[class*="circle__"]{
	display: block;
	border-radius: 50%;
	position: absolute;
	z-index: -1;
}
[class*="circle__"][class*="_orange"]{
	background-color: var(--orange);
}
[class*="circle__"][class*="_blue"]{
	background-color: var(--blue);
}

/* header footer */
.sns_nav{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin-right: auto;
	margin-left: auto;
}
.sns_nav a{
	display: flex;
	flex-flow: row nowrap;
	object-fit: center;
	align-items: center;
	width: 4.6rem;
	height: 4.6rem;
	border-radius: 50%;
	background: var(--white);
	-webkit-transition: var(--hover)!important;
	-o-transition: var(--hover)!important;
	transition: var(--hover)!important;
}
.sns_nav a img{
	display: block;
	margin: auto;
	width: 1.7rem;
	height: 1.7rem;
	object-fit: contain;
}



/* header */
header{
	position: fixed;
	z-index: 500;
	top: 0;
	left: 0; right: 0;
	margin: 0 auto;
	width: 100%;
	height: 5.5rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: var(--white);
}
.nerukeha_btn{
	display: block;
	background: var(--blue);
	color: var(--white);
	border: 0.2rem solid var(--blue);
	border-radius: 1.6rem;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.5rem;
	width: fit-content;
	white-space: nowrap;
	padding: 0.4rem 1.1rem;
}

header>a.nerukeha_btn{
	position: absolute;
	left: 1rem;
	top: 1.2rem;
}
.nerukeha_btn span{display: none;}

.header_title{
	width: 8rem;
}
.header_title a{
	display: block;
	height: 100%;
}
.header_title img{
	width: 100%;
	height: auto;
}
.header_right_wrap,
header .lang_wrap,
.header_menu_circle{
	display: none;
}

header .lang_wrap{
	position: absolute;
	top: 2.2rem;
	right: 8rem;
	display: flex;
	flex-flow: row nowrap;
	display: none;
}
header .lang_wrap a{
	display: block;
	line-height: 3.4rem!important;
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 50%;
	text-align: center;
	font-size: 1.3rem!important;
	font-weight: var(--en-medium)!important;
}
header .lang_wrap a.current{
	background: var(--orange);
	color: var(--white);
}
/* toggle */
.toggle_btn{
	position: fixed;
	right: 1.5rem;
	top: 1.66rem;
	width: 2.4rem;
	height: 2.6rem;
	cursor: pointer;
}
.toggle_btn span{
	display: block;
	position: absolute;
	left: 0; right: 0;
	margin: auto;
	width: 100%;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}
.toggle_btn span:first-child,
.toggle_btn span:nth-child(2){
	height: 0.3rem;
	border-radius: 0.3rem;
}
.toggle_btn span:first-child{
	top: 0;
	background: var(--blue);
}
.toggle_btn span:nth-child(2){
	top: 0.7rem;
	background: var(--orange);
}
.toggle_btn span:last-child{
	bottom: 0;
	font-size: 1.1rem;
	line-height: 1.6rem;
	text-align: center;
	opacity: 1;
}

/* header active時 */
header.active>*{ animation: 1s header_menu;}
@keyframes header_menu {
	0% { opacity: 0; }
	100% { opacity: 1; }
}
header.active{
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: block;
	background: var(--lightgray);
	border-radius: unset;
	z-index: 1000;
}
header.active>a.nerukeha_btn,
header.active .header_title{display: none;}
header.active .header_right_wrap{
	display: block;
}
header.active .header_nav_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	width: 100%;
	height: calc(100vh - 6.5rem);
	overflow-y: auto;
	margin: auto;
	padding: 3rem 0 3.5rem;
}
header .header_nav_wrap .lang_wrap{
	display: none;
}
header.active .header_nav_wrap .lang_wrap{
	display: flex;
	width: calc(100% - 2.8rem);
	padding-left: 2.8rem;
	padding-bottom: 1.7rem;
	position: unset;
}
header.active .header_nav_wrap .header_nav_wrap1{
	width: calc(50% - 2.8rem);
	padding-left: 2.8rem;
}
header.active .header_nav_wrap .header_nav_wrap2{
	width: calc(50% - 1.8rem);
	padding-right: 1.8rem;
}

header.active .header_nav>li{
	margin-bottom: 2rem;
	padding-right: 0;
}
header.active .header_nav>li>a{
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2.5rem;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	display: block;
	width: fit-content;
}
header.active .header_nav>li>a>span{
	display: block!important;
	font-size: 1.3rem;
	line-height: 2.5rem;
}
header.active .header_nav>li>ul{
	margin-top: 2rem;
	margin-bottom: 3rem;
}
header.active .header_nav>li>ul>li,
header.active .header_nav>li>ul>li>ul>li{
	margin-bottom: 0.8rem;
	font-size: 1.3rem;
	font-weight: 500;
}
header.active .header_nav>li>ul>li>a,
header.active .header_nav>li>ul>li>ul>li>a{
	display: block;
	font-size: 1.3rem;
	font-weight: 500;
	width: fit-content;
}
header.active .header_nav>li>ul>li>a::before{
	content: '';
	display: inline-block;
	width: 0.4rem;
	height: 0.9rem;
	background-image: url('img/arrow2_right.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 1rem;
}
header.active .header_nav>li>ul>li>ul{
	margin-top: 0.8rem;
	margin-bottom: 1.6rem;
}
header.active .header_nav>li>ul>li>ul>li{
	padding-left: 1em;
}
header.active .header_project_nav>li>a{
	font-size: 1.6rem;
}
header.active .header_project_nav>li:last-child>a{
	font-size: 1.4rem;
}
/* header.active .lang_wrap{
	display: flex;
	position: absolute;
	top: 3rem;
	left: 3rem;
} */
header.active .header_other_wrap{
	width: 100%;
	margin-top: 1rem;
	padding: 3rem 1.5rem 7rem;
	border-top: 0.1rem solid var(--gray);
}
header.active .header_other_wrap .header_other_nav{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	white-space: nowrap;
}
header.active .header_other_wrap .header_other_nav li,
header.active .header_other_wrap .header_other_nav a{
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
}
header.active .header_other_wrap .header_other_nav li{
	text-align: center;
}
header.active .header_other_wrap .header_other_nav a{
	margin-bottom: 1rem;
}
header.active .contact_lang_link{
	display: flex;
	flex-flow: row nowrap;
	white-space: nowrap;
	margin-top: 1rem;
	margin-bottom: 1rem;
}
header.active .contact_lang_link li a{
	padding: 0 1rem;
}
header.active .contact_lang_link li::after{
	content: '|';
}
header.active .nerukeha_wrap{
	background: var(--white);
	border-radius: 1rem;
	margin: 3rem auto;
	padding: 2.3rem 1.6rem;
}
header.active .nerukeha_wrap .nerukeha_btn{
	border-radius: 2.3rem;
	width: 100%;
	margin: 0 auto 0.7rem;
	padding: 1rem 0;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2.4rem;
}
header.active .nerukeha_wrap p{
	text-align: center;
	font-size: 1.2rem;
	line-height: 2.5rem;
}
header.active .nerukeha_wrap .nerukeha_text_link{
	display: block;
	margin: 0 auto;
	color: var(--blue);
	text-align: center;
	font-size: 1.6rem;
	line-height: 2.5rem;
	text-decoration: underline;
}
header.active .sns_nav{
	width: 28rem;
}

/* header active時 toggle */
header.active .toggle_btn{
	position: fixed;
	right: 1.5rem;
	top: 1.66rem;
}
header.active .toggle_btn span:first-child,
header.active .toggle_btn span:nth-child(2){
	top: 1rem; right: 0; left: 0;
}
header.active .toggle_btn span:first-child{
	transform: rotate(-45deg);
}
header.active .toggle_btn span:nth-child(2){
	transform: rotate(45deg);
}
header.active .toggle_btn span:last-child{
	opacity: 0;
}


/* footer */
footer{
	background: #EBEBEB;
	position: relative;
	z-index: 500;
	overflow: hidden;
}
footer .go_top_btn_wrap{
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: center;
	background: var(--white);
	/* border-radius: 50%; */
	border-radius: 50% / 0 0 100% 100%;;
	width: 16rem;
	/* height: 16rem; */
	height: 8rem;
	margin: auto;
	position: absolute;
	/* top: -7rem; */
	top: 0;
	left: 0; right: 0;
}
.go_to_arrow{
	display: block;
	height: auto;
	width: 1.3rem;
	/* margin: 50% auto 1.6rem; */
	margin: 0 auto 1.6rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.go_to_logo{
	display: block;
	height: auto;
	width: 50%;
	margin: 0 auto;
}

.footer_nav{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 3rem);
	max-width: 30rem;
	margin: 10rem auto 0.5rem;
}
.footer_nav li{
	width: 50%;
	margin-bottom: 1.6rem;
}
.footer_nav li a{
	font-size: 1.2rem;
	font-weight: 500;
}
footer .sns_nav{
	width: 90%;
	min-width: 22rem;
	max-width: 28rem;
}
.footer_copy{
	font-size: 1rem;
	text-align: center;
	padding: 1.7rem 0 2.4rem;
}

.read_more_btn{
	display: block;
	width: calc(100% - 0.2rem);
	height: fit-content;
	text-align: center;
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: 700;
	border: 0.1rem solid var(--gray);
	border-radius: 2.2rem;
	background: var(--white);
	color: var(--black);
	padding: 1.2rem 0;
	cursor: pointer;
	-webkit-transition: unset;
	-o-transition: unset;
	transition: unset;
	position: relative;
}
.read_more_btn:after{
	content: '';
	display: block;
	width: 1.3rem;
	height: 1.3rem;
	background-image: url('img/arrow_right.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0; right: 2rem; bottom: 0; left: auto;
	margin: auto;
	pointer-events: none;
}


/* パンくず */
.breadcrumbs{
	/* width: calc(100% - 4rem); */
	white-space: nowrap;
	/* overflow-x: auto; */
	scroll-behavior: smooth;
	font-size: 1.2rem;
	line-height: 1.7rem;
	background-color: rgba(255, 255, 255, 80%);
	position: relative;
	z-index: 500;
}
.breadcrumbs .breadcrumbs_inner{
	margin-left: 2rem;
}
.breadcrumbs ul{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	/* width: fit-content;
	width: 100%; */
	max-width: 110rem;
	margin: 0 auto;
	padding: 2rem 2rem 2rem 0;
}
.breadcrumbs li{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	margin-right: 1rem;
}
.breadcrumbs li:first-child{
	margin-right: 1.3rem;
	width: 1.4rem;
}
.breadcrumbs li:last-child{
	margin-right: 0;
}
.breadcrumbs li svg{
	display: block;
	width: 1rem;
	height: 1.7rem;
	color: initial;
	margin-right: 1rem;
}
.breadcrumbs li span{
	display: block;
	margin-right: 1rem;
}
.breadcrumbs a{
	display: block;
	width: max-content;
}
.breadcrumbs img,
.bread_home_link .home_icon{
	display: block;
	height: 1.4rem;
	width: 1.4rem;
	object-fit: contain;
}
.bread_home_link .home_icon{
	background-image: url('img/icon_home.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.wp_breadcrumbs li::before{
	content: url('img/arrow2_right_gray.svg');
	display: block;
	width: 1rem;
	height: 1.7rem;
	color: initial;
	margin-right: 1rem;
}
.wp_breadcrumbs li:first-child:before{
	display: none;
}

/* パンくず背景 */
.company_page + .breadcrumbs{
	background-color: rgb(208 240 244 / 20%);
}
#company_overview_page + .breadcrumbs,
#company_message_page + .breadcrumbs,
#company_download_page + .breadcrumbs{
	background-color: rgba(255, 255, 255, 80%);
}


.page_text{
	width: 100%;
	max-width: fit-content;
	margin: 1rem auto 2.2rem;
	padding: 0 1.5rem;
}
.page_header .page_text{
	padding: 0;
}
/* commom　ここまで　------------------------------------ */



/* トップページ　ここから　------------------------------------ */
#mv.top_mv{
	position: relative;
	margin-top: 5.5rem;
	margin-bottom: 4.5rem;
}
#urgent_notice{
	background: #FFDFDE;
	padding: 1.3rem 1.5rem;
	line-height: 1.8rem;
}
#urgent_notice{
	display: block;
}
#urgent_notice dl{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
}
#urgent_notice dl dt{
	width: 7rem;
	font-size: 1rem;
	font-weight: 500;
}
#urgent_notice dl dd{
	width: calc(100% - 7rem);
	font-size: 1.2rem;
	font-weight: 500;
	color: #F22D4C;
	text-decoration: underline;
}

#mv_swiper{
	position: relative;
	background: var(--black);
	width: 100%;
	height: fit-content;
}
#mv_swiper .swiper-wrapper{
	position: relative;
	width: 100vw;
}
#mv_swiper .mv_img_wrap{
	width: 100%;
	background: var(--black);
}
#mv_swiper .mv_img_wrap::before{
	content: '';
	display: block;
	padding-top: 56.25%;
	width: 100vw;
}
#mv_swiper .mv_img_wrap>*{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	filter: blur(0);
}
#mv_swiper .mv_img_wrap>iframe{
	object-fit: unset;
}
#mv_swiper div.swiper-slide{
	position: relative;
	z-index: -1;
	height: 100%;
}
.swiper-fade .swiper-slide{
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}
.swiper-fade .swiper-slide.swiper-slide-active{
	opacity: 1;
	pointer-events: unset;
}
#mv_swiper .mv_text_wrap{
	position: absolute;
	z-index: 1;
	left: 1.5rem;
	bottom: 3rem;
	color: var(--white);
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	opacity: 0;
	pointer-events: none;
	max-width: calc(100% - 3rem);
}
#mv_swiper .mv_text_wrap p{
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
	margin: 0;
}
#mv_swiper .mv_text_wrap p.mv_text_title{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: 700;
	margin: 0.5rem 0 0;
	width: fit-content;
}
#mv_swiper .mv_text_wrap .read_more_btn{
	width: fit-content;
	white-space: nowrap;
	background: unset;
	position: relative;
	padding: 1rem 4.4rem;
	margin: 1rem 0 0;
	border: 0.1rem solid var(--white);
	color: var(--white);
	font-weight: 500;
}
#mv_swiper .mv_copyright{
	display: block;
	font-size: 1.5vw;
	color: var(--white);
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	text-align: right;
}


/* 円形のプログレスバー */
.swiper-pagination{
	display: flex;
	flex-flow: row nowrap;
}
.circle_loading_wrap{
	width: 2rem;
	height: 2rem;
	position: relative;
}
#mv .circle_loading_wrap{
	margin-left: 1rem;
}
.stage_page_mv_wrap .circle_loading_wrap{
	margin-top: 1rem;
}
.circle_inner{
	text-align: center;
	line-height: 2rem;
}
.swiper-pagination-bullet svg.circle{
	display: none;
}
.swiper-pagination-bullet-active svg.circle{
	display:block;
	width: 2rem;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-90deg);
}
.swiper-pagination-bullet circle.circle{
	fill:none;
	stroke:#000000;
	stroke-width:5px;
	stroke-dasharray: 314;
}
.swiper-pagination-bullet-active circle.circle{
	animation: circle_loading linear 5s;
}
.swiper-pagination.paused .swiper-pagination-bullet circle.circle{
	animation-play-state: paused!important;
}

@keyframes circle_loading {
	from {
			stroke-dashoffset: 314;
	}
	to {
			stroke-dashoffset: 0;
	}
}
/* MV スリックオンオフ */
#swiper_pagination_wrap{
	position: absolute;
	bottom: -3.3rem;
	right: 0; left: 0;
	margin: auto;
	z-index: 10;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
#mv_movie_pause{
	width: 2.4rem;
	height: 2.4rem;
	background-color: var(--black);
	border-radius: 50%;
	background-image: url('img/paused_white.png');
	background-size: 30%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.stage_page_mv_wrap #mv_movie_pause{
	background-color: var(--black);
	background-image: url('img/paused_white.png');
}
#mv_movie_pause.paused{
	background-image: url('img/play_white.png');
	background-size: 45%;
}
.stage_page_mv_wrap #mv_movie_pause.paused{
	background-image: url('img/play_white.png');
}
#mv_swiper.paused .mv_text_wrap{
	opacity: 1;
	pointer-events: unset;
}
#mv_swiper.paused .mv_img_wrap>*,
#mv_swiper.paused .mv_img_wrap>iframe{
	filter: blur(20px);
}


.swiper-container-fade {
  &.swiper-container-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

/* mvキャッチフレーズ */
.mv_catchphrase{
	background: #CFEFF4;
	text-align: center;
	padding: 1.5rem 0 2rem;
	position: relative;
	z-index: 0;
}
.mv_catchphrase p{
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	margin-bottom: 0.7rem;
}
.mv_catchphrase div{
	font-family: var(--en);
	font-weight: var(--en-medium);
	color: var(--blue);
	font-size: 1rem;
	line-height: 1.5rem;
}
.mv_catchphrase img{
	position: absolute;
	z-index: 0;
	display: block;
	width: 1.4rem;
	height: auto;
	bottom: -1.2rem;
	right: 23%;
}

#front_page h2{
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 3rem;
	line-height: 4.3rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: start;
	align-items: center;
	padding: 0 1.5rem;
}
#front_page h2 span{
	font-family: "Noto Sans JP", sans-serif;
	display: inline-block;
	margin-left: 1.5rem;
	font-size: 1.2rem;
}

#front_main_menu{
	padding: 2rem 1.5rem 0.2rem;
	position: relative;
	overflow: hidden;
}
#front_main_menu ul{
	display: block;
	margin: 0 auto;
}
#front_main_menu ul li{
	float: left;
	/* width: calc(25% - 0.8rem); */
	width: calc((100% - 2.4rem) / 4);
	margin-left: 0.8rem;
	margin-bottom: 0.8rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
}
#front_main_menu ul li:first-child{
	/* width: calc(50% - 0.8rem); */
	width: calc((100% - 0.8rem) / 2);
	font-size: 1.7rem;
}
#front_main_menu ul li:first-child,
#front_main_menu ul li:nth-child(6){
	margin-left: 0;
	margin-bottom: 0;
}
#front_main_menu ul li a{
	display: block;
	width: calc(100% - 0.2rem);
	padding-top: calc(100% - 0.2rem);
	position: relative;
	border: 0.1rem solid var(--gray);
	border-radius: 1rem;
}
#front_main_menu ul li a span{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	width: 100%;
	height: fit-content;
}
#front_main_menu ul li a img{
	display: block;
	margin: auto;
	width: 50%;
	height: auto;
}
#front_main_menu ul li a img.menu_icon_hover{
	display: none;
}
.clearfloat{
	clear: both;
}
#front_main_menu .nel_img,
#front_main_menu .lke_img{
	display: none;
}

/* TOPICS　STAGE */
#front_topics,
#front_stage{
	position: relative;
	overflow: hidden;
	padding: 2.7rem 0 7.3rem;
}
#front_topics .circle__orange_1,
#front_stage .circle__blue_1{
	width: 10rem;
	height: 10rem;
	top: 0;
	left: -2.6rem;
}
#front_topics .read_more_btn,
#front_stage .read_more_btn{
	width: calc(100% - 3rem);
	position: absolute;
	bottom: 1rem;
	right: 0; left: 0;
	margin: 0 auto;
}




/* COMPANY */
#front_company{
	display: none;
}
#front_company_sp{
	padding: 3rem 1.5rem;
}
#front_company_sp ul li a{
	display: block;
	padding: 2.8rem 3rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 3rem;
	line-height: 4.3rem;
	color: var(--white);
	border-radius: 1rem;
	position: relative;
}
#front_company_sp ul li a span{
	font-family: "Noto Sans JP", sans-serif;
	display: inline-block;
	margin-left: 1.6rem;
	font-size: 1.2rem;
	line-height: 4.3rem;
	font-weight: 400;
	vertical-align: middle;
}
#front_company_sp ul li:first-child a{
	background: var(--blue);
	margin-bottom: 1.5rem;
}
#front_company_sp ul li:last-child a{
	background: var(--orange);
}
#front_company_sp ul li a:after{
	content: '';
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background-image: url('img/arrow_right_white2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0; right: 2.5rem; bottom: 0; left: auto;
	margin: auto;
	pointer-events: none;
}



/* COMPANY-SERVICE */
.front_service_link_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 3rem);
	max-width: 110rem;
	margin: 2.9rem auto 4.8rem;
}
.front_service_link_wrap li{
	width: calc((100% - 6rem ) / 4);
}
.front_service_link_wrap li a{
	display: block;
	color: var(--black);
	background: var(--white);
	border-radius: 1.5rem;
	position: relative;
	z-index: 0;
}
.front_service_link_wrap li a:after{
	content: '';
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url('img/arrow_right.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 2.5rem;
	bottom: 2.5rem;
	z-index: 1;
}
.front_service_link_wrap li a::before{
	content: '';
	display: block;
	padding-top: 100%;
}
.front_service_link_wrap li a div{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	display: block;
	text-align: center;
}
.front_service_link_wrap li a div{
	z-index: 1;
	font-size: 2vw;
	font-weight: 700;
}
.front_service_link_wrap li a p{
	z-index: -1;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.7rem;
	color: var(--blue);
	white-space: nowrap;
	margin-top: 1.5rem;
	opacity: 0.4;
}

/* RECRUIT */
#front_recruit{
	display: none;
}


/* banner */
#front_banner{
	padding: 0 1.5rem 3.5rem;
}
#front_banner a{
	display: block;
	padding: 0rem;
}
#front_banner img{
	width: 100%;
	height: auto;
}
#front_banner ul{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin-top: 2rem;
}
#front_banner ul li{
	width: calc(50% - 0.5rem);
	margin-bottom: 1rem;
}

/* トップページ　ここまで　------------------------------------ */


/* トピックス リスト */
#topics_swiper .swiper-wrapper{
	display: block;
}
#topics_swiper .swiper-slide:nth-child(n+3){
	display: none;
}
#topics_swiper .swiper-slide .topics_link{
	padding: 1rem 1.5rem;
	border-bottom: 0.1rem solid var(--lightgray);
}
#topics_swiper .swiper-slide:last-child .topics_link:last-child,
#topics_swiper .swiper-slide:nth-child(2) .topics_link:last-child{
	border-bottom: none;
}

.topics_link{
	display: flex;
	flex-flow: row nowrap;
	cursor: pointer;
}
.topics_link .img_wrap{
	width: 8rem;
	height: 8rem;
	padding-right: 1.5rem;
}
.topics_link .img_wrap img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
}
.topics_link .topics_detail{
	width: calc(100% - 9.5rem);
}
.topics_link .topics_date{
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0.3rem;
}
.topics_link .topics_title{
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 1.9rem;
	margin-bottom: 0.5rem;
}
.topics_link .topics_category{
	display: inline-block;
	width: fit-content;
	white-space: nowrap;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.9rem;
	background: #3C3C3C;
	color: var(--white);
	border-radius: 1rem;
	padding: 0 1rem;
	margin-right: 0.6rem;
}
.topics_category_hashtag_wrap{
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	width: 100%;
	overflow: hidden;
}
.topics_link .topics_hashtag{
	font-size: 1rem;
	color: var(--blue);
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
/* トピックス リスト hover */
.topics_link *{
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
/* トピックス　リンク範囲設定 */
.topics_link,
.topics_link .topics_category,
.topics_link .topics_hashtag a{
	position: relative;
}
.topics_link .topics_title a:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
/* 記事がない場合 */
.nopost_wrap{
	padding: 2.6rem 0  9.7rem;
}
.nopost_wrap p{
	font-size: 1.4rem;
}
.nopost_wrap .nopost_img{
	display: block;
	margin: 2.5rem auto 0;
	width: 45%;
	max-width: 23rem;
}


/* ステージ　リスト (コンテンツリスト共通含む) */
.stage_swiper_wrap{
	overflow: auto;
	margin: 0 0 0 1.5rem;
}
.stage_swiper_wrap .simplebar-mask{
	overflow: visible!important;
}
#stage_swiper{
	padding: 0 0 1rem;
	width: fit-content;
}
#stage_swiper .swiper-slide{
	width: fit-content;
	width: 40vw;
	max-width: 26rem;
	margin-right: 1rem;
}

.stage_link,
.contents_link,
.tickets_link{
	position: relative;
	display: block;
}
.stage_link .img_wrap,
.contents_link .img_wrap,
.tickets_link .img_wrap,
.casting_list .img_wrap{
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--white);
}
.stage_link .img_wrap::before,
.contents_link .img_wrap::before,
.tickets_link .img_wrap::before,
.casting_list .img_wrap::before{
	content: '';
	display: block;
	padding-top: 142%;
}
.stage_link .img_wrap img,
.contents_link .img_wrap img,
.tickets_link .img_wrap img,
.casting_list .img_wrap img{
	display: block;
	position: absolute;
	margin: auto;
}
.stage_link .img_wrap img.bg_filter_img,
.contents_link .img_wrap img.bg_filter_img,
.tickets_link .img_wrap img.bg_filter_img{
	top: 0; left: 0;
	z-index: 0;
	max-width: unset;
	width: 200%;
	height: 200%;
	object-fit: cover;
	-webkit-filter: blur(50px);
	-moz-filter: blur(50px);
	-o-filter: blur(50px);
	-ms-filter: blur(50px);
	filter: blur(50px);
	position: absolute;
	top: -50%;
	left: -50%;
	right: auto;
	bottom: auto;
}
.stage_link .img_wrap .stage_main_img,
.contents_link .img_wrap .contents_main_img,
.tickets_link .img_wrap .contents_main_img,
.casting_list .img_wrap img{
	top: 0; right: 0; left: 0; bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.stage_status_nowplaying{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: #F22D4C;
	color: var(--white);
	font-size: 1.2rem;
	line-height: 1.3rem;
	font-weight: 700;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding: 0.5rem 0.5rem 0.8rem;
	border-bottom-right-radius: 1.3rem;
	border-bottom-left-radius: 1.3rem;
	letter-spacing: 1px;
}
.stage_status_nowonsale{
	display: block;
	background: #FFEE33;
	color: var(--black);
	font-size: 1.3rem;
	line-height: 2.5rem;
	font-weight: 700;
	width: 100%;
	height: 2.5rem;
	padding: 0;
	border-bottom-right-radius: 1.3rem;
	border-bottom-left-radius: 1.3rem;
	text-align: center;
}



/* ページタイトル部分　共通 */
.page_header{
	margin: 5.5rem 0 0;
	padding: 0 1.5rem 3rem;
	position: relative;
	z-index: 300;
	overflow: hidden;
}
.page_header.more_on{
	padding-bottom: 6.5rem;
}
.page_header h1{
	font-size: 1.6rem;
	line-height: 5rem;
	font-weight: var(--jp-bold);
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 0.8rem;
}

.header_gray{
	background: var(--lightgray);
}

.page_deco [class*="circle__"]{
	position: fixed;
}


/* アーカイブ　詳細ページ　共通 */
#archive_wrap{
	min-height: 50rem;
}
#archive_page,
#article_page{
	background: var(--lightgray);
	position: relative;
	z-index: -2;
}
#archive_wrap,
#page_wrap{
	background: var(--white);
	border-radius: 1rem 1rem 0 0;
	margin: -1rem 0 0;
	padding: 1.8rem 0 2.5rem;
	position: relative;
}

/* ステージ一覧　トピックス一覧 アーカイブページ共通 */
.page_deco.bg_line_text{
	font-family: var(--en);
	font-weight: var(--en-bold);
	display: block;
	font-size: 7rem;
	line-height: 5rem;
	white-space: nowrap;
	text-align:center;
	color:rgba(0,0,0,.0);
	-webkit-text-stroke: 1px #FFF;
	position: fixed;
	top: 5.5rem; left: 0; right: 0;
	margin: auto;
	z-index: -1;
}
/* ステージ一覧　アーカイブページ */
.stage_page_deco .circle__orange_1{
	width: 9.4rem;
	height: 9.4rem;
	top: 3.2rem;
	right: -3.8rem;
}
.stage_page_deco .circle__orange_2{
	width: 3.5rem;
	height: 3.5rem;
	top: 11.4rem;
	left: -1.7rem;
}
.stage_page_deco .circle__blue_3{
	width: 14.2rem;
	height: 14.2rem;
	top: 31.7rem;
	left: -1.2rem;
	display: none;
}

.page_header_topics_wrap{
	margin: 0 auto;
	padding: 0 1.5rem 1.5rem;
	max-width: 90rem;
}
.page_header_topics_wrap .h2_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	white-space: nowrap;
}
.page_header_topics_wrap .h2_wrap a{
	text-decoration: underline;
	font-size: 1rem;
}
#page_header_topics_swiper{
	margin: 0.3rem 0 0.5rem;
	padding: 0;
	background-color: var(--white);
}

.page_header_swiper_wrap{
	margin: 0!important;
	position: relative;
	width: 100%!important;
}
#page_header_topics_swiper .swiper-slide{
	padding: 1rem;
	width: calc(100% - 2rem);
}
#page_header_topics_swiper .topics_link .topics_title{
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.swiper-button_black{
	display: block;
	position: absolute;
	top: 0; bottom: 0;
	margin: auto 0;
	z-index: 1;
	width: 0.6rem;
	height: 1.2rem;
	background-image: url('img/arrow2_right_black.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	opacity: 1;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.swiper-button_black.swiper-button-disabled{
	opacity: 0.1;
	pointer-events: none;
}
.swiper-button_black.swiper-button-prev{
	left: -1.6rem;
	transform: rotate(180deg);
}
.swiper-button_black.swiper-button-next{
	right: -1.6rem;
}

/* ステージ一覧絞り込み */
.search_option_wrap .stage_filter_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.search_option_wrap .stage_filter{
	display: block;
	width: calc(50% - 0.45rem);
	padding: 1.1rem 0;
	color: var(--black);
	background: var(--white);
	border-radius: 1rem;
	text-align: center;
	margin-bottom: 1rem;
	white-space: nowrap;
}
.search_option_wrap .stage_filter.active{
	color: var(--white);
	background: var(--blue);
}
.stage_filter_select_wrap{
	width: 100%;
}
.stage_filter_select_wrap p{
	font-size: 1.2rem;
	margin-bottom: 0.9rem;
	font-weight: var(--jp-medium);
}
.details_content_inner .stage_filter_select_wrap p{
	margin-top: 1.1rem;
}

/* サムネイル表示リスト表示切り替えボタン */
.display_switching{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-end;
	align-items: center;
	margin: 1rem auto 0.95rem;
	padding: 0 1.5rem;
	max-width: 110rem;
}
.display_switching input[type=radio] {
	display: none;
}
.display_switching label{
	cursor: pointer;
	display: inline-block;
	width: 1.8rem;
	height: 1.8rem;
	opacity: 0.1;
	margin-left: 1.9rem;
}
.display_switching label img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.display_switching input[type=radio]:checked + label{
	opacity: 1;
}
/* 標準表示（サムネイル） */
#stage_link_list{
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-items: flex-start;
	padding: 0 1.5rem;
}
#stage_link_list li{
	width: calc((100% - 0.9rem) / 2);
	margin-bottom: 1.3rem;
}
#stage_link_list li:nth-child(2n){
	margin-left: 0.9rem;
}
#archive_wrap .stage_detail{
	display: none;
}
/* リスト表示 */
.display_list #stage_link_list{
	flex-flow: column nowrap!important;
	padding: 0!important;
}
.display_list #stage_link_list>li{
	display: flex!important;
	flex-flow: row nowrap!important;
	justify-content: flex-start!important;
	align-items: stretch!important;
	width: calc(100% - 3rem)!important;
	margin-left: 0!important;
	padding: 0rem 1.5rem 1.5rem!important;
	border-bottom: 0.1rem solid var(--lightgray)!important;
}
.display_list #stage_link_list>li>a{
	display: block!important;
	width: 24.64%!important;
	max-width: 25.6rem!important;
}
.display_list .stage_link_icon_wrap{
	display: none!important;
}
.display_list .stage_detail{
	display: block!important;
	width: calc(100% - 24.64% - 1.3rem)!important;
	margin-left: 1.3rem!important;
}
#stage_link_list .stage_detail li{
	width: 100%;
	margin: 0;
}
#stage_link_list .stage_detail .stage_status_nowplaying,
#stage_link_list .stage_detail .stage_status_nowonsale{
	position: unset;
	writing-mode: unset;
	border-radius: 1.4rem;
	display: inline-block;
	width: fit-content;
	height: fit-content;
	margin: 0 0.7rem 0.6rem 0;
	padding: 0.3rem 1.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: var(--jp-bold);
}
#stage_link_list .stage_detail .stage_title{
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: var(--jp-bold);
	margin-bottom: 0.8rem;
}
#stage_link_list .stage_detail ul{
	font-size: 1.2rem;
}
#stage_link_list .stage_detail ul li a{
	font-size: 1.2rem;
}
#stage_link_list .stage_detail ul li{
	margin: 0.5rem 0 0;
}
#stage_link_list .stage_detail ul div{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	height: 1.7rem;
	line-height: 1.7rem;
	margin: 0.6rem 0 0;
	max-width: 41rem;
}
#stage_link_list .stage_detail ul div a{
	display: block;
}
#stage_link_list .stage_detail ul div a:first-child{
	width: calc(100% - 1.7rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--blue);
	text-decoration: underline;
}
#stage_link_list .stage_detail ul div a:last-child{
	width: 1.4rem;
}
#stage_link_list .stage_detail ul div img{
	display: block;
	height: 1.7rem;
	width: 1.4rem;
	object-fit: contain;
}
/* 上映中/チケット販売中　チェックボックス */
.stage_filter_btn_wrap{
	display: flex;
	flex-flow: row nowrap;
	white-space: nowrap;
}
.stage_filter_btn_wrap>input{
	display: none;
}
.stage_filter_btn_wrap>input+label{
	color: var(--black);
	border: 0.1rem solid var(--black);
	border-radius: 1.4rem;
	width: fit-content;
	height: fit-content;
	opacity: 1;
	padding: 0 1rem;
	margin-left: 0;
	margin-right: 0.5rem;
	line-height: 2.8rem;
}
.stage_filter_btn_wrap>input+label:last-child{
	margin-right: 0;
}
.stage_filter_btn_wrap>input:checked + label{
	background-color: var(--black);
	color: var(--white);
	opacity: 1;
}

/* トピックス一覧　アーカイブページ */
.topics_page_deco .circle__orange_1{
	width: 6.2rem;
	height: 6.2rem;
	top: 4.6rem;
	right: -1.9rem;
}
.topics_page_deco .circle__orange_2{
	width: 3.8rem;
	height: 3.8rem;
	top: 7.3rem;
	left: -0.8rem;
}
.topics_page_deco .circle__blue_3{
	width: 1.7rem;
	height: 1.7rem;
	top: 10.4rem;
	right: 4.4em;
}
#archive_wrap .topics_link_list{
	max-width: 90rem;
	margin: 0 auto;
}
#archive_wrap .topics_link_list .topics_link{
	padding: 1.5rem;
	border-bottom: 0.1rem solid var(--lightgray);
}
#archive_wrap .topics_link_list .topics_link:last-child{
	border-bottom: none;
}

/* トピックス一覧 絞り込み */
.topics_swiper_wrap{
	overflow: auto;
	margin: 0 0 0 1.5rem;
}
.topics_swiper_wrap .simplebar-mask {
	overflow: visible !important;
}
.search_option_wrap.search_option_topics_category{
	width: calc(100% + 3rem);
	margin: 0 -1.5rem;
}
#topics_category_swiper_wrap p{
	/* padding-left: 1.5rem; */
}
.swiper-wrapper.topics_category_filter_wrap{
	display: flex;
	flex-flow: row nowrap;
	white-space: nowrap;
	justify-content: flex-start;
	align-items: center;
	/* overflow: auto; */
	overflow: visible;
	margin: 0.9rem 0 0;
	padding-bottom: 1rem;
}
#topics_category_swiper_wrap .swiper-scrollbar{
  background-color: var(--lightgray);
	height: 0.2rem;
}
#topics_category_swiper_wrap .swiper-scrollbar-drag {
  background-color: var(--blue);
	height: 0.2rem;
}
a.swiper-slide.topics_category_filter{
	width: 7.9rem;
	height: 4rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: var(--white);
	color: var(--black);
	margin-right: 0.8rem;
	border-radius: 1rem;
	font-size: 1.2rem;
	line-height: 1.6rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
a.swiper-slide.topics_category_filter.active{
	background: var(--blue);
	color: var(--white);
}
a.swiper-slide.topics_category_filter:first-child{
	/* margin-left: 1.5rem; */
}
a.swiper-slide.topics_category_filter:last-child{
	margin-right: 1.5rem;
}
#topics_category_swiper_wrap .swiper-button_black{
	display: none;
}

.tag_list_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
	white-space: nowrap;
	padding: 1.5rem;
}
.tag_list_wrap>a{
	display: block;
	color: var(--blue);
	background: var(--lightgray);
	border: 0.1rem solid var(--blue);
	border-radius: 1.2rem;
	margin: 0.6rem 0.5rem 0 0;
	padding: 0.2rem 0.6rem;
}
.tag_list_wrap>a.tag_s{
	border: none;
	font-size: 1rem;
	line-height: 1.5rem;
}
.tag_list_wrap>a.tag_m{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
.tag_list_wrap>a.tag_l{
	font-size: 1.8rem;
	line-height: 2.1rem;
}



/* 動画配信・グッズなど一覧　アーカイブページ */
.contents_page_deco .circle__orange_1{
	width: 7.5rem;
	height: 7.5rem;
	top: 9.1rem;
	right: -1.6rem;
}
.contents_page_deco .circle__orange_2{
	width: 12.2rem;
	height: 12.2rem;
	top: 20.9rem;
	left: -4.9rem;
}
.contents_page_deco .circle__blue_3{
	width: 1.5rem;
	height: 1.5rem;
	top: 10.2rem;
	right: 8em;
}

#others_menu,
#stage_page_others_menu{
	margin: 0 -1.5rem 1.7rem 0;
	padding: 2rem 0 0.2rem;
	position: relative;
	overflow: visible;
}
#others_menu ul,
#stage_page_others_menu ul{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 0 1.5rem 0 0;
	width: fit-content;
}
#others_menu ul{
	margin: 0 auto;
}
#others_menu ul li,
#stage_page_others_menu ul li{
	width: 6.1rem;
	margin-left: 0.8rem;
	margin-bottom: 0.8rem;
	text-align: center;
	font-size: 1rem;
	line-height: 2rem;
	font-weight: var(--jp-medium);
}
#others_menu ul li.others_package,
#stage_page_others_menu ul li.others_package{
	font-size: 0.9rem;
	line-height: 1rem;
}
#others_menu ul li:first-child,
#stage_page_others_menu ul li:first-child{
	margin-left: 0rem;
}
#others_menu ul li a,
#stage_page_others_menu ul li a{
	display: block;
	width: calc(100% - 0.2rem);
	padding-top: calc(100% - 0.2rem);
	position: relative;
	border-radius: 1rem;
	background: var(--white);
}
#stage_page_others_menu ul li a{
	border: 0.1rem solid var(--gray);
}
#others_menu ul li a.active,
#stage_page_others_menu ul li a:hover{
	background: var(--blue);
	color: var(--white);
}
#stage_page_others_menu ul li a:hover{
	border: 0.1rem solid var(--blue);
}
#others_menu ul li a span,
#stage_page_others_menu ul li a span{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	width: 100%;
	height: fit-content;
}
#others_menu ul li a img,
#stage_page_others_menu ul li a img{
	display: block;
	margin: auto;
	width: 50%;
	height: auto;
}
#others_menu ul li a img.menu_icon_hover,
#stage_page_others_menu ul li a img.menu_icon_hover{
	display: none;
}
#others_menu ul li a.active img,
#stage_page_others_menu ul li a:hover img{
	display: none;
}
#others_menu ul li a.active img.menu_icon_hover,
#stage_page_others_menu ul li a:hover img.menu_icon_hover{
	display: block;
}
.clearfloat{
	clear: both;
}

.contents_archive_wrap h2{
	margin-bottom: 1.5rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
#contents_link_list{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: stretch;
	padding: 0 1.5rem;
	max-width: 110rem;
	margin: 0 auto;
}
#contents_link_list li{
	width: calc((100% - 2.6rem) / 3);
	margin-right: 1.3rem;
	margin-bottom: 1.5rem;
}
#contents_link_list li:nth-child(3n){
	margin-right: 0;
}
#contents_link_list li a{
	display: block;
}
#contents_link_list .contents_title{
	font-size: 1.1rem;
	line-height: 1.5rem;
	margin-top: 0.5rem;
	font-weight: var(--jp-medium);
	word-break: break-word;
}



/* ページャ */
.pager,
.wp-pagenavi{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	padding: 2rem 0 0;
}
.pager li,
.pager li a,
.wp-pagenavi a,
.wp-pagenavi span{
	display: block;
	width: 3.6rem;
	height: 3.6rem;
	line-height: 3.6rem;
	text-align: center;
	font-size: 1.3rem;
	font-weight: var(--jp-medium);
	border-radius: 50%;
}
.pager li,
.wp-pagenavi a,
.wp-pagenavi span{
	margin-right: 0.2rem;
	background-color: var(--white);
	color: var(--black);
}
.pager li.current,
.wp-pagenavi .current{
	background-color: var(--blue);
	color: var(--white);
}
.pager li.page-prev,
.pager li.page-next,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
	background-color: var(--lightgray);
}
.pager li.page-prev a,
.pager li.page-next a,
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
	background-image: url('img/arrow2_right.png');
	background-size: 20%;
	background-position: center;
	background-repeat: no-repeat;
}
.pager li.page-prev a,
.wp-pagenavi a.previouspostslink{
	transform: rotate(180deg);
}


/* ステージ詳細ページ */
#article_page.stage_page .header_stage{
	padding: 0;
	background-color: var(--white);
	display: flex;
	flex-flow: column nowrap;
}
.stage_page_mv_wrap{
	position: relative;
}
#stage_mv_swiper .swiper-slide{
	position: relative;
	z-index: 0;
	width: 100%;
	overflow: hidden;
	background: var(--white);
}
#stage_mv_swiper .swiper-slide::before{
	content: '';
	display: block;
	padding-top: 100vw;
}
#stage_mv_swiper .swiper-slide .bg_filter_img{
	max-width: unset;
	width: 150%;
	height: 150%;
	object-fit: cover;
	-webkit-filter: blur(80px);
	-moz-filter: blur(80px);
	-o-filter: blur(80px);
	-ms-filter: blur(80px);
	filter: blur(80px);
	position: absolute;
	top: -25%;
	left: -25%;
	right: auto;
	bottom: auto;
	z-index: -1;
}

.stage_mv_img_wrap{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	z-index: 1;
	width: 64%;
	height: fit-content;
	overflow: hidden;
	background: unset;
}
.stage_mv_img_wrap:before{
	content: '';
	display: block;
	padding-top: 142%;
}
.stage_mv_img_wrap img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
}

#article_page.stage_page #swiper_pagination_wrap{
	top: 2rem;
	bottom: auto;
	right: 2.4rem;
	left: auto;
	flex-flow: column nowrap;
	width: fit-content;
}
#article_page.stage_page #swiper_pagination_wrap .swiper-pagination{
	flex-flow: column nowrap;
	margin-top: 1rem;
}

.stage_detail_wrap{
	padding: 1.5rem;
}
.stage_detail_wrap .stage_status_wrap{
	margin-bottom: 1rem;
}
.stage_detail_wrap .stage_status_nowplaying,
.stage_detail_wrap .stage_status_nowonsale{
	position: unset;
	writing-mode: unset;
	display: inline-block;
	border-radius: 1.4rem;
	width: fit-content;
	line-height: 2.7rem;
	padding: 0 2rem;
	margin: 0 0.7rem 0 0;
}
.stage_detail_wrap h1.stage_title{
	text-align: left;
	font-size: 1.8rem;
	line-height: 2.6rem;
	margin-bottom: 1.4rem;
}
.stage_detail_wrap .performance_date dl dt{
	background-color: var(--lightgray);
	font-size: 1.2rem;
	line-height: 1.6rem;
	font-weight: var(--jp-bold);
	padding: 0.5rem 2rem;
	width: fit-content;
	border-radius: 1.3rem;
	margin-bottom: 0.8rem;
}
.stage_detail_wrap .performance_date dl{
	margin-bottom: 1.4rem;
}
.stage_detail_wrap .performance_date dl dd{
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-medium);
}
.stage_detail_wrap .performance_date a,
.introduction_wrap a{
	color: var(--blue);
	text-decoration: underline;
}
.stage_date_note{
	margin-top: 0.5rem;
	padding: 0 1rem 1.5rem;
}
.introduction_wrap{
	border: 0.1rem solid var(--gray);
	margin: 2.4rem auto 2rem;
	padding: 2rem 1.5rem 2rem;
	position: relative;
	z-index: 0;
}
.introduction_wrap .introduction_title{
	font-family: var(--en);
	font-weight: var(--en-medium);
	font-size: 1.2rem;
	line-height: 1.8rem;
	width: fit-content;
	padding: 0 1rem;
	background-color: var(--white);
	position: absolute;
	top: -0.9rem; left: 0; right: 0; bottom: auto;
	margin: auto;
}
.introduction_wrap p{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
.btn__orange_arrow{
	width: unset;
	text-align: center;
	font-weight: var(--jp-bold);
}

#stage_page_topics_wrap{
	padding: 0 1.5rem;
	max-width: 90rem;
	margin: 2.8rem auto 3rem;
}
#stage_page_topics_wrap h2{
	text-align: center;
	margin-bottom: 1rem;
}
#stage_page_topics_wrap #topics_link_list{
	max-height: 15.8rem;
	overflow-y: auto;
	margin-bottom: 1.5rem;
}
#stage_page_topics_wrap #topics_link_list li{
	background-color: var(--white);
	margin-bottom: 0.2rem;
	padding: 1rem;
}
#stage_page_topics_wrap #topics_link_list .topics_detail{
	width: unset;
}
#stage_page_topics_wrap #topics_link_list .topics_date{
	font-size: 1rem;
	line-height: 1.5rem;
	margin-bottom: 0.2rem;
}
#stage_page_topics_wrap #topics_link_list .topics_title{
	font-size: 1.2rem;
	line-height: 1.7rem;
	margin-bottom: 0;
}


.stage_article{
	max-width: 90rem;
	margin: 3rem auto;
	padding: 0 1.5rem;
}

.stage_archive_content_wrap,
.stage_article details{
	margin-bottom: 3rem;
}
.stage_archive_content_wrap .summary,
.stage_article summary{
	border-radius: 1rem 1rem 0 0;
	background-color: var(--blue);
	color: var(--white);
	padding: 1.2rem 3.5rem 1.2rem 0rem;
	position: relative;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.stage_archive_content_wrap .summary .new_icon_wrap,
.stage_article summary .new_icon_wrap,
#fix_footer_menu .new_icon_wrap{
	position: relative;
	width: 4.5rem;
	height: 2.5rem;
	margin-left: -1px;
}
.stage_archive_content_wrap .summary >span,
.stage_article summary >span{
	margin-left: 1.5rem;
}
.stage_archive_content_wrap .summary .new_icon_wrap + span,
.stage_article summary .new_icon_wrap + span{
	margin-left: 1rem;
}
.new_icon_wrap + span{
	flex: 1;
}
.stage_article summary::before,
.stage_article summary::after{
	content: '';
	position: absolute;
	top: 0; bottom: 0; right: 1.2rem;
	margin: auto;
	display: block;
	width: 1.2rem;
	height: 0.2rem;
	background-color: var(--white);
	border-radius: 0.2rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.stage_article summary::before{
	transform: rotate(90deg);
}
.stage_article details[open] summary::before{
	transform: rotate(0deg);
}
.stage_article summary:hover{
	color: var(--white);
	text-decoration: none;
}
.stage_article .details_content{
	border-radius: 0 0 1rem 1rem;
	background-color: var(--white);
	padding: 1rem 1rem 2.2rem;
}
/* ステージ詳細　共通 */
.stage_archive_content_wrap dl{
	margin-bottom: 2rem;
}
.stage_archive_content_wrap dl:last-child{
	margin-bottom: 0;
}
.stage_archive_content_wrap dl dt{
	background-color: var(--lightgray);
	border-radius: 0.5rem;
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-medium);
	padding: 1rem 1.5rem;
	margin-bottom: 1rem;
}
.stage_archive_content_wrap dl dd>p{
	font-size: 1.4rem!important;
	line-height: 2.4rem!important;
	font-weight: var(--jp-regular);
	margin-bottom: 1.5em;
}
.stage_archive_content_wrap dl dd>p:last-child{
	margin-bottom: 0;
}
.dl_content{display: none;}
.dl_details .dl_summary{
	position: relative;
	padding: 1rem 3.6rem 1rem 1.5rem;
}
.dl_details .dl_summary:before,
.dl_details .dl_summary:after{
	content: '';
	position: absolute;
	top: 0; bottom: 0; right: 1.2rem;
	margin: auto;
	display: block;
	width: 1.2rem;
	height: 0.2rem;
	background-color: var(--blue);
	border-radius: 0.2rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.dl_details .dl_summary::after{
	transform: rotate(-90deg);
}
.dl_details.active .dl_summary::after{
	transform: rotate(0deg);
}
/* ステージ詳細　期間・劇場 */
.stage_article #schedule .details_content{
	padding: 1rem 0 0.5rem;
}
#schedule li{
	border-bottom: 0.1rem solid var(--lightgray);
	padding: 1rem 1rem 1.5rem;
}
#schedule li:last-child{
	border-bottom: none;
}
#schedule .theater_list .period{
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-medium);
	margin-bottom: 0.6rem;
}
#schedule .theater_list .theater{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	height: 1.7rem;
	line-height: 1.7rem;
	margin: 0.6rem 0 1.5rem;
	max-width: 100%;
}
#schedule .theater_list .theater a{
	display: block;
}
#schedule .theater_list .theater a:first-child{
	width: fit-content;
	max-width: calc(100% - 3rem);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--blue);
	text-decoration: underline;
}
#schedule .theater_list .theater a:last-child{
	width: 1.4rem;
	margin-left: 1.3rem;
}
#schedule .theater_list .theater img{
	display: block;
	height: 1.7rem;
	width: 1.4rem;
	object-fit: contain;
}
.js_schedule_open_btn{
	display: block!important;
	margin: 0 auto;
	width: 19rem;
	text-align: center;
	background-color: var(--lightgray);
	border-radius: 2rem;
	text-decoration: none!important;
	font-weight: var(--jp-medium);
	font-size: 1.2rem;
	line-height: 4rem;
	position: relative;
	z-index: 0;
}
.js_schedule_open_btn:before,
.js_schedule_open_btn:after{
	content: '';
	display: block;
	width: 1rem;
	height: 0.2rem;
	border-radius: 0.2rem;
	background-color: var(--blue);
	position: absolute;
	right: 1rem;
	top: 0; bottom: 0;
	margin: auto;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.js_schedule_open_btn:after{
	transform: rotate(90deg);
}
.js_schedule_open_btn.active{
	color: var(--black)!important;
}
.js_schedule_open_btn.active:before,
.js_schedule_open_btn.active:after{
	background-color: var(--black);
}
.js_schedule_open_btn.active:after{
	transform: rotate(0);
}
#schedule li .schedule_wrap{display: none;}
#schedule li.active .schedule_wrap{
	display: block;
	padding-top: 1.5rem;
}
#schedule .schedule_wrap table{
	border-collapse: collapse;
	background-color: unset;
	margin-bottom: 1.5rem;
	position: relative;
}
#schedule .schedule_wrap table th,
#schedule .schedule_wrap table td{
	text-align: center;
	vertical-align: middle;
	background-color: unset;
	padding: 0;
	width: calc(100% / 8);
	white-space: nowrap;
	overflow: visible;
}
#schedule .schedule_wrap table thead tr:first-child th{
	background-color: #EAEAEA;
	position: relative;
}
#schedule .schedule_wrap table thead tr:first-child th:before{
	content: '';
	display: block;
	height: 100%;
	width: 0.1rem;
	background-color: var(--white);
	position: absolute;
	left: 0;
	top: 0;
}
#schedule .schedule_wrap table thead tr:first-child th:first-child{
	background-color: unset;
	width: unset;
}
#schedule .schedule_wrap table thead th{
	padding: 0.3rem 0;
}
#schedule .schedule_wrap table thead th.sun,
#schedule .schedule_wrap table thead th.holiday{
	color: var(--red);
}
#schedule .schedule_wrap table tbody{
	/* position: relative; */
}
#schedule .schedule_wrap table tbody tr:nth-child(2n-1){
	background-color: var(--lightgray);
}
#schedule .schedule_wrap table tbody th,
#schedule .schedule_wrap table tbody td{
	padding: 0.8rem 0;
}
#schedule .schedule_wrap table tbody td .closed{
	writing-mode: tb-rl;
	text-align: center;
	display: block;
	width: fit-content;
	height: calc(100% - 5.4rem);
	color: #707070;
	border: 0.1rem solid #707070;
	border-radius: 1.1rem;
	font-size: 1.2rem;
	line-height: 2rem;
	letter-spacing: 0.5rem;
	font-weight: var(--jp-medium);
	white-space: nowrap;
	position: absolute;
	bottom:0.4rem; right: auto;
	margin: auto;
}
#schedule .schedule_wrap table tbody td:nth-child(2) .closed{left: calc(((100% / 8) * 1.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(3) .closed{left: calc(((100% / 8) * 2.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(4) .closed{left: calc(((100% / 8) * 3.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(5) .closed{left: calc(((100% / 8) * 4.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(6) .closed{left: calc(((100% / 8) * 5.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(7) .closed{left: calc(((100% / 8) * 6.5) - 1.1rem);}
#schedule .schedule_wrap table tbody td:nth-child(8) .closed{left: calc(((100% / 8) * 7.5) - 1.1rem);}
.schedule_note *{
	font-size: 1.4rem!important;
	line-height: 2.4rem!important;
}
/* チケット */
#ticket .playguide{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 1.8rem auto;
}
#ticket .playguide li{
	width: 100%;
	margin-bottom: 1.5rem;
}
#ticket .playguide li:nth-child(3n){
	margin-right: 0;
}
#ticket .playguide li a{
	display: block;
	height: 4.2rem;
	font-size: 1.4rem;
	line-height: 4.2rem;
	border: 0.1rem solid var(--blue);
	border-radius: 10rem;
	background-color: var(--white);
	color: var(--blue);
	text-decoration: none;
	text-align: center;
	font-weight: var(--jp-medium);
}
#ticket .playguide li a:hover{
	background-color: var(--blue);
	color: var(--white);
}
.playguide_code{
	margin-top: 0.6rem;
	font-size: 1rem;
	line-height: 1.5rem;
}
#ticket .playguide_note{
	margin-top: 2.8rem;
	font-size: 1rem;
	line-height: 1.5rem;
}
.playguide_code *,
#ticket .playguide_note *{
	font-size: 1rem!important;
	line-height: 1.5rem!important;
}
/* ステージ詳細　シリーズ公演 */
#stage_series{
	background-color: var(--white);
	padding: 2rem 0 3rem;
	overflow: hidden;
}
.stage_series_title{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
	margin: 0 1.5rem 0.7rem;
	position: relative;
}
.stage_series_title span{
	display: block;
	font-family: var(--en);
	font-weight: var(--en-bold);
	font-size: 7.9rem;
	line-height: 11.1rem;
	color: var(--blue);
	opacity: 0.1;
	position: absolute;
	top: -5.1rem;
	left: -2.4rem;
}
#stage_series_list{
	margin: 0 0 0 1.5rem;
}
.stage_series_list_wrap{
	display: flex;
	flex-flow: row nowrap;
	width: fit-content;
	padding: 0 1.5rem 1rem 0;
}
.stage_series_list_wrap .stage_link{
	display: block;
	width: 26.67vw;
	max-width: 17rem;
	margin-right: 1rem;
}

#stage_footer{
	padding: 2rem 1.5rem 2.7rem;
}
.stage_footer_inner{
	max-width: 90rem;
	margin: 0 auto;
}
#stage_footer .footer_text{
	font-size: 1.4rem;
	line-height: 2.4rem;
	margin-top: 2rem;
}
#stage_footer .footer_text a{
	color: var(--blue);
	text-decoration: underline;
}
#stage_footer .copy{
	margin-top: 3rem;
}
#stage_footer .copy>span{
	display: flex;
	flex-flow: row wrap;
}
#stage_footer .copy>span>span{
	display: block;
	margin-right: 1em;
}


/* 固定フッターメニュー */
#fix_footer_menu{
	box-sizing: border-box;
	position: fixed;
	z-index: 200;
	bottom: 1rem;
	right: 1rem;
	width: calc(100% - 2rem);
	/* max-width: 35.5rem; */
	padding: 0 2rem;
	background: #3C3C3C;
	color: var(--white);
	border-radius: 2.5rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.fix_footer_menu_link_wrap,
.fix_footer_menu_link{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}
.fix_footer_menu_link_wrap{
	height: 5rem;
	font-size: 1.3rem;
}
.fix_footer_menu_link_wrap a{
	color: var(--white);
	text-decoration: none;
	font-weight: var(--jp-bold);
}
.fix_footer_menu_link_wrap>a{
	/* margin-right: 1.7rem; */
	padding-right: 1.8rem;
	border-right: 0.1rem solid var(--white);
}
.fix_footer_menu_link_wrap img{
	display: inline-block;
	vertical-align: middle;
	height: 1.2rem;
	width: 1.2rem;
	margin-left: 0.5rem;
	object-fit: contain;
}
.fix_footer_menu_link{
	/* margin-left: 1.7rem; */
	padding-left: 1.8rem;
	/* border-left: 0.1rem solid var(--white); */
}
.fix_footer_menu_link img{
	filter: invert(100%);
	height: 1.5rem;
	width: 1.5rem;
	margin-left: 2.3rem;
}
.fix_footer_menu_link a:first-child img{
	margin-left: 0rem;
}
.fix_footer_menu_toggle{
	display: block;
	width: 1.8rem;
	height: 1.2rem;
	position: absolute;
	right: 2rem;
	bottom: 1.9rem;
	cursor: pointer;
}
.fix_footer_menu_toggle span{
	display: block;
	width: 100%;
	height: 0.1rem;
	background-color: var(--white);
	position: absolute;
	left: 0; right: 0;
	margin: auto;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.fix_footer_menu_toggle span:nth-child(1){
	top: 0;
}
.fix_footer_menu_toggle span:nth-child(2){
	top: calc(50% - 0.05rem);
}
.fix_footer_menu_toggle span:nth-child(3){
	bottom: 0;
}
.fix_footer_menu{
	opacity: 0;
	height: 0;
	padding: 0;
	overflow: hidden;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
.fix_footer_menu ul{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}
.fix_footer_menu ul li{
	width: fit-content;
	padding-bottom: 1rem;
}
.fix_footer_menu ul li:last-child{
  padding-bottom: 0;
}
.fix_footer_menu ul li a{
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: var(--jp-medium);
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
#fix_footer_menu .new_icon_wrap{
	margin-right: 1rem;
	position: relative;
	width: 4rem;
	height: 2rem;
}
#fix_footer_menu .new_icon{
	position: absolute;
}
#fix_footer_menu.active{
	z-index: 500;
}
#fix_footer_menu.active .fix_footer_menu{
	opacity: 1;
	padding: 1.5rem 0;
	height: fit-content;
}
#fix_footer_menu.active .fix_footer_menu_toggle span:nth-child(1){
	top: calc(50% - 0.05rem);
	transform: rotate(45deg);
}
#fix_footer_menu.active .fix_footer_menu_toggle span:nth-child(2){
	opacity: 0;
}
#fix_footer_menu.active .fix_footer_menu_toggle span:nth-child(3){
	bottom: calc(50% - 0.05rem);
	transform: rotate(-45deg);
}

.fix_footer_menu_link_wrap a:hover{
	opacity: 0.7;
}
.fix_footer_menu ul li a:hover{
	text-decoration: underline;
}

/* モーダル */
.modal{display: none;}
.modal .close_btn{
	cursor: pointer;
}
.modal.active{
	display: block;
	position: fixed;
	z-index: 600;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--lightgray);
}
.modal_toggle{
	position: absolute;
	z-index: 600;
	top: 1.5rem;
	right: 1.5rem;
	width: 2.4rem;
	height: 2.6rem;
}
.modal_toggle span{
	display: block;
	width: 100%;
	height: 0.3rem;
	border-radius: 0.3rem;
	position: absolute;
	top: 50%;
}
.modal_toggle span:first-child{
	transform: rotate(-45deg);
	background-color: var(--blue);
}
.modal_toggle span:last-child{
	transform: rotate(45deg);
	background-color: var(--orange);
}
.modal_inner{
	padding: 3rem 1.5rem 3.6rem;
	margin: 0 auto;
	max-width: 90rem;
	height: calc(100% - 6.6rem);
	/* overflow: auto; */
}
.modal_title{
	font-family: var(--en);
	font-weight: var(--en-bold);
	color: var(--blue);
	font-size: 2.4rem;
	line-height: 3.3rem;
	text-align: center;
	margin: 0 auto 1rem;
}
/* ステージ詳細　トピックスモーダル */
.topics_modal .topics_link_list{
	margin: 0 auto;
}
.topics_modal .topics_link_list{
	height: fit-content;
	max-height: calc(100% - 9rem);
	overflow-y: auto;
	margin: 0 auto 2.8rem;
}
.topics_modal .topics_link_list li{
	background-color: var(--white);
	margin-bottom: 0.2rem;
	padding: 1rem;
}
.topics_modal .topics_link .topics_detail{
	width: 100%;
}
.topics_modal .topics_link .topics_title{
	font-size: 1.2rem;
	line-height: 1.7rem;
	margin-bottom: 0;
}
/* ステージ詳細　infoモーダル */
.info_modal .modal_inner{
	/* overflow: hidden; */
}
.info_modal .modal_info_text{
	background-color: var(--white);
	padding: 1.5rem;
	margin-bottom: 3rem;
	font-size: 1.4rem;
	line-height: 2.4rem;
	/* height: 60vh; */
	overflow: auto;
	height: calc(100vh - 24rem);
}
.info_modal .modal_info_text a{
	color: var(--blue);
	text-decoration: underline;
}
.modal_info_text>p{
	margin-bottom: 1rem;
}
.modal_info_text>p:last-child{
	margin-bottom: 0;
}



/* 動画配信・グッズなど詳細ページ */
#article_page .contents_page_deco .circle__orange_1{
	width: 4.9rem;
	height: 4.9rem;
	top: 11.7rem;
	right: -1.6rem;
}
#article_page .contents_page_deco .circle__orange_2{
	width: 12.2rem;
	height: 12.2rem;
	top: 20.9rem;
	left: -4.9rem;
}
#article_page .contents_page_deco .circle__blue_3{
	width: 1.5rem;
	height: 1.5rem;
	top: 10.2rem;
	right: 3.4em;
}
.contents_page_title_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	margin: 1.8rem auto 0;
	max-width: 90rem;
}
.contents_page_title_wrap .img_wrap{
	width: 25%;
}
.contents_page_title_wrap .img_wrap img{display: block;}
.contents_page_title_wrap .contents_page_detail_wrap{
	width: calc(75% - 1.3rem);
}
.contents_page_detail_wrap h2{
	color: var(--black);
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	margin-bottom: 1.2rem;
}
.contents_page_detail_wrap .performance_date{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 1.1rem;
}
.contents_page_detail_wrap .performance_date dt{
	background: var(--white);
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding: 0.4rem 1rem;
	font-weight: var(--jp-regular);
}
.contents_page_detail_wrap .performance_date dd{
	font-size: 1.2rem;
	line-height: 1.6rem;
	padding: 0.4rem 0.9rem;
	font-weight: var(--jp-regular);
}
.contents_detail_link{
	display: block;
	width: fit-content;
	margin: 0 0 0 auto;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: var(--jp-medium);
	text-decoration: underline;
}
.contents_detail_wrap{
	padding: 0 1.5rem 3rem;
}
.contents_detail_wrap h3{
	background: var(--lightgray);
	align-items: center;
	font-size: 1.6rem;
	font-weight: var(--jp-bold);
	line-height: 3.6rem;
	height: 3.6rem;
	padding: 0.7rem 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	margin-bottom: 1.5rem;
	position: relative;
}
.contents_detail_wrap h3 img{
	display: block;
	height: 100%;
	width: auto;
	margin-right: 1rem;
}
.contents_detail_wrap h3 a.btn__orange{
	position: absolute;
	right: 1.5rem;
	top: 0; bottom: 0;
	margin: auto 0;
	width: fit-content;
	height: fit-content;
	font-size: 1.1rem;
	line-height: 1.6rem;
	font-weight: var(--jp-bold);
	padding: 0.5rem 1.5rem;
}
.contents_detail_wrap .others_group{
	margin-top: 3rem;
}
.contents_detail_wrap .others_group:first-child{
	margin-top: 0;
}
.icon_list_wrap{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}
.icon_list_wrap li{
	width: calc((100% - 2rem) / 3);
	margin-right: 1rem;
	margin-bottom: 1rem;
}
.icon_list_wrap li:nth-child(3n){
	margin-right: 0;
}
.icon_list_wrap li a{
	display: block!important;
	width: calc(100% - 0.2rem);
	height: calc(100% - 0.2rem);
	position: relative;
	z-index: 0;
	border: 0.1rem solid var(--gray);
	background-color: var(--white);
}
.icon_list_wrap li a::before{
	content: '';
	display: block;
	padding-top: 50%;
	z-index: 2;
}
.icon_list_wrap li a img{
	position: absolute;
	z-index: 1;
	top: 0; right: 0; bottom: 0; left: 0; 
	margin: auto;
	width: calc(100% - 4rem);
	height: calc(100% - 2rem);
	object-fit: contain;
}
.icon_list_wrap li a br{display: none;}
.contents_detail_text_wrap p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.contents_detail_text_wrap a{
	color: var(--blue);
	text-decoration: underline;
}


/* トピックス詳細ページ */
#article_page .topics_page_deco .circle__orange_1{
	width: 1.7rem;
	height: 1.7rem;
	top: 10.4rem;
	right: 4.4rem;
}
#article_page .topics_page_deco .circle__orange_2{
	width: 3.8rem;
	height: 3.8rem;
	top: 7.3rem;
	left: -0.8rem;
}
#article_page .topics_page_deco .circle__blue_3{
	width: 6.2rem;
	height: 6.2rem;
	top: 4.6rem;
	right: -1.9rem;
}
#page_wrap.topics_article_page_wrap,
#page_wrap.page_wrap_padding{
	border-radius: 1rem;
	padding: 2rem 1.5rem;
}
#page_wrap.topics_article_page_wrap input[type="submit"]{
	display: block;
	background: var(--orange);
	color: var(--white);
	padding: 0.5rem 3rem;
	margin: 0.5rem 1em;
	border: 0.1rem solid var(--orange);
	border-radius: 3rem;
}
#page_wrap.topics_article_page_wrap input[type="submit"]:hover{
	background: var(--white);
	color: var(--orange);
	border: 0.1rem solid var(--orange);
}

.article_title{
	padding: 0 0 2rem;
	border-bottom: 0.1rem solid var(--black);
	max-width: 90rem;
	margin: 0 auto 3rem;
}
.article_title h2{
	font-weight: var(--jp-bold);
	font-size: 1.8rem;
	line-height: 2.6rem;
	color: var(--black);
	margin-bottom: 1.3rem;
}
.article_title_top,
.article_title_bottom,
.article_title_bottom div{
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}
.article_title_top{
	justify-content: space-between;
	margin-bottom: 1rem;
}
.article_title_top .tag{
	background: var(--black);
	color: var(--white);
	padding: 0.2rem 1rem;
	border-radius: 1.1rem;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: var(--jp-bold);
}
.article_title_top a{
	font-size: 1rem;
	line-height: 1.5rem;
	text-decoration: underline;
}
.article_title_bottom{
}
.article_title_bottom .topics_date{
	display: block;
	font-family: var(--en);
	font-weight: var(--en-medium);
	margin-right: 1.2rem;
	font-size: 1rem;
	line-height: 1.6rem;
	margin-top: 0.2rem;
}
.article_title_bottom div{
	flex-flow: row wrap;
	white-space: nowrap;
}
.article_title_bottom div a{
	display: block;
	margin-right: 1rem;
	font-size: 1rem;
	line-height: 1.6rem;
	color: var(--blue);
}

/* 記事タグ */
#article{
	margin: 0 auto;
	max-width: 90rem;
}
#article>*{
	margin: 3rem auto;
}
#article h2,
#article h3{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
	margin-bottom: 2.5rem;
}
#article h4{
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: var(--jp-bold);
	background: var(--lightgray);
	border-radius: 0.5rem;
	padding: 1.3rem 1.8rem;
}
#article h5{
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-bold);
	border-bottom: 0.1rem solid var(--gray);
	padding-bottom: 1.1rem;
}
#article p{
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-regular);
}
#article a{
	display: inline-block;
	color: var(--blue);
	text-decoration: underline;
}
#article [class*="btn__"][class*="_orange"]{
	font-weight: var(--jp-bold);
}
#article table{
	border-collapse: separate;
	border-spacing: 0 0.5rem;
	width: 100%;
}
#article table th,
#article table td{
	padding: 1rem;
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-regular);
}
#article table th{
	background: var(--lightgray);
	white-space: nowrap;
	width: 0;
}
#article .frame{
	border: 0.3rem solid var(--lightgray);
	border-radius: 1rem;
	padding: 2rem 2rem 2.5rem;
}
#article .frame h5{
	margin-bottom: 1rem;
	margin-top: 3.5rem;
}
#article .frame h5:first-child{
	margin-top: 0;
}
#article small{
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: var(--jp-regular);
}
#article hr{
	border-bottom: 0.2rem solid var(--lightgray);
	margin: 4rem auto;
}
#article figure{
	width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}
#article figure figcaption{
	margin-top: 0.5rem;
	font-size: 1rem;
	line-height: 1.5rem;
}
#article figure.landscape{
	max-width: 75rem;
}
#article figure.portrait{
	max-width: 42.6rem;
}
#article figure img{
	display: block;
	width: 100%;
	height: auto;
}
#article .gallery{
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	margin-bottom: 0;
}
#article .gallery + .gallery{
	margin-top: 0;
}
#article .gallery .gallery-item,
#article .gallery .gallery-item *{
	display: block;
	width: 100%;
	max-width: 100%;
}
#article .gallery .gallery-item img{
	height: auto;
	margin-bottom: 2rem;
}
#article .block-media-text{
	display: flex;
	flex-flow: column nowrap;
}
#article .block-media-text .block-media-text__media{
	width: 50%;
}
#article .block-media-text .block-media-text__content{
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 2.6rem;
	font-weight: var(--jp-regular);
}
#article .block-columns{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#article .block-columns>*{
	width: 100%;
	margin-bottom: 2rem;
}
#article .block-columns .block-columns>*{
	width: calc(50% - 0.75rem);
	margin-bottom: 0;
}
.copy{
	font-size: 1rem;
}


.youtube_wrap{
	width: 100%;
	max-width: 76rem;
	margin-right: auto;
	margin-left: auto;
}
.youtube_iframe_wrap{
	width: 100%;
	height: fit-content;
	position: relative;
	z-index: 0;
}
.youtube_iframe_wrap:before{
	content: '';
	display: block;
	padding-top: 56.25%;
	z-index: 2;
}
.youtube_iframe_wrap iframe{
	position: absolute;
	z-index: 1;
	top: 0; right: 0; bottom: 0; left: 0; 
	margin: auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.return_link{
	display: block;
	width: fit-content;
	color: var(--blue);
	font-weight: var(--jp-medium);
	line-height: 1.7rem;
	font-size: 1.4rem;
}
.return_link:before{
	content: '';
	display: inline-block;
	vertical-align: bottom;
	width: 0.6rem;
	height: 1.7rem;
	background-image: url('img/arrow2_right.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	margin-right: 1rem;
}
.sns_share_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	height: 2.4rem;
	width: 27rem;
	margin: 3rem auto;
}
.sns_share_wrap a,
.sns_share_wrap a img{
	display: block;
}
.sns_share_wrap a img{
	height: 2.4rem;
	width: auto;
}


#article .articleformat_wrap>*,
#article .articleformat_wrap .article_editor>p{
	margin-bottom: 1em;
}
#article .articleformat_wrap>*:last-child,
#article .articleformat_wrap .article_editor>p:last-child{
	margin-bottom: 0;
}


/* 関連記事 */
.related_article{
	padding: 0 0 4rem;
	width: 100%;
	max-width: 90rem;
	margin: 0 auto
}
.related_article_title{
	padding: 3rem 1.5rem 1.5rem;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
}
.related_article #topics_link_list{
	max-height: 20rem;
	overflow-y: auto;
}
.related_article .topics_link{
	padding: 1rem 1.5rem;
	border-bottom: 0.1rem solid var(--white);
}
.related_article .topics_link:first-child{
	padding-top: 0;
}
.related_article .topics_link:last-child{
	border-bottom: none;
}


/* 開幕のお知らせ アーカイブ */
.openingday_page{
	background-color: var(--lightorange)!important;
}
.openingday_page .bg_line_text{
	font-size: 14vw;
}
.openingday_page_deco .circle__orange_1{
	width: 5.8rem;
	height: 5.8rem;
	top: 10.4rem;
	right: -2.1rem;
}
.openingday_page_deco .circle__orange_2{
	width: 4.2rem;
	height: 4.2rem;
	top: 10.6rem;
	left: -1.5rem;
}
.openingday_page_deco .circle__blue_3{
	width: 1.4rem;
	height: 1.4rem;
	top: 8.9rem;
	left: 2.6rem;
}
.openingday_page .stage_title{
	font-size: 1.1rem;
	line-height: 1.5rem;
	font-weight: var(--jp-medium);
	margin-top: 0.5rem;
}
.header_openingday .search_option_wrap{
	margin-top: 2rem;
}

/* 開幕のお知らせ　記事 */
#page_wrap.od_article_wrap{
	border-bottom-left-radius: 0!important;
	border-bottom-right-radius: 0!important;
}
.od_title div{
	font-size: 1.2rem;
	line-height: 1.7rem;
	margin-bottom: 1.2rem;
}
#nelmaga{
	max-width: 90rem;
	margin: 0.5rem auto 0;
	padding: 2rem 0 3rem;
	border-top: 0.1rem solid var(--lightgray);
}
#nelmaga .img_wrap{
	width: 32%;
	min-width: 11.3rem;
	margin: 0 auto 1rem;
}
#nelmaga .img_wrap img{
	display: block;
	width: 100%;
	height: auto;
}
#nelmaga .nelmaga_vol{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
	margin-bottom: 1rem;
}
#nelmaga p{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-regular);
	margin-bottom: 1rem;
}

/* ネルマガバックナンバー */
.backnumber_link_list{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	width: calc(100% - 3rem);
	margin: auto;
}
.backnumber_link_list li{
	width: 100%;
	margin-bottom: 2rem;
}
.backnumber_link_list li a{
	display: block;
}
.backnumber_link_list li a .img_wrap,
.backnumber_link_list li a .img_wrap img{
	display: block;
	width: 100%;
	height: auto;
}
.vol_wrap{
	background-color: var(--lightgray);
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1rem;
}
.vol_wrap .nelmag_vol{
	color: var(--blue);
	font-weight: var(--jp-bold);
	font-size: 1.8rem;
	line-height: 2.6rem;
}
.vol_wrap .nelmag_date{
	font-size: 1.2rem;
	line-height: 1.7rem;
}

/* ネルケハ！チケット先行受付　一覧 */
#tickets_link_list{
	width: calc(100% - 2rem);
	max-width: 90rem;
	margin: auto;
}
#tickets_link_list li{
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 0.1rem solid var(--lightgray);
}
#tickets_link_list li:last-child{
	border-bottom: none;
	margin-bottom: 0rem;
}
#tickets_link_list a{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
#tickets_link_list .img_wrap{
	width: 25%;
}
#tickets_link_list .tickets_detail{
	width: calc(75% - 1.3rem);
}
#tickets_link_list .contents_title{
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: var(--jp-bold);
	margin-bottom: 1rem;
}
#tickets_link_list .tickets_detail div p{
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-medium);
	color: var(--black);
}
/* ネルケハ！チケット先行受付　記事 */
h2.tickets_title{
	color: var(--black);
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	border-bottom: 0.1rem solid var(--black);
	padding-bottom: 3.2rem;
	margin-bottom: 3rem;
}




/* -----　固定ページ　共通　----- */
.fixedpage{
	position: relative;
}
.fixedpage_header{
	padding-top: 6.5rem;
}

/* ウェルカムキッズプロジェクト */
#fixedpage_wkp{
	background: var(--white);
}
#fixedpage_wkp .fixedpage_header{
	margin: 0 auto 1.9rem;;
	max-width: 110rem;
}
#fixedpage_wkp .fixedpage_header h1 img{
	display: block;
	width: 100%;
	height: auto;
}
#fixedpage_wkp h2{
	font-size: 2rem;
	line-height: 2.9rem;
	font-weight: var(--jp-bold);
	color: var(--orange);
	font-weight: var(--jp-bold);
	text-align: center;
	margin-bottom: 1rem;
}
#fixedpage_wkp h3{
	font-size: 1.4rem;
	line-height: 2rem;
	padding: 1.3rem 0;
	border-radius: 0.5rem;
	background-color: var(--orange);
	color: var(--white);
	font-weight: var(--jp-bold);
	text-align: center;
	margin: 3rem auto 1.5rem;
}

#fixedpage_wkp_contents{
	position: relative;
	z-index: 0;
	padding: 3rem 1.5rem 7.9rem;
}
#fixedpage_wkp_contents::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--orange);
	opacity: 0.2;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#fixedpage_wkp_contents>*{
	max-width: 90rem;
	margin-right: auto;
	margin-left: auto;
}
#fixedpage_wkp_contents>p{
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-regular);
}
.wkp_policy{
	margin: 2rem auto 3.2rem;
}
.wkp_policy li{
	margin-bottom: 1rem;
	background-color: var(--white);
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-medium);
}
.wkp_policy li::after{
	content: '';
	display: block;
	border-top: 0.75rem solid var(--blue);
	border-right: 0.75rem solid transparent;
	border-bottom: 0.75rem solid transparent;
	border-left: 0.75rem solid var(--blue);
	position: absolute;
	top: 0;
	left: 0;
}
.wkp_endtext{
	position: relative;
	text-align: left;
	width: fit-content;
}
.wkp_endtext p{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
}
.wkp_endtext img{
	display: block;
	height: 7.9rem;
	width: auto;
	position: absolute;
	bottom: -8.2rem;
}
.wkp_endtext img.nel_img{
	right: calc(50% + 1.8rem);
}
.wkp_endtext img.lke_img{
	left: calc(50% + 1.8rem);
}
#archive_wrap.wkp_stage_archive_wrap{
	background-color: unset;
	border-radius: none;
	margin: 0;
	z-index: 0;
}
#archive_wrap.wkp_stage_archive_wrap h2{
	color: var(--blue);
}

/* ネルケウエスト */
#fixedpage_nw{
	background: var(--white);
}
#fixedpage_nw .fixedpage_header{
	margin: 0 auto 1.9rem;;
	max-width: 110rem;
}
#fixedpage_nw .fixedpage_header h1 img{
	display: block;
	width: 100%;
	height: auto;
}
#fixedpage_nw h2{
	font-size: 2rem;
	line-height: 2.9rem;
	font-weight: var(--jp-bold);
	color: var(--pink);
	font-weight: var(--jp-bold);
	text-align: center;
	margin-bottom: 1rem;
}
#fixedpage_nw h3{
	font-size: 1.4rem;
	line-height: 2rem;
	padding: 1.3rem 0;
	border-radius: 0.5rem;
	background-color: var(--pink);
	color: var(--white);
	font-weight: var(--jp-bold);
	text-align: center;
	margin: 3rem auto 1.5rem;
}

#fixedpage_nw_contents{
	position: relative;
	z-index: 0;
	padding: 3rem 1.5rem 2rem;
}
#fixedpage_nw_contents::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--pink);
	opacity: 0.2;
	border-radius: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#fixedpage_nw_contents>*{
	max-width: 90rem;
	margin-right: auto;
	margin-left: auto;
}
#fixedpage_nw_contents>p{
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: var(--jp-regular);
}
.nw_policy>p{
	line-height: 2.4rem;
}
.nw_policy>p>a{
	color: var(--pink);
	text-decoration: underline;
}
.nw_policy>p.nw_sns{
	margin-top: 2.5rem;
}
.nw_wel{
	margin: 2rem auto 3.2rem;
}
.nw_wel li{
	margin-bottom: 1rem;
	background-color: var(--white);
	padding: 1.5rem 1.5rem 3rem 1.5rem;
	position: relative;
	overflow: hidden;
	font-size: 1.4rem;
	font-weight: var(--jp-medium);
}
.nw_wel li::after{
	content: '';
	display: block;
	border-top: 0.75rem solid var(--orange);
	border-right: 0.75rem solid transparent;
	border-bottom: 0.75rem solid transparent;
	border-left: 0.75rem solid var(--orange);
	position: absolute;
	top: 0;
	left: 0;
}
.nw_wel li>p{
	font-size: 1.2rem;
}
.nw_wel p{
	font-weight: var(--jp-regular);
}
.wel_txt_wrap>p{
	text-align: center;
	color: var(--pink);
	line-height: 2.4rem;
}
.wel_txt_wrap>p>span{
	font-weight: var(--jp-bold);
	font-size: 2rem;
	line-height: 1.5;
}
.wel_img_wrap{
	width: 35%;
	text-align: center;
	max-width: 150px;
	min-width: 110px;
	margin: 1rem auto 0;
}
.wel-image:hover{
	cursor:pointer;
}
#archive_wrap.nw_stage_archive_wrap{
	background-color: unset;
	border-radius: none;
	margin: 0;
	z-index: 0;
}
#archive_wrap.nw_stage_archive_wrap h2{
	color: var(--blue);
}
.nw_banner>ul>li{
	margin-bottom: 1.5rem;
}
.nw_banner>ul>li>a{
	display: block;
}
.nw_banner>ul>li>a>img{
	width: 100%;
}

/* お問い合わせ　一覧 */
.contact_page .bg_line_text{
	font-size: 20vw;
	line-height: 15vw;
}
.contact_page_deco .circle__orange_1{
	width: 7.7rem;
	height: 7.7rem;
	top: 9.9rem;
	left: -3.8rem;
}
.contact_page_deco .circle__blue_2{
	width: 2.8rem;
	height: 2.8rem;
	top: 9.5rem;
	right: -1.3rem;
}
.contact_link_list{
	margin-left: auto;
	margin-right: auto;
	padding: 0 1.5rem;
	max-width: 90rem;
}
.contact_link_list a{
	display: block;
	padding: 2rem 1.5rem 2.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 0;
}
.contact_link_list a::before{
	content: '';
	display: block;
	width: calc(100% - 0.2rem);
	height: calc(100% - 0.2rem);
	background-color: var(--white);
	border: 0.1rem solid var(--gray);
	border-radius: 1rem;
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	z-index: -1;
}
.contact_link_list a::after{
	content: '';
	display: block;
	width: 1.4rem;
	height: 1.5rem;
	background-image: url('img/arrow_right.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 1.4rem;
	right: 1.4rem;
}
.contact_link_list a div{
	color: var(--blue);
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	margin-bottom: 1.1rem;
}
.contact_link_list a p{
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-regular);
	color: var(--black);
}


/* お問い合わせフォーム */
.contact_form_page_inner{
	width: calc(100% - 3rem);
	max-width: 90rem;
	margin: 2rem auto 3rem;
}
.contact_form_note_wrap{

}
#contact_form_wrap{
	margin: 3rem auto;
	width: 100%;
}
#contact_form_wrap iframe{
	width: 100%;
	height: calc(100vh - 15rem);
}


/* 公演カレンダー */
.calendar_page #page_wrap{
	border-bottom-left-radius: 0!important;
	border-bottom-right-radius: 0!important;
}
.calendar_page_deco .circle__orange_1{
	width: 3.7rem;
	height: 3.7rem;
	top: 9.5rem;
	right: -0.8rem;
}
.calendar_page_deco .circle__orange_2{
	width: 2rem;
	height: 2rem;
	top: 10.8rem;
	left: 1.2rem;
}
.calendar_page_deco .circle__blue_3{
	width: 1.2rem;
	height: 1.2rem;
	top: 8.5rem;
	right: 3rem;
}

.calendar_page .h2_wrap{
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0.8rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.calendar_page .h2_wrap h2{
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}
.calendar_page .h2_wrap h2 span{
	font-size: 1.6rem;
	line-height: 3.6rem;
	margin-right: 0.6rem;
}
.calendar_page .h2_wrap h2 span.en{
	font-size: 2.6rem;
	margin-right: 0.4rem;
}
.calendar_page .h2_wrap .month_pager{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	color: var(--blue);
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: var(--jp-medium);
}
.month_pager li{
	margin-left: 2rem;
}
.month_pager li:first-child{
	margin-left: 0;
}
.month_pager li div{
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
}
.month_pager li.page-prev div,
.month_pager li.page-next div{
	background-color: var(--lightgray);
}
.month_pager li.page-prev div,
.month_pager li.page-next div{
	background-image: url('img/arrow2_right.png');
	background-size: 20%;
	background-position: center;
	background-repeat: no-repeat;
}
.month_pager li.current div{
	background-image: url('img/arrow2_right_black.png');
	background-color: unset;
	opacity: 0.2;
	pointer-events: none;
}
.month_pager li.page-prev div{
	transform: rotate(180deg);
}

#calendar{
	position: relative;
	z-index: 0;
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}

#calendar_table{
	box-sizing: border-box;
	width: 100%;
}
#calendar_table th,
#calendar_table td{
	width: calc(100% / 7);
	text-align: center;
	border: 0.1rem solid var(--gray);
	font-size: 1rem;
	white-space: nowrap;
}
#calendar_table th{
	background-color: var(--lightgray);
	padding: 0.6rem 0;
	line-height: 1.5rem;
}
#calendar_table td{
	background-color: var(--white);
	padding: 0.1rem 0 0;
	line-height: 1.6rem;
}
#calendar_table th:nth-child(6),
#calendar_table td:nth-child(6){
	color: var(--blue);
}
#calendar_table th:nth-child(7),
#calendar_table td:nth-child(7),
#calendar_table .holiday{
	color: var(--red);
}
#calendar_table td.today{
	background: var(--lightgray);
}
#calendar_table td.month_before,
#calendar_table td.month_after{
	color: var(--gray);
}
#calendar_table td div{
	height: 12rem;
}

[class*="calendar_data__"]{
	box-sizing: border-box;
	display: block;
	padding: 0 1rem;
	position: absolute;
	z-index: 0;
}
[class*="calendar_data__"] span{
	display: block;
	overflow-x: hidden;
	white-space: nowrap;
	font-size: 1.1rem;
	line-height: 2.2rem;
	color: var(--black);
}
[class*="calendar_data__"] .hover_title{
	display: none;
}

/* カレンダー色 */
[class*="calendar_data__"][class*="_color01"]{background: #a1e0ff;}
[class*="calendar_data__"][class*="_color02"]{background: #fbc6df;}
[class*="calendar_data__"][class*="_color03"]{background: #fff696;}
[class*="calendar_data__"][class*="_color04"]{background: #cac2f1;}
[class*="calendar_data__"][class*="_color05"]{background: #ffc48c;}
[class*="calendar_data__"][class*="_color06"]{background: #97e4cb;}
[class*="calendar_data__"][class*="_color07"]{background: #e9d1c3;}
[class*="calendar_data__"][class*="_color08"]{background: #9fdce7;}
[class*="calendar_data__"][class*="_color09"]{background: #ffbcbb;}
[class*="calendar_data__"][class*="_color10"]{background: #d6eb8a;}
[class*="calendar_data__"][class*="_color11"]{background: #a6f3fe;}
[class*="calendar_data__"][class*="_color12"]{background: #9dde99;}
[class*="calendar_data__"][class*="_color13"]{background: #ffe0a9;}
[class*="calendar_data__"][class*="_color14"]{background: #a8c6f5;}
[class*="calendar_data__"][class*="_color15"]{background: #ebe889;}
[class*="calendar_data__"][class*="_color16"]{background: #d7c4c3;}
[class*="calendar_data__"][class*="_color17"]{background: #b1eab6;}
[class*="calendar_data__"][class*="_color18"]{background: #f9adc1;}
[class*="calendar_data__"][class*="_color19"]{background: #a5f6e8;}
[class*="calendar_data__"][class*="_color20"]{background: #ccd2d6;}
[class*="calendar_data__"][class*="_color21"]{background: #e5cdad;}
/* カレンダー1週目 */
[class*="calendar_data__"][class*="week01_01"]{top: 5rem;}
[class*="calendar_data__"][class*="week01_02"]{top: 7.5rem;}
[class*="calendar_data__"][class*="week01_03"]{top: 10rem;}
[class*="calendar_data__"][class*="week01_04"]{top: 12.5rem;}
[class*="calendar_data__"][class*="week01_05"]{top: 15rem;}
[class*="calendar_data__"][class*="week01_06"]{top: 17.5rem;}
[class*="calendar_data__"][class*="week01_07"]{top: 20rem;}
[class*="calendar_data__"][class*="week01_08"]{top: 22.5rem;}
[class*="calendar_data__"][class*="week01_09"]{top: 25rem;}
[class*="calendar_data__"][class*="week01_10"]{top: 27.5rem;}
/* カレンダー2週目 */
[class*="calendar_data__"][class*="week02_01"]{top: 19rem;}
[class*="calendar_data__"][class*="week02_02"]{top: 21.5rem;}
[class*="calendar_data__"][class*="week02_03"]{top: 24rem;}
[class*="calendar_data__"][class*="week02_04"]{top: 26.5rem;}
[class*="calendar_data__"][class*="week02_05"]{top: 29rem;}
[class*="calendar_data__"][class*="week02_06"]{top: 31.5rem;}
[class*="calendar_data__"][class*="week02_07"]{top: 34rem;}
[class*="calendar_data__"][class*="week02_08"]{top: 36.5rem;}
[class*="calendar_data__"][class*="week02_09"]{top: 39rem;}
[class*="calendar_data__"][class*="week02_10"]{top: 41.5rem;}
/* カレンダー3週目 */
[class*="calendar_data__"][class*="week03_01"]{top: 33rem;}
[class*="calendar_data__"][class*="week03_02"]{top: 35.5rem;}
[class*="calendar_data__"][class*="week03_03"]{top: 38rem;}
[class*="calendar_data__"][class*="week03_04"]{top: 40.5rem;}
[class*="calendar_data__"][class*="week03_05"]{top: 43rem;}
[class*="calendar_data__"][class*="week03_06"]{top: 45.5rem;}
[class*="calendar_data__"][class*="week03_07"]{top: 48rem;}
[class*="calendar_data__"][class*="week03_08"]{top: 50.5rem;}
[class*="calendar_data__"][class*="week03_09"]{top: 53rem;}
[class*="calendar_data__"][class*="week03_10"]{top: 55.5rem;}
/* カレンダー4週目 */
[class*="calendar_data__"][class*="week04_01"]{top: 47rem;}
[class*="calendar_data__"][class*="week04_02"]{top: 49.5rem;}
[class*="calendar_data__"][class*="week04_03"]{top: 52rem;}
[class*="calendar_data__"][class*="week04_04"]{top: 54.5rem;}
[class*="calendar_data__"][class*="week04_05"]{top: 57rem;}
[class*="calendar_data__"][class*="week04_06"]{top: 59.5rem;}
[class*="calendar_data__"][class*="week04_07"]{top: 62rem;}
[class*="calendar_data__"][class*="week04_08"]{top: 64.5rem;}
[class*="calendar_data__"][class*="week04_09"]{top: 67rem;}
[class*="calendar_data__"][class*="week04_10"]{top: 69.5rem;}
/* カレンダー5週目 */
[class*="calendar_data__"][class*="week05_01"]{top: 61rem;}
[class*="calendar_data__"][class*="week05_02"]{top: 63.5rem;}
[class*="calendar_data__"][class*="week05_03"]{top: 66rem;}
[class*="calendar_data__"][class*="week05_04"]{top: 68.5rem;}
[class*="calendar_data__"][class*="week05_05"]{top: 71rem;}
[class*="calendar_data__"][class*="week05_06"]{top: 73.5rem;}
[class*="calendar_data__"][class*="week05_07"]{top: 76rem;}
[class*="calendar_data__"][class*="week05_08"]{top: 78.5rem;}
[class*="calendar_data__"][class*="week05_09"]{top: 81rem;}
[class*="calendar_data__"][class*="week05_10"]{top: 83.5rem;}
/* カレンダー6週目 */
[class*="calendar_data__"][class*="week06_01"]{top: 75rem;}
[class*="calendar_data__"][class*="week06_02"]{top: 77.5rem;}
[class*="calendar_data__"][class*="week06_03"]{top: 80rem;}
[class*="calendar_data__"][class*="week06_04"]{top: 82.5rem;}
[class*="calendar_data__"][class*="week06_05"]{top: 85rem;}
[class*="calendar_data__"][class*="week06_06"]{top: 87.5rem;}
[class*="calendar_data__"][class*="week06_07"]{top: 90rem;}
[class*="calendar_data__"][class*="week06_08"]{top: 92.5rem;}
[class*="calendar_data__"][class*="week06_09"]{top: 95rem;}
[class*="calendar_data__"][class*="week06_10"]{top: 97.5rem;}
/* カレンダー　週の中での始まりの曜日 */
[class*="calendar_data__"][class*="-mon"]{left: 0;}
[class*="calendar_data__"][class*="-tue"]{left:calc(var(--week) * 1);}
[class*="calendar_data__"][class*="-wed"]{left:calc(var(--week) * 2);}
[class*="calendar_data__"][class*="-thu"]{left:calc(var(--week) * 3);}
[class*="calendar_data__"][class*="-fri"]{left:calc(var(--week) * 4);}
[class*="calendar_data__"][class*="-sat"]{left:calc(var(--week) * 5);}
[class*="calendar_data__"][class*="-sun"]{left:calc(var(--week) * 6);}
/* カレンダー　週の中での長さ *日間 */
[class*="calendar_data__"][class*="-day7"]{width:calc(var(--week) * 7);}
[class*="calendar_data__"][class*="-day6"]{width:calc(var(--week) * 6);}
[class*="calendar_data__"][class*="-day5"]{width:calc(var(--week) * 5);}
[class*="calendar_data__"][class*="-day4"]{width:calc(var(--week) * 4);}
[class*="calendar_data__"][class*="-day3"]{width:calc(var(--week) * 3);}
[class*="calendar_data__"][class*="-day2"]{width:calc(var(--week) * 2);}
[class*="calendar_data__"][class*="-day1"]{width:calc(var(--week) * 1);}

.calendar_note{
	margin-top: 1.5rem;
	max-width: 90rem;
	margin-right: auto;
	margin-left: auto;
	font-size: 1rem;
	line-height: 1.5rem;
}

/* 404 */
#page404{
	background-color: var(--lightgray);
	min-height: calc(100vh - 25rem);
}
#page404 .page_header{
	padding-top: 4.7rem;
	padding-bottom: 20rem;
}
#page404 .page_header img{
	width: 40%;
	max-width: 19.8rem;
}
#page404 .page_header p{
	font-size: 1.2rem;
	line-height: 1.7rem;
	margin: 0.3rem auto 4rem;
}
#page404 .page_header p.blue{
	font-family: var(--en);
	font-weight: var(--en-bold);
	font-size: 3.8rem;
	line-height: 5.3rem;
	margin: 1.2rem auto 0;
}


/* 会社情報　共通 */
.company_page{
	background: var(--lightblue);
	position: relative;
	z-index: -2;
}
.company_page #archive_wrap.br_all{
	border-radius: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.page_mv{
	margin: 0 auto 2rem;
	max-width: 110rem;
}
.page_mv_img{
	margin-bottom: 2rem;
}
.page_mv_img img{
	display: block;
	width: 100%;
	height: 40vw;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
}
.op_top{
	object-position: top!important;
}
.op_bottom{
	object-position: bottom!important;
}
.img_copyright{
	font-size: 0.8rem;
	line-height: 1rem;
	text-align: right;
	padding-top: 0.2rem;
}
.page_mv_catch{
	margin-bottom: 1.7rem;
}
.page_mv_catch span{
	display: block;
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	padding: 0 1rem;
}
.page_mv_text{
	font-size: 1.4rem;
	line-height: 2.4rem;
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
}
/* ギャラリースワイパー */
.gallery_wrap{
	margin: 0 auto;
}
.gallery_wrap .gallery_title,
.casting_list_wrap .casting_list_title{
	font-size: 5.8rem;
	line-height: 8.1rem;
	font-family: var(--en);
	font-weight: var(--en-bold);
	color: var(--blue);
	opacity: 0.1;
	text-align: center;
	margin-bottom: -2.1rem;
}
#gallery_swiper_wrap{
	position: relative;
	margin-bottom: 7rem;
}
#gallery_swiper{
	max-width: 110rem;
}
#gallery_swiper .img_wrap img{
	width: 100%;
	object-fit: cover;
}
#gallery_swiper_wrap .swiper-pagination{
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	position: absolute;
	bottom: -3.5rem;
	left: 0; right: 0;
}
#gallery_swiper_wrap .swiper-pagination-bullet{
	display: block;
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background: var(--lightgray);
	cursor: pointer;
	margin-right: 1.9rem;
	-webkit-transition: var(--hover);
	-o-transition: var(--hover);
	transition: var(--hover);
}
#gallery_swiper_wrap .swiper-pagination-bullet:last-child{
	margin-right: 0;
}
#gallery_swiper_wrap .swiper-pagination-bullet-active{
	background: var(--black);
}
#gallery_swiper_wrap .swiper-button-prev,
#gallery_swiper_wrap .swiper-button-next{
	display: none;
}

#service_link .front_service_link_wrap{
	margin: 0 auto;
	padding: 3rem 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
}
#service_link .front_service_link_wrap li {
	width: 100%;
	margin-bottom: 1.5rem;
}
#service_link .front_service_link_wrap li a::before{
	padding-top: 6.6rem;
}
#service_link .front_service_link_wrap li a div{
	font-size: 1.8rem;
	line-height: 2.6rem;
}
#service_link .front_service_link_wrap li a p {
	font-size: 1rem;
	line-height: 1.6rem;
	margin-top: 0.1rem;
}
#service_link .front_service_link_wrap li a:after {
	right: 1.3rem;
	bottom: 1.3rem;
}
/* 会社情報 */
#company_index_page .page_deco.bg_line_text{
	font-size: 19vw;
}
#company_index_page .company_bg_img_wrap{
	width: 100%;
	height: 35rem;
	position: absolute;
	z-index: -3;
	background-image: url('img/company/corp_bg.jpg');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
#company_index_page .company_text_wrap{
	width: calc(100% - 2rem);
	max-width: 110rem;
	height: fit-content;
	margin: 11rem auto 0rem;
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
}
#company_index_page .company_text_wrap>div{
	width: fit-content;
	min-width: calc(50% + 2rem);
	padding: 0;
}
#company_index_page .company_text_wrap>div .catchphrase{
	width: fit-content;
	white-space: nowrap;
	margin-bottom: 0;
}
#company_index_page .company_text_wrap>div .catchphrase .catchphrase_ani{
	font-size: 2rem;
	line-height: 3rem;
	font-weight: 700;
}
#company_index_page .company_text_wrap>div .catchphrase>.catchphrase_ani{
	display: block;
	background: var(--white);
	margin-bottom: 1.4rem;
	width: fit-content;
	padding: 0 1rem;
}
#company_index_page.page_wrap h2{
	margin-bottom: 2rem;
}
.corp_archive_wrap .corp_text{
	width: calc(100% - 3rem);
	max-width: 80rem;
	margin: 0 auto 4rem;
	font-size: 1.4rem;
	line-height: 2.4rem;
}
#company_index_page #corp_service_list h2,
:lang(en) #company_index_page #en_message h2,
:lang(en) #company_index_page #en_service h2{
	color: var(--blue);
	font-size: 3rem;
	line-height: 4.3rem;
	font-family: var(--en);
	font-weight: var(--en-bold);
}
#company_index_page #corp_service_list h2 span{
	display: block;
	color: var(--black);
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-medium);
}
#company_index_page #corp_service_list .front_service_link_wrap{
	flex-flow: row wrap;
	margin: 0 auto 3.2rem;
}
#company_index_page #corp_service_list .front_service_link_wrap li{
	width: calc(50% - 0.45rem);
	margin-bottom: 0.8rem;
}
#company_index_page #corp_service_list .front_service_link_wrap li a div{
	font-size: 1.6rem;
}
#company_index_page #corp_service_list .front_service_link_wrap li a p{
	font-size: 1.1rem;
}
#company_index_page #corp_service_list .front_service_link_wrap li a:after{
	right: 1.5rem;
	bottom: 1.5rem;
}
#company_index_page #corp_service_list .corp_service_list li{
	width: 100%;
	margin-bottom: 1.5rem;
}
#company_index_page #corp_service_list .corp_service_list li a::before{
	padding-top: 10rem;
}
#company_index_page #corp_service_list .corp_service_list li a div{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
#company_index_page #corp_service_list .corp_service_list li a p{
	font-size: 2.8rem;
	line-height: 3.9rem;
	margin-top: 0;
	margin-bottom: 0;
}
#company_index_page .btn_wrap{
	width: calc(100% - 3rem);
}
/* 会社情報　英語版 */
:lang(en) .company_page{
	background: unset;
}
:lang(en) header .nerukeha_btn,
:lang(en) header .header_right_wrap,
:lang(en) header .toggle_btn{
	display: none;
}
:lang(en) header .lang_wrap{
	display: flex;
	top: 1.1rem;
	right: 1.5rem;
}
:lang(en) header .lang_wrap a{
	background: var(--orange);
	color: var(--white);
}
:lang(en) header .lang_wrap a.current{
	background: none;
	color: var(--black);
}
:lang(en) #company_index_page .page_deco.bg_line_text{
	color: var(--white);
}
:lang(en) #company_index_page .page_deco.bg_line_text span{
	display: block;
	font-size: 2rem;
	line-height: 1em;
	font-weight: var(--en-medium);
}
#en_service{
	margin-top: 4rem;
}
.en_service_list .card{
	margin-bottom: 3rem;
}
.en_service_list .card_inner{
	padding: 1.5rem 2rem 2rem;
}
.en_service_list .card_inner p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.en_service_list h3{
	color: var(--blue);
	text-align: center;
	font-size: 2rem;
	line-height: 2.8rem;
	margin-bottom: 1rem;
}
.en_service_list .copy{
	font-size: 0.8rem;
	line-height: 1.1rem;
	text-align: right;
	margin-top: 1rem;
}
.en_service_list .copy span{
	display: block;
}
:lang(en) .overview_wrap{
	margin: 4rem auto;
}
:lang(en) .company_overview dl dd.company_name img{
	display: block;
	margin: 2rem auto 0;
	height: 5rem;
}
:lang(en) #company_index_page .btn_wrap{
	margin-bottom: 3rem;
}
/* ステージ制作 */
#company_tp_page .page_deco.bg_line_text{
	font-size: 3.8rem;
	line-height: 0.7em;
}
.sp_br_pc_space{
	display: block;
}
/* 海外事業・中国事業 */
#company_china_page .page_deco.bg_line_text{
	font-size: 3.8rem;
	line-height: 0.7em;
}
/* 権利開発 */
#company_rd_page .page_deco.bg_line_text{
	font-size: 3.8rem;
	line-height: 0.7em;
}
/* キャスティング */
#company_casting_page .page_deco.bg_line_text{
	font-size: 3.8rem;
	line-height: 1.4em;
}
#company_casting_page .casting_list_note{
	margin: 0 auto 3.5rem;
	width: 100%;
	max-width: 59.8rem;
	border-radius: 3.6rem;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.4rem;
	font-weight: 500;
	background: var(--blue);
	color: var(--white);
	position: relative;
	padding: 1rem 0;
}
#company_casting_page .casting_list_note::after{
	content: '';
	display: block;
	height: 1.7rem;
	width: 2.5rem;
	background-image: url('img/triangle_down.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: auto; right: 0; bottom: -1.7rem; left: 0;
	margin: auto;
	pointer-events: none;
}
#company_casting_page .casting_list{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: stretch;
	max-width: 110rem;
	margin: 0 auto;
}
#company_casting_page .casting_list li{
	width: calc((100% - 0.9rem)/2);
	margin-right: 0.9rem;
	position: relative;
}
#company_casting_page .casting_list li .casting_newicon{
	position: absolute;
	top: 0;
	right: -0.5rem;
	z-index: 2;
	background-color: #FFFF00;
	border-radius: 50%;
	display: block;
	width: 4rem;
	height: 4rem;
	line-height: 4rem;
	font-size: 1.2rem;
	text-align: center;
	font-family: var(--en);
	font-weight: var(--en-bold);
}
#company_casting_page .casting_list li>a{
	display: block;
	margin-top: 1rem;
	margin-bottom: 2rem;
}
#company_casting_page .casting_list li .img_wrap img{
	object-fit: cover;
}
#company_casting_page .casting_list li:nth-child(2n){
	margin-right: 0;
}
#company_casting_page .casting_list .casting_text{
	margin-top: 1rem;
}
#company_casting_page .casting_list .casting_text p{
	font-size: 1.3rem;
	line-height: 1.9rem;
	font-weight: var(--jp-medium);
}
#company_casting_page .casting_list .casting_text p.copyright{
	margin-top: 1rem;
	font-size: 0.8rem;
	line-height: 1rem;
	font-weight: var(--jp-regular);
}
.casting_andmore{
	margin: 3rem auto;
	text-align: center;
	font-family: var(--en);
	font-weight: var(--en-bold);
	color: var(--blue);
}
/* 代表メッセージ */
.corp_message_wrap{
	width: calc(100% - 3rem);
	max-width: 90rem;
	margin: 0 auto;
}
.corp_message_wrap .img_wrap{
	display: block;
	width: 50%;
	max-width: 27rem;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 0;
}
.corp_message_wrap .img_wrap img{
	display: block;
	width: 100%;
	height: auto;
	border-radius: 2rem;
}
.message_deco [class*="circle__"]{
	z-index: 1;
}
.message_deco .circle__orange_1{
	width: 1.6rem;
	height: 1.6rem;
	top: 2.3rem;
	right: -0.8rem;
}
.message_deco .circle__orange_2{
	width: 1.16rem;
	height: 1.16rem;
	bottom: 3.4rem;
	left: -0.73rem;
}
.message_deco .circle__blue_3{
	width: 2.45rem;
	height: 2.45rem;
	bottom: -1.1rem;
	left: 2.2rem;
}
.message_catch{
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: var(--jp-bold);
	margin-bottom: 2.5rem;
}
.message_text p{
	font-size: 1.4rem;
	line-height: 2.4rem;
	margin-bottom: 2.5rem;
}
/* 会社概要 */
.overview_wrap{
	width: calc(100% - 3rem);
	max-width: 90rem;
	margin: 0 auto;
}
.overview_wrap .group_heading{
	margin: 4rem auto 2rem;
	padding-bottom: 1rem;
	border-bottom: 0.1rem solid var(--gray);
	font-size: 1.2rem;
	line-height: 1.7rem;
	font-weight: var(--jp-bold);
}
.company_overview{
	margin-bottom: 3rem;
}
#nelkechina.company_overview{
	margin-bottom: 0.5rem;
}
.company_overview .img_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	width: calc(100% - 0.2rem);
	border: 0.1rem solid var(--gray);
	border-radius: 1rem;
	background-color: var(--white);
	padding: 2.5rem 0;
	margin-bottom: 1.5rem;
}
.company_overview .img_wrap img{
	display: block;
	height: 13.5vw;
	max-height: 13.4rem;
}
.company_overview dl{
	margin-bottom: 2rem;
}
.company_overview dl:last-child{
	margin-bottom: 0;
}
.company_overview dl dt,
.company_overview dl dd{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
.company_overview dl dt{
	background-color: var(--lightgray);
	padding: 1rem 1.5rem;
}
.company_overview dl dd{
	padding: 0.8rem 0 0;
}
.company_overview dl dd.company_name{
	font-weight: var(--jp-bold);
	font-size: 1.4rem;
	line-height: 2rem;
}
.company_overview dl dd a{
	color: var(--blue);
	text-decoration: underline;
}
/* オフィスガイド */
#company_office_page #archive_wrap,
#company_history_page #archive_wrap,
#guidance_page #archive_wrap{
	padding-top: 0;
}
#company_office_page .page_deco.bg_line_text,
#company_history_page .page_deco.bg_line_text,
#guidance_page .page_deco.bg_line_text{
	font-size: 15vw;
}
.officeguide_text,
.history_text,
.guidance_text{
	width: calc(100% - 3rem);
	max-width: fit-content;
	margin: 0 auto 5rem;
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: var(--jp-bold);
}
#company_office_page .card{
	overflow: unset;
	width: calc(100% - 3rem);
	margin: 0 auto 6rem;
}
#company_office_page .card:last-child{
	margin-bottom: 0.5rem;
}
#company_office_page .card_inner{
	position: relative;
}
#company_office_page .card img{
	display: block;
	border-radius: 1rem;
	width: 100%;
	height: auto;
}
#company_office_page .main_img_wrap{
	width: 100%;
	margin-bottom: 2rem;
}
#company_office_page .img_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	margin-top: 2rem;
}
#company_office_page .img_wrap img{
	width: calc(50%  - 0.65rem);
}
#company_office_page h2{
	font-size: 2.2rem;
	color: var(--black);
	position: absolute;
	top: -1.5rem;
	left: 0; right: 0;
	margin: 0 auto;
	width: fit-content;
}
#company_office_page h2 ruby{
	font-size: 3.2rem;
	font-family: var(--en);
	font-weight: var(--en-bold);
}
[data-ruby]{
	position: relative;
}
[data-ruby]::before{
	content: attr(data-ruby);
	position: absolute;
	top: -1em;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 0.3em;
	line-height: 1.5em;
	text-align: center;
}
#company_office_page h2 ruby>rt{
	display: none;
}
.officeguide_card_text_wrap p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
/* 沿革 */
.history_text,
.guidance_text{
	margin: 0 auto 3rem;
}
#history_wrap{
	width: calc(100% - 3rem);
	max-width: 50rem;
	margin: 0 auto;
}
#history_wrap dl{
	display: flex;
	flex-flow: column nowrap;
	margin: 0;
	padding: 0;
}
#history_wrap dl dt,
#history_wrap dl dd{
	position: relative;
}
#history_wrap dl.season_start dt{
	margin-bottom: 1rem;
}
#history_wrap dl.season_end dt{
	margin-top: 1rem;
}
#history_wrap dl.season_end.season_start dt,
#history_wrap dl.history_end dt{
	margin-top: 2rem;
	margin-bottom: 2rem;
}
#history_wrap dl dt span{
	display: block;
	width: 4.5rem;
	line-height: 4.5rem;
	text-align: center;
	border-radius: 50%;
	font-family: var(--en);
	font-weight: var(--en-medium);
	color: var(--white);
}
#history_wrap #season1 dl dt span{
	background-color: var(--orange);
}
#history_wrap #season2 dl dt span{
	background-color: var(--blue);
}
#history_wrap dl.season_start dt span,
#history_wrap dl.history_end dt span{
	width: 12.2rem;
	line-height: 3.7rem;
	border-radius: 2rem;
	font-family: var(--jp);
	font-weight: var(--jp-medium);
}
#history_wrap dl.history_end dt span{
	width: fit-content;
	line-height: 4.7rem;
	border-radius: 1rem;
	background-color: var(--white)!important;
	color: var(--blue);
	padding: 0 3rem;
}
#history_wrap dl dd{
	background-color: var(--white);
	border-radius: 1rem;
	margin-left: 5.6rem;
	padding: 1.5rem;
	margin-bottom: 2rem;
}
#history_wrap dl dd:last-child{
	margin-bottom: 0;
}
#history_wrap dl dd::before,
#history_wrap dl dd::after,
#history_wrap dl.season_start dt::before,
#history_wrap dl.season_end dt::after,
#history_wrap dl.history_end dt::after{
	content: '';
	display: block;
	width: 0.3rem;
	background-color: white;
	height: calc(100% + 2.2rem);
	position: absolute;
	left: -3.4rem;
	bottom: 0rem;
	z-index: -1;
}
#history_wrap dl.season_start dt::before,
#history_wrap dl.season_end dt::after,
#history_wrap dl.history_end dt::after{
	height: 1rem;
	left: 2.2rem;
	bottom: -1rem;
}
#history_wrap dl.season_end dt::after{
	bottom: auto;
	top: -1rem;
}
#history_wrap dl.season_start.season_end dt::before,
#history_wrap dl.season_start.season_end dt::after,
#history_wrap dl.history_end dt::after{
	height: 2rem;
	bottom: -2rem;
}
#history_wrap dl.season_start.season_end dt::after,
#history_wrap dl.history_end dt::after{
	bottom: auto;
	top: -2rem;
}
#history_wrap dl dd::after{
	width: 3.4rem;
	height: 0.3rem;
	left: -3.4rem;
	top: 4.5rem;
	bottom: auto;
}
#history_wrap dl dd img{
	display: block;
	width: 14rem;
	margin: 1rem auto 0;
}
.history_date_wrap{
	font-size: 1.2rem;
}
.history_date_wrap span{
	display: inline-block;
	background-color: #FFEE33;
	width: fit-content;
	margin-bottom: 1rem;
	padding: 0.5rem 2rem;
	border-radius: 1.4rem;
	margin-right: 1rem;
	font-size: 1.2rem;
	font-weight: var(--jp-bold);
}
.history_title{
	font-size: 1.4rem;
	line-height: 2rem;
	font-weight: var(--jp-bold);
}
.history_note{
	margin-top: 1rem;
	font-size: 1.2rem;
	line-height: 1.7rem;
}
/* 会社案内ダウンロード */
#company_download_page .bg_line_text{
	font-size: 16vw;
	line-height: 15vw;
}
.company_download_img_wrap{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: calc(100% - 4rem);
	max-width: 59rem;
	margin: 0 auto;
}
.company_download_img_wrap>div{
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
	width: 49%;
	max-width: 25.9rem;
}
.company_download_img_wrap>div>div{
	margin: 1rem auto 0;
	padding: 0.5rem 0;
	width: 8rem;
	border-radius: 1.6rem;
	text-align: center;
	background-color: var(--blue);
	color: var(--white);
	font-size: 1.2rem;
	font-weight: bold;
}
.company_download_wrap>p{
	width: calc(100% - 4rem);
	max-width: fit-content;
	margin: 2.7rem auto 2.3rem;
	font-size: 1.4rem;
}
#company_download_page #contact_form_wrap{
	margin: 3rem auto;
	width: calc(100% - 4rem);
	max-width: 90rem;
}

/* はじめての観劇案内 */
#guidance_page{}
#guidance_menu{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: calc(100% - 3rem);
	margin: 0 auto 3rem;
}
#guidance_menu li{
	width: calc((100% - 1.5rem) / 3);
}
#faq_menu li a,
#guidance_menu li a{
	display: block;
	width: 100%;
	padding-top: 100%;
	position: relative;
	border-radius: 1rem;
	background: var(--white);
}
#guidance_menu li a>div{
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	text-align: center;
}
#guidance_menu li a>div img{
	display: block;
	margin: 0 auto 0.3rem;
	width: 10vw;
	height: 10vw;
	object-fit: contain;
}
#guidance_menu li a>div img.menu_icon_hover{display: none;}
#guidance_menu li a>div span{
	display: block;
	font-size: 4.25vw;
	line-height: 1.5em;
	font-weight: var(--jp-bold);
	margin-bottom: 1rem;
}
#faq_menu li a::after,
#guidance_menu li a::after{
	content: '';
	display: block;
	height: 1rem;
	width: 1rem;
	background-image: url('img/arrow2_right_black.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	transform: rotate(90deg);
	position: absolute;
	top: auto; right: 0; bottom: 1.2rem; left: 0;
	margin: 0 auto;
}
#guidance_wrap{
	width: calc(100% - 3rem);
	max-width: 110rem;
	margin: 0 auto 1.5rem;
}
#guidance_wrap>.card{
	margin-top: 3rem;
	padding: 0 2rem 3rem;
}
#guidance_wrap>.card .card_orange{
	margin: 6.8rem auto 0;
	padding: 3rem 1.5rem 1rem;
	max-width: 90rem;
	overflow: unset;
}
#guidance_wrap>.card h2{
	position: relative;
	width: 100%;
	height: fit-content;
	margin-bottom: 2rem;
}
#guidance_wrap>#buy.card h2{
	margin-bottom: 0.3rem;
}
#guidance_wrap>.card h2 span{
	display: block;
	color: var(--lightblue);
	font-size: 7rem;
	line-height: 9.9rem;
	font-family: var(--en);
	font-weight: var(--en-bold);
	text-align: center;
	margin-top: -2.5rem;
}
#guidance_wrap>.card h2 div:last-child{
	position: absolute;
	top: 6rem; right: 0;  left: 0;
	margin: 0 auto;
	width: fit-content;
	height: fit-content;
}
#guidance_wrap>.card h2 img{
	display: inline-block;
	margin: 0 1.5rem 0 0;
	width: 4.5rem;
	height: 4.5rem;
	object-fit: contain;
	vertical-align: middle;
}
#guidance_wrap>.card p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
#guidance_wrap>.card .card_orange p{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
#guidance_wrap>.card p.note{
	font-size: 1rem;
	line-height: 1.5rem;
	margin: 1rem auto 2rem;
}
#guidance_wrap>.card .card_orange h3{
	color: var(--orange);
	text-align: center;
	width: fit-content;
	margin: -6.8rem auto 2rem;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
	position: relative;
}
#guidance_wrap>.card .card_orange h3::before,
#guidance_wrap>.card .card_orange h3::after{
	content: '';
	display: block;
	width: 0.3rem;
	height: 75%;
	border-radius: 1rem;
	background: var(--orange);
	position: absolute;
	bottom: 0;
}
#guidance_wrap>.card .card_orange h3::before{
	left: -0.8rem;
	transform: rotate(-15deg);
}
#guidance_wrap>.card .card_orange h3::after{
	right: -0.8rem;
	transform: rotate(15deg);
}
#guidance_wrap>.card .card_orange h4{
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: var(--jp-bold);
	margin-bottom: 1rem;
}
#guidance_wrap>.card .card_orange h4 span{
	color: var(--orange);
}
#guidance_wrap>.card .card_orange .btn_wrap{
	max-width: 56.6rem;
	margin: 1.7rem auto 1rem;
}
#guidance_wrap>.card .card_orange .btn_wrap a{
	display: block;
	margin-bottom: 1rem;
}
#guidance_wrap>.card .card_orange .sns_nav{
	width: calc(100% - 3rem);
	max-width: 28rem;
	margin-top: 1.8rem;
}
.watch_point>div{
	margin-bottom: 3rem;
}
#page_wrap.recruit_page_wrap h2,
.watch_point>div h3{
	background: var(--blue);
	color: var(--white);
	font-weight: var(--jp-bold);
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 1.4rem 1.8rem;
	border-radius: 0.5rem;
	margin-bottom: 1rem;
}
.watch_point>div h3 img{
	height: 1.8rem;
	width: auto;
	margin-right: 1.8rem;
}
.watch_point>div li{
	margin-bottom: 2rem;
}
.watch_point>div li p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.watch_point>div li p span{
	color: var(--blue);
	font-weight: var(--jp-bold);
}
.watch_point>p:last-child{
	color: var(--orange);
	font-weight: var(--jp-bold);
}

/* 採用情報 */
.header_recruit{
	padding-bottom: 1.5rem;
}
.recruit_page_deco .circle__orange_1{
	width: 4.5rem;
	height: 4.5rem;
	top: 9.4rem;
	right: -0.7rem;
}
.recruit_page_deco .circle__blue_2{
	width: 1.3rem;
	height: 1.3rem;
	top: 8.2rem;
	right: 4rem;
}
.recruit_page_deco .circle__blue_3{
	width: 2.3rem;
	height: 2.3rem;
	top: 10rem;
	left: -0.7rem;
}
#page_wrap.recruit_page_wrap{
	padding: 2rem 1.5rem 4rem;
}
#page_wrap.recruit_page_wrap h2{
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.recruit_detail p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.recruit_newgrad{
	margin-bottom: 3rem;
}
.recruit_midcareer a{
	margin-top: 2rem;
}
/* よくある質問 */
#page_wrap.faq_page_wrap{
	padding: 1.8rem 1.8rem 4rem;
}
#faq_menu{
	width: 100%;
	max-width: 90rem;
	margin-right: auto;
	margin-left: auto;
}
#faq_menu li{
	margin-bottom: 1rem;
}
#faq_menu li:last-child{
	margin-bottom: 0;
}
#faq_menu li a{
	padding-top: 0;
	line-height: 4.6rem;
	text-align: center;
	font-size: 1.2rem;
}
#faq_menu li a::after{
	top: 0; bottom: 0; left: auto; right: 1.5rem;
	margin: auto 0;
}
.faq_list_wrap{
	width: 100%;
	max-width: 90rem;
	margin: 0 auto;
}
.faq_list_wrap>div{
	margin-bottom: 5rem;
}
.faq_list_wrap>div:last-child{
	margin-bottom: 0;
}
.faq_list_wrap h2{
	margin-bottom: 2rem;
}
.faq_list{
	width: 100%;
	margin: 2rem 0;
}
.faq_list details{
	width: 100%;
	margin-bottom: 3rem;
}
.faq_list details:last-child{
	margin-bottom: 2rem;
}
.faq_list details summary{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	padding: 1.3rem 4.2rem 1.3rem 1.5rem;
	cursor: pointer;
	border-radius: 0.5rem;
	background-color: var(--lightgray);
	color: var(--black);
	font-weight: var(--jp-bold);
	font-size: 1.4rem;
	line-height: 2rem;
}
.faq_list details summary span{
	color: var(--blue);
	font-family: var(--en);
	font-size: 1.8rem;
	line-height: 2rem;
	margin-right: 0.8rem;
}
.faq_list details summary::before,
.faq_list details summary::after{
	content: '';
	display: block;
	width: 1.4rem;
	height: 0.2rem;
	border-radius: 1rem;
	background-color: var(--black);
	transition: transform .5s;
	position: absolute;
	top: 2.3rem;
	right: 1.5rem;
	margin: 0;
}
.faq_list details summary::after{
	transform: rotate(90deg);
}
.faq_list details[open] summary::after{
	transform: rotate(0);
}
.faq_list details>div{
	position: relative;
	transform: translateY(-10px);
	transition: transform .2s, opacity .2s;
	opacity: 0;
	margin-top: 1rem;
}
.faq_list details>div>*{
	margin-bottom: 2rem;
}
.faq_list details>div>*:last-child{
	margin-bottom: 0;
}
.faq_list details[open]>div{
	transform: none;
	opacity: 1;
}

/* ネルケハ！ */
.header_nelkeha{
	padding-bottom: 0;
}
.header_nelkeha_inner{
	margin-left: auto;
	margin-right: auto;
	max-width: 110rem;
}
.header_nelkeha_inner img{
	display: block;
	width: 50%;
	max-width: 28.7rem;
	height: auto;
	margin: 2rem auto 0;
}
.header_nelkeha_inner .btn_wrap{
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	align-items: flex-start;
}
.header_nelkeha_inner .btn_wrap>div{
	width: 100%;
	margin-top: 2rem;
}
.header_nelkeha_inner .btn_wrap span{
	display: block;
	font-size: 1rem;
	line-height: 1.5rem;
	margin-top: -0.5rem;
	text-align: center;
}
.header_nelkeha_inner p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.nelkeha_page.page_wrap h2{
	color: var(--black);
	text-align: center;
	margin: 0 auto 3.5rem;
}
.nelkeha_page.page_wrap h2 span{
	white-space: nowrap;
}
.nelkeha_page #archive_wrap{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.nelkeha_page .benefits_wrap{
	max-width: 110rem;
	margin: 1rem auto 3rem;
}
.nelkeha_page .benefit_detail_wrap{
	overflow: unset;
	margin: 3rem auto 0;
	padding: 0 2rem 3rem;
}
.nelkeha_page .benefit_detail_wrap h3{
	position: relative;
}
.nelkeha_page .benefit_number{
	display: block;
	width: 12.4rem;
	height: 6.2rem;
	color: var(--blue);
	background: #FFEE33;
	border-radius: 50% / 0 0 100% 100%;
	margin: 0 auto 2rem;
	position: relative;
}
.nelkeha_page .benefit_number div{
	position: absolute;
	bottom: 0.78rem;
	left: 0; right: 0;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 2.4rem;
	text-align: center;
	font-weight: var(--jp-bold);
}
.nelkeha_page .benefit_number div span{
	display: block;
	font-family: var(--en);
	font-weight: var(--en-bold);
	font-size: 3.4rem;
	line-height: 4.8rem;
	margin-top: -0.5rem;
}
.nelkeha_page .benefit_detail_wrap h3 img{
	display: block;
	width: 14.5vw;
	height: 16vw;
	max-width: 10rem;
	max-height: 11.3rem;
	object-fit: contain;
	position: absolute;
	top: 2.5rem;
}
.nelkeha_page .benefit_detail_wrap h3 img.nel{
	left: 0rem;
}
.nelkeha_page .benefit_detail_wrap h3 img.lke{
	right: 0rem;
}
.nelkeha_page .benefit_title{
	text-align: center;
	margin-bottom: 2.3rem;
	font-size: 2.1rem;
	line-height: 3rem;
	font-weight: var(--jp-bold);
}
.nelkeha_page .benefit_title span{
	display: inline-block;
	position: relative;
	z-index: 1;
}
.nelkeha_page .benefit_title span:before{
	content: '';
	display: block;
	width: calc(100% + 1rem);
	height: 1rem;
	background-color: #FFEE33;
	position: absolute;
	bottom: 0;
	left: -0.5rem;
	z-index: -1;
}
.nelkeha_page .benefit_detail_wrap p{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.nelkeha_page .benefit_detail_wrap p.note{
	font-size: 1rem;
	line-height: 1.5rem;
	margin-top: 1rem;
}
.nelkeha_page .benefit_detail_wrap .read_more_btn{
	margin: 2rem auto 0;
}
.benefit_img_wrap{
	margin: 5rem auto 0;
	padding: 4.2rem 1rem 2rem;
	position: relative;
	overflow: unset;
}
.benefit_img_wrap .benefit_img_title{
	position: absolute;
	top: -3.1rem;
	left: 0; right: 0;
	margin: 0 auto;
	background: #FFEE33;
	color: var(--blue);
	border-radius: 3.6rem;
	padding: 1.5rem 0;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.7rem;
	width: calc(100% - 2rem);
	max-width: 50.4rem;
}
.benefit_img_wrap .benefit_img_title::after{
	content: '';
	display: block;
	height: 1.7rem;
	width: 2rem;
	background-image: url('img/triangle_down_blue.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: auto; right: 0; bottom: -1.7rem; left: 0;
	margin: auto;
	pointer-events: none;
}
.benefit_img_wrap_inner img{
	display: block;
}
.benefit_img_wrap_inner .img_flex{
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
}
.benefit_img_wrap_inner .img_flex img{
	margin-bottom: 1.5rem;
}
.benefit_img_wrap_inner .img_flex img:last-child{
	margin-bottom: 0;
}
.nelkeha_btn_wrap .btn_wrap{
	margin: 2rem auto 0;
	max-width: 90rem;
}
/* ネルマガ 利用規約 プライバシーポリシー 情報セキュリティポリシー */
.header_terms{
	padding-bottom: 2rem;
}
#archive_wrap.terms_text_wrap{
	padding: 2.5rem 1.5rem 3rem;
}
#archive_wrap.terms_text_wrap h2{
	color: var(--black);
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.4rem;
	line-height: 2rem;
}
.terms_text a{
	color: var(--blue);
	text-decoration: underline;
}
.terms_text>p,
.terms_text>div{
	margin-bottom: 3rem;
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.terms_text ol{
	list-style-type: decimal;
	padding-left: 1em;
}
.terms_text>div>ol{
	margin-bottom: 0;
}
.terms_signature{
	text-align: right;
	margin-top: 3rem;
}
.terms_signature>div{
	font-size: 1.4rem;
	line-height: 2.4rem;
}
.terms_signature .terms_signature_date{
	font-size: 1.2rem;
	line-height: 1.7rem;
}
.terms_signature>div{
	margin-bottom: 2rem;
}
.terms_signature>*:last-child{
	margin-bottom: 0;
}


/* iPhone6サイズ（375px）未満への対応 ---------------- */
@media (max-width: 374px) {
	/* commom */
	body{font-size: 1.2rem;}
	.se_only{display: block!important;}

	/* header */
	/* header active時 */
	header.active .header_nav>li>a{
		font-size: 1.4rem;
		line-height: 2rem;
	}
	header.active .header_nav>li>a>span{
		font-size: 1.2rem;
		line-height: 2rem;
	}
	/* footer */
	/* mv */


	/* トップページ　ここから　------------------------------------ */
	#front_main_menu ul li:first-child{
		font-size: 1.4rem;
	}
	/* mvキャッチフレーズ */
	.mv_catchphrase p{
		font-size: 1.6rem;
	}
	.mv_catchphrase div{
		font-size: 0.9rem;
	}
	/* トップページ　ここまで　------------------------------------ */

	/* お問い合わせフォーム */
	/* 公演カレンダー */
	.calendar_page .bg_line_text{
		font-size: 18vw;
		line-height: 15vw;
	}

	/* 404 */
	#page404 .page_header p.blue{
		font-size: 3rem;
	}

	/* 会社情報 */
	#company_index_page .company_text_wrap>div .catchphrase .catchphrase_ani{
		font-size: 1.6rem;
	}
	#company_index_page.page_wrap h2{
		font-size: 1.6rem;
	}
	/* 会社情報　英語版 */
	/* オフィスガイド */
	#company_office_page .page_header{
		padding-bottom: 0;
	}
	#company_office_page h2 ruby{
		font-size: 2.6rem;
	}
	/* 沿革 */
	/* 会社案内ダウンロード */
	/* はじめての観劇案内 */
	/* 採用情報 */
	/* よくある質問 */
	/* ネルケハ！ */
	.header_nelkeha_inner .btn_wrap span{
		font-size: 0.9rem;
	}
	/* ネルマガ 利用規約 プライバシーポリシー 情報セキュリティポリシー */
	/* 上映中/チケット販売中　チェックボックス */
	.stage_filter_btn_wrap>input+label{
		border-radius: 1.2rem;
		padding: 0 0.5rem;
	}
}




/* タブレットサイズ以上 ------------------------------ */
@media (min-width: 768px) {
	/* commom　ここから　------------------------------------ */
	body{font-size: 1.6rem;}
	.sp_only{display: none!important;}
	.pc_only{display: block!important;}
	/* 見出し */
	.page_wrap h2{
		font-size: 3rem;
		line-height: 4.3rem;
	}

	.bg_dot {
		background-size: 4rem;
	}

	.card{
		border-radius: 2rem;
	}
	.card_inner{
		padding: 8rem 10rem;
	}

	/* cookie */
	.section-cookie_inner{
		width: calc(100% - 10rem);
	}
	.section-cookie_inner p{
		padding-right: 5rem;
		font-size: 1.4rem;
		line-height: 2em;
	}
	.section-cookie_btn{
		padding: 1rem 3rem;
		border-radius: 2rem;
	}
	.section-cookie_btn:hover{
		background: var(--white);
		color: var(--blue);
	}

	/* スクロールバー */
	.simplebar-track{
		display: none;
	}

	/* 絞り込み */
	details summary:hover{
		color: var(--blue);
		text-decoration: underline;
	}
	.details_content_inner{
		margin: 0 auto;
		padding: 0;
		width: fit-content;
		max-width: 90rem;
	}

	/* ボタン */
	.btn_wrap{
		justify-content: space-between;
	}
	.btn_wrap>*{
		width: calc(50% - 2rem)!important;
	}
	[class*="btn__"] {
		font-size: 1.4rem;
		padding: 1rem 2.5rem;
		border-radius: 2.8rem;
	}

	/* hover */
	[class*="btn__"][class*="_orange"]:hover{
		background: var(--white)!important;
		color: var(--orange)!important;
	}
	[class*="btn__"][class*="_blue"]:hover{
		background: var(--white)!important;
		color: var(--blue)!important;
	}
	a:hover,
	.hoverblue:hover{
		color: var(--blue);
	}
	.hover07:hover{
		opacity: 0.7;
	}
	.sns_nav a.link_x:hover{
		background: var(--black);
	}
	.sns_nav a.link_instagram:hover{
		background: #b932a8;
	}
	.sns_nav a.link_line:hover{
		background: #00B900;
	}
	.sns_nav a.link_youtube:hover{
		background: #FF0000;
	}
	.sns_nav a.link_facebook:hover{
		background: #0666FF;
	}
	.sns_nav a:hover img{
		filter: invert(100%);
	}
	.nerukeha_btn:hover{
		background: var(--white);
		color: var(--blue);
	}
	header .lang_wrap a:hover{
		color: var(--orange);
	}
	header.active .header_nav a:hover,
	header.active .header_other_wrap .header_other_nav a:hover{
		color:var(--blue);
	}
	footer .go_top_btn_wrap:hover{opacity: 1;}
	footer .go_top_btn_wrap:hover .go_to_arrow{
		margin-top: calc(50% - 1rem);
		margin-top: -1rem;
	}
	.read_more_btn:hover{
		border: 0.2rem solid var(--black);
		width: calc(100% - 0.4rem);
		padding: 1.1rem 0;
		color: var(--black);
	}
	#urgent_notice:hover{
		color: initial;
		opacity: 1;
	}
	#mv_swiper .mv_text_wrap .read_more_btn:hover{
		background: var(--white);
		color: var(--black);
		padding: 1rem 4.4rem;
		margin: 1rem 0 0;
		border: 0.1rem solid var(--white);
	}
	#mv_movie_pause:hover{
		opacity: 0.7;
	}
	#front_main_menu ul li a:hover{
		background: var(--blue);
		color: var(--white);
		border: 0.1rem solid var(--blue);
	}
	#front_main_menu ul li a:hover img.menu_icon{
		display: none;
	}
	#front_main_menu ul li a:hover img.menu_icon_hover{
		display: block;
	}
	.stage_link:hover{
		margin-top: 0;
		margin-bottom: 1rem;
	}
	#front_banner a:hover{
		margin-top: -1rem;
		padding-bottom: 1rem;
	}
	.topics_link:hover .img_wrap img{
		border-radius: 2rem;
	}
	.topics_link:hover .topics_title{
		color: var(--blue);
	}
	.topics_link:hover .topics_category{
		background: var(--blue);
	}
	.topics_link .topics_category:hover{
		opacity: 1;
	}
	.topics_link .topics_hashtag a:hover{
		opacity: 1;
		text-decoration: underline;
	}
	header .lang_wrap a:hover{
		color: var(--orange);
	}



	/* header */
	header{
		height: 4.2rem;
		width: calc(100% - 13rem);
		padding: 1.8rem 4rem;
		border-bottom-left-radius: 4rem;
		border-bottom-right-radius: 4rem;
		box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 7%);
		justify-content: flex-start;
	}
	.header_title{
		width: fit-content;
		height: 4.2rem;
	}
	.header_title img{
		width: auto;
		height: 100%;
	}
	.nerukeha_btn{
		font-size: 1.2rem;
		line-height: 1.7rem;
		border-radius: 2.1rem;
		padding: 1.2rem 3rem;
	}
	.nerukeha_btn span{display: inline-block;}
	header>a.nerukeha_btn{
		position: absolute;
		right: 16rem;
		left: auto;
		top: 1.85rem;
	}
	header .lang_wrap{
		position: absolute;
		top: 2.2rem;
		right: 8rem;
		display: flex;
		flex-flow: row nowrap;
	}

	/* toggle */
	.toggle_btn{
		position: absolute;
		right: 4rem;
		top: 2.8rem;
	}
	.toggle_btn:hover{
		color: var(--blue);
	}

	/* header active時 */
	header.active .header_nav_wrap{
		height: calc(100vh - 7.2rem);
		padding: 2.2rem 0 5rem;
		/* flex-flow: row nowrap; */
	}
	header.active .header_nav_wrap .lang_wrap{
		justify-content: flex-end;
		width: calc(100% - 10.5rem);
		padding-left: 0;
		padding-right: 10.5rem;
		padding-bottom: 2.5rem;
	}
	header.active .header_nav_wrap .header_nav_wrap1{
		width: fit-content;
		padding-left: 0rem;
		display: flex;
		flex-flow: row nowrap;
	}
	header.active .header_nav_wrap .header_nav_wrap2{
		width: fit-content;
		padding-right: 0rem;
		display: flex;
		flex-flow: row nowrap;
	}
	header.active .header_nav{
		width: fit-content;
		padding-right: 3rem;
	}
	header.active .header_other_wrap{
		width: 100%;
		margin-top: 4rem;
		padding: 3rem 0 0;
		border-top: 0.1rem solid var(--gray);
	}
	header.active .header_other_wrap .header_other_nav{
		align-items: flex-start;
	}
	header.active .header_other_wrap .header_other_nav li{
		text-align: left;
	}
	header.active .contact_lang_link{}


	header.active .toggle_btn{
		position: fixed;
		right: 7rem;
		top: 2.8rem;
	}
	header.active .lang_wrap{
		position: fixed;
		top: 2.2rem;
		right: 10.5rem;
		display: flex;
		display: none;
	}


	/* footer */
	footer{
		background-color: unset;
		margin-top: -1.7rem;
	}
	footer .go_top_btn_wrap{
		z-index: 1;
		top: 1.7rem;
	}
	.footer_inner_wrap{
		background-color: #EBEBEB;
		position: relative;
		overflow: hidden;
	}
	footer::before{
		content: "";
		display: block;
		/* background-color: rgba(255, 255, 255, 80%); */
		width: 100%;
		height: 1.7rem;
	}
	.footer_nav {
		flex-flow: row nowrap;
		width: 100%;
		max-width: 53rem;
		margin: 13rem auto 3rem;
	}
	.footer_nav li {
		width: fit-content;
		margin-bottom: 0;
	}



	/* mv */


	.read_more_btn{
		position: relative;
		width: fit-content;
		font-size: 1.4rem;
		line-height: 2rem;
		border-radius: 2.8rem;
		padding: 1.8rem 5rem;
	}
	.read_more_btn:after{
		width: 1.5rem;
		height: 1.5rem;
	}
	.read_more_btn:hover{
		width: fit-content;
		padding: 1.7rem 4.9rem;
	}
	.read_more_btn:hover::after{
		right: 1.9rem;
	}
	.read_more_btn.center{
		margin-left: auto;
		margin-right: auto;
	}


	.page_text{
		margin: 2.1rem auto 4rem;
		padding: 0;
	}
	.page_header .page_text{
		text-align: center;
	}


	/* commom　ここまで　------------------------------------ */

	/* トップページ　ここから　------------------------------------ */
	#mv.top_mv{
		margin-top: 0rem;
		margin-bottom: 0;
		padding-top: 7.8rem;
		background: var(--black);
	}
	#urgent_notice{
		position: absolute;
		top: 9.2rem;
		right: 2rem;
		z-index: 1;
		width: fit-content;
		max-width: calc(100% - 9rem);
		padding: 1rem 2.5rem;
		border-radius: 2.8rem;
		line-height: 2rem;
		z-index: 2;
	}
	#urgent_notice dl dt{
		width: 8rem;
		font-size: 1.2rem;
	}
	#urgent_notice dl dd{
		width: calc(100% - 8rem);
		font-size: 1.4rem;
	}

	#mv_swiper{
		margin-top: 0rem;
	}
	#mv_swiper .mv_copyright{
		font-size: 1rem;
		bottom: 1.5rem;
		right: 2rem;
	}
	#mv_swiper .mv_text_wrap,
	#mv_swiper.paused .mv_text_wrap{
		opacity: 1;
		pointer-events: unset;
		bottom: 10.5rem;
		left: 5rem;
	}
	#mv_swiper .mv_img_wrap>*,
	#mv_swiper .mv_img_wrap>iframe,
	#mv_swiper.paused .mv_img_wrap>*,
	#mv_swiper.paused .mv_img_wrap>iframe{
		filter: blur(0);
	}
	#mv_movie_pause{
		width: 2.8rem;
		height: 2.8rem;
		background-color: var(--white);
		background-image: url('img/paused_black.png');
		bottom: 5rem;
		left: 5rem;
	}
	#mv_movie_pause.paused{
		background-image: url('img/play_black.png');
		background-size: 45%;
	}

	#swiper_pagination_wrap{
		position: absolute;
		bottom: 5rem;
		right: auto; left: 5rem;
		margin: 0;
		justify-content: flex-start;
	}
	.circle_loading_wrap{
		width: 2.4rem;
		height: 2.4rem;
	}
	#mv .circle_loading_wrap{
		margin-left: 1.5rem;
	}
	.stage_page_mv_wrap .circle_loading_wrap{
		margin-top: 0rem;
		margin-left: 1rem;
	}
	.circle_inner{
		color: var(--white);
		line-height: 2.4rem;
	}
	.stage_page_mv_wrap .circle_inner{
		color: var(--black);
	}
	.swiper-pagination-bullet-active svg.circle{
		width: 2.4rem;
	}
	.swiper-pagination-bullet circle.circle{
		stroke:var(--white);
	}
	.stage_page_mv_wrap .swiper-pagination-bullet circle.circle{
		stroke:var(--black);
	}

	/* mvキャッチフレーズ */
	.mv_catchphrase{
		padding: 4rem 0;
	}
	.mv_catchphrase p{
		/* font-size: 3.2rem; */
		font-size: 2rem;
		line-height: 4.6rem;
		margin-bottom: 1.1rem;
	}
	.mv_catchphrase div{
		font-size: 1.5rem;
		line-height: 2.8rem;
	}
	.mv_catchphrase img{
		width: 4rem;
		bottom: -3.3rem;
		right: 5%;
	}

	#front_page h2{
		font-size: 6rem;
		line-height: 8.4rem;
		/* max-width: 110rem; */
		margin: auto;
	}
	#front_page h2 span{
		margin-left: 1.2rem;
		font-size: 1.6rem;
	}

	#front_main_menu{
		padding: 5rem 10rem 0.8rem;
	}
	#front_main_menu ul{
		max-width: 90rem;
	}
	#front_main_menu ul li,
	#front_main_menu ul li:nth-child(6){
		border-radius: 1.5rem;
		width: calc((100% - 7.5rem) / 6);
		margin-left: 1.5rem;
		margin-bottom: 1.5rem;
		font-size: 1.2rem;
	}
	#front_main_menu ul li:first-child{
		/* width: calc(100% / 3 - 1.6rem); */
		width: calc((100% - 3rem) / 3);
		font-size: 1.8rem;
	}
	#front_main_menu ul li:first-child{
		margin-left: 0;
	}
	#front_main_menu .nel_img,
	#front_main_menu .lke_img{
		display: block;
		width: 15vw;
		max-width: 17rem;
		height: auto;
		position: absolute;
		pointer-events: none;
	}
	#front_main_menu .nel_img{
		top: 2.4rem;
		left: 0;
	}
	#front_main_menu .lke_img{
		bottom: 1.7rem;
		right: 0;
	}


	/* TOPICS　STAGE */
	#front_topics,
	#front_stage{
		padding: 5rem 0 0rem;
	}
	#front_stage{
		padding-bottom: 5rem;
	}
	#front_topics #topics_swiper{
		width: 100%;
		margin-top: 0.5rem;
	}
	#front_topics .topics_link_list .slick-track>li{
		height: fit-content;
		max-height: 23rem;
		display: flex;
		flex-flow: column wrap;
	}
	#front_topics .read_more_btn,
	#front_stage .read_more_btn{
		width: fit-content;
		top: 5.7rem; right: 1.5rem; bottom: auto; left: auto;
		margin: 0;
	}
	#front_topics .circle__orange_1,
	#front_stage .circle__blue_1{
		width: 17rem;
		height: 17rem;
		left: -5rem;
	}

	.swiper-button_wrap{
		display: flex!important;
		flex-flow: row nowrap;
		justify-content: flex-end;
		width: 100%;
		max-width: 110rem;
		margin: 1rem auto 2rem;
	}
	.swiper-button{
		display: block;
		width: 4rem;
		height: 4rem;
		border-radius: 50%;
		background: #3C3C3C;
		cursor: pointer;
		position: relative;
	}
	.swiper-button::after{
		content: '';
		display: block;
		width: 1.6rem;
		height: 1.6rem;
		background-image: url('img/arrow_right.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		margin: auto;
		pointer-events: none;
	}
	.swiper-button.swiper-button-prev{
		transform: rotate(180deg);
		margin-right: 1rem;
	}
	.swiper-button.swiper-button-disabled{
		background: var(--lightgray);
	}
	.swiper-button.swiper-button-disabled::after{
		background-image: url('img/arrow_right_white.png');
	}
	.swiper-button{
		/* position: absolute;
		bottom: 7rem; */
	}
	.swiper-button.swiper-button-next{
		/* left: calc(100% - 5.5rem); */
	}
	.swiper-button.swiper-button-prev{
		/* left: calc(100% - 10.5rem); */
	}


	/* STAGE */

	/* COMPANY */
	#front_company_sp{
		display: none;
	}
	#front_company{
		position: relative;
		z-index: 0;
		overflow: hidden;
		display: block;
		margin: 0 auto 3rem;
		padding: 15rem 0 11.5rem;
		width: 100%;
		/* max-width: 170rem; */
		background: #18B2C833;
		border-radius: 5rem;
	}
	#front_company h2{
		max-width: 110rem;
		margin: 0 auto 6.6rem;
		position: relative;
	}
	#front_company h2 .company_bgtext{
		position: absolute;
		z-index: -1;
		top: 0; right: auto; bottom: 0; left: 0;
		margin: auto;
		display: block;
		height: 30.8rem;
		width: auto;
		max-width: unset;
	}
	#front_company h3{
		font-family: "Poppins", sans-serif;
		font-weight: 600;
		font-size: 4.4rem;
		line-height: 6rem;
		margin-bottom: 3rem;
		text-align: center;
	}
	/* COMPANY-COMPANY */
	.front_company{
		position: relative;
	}
	.front_company .company_img_office{
		position: absolute;
		top: 15rem;
		right: calc(50% - 3.3rem);
		z-index: -2;
		border-radius: 1.5rem;
		height: 51.6rem;
		width: auto;
		max-width: unset;
	}
	.company_text_wrap{
		width: calc(100% - 3rem);
		max-width: 110rem;
		height: 51.6rem;
		margin: 0 auto 10rem;
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-end;
		align-items: center;
	}
	.company_text_wrap>div{
		width: fit-content;
		min-width: calc(50% + 2rem);
		padding-top: 5rem;
	}
	.company_text_wrap>div .catchphrase{
		width: fit-content;
		white-space: nowrap;
		margin-bottom: 4.3rem;
	}
	.company_text_wrap>div .catchphrase .catchphrase_ani{
		font-size: 3.2rem;
		line-height: 5.4rem;
		font-weight: 700;
	}
	.company_text_wrap>div .catchphrase>.catchphrase_ani{
		display: block;
		background: var(--white);
		margin-bottom: 1.4rem;
		width: fit-content;
		padding: 0 1rem;
	}
	.company_text_wrap>div .catchphrase>.catchphrase_ani.catchphrase_ani_small{
		font-size: 1.6rem;
	}
	.company_text_wrap>div .sub_catchphrase{
		width: 80%;
		max-width: 45rem;
		margin: 2.5rem 0 0 auto;
		font-size: 1.6rem;
		line-height: 2.5rem;
		font-weight: 500;
	}
	.company_text_wrap>div .read_more_btn{
		margin: 2.5rem 0 0 auto;
	}
	.front_company .circle__blue_1{
		width: 29.2rem;
		height: 29.2rem;
		top: 8.4rem;
		right: -7.8rem;
		z-index: -2;
	}
	.front_company .circle__orange_1{
		width: 11.1rem;
		height: 11.1rem;
		bottom: -6.2rem;
		left: 15rem;
		z-index: -1;
	}


	/* COMPANY-SERVICE */
	/* hover */
	.front_service_link_wrap li a:hover{
		border-radius: 5rem;
	}
	.front_service_link_wrap li a:hover p{
		opacity: 1;
	}
	/* キャスティングアニメ */
	.front_casting{
		position: relative;
		padding: 2.5rem 0 10rem;
	}
	.front_casting .circle__orange_1{
		width: 20.8rem;
		height: 20.8rem;
		top: 0;
		left: -1.15rem;
	}
	.front_casting h4{
		margin: 0 auto 3.5rem;
		width: calc(100% - 3rem);
		max-width: 59.8rem;
		border-radius: 2.7rem;
		text-align: center;
		font-size: 1.6rem;
		font-weight: 500;
		line-height: 5.4rem;
		background: var(--white);
		position: relative;
	}
	.front_casting h4::after{
		content: '';
		display: block;
		height: 1.7rem;
		width: 2.5rem;
		background-image: url('img/triangle_down.png');
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		position: absolute;
		top: auto; right: 0; bottom: -1.7rem; left: 0;
		margin: auto;
		pointer-events: none;
	}
	#casting_swiper .swiper-wrapper{
		transition-timing-function: linear;
	}

	#casting_swiper .swiper-slide{
		/* width: 45vw;
		max-width: 19.3rem; */
		width: 19.3rem;
		padding: 0 1.5rem;
		position: relative;
		z-index: 1;
	}
	#casting_swiper .swiper-slide .casting_newicon{
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		background-color: #FFFF00;
		border-radius: 50%;
		display: block;
		width: 4rem;
		height: 4rem;
		line-height: 4rem;
		font-size: 1.2rem;
		text-align: center;
		font-family: var(--en);
		font-weight: var(--en-bold);
	}
	#casting_swiper .swiper-slide a{
		display: block;
		margin-top: 1rem;
	}
	#casting_swiper .swiper-slide a:hover{
		opacity: 1;
		color: var(--black);
		margin-top: 0;
		margin-bottom: 1rem;
	}
	#casting_swiper .img_wrap{
		position: relative;
		width: 100%;
		overflow: hidden;
		background: var(--black);
		margin-top: 1rem;
		-webkit-transition: var(--hover);
		-o-transition: var(--hover);
		transition: var(--hover);
	}
	#casting_swiper .img_wrap::before{
		content: '';
		display: block;
		padding-top: 142%;
	}
	#casting_swiper a:hover .img_wrap{
		margin-top: 0rem;
	}
	#casting_swiper .img_wrap img{
		display: block;
		position: absolute;
		top: 0; right: 0; left: 0; bottom: 0;
		margin: auto;
		z-index: 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#casting_swiper .front_casting_text{
		position: relative;
		width: calc(100% - 3rem);
		height: fit-content;
		padding: 1.5rem 0rem 1.5rem 3rem;
	}
	#casting_swiper .front_casting_text::before{
		content: '';
		position: absolute;
		top: -20rem; left: 1.5rem;
		padding-top: 20rem;
		z-index: -1;
		display: block;
		width: 100%;
		height: 100%;
		background: var(--white);
	}
	#casting_swiper .front_casting_text p{
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.5rem;
	}
	#casting_swiper .front_casting_text p.copyright{
		font-size: 0.8rem;
		font-weight: 400;
		line-height: 1rem;
		margin-top: 0.4rem;
	}


	/* COMPANY-PROJECT */
	.front_project ul{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
		width: calc(100% - 3rem);
		max-width: 110rem;
		margin: 0 auto;
	}
	.front_project ul li{
		width: calc(50% - 1rem);
	}
	.front_project ul li a{
		display: block;
	}
	.front_project ul li a:hover{
		margin-top: -1rem;
		margin-bottom: 1rem;
		opacity: 1;
	}
	.front_project ul li a img{
		display: block;
		width: 100%;
		height: auto;
	}


	/* RECRUIT */
	#front_recruit{
		display: block;
		position: relative;
		width: calc(100% - 4rem);
		max-width: 166rem;
		height: 29.7rem;
		margin: 3rem auto 8rem;
		z-index: 0;
	}
	#front_recruit a{
		width: 100%;
		height: 100%;
		border-radius: 5rem;
		background-image: url('img/top_img/01.jpg');
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		align-items: center;
		position: relative;
		color: var(--black);
	}
	#front_recruit a:hover{
		border-radius: 10rem;
	}
	#front_recruit a h2{
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
		line-height: 8.4rem;
	}
	#front_recruit a h2 span{
		line-height: 2.4rem;
		margin-left: 0;
	}
	#front_recruit a .front_recruit_btn{
		position: absolute;
		bottom: 3rem;
		right: 4.3rem;
		display: flex;
		flex-flow: row nowrap;
		white-space: nowrap;
		justify-content: space-between;
		align-items: center;
		width: 12.8rem;
		font-size: 1.4rem;
	}
	#front_recruit a .front_recruit_btn img{
		display: block;
		height: 2rem;
		width: auto;
	}
	#front_recruit .circle__blue_1{
		z-index: 3;
		width: 11.2rem;
		height: 11.2rem;
		top: -6.05rem;
		right: 20rem;
	}
	#front_recruit .circle__blue_2{
		z-index: 3;
		width: 4.3rem;
		height: 4.3rem;
		bottom: 5rem;
		left: 17.5rem;
	}
	#front_recruit .circle__orange_1{
		z-index: 3;
		width: 10.2rem;
		height: 10.2rem;
		bottom: -4.3rem;
		left: 23.7rem;
	}
	


	/* banner */
	#front_banner{
		padding: 0 1.5rem 7rem;
		max-width: 110rem;
		margin: 0 auto;
	}
	#front_banner ul{
		flex-flow: row nowrap;
		justify-content: center;
		margin-top: 4rem;
	}
	#front_banner ul li{
		width: calc(25% - 0.8rem);
		margin: 0 0.5rem;
	}


	/* トップページ　ここまで　------------------------------------ */

	/* トピックス リスト */
	.topics_swiper_wrap{
		margin: 0 1.5rem 0 0;
		overflow: unset;
	}
	#topics_swiper{
		overflow: visible;
	}
	#topics_swiper .swiper-wrapper{
		display: flex;
	}
	#topics_swiper .swiper-slide{
		width: fit-content;
	}
	#topics_swiper .swiper-slide:nth-child(n+3){
		display: block;
	}
	#topics_swiper .swiper-slide .topics_link{
		width: 53rem;
		height: fit-content;
		max-height: 10.5rem;
		padding: 0 1.5rem 1.9rem;
		border: none;
	}
	#topics_swiper .swiper-slide:nth-child(2) .topics_link:last-child{
		padding-bottom: 0;
	}
	.topics_link .topics_date{
		font-size: 1.2rem;
		line-height: 1.7rem;
		margin-bottom: 0.4rem;
	}
	.topics_link .topics_title{
		font-size: 1.6rem;
		line-height: 2.5rem;
		margin-bottom: 1rem;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		/* ブラウザがサポートしていない場合のフェールセーフ */
		height: fit-content;
		max-height: 5rem;
	}
	.topics_link .topics_category{
		font-size: 1.2rem;
		line-height: 2.2rem;
		border-radius: 1.2rem;
		padding: 0 1.5rem;
		margin-right: 1rem;
	}
	.topics_link .topics_hashtag{
		font-size: 1.2rem;
	}

	/* 記事がない場合 */
	.nopost_wrap{
		padding: 0.5rem 0 11.5rem;
	}
	.nopost_wrap p{
		font-size: 1.8rem;
	}
	.nopost_wrap .nopost_img{
		margin: 3.3rem auto 0;
	}


	/* ステージ　リスト */
	.stage_link{
		margin-top: 1rem;
		margin-bottom: 0;
	}
	.stage_swiper_wrap{
		margin: 0 1.5rem;
		overflow: unset;
	}
	.stage_swiper_wrap .simplebar-content-wrapper{
		overflow: visible!important;
	}
	#stage_swiper{
		padding: 0 0 1rem;
		width: unset;
		overflow: visible;
	}
	.stage_status_nowplaying{
		font-size: 1.4rem;
		line-height: 1.5rem;
		padding: 0.4rem 0.6rem 1rem;
	}
	.stage_status_nowonsale{
		bottom: -3.5rem;
		font-size: 1.6rem;
		line-height: 3.5rem;
		height: 3.5rem;
		border-bottom-right-radius: 1.7rem;
		border-bottom-left-radius: 1.7rem;
	}




	/* ページタイトル部分　共通 */
	.page_header{
		margin: 0;
		padding: 7.8rem 3rem 8rem;
	}
	.page_header.more_on{
		padding-bottom: 12rem;
	}
	.page_header h1{
		font-size: 2.4rem;
		line-height: 12.7rem;
		margin-bottom: 0rem;
	}

	/* アーカイブ　詳細ページ　共通 */
	#archive_wrap,
	#page_wrap{
		border-radius: 5rem 5rem 0 0;
		margin: -5rem 0 0;
		padding: 5rem 3rem 3.5rem;
		position: relative;
		z-index: -2;
	}

	/* ステージ一覧　トピックス一覧 アーカイブページ共通 */
	.page_deco{
		position: relative;
		z-index: -1;
	}
	.page_deco{
		z-index: -1;
	}
	.page_deco.bg_line_text{
		top: 7.8rem;
		font-size: 18rem;
		line-height: 12.7rem;
		z-index: -2;
	}

	/* ステージ一覧　アーカイブページ */
	.stage_page_deco .circle__orange_1{
		width: 31rem;
		height: 31rem;
		top: -10.1rem;
		right: -7rem;
	}
	.stage_page_deco .circle__orange_2{
		width: 7.4rem;
		height: 7.4rem;
		top: 22.2rem;
		left: 11.5rem;
	}
	.stage_page_deco .circle__blue_3{
		display: block;
	}
	.page_header_topics_wrap{
		padding: 0 0 1.5rem;
	}
	.page_header_topics_wrap .h2_wrap a{
		font-size: 1.2rem;
	}
	#page_header_topics_swiper{
		margin: 0.8rem 0 1.5rem;
	}
	#page_header_topics_swiper .swiper-slide{
		padding: 1.5rem;
		width: calc(100% - 3rem);
	}
	#page_header_topics_swiper .topics_link .topics_title{
		-webkit-line-clamp: 2;
	}
	.swiper-button_black.swiper-button-prev{
		left: -1.7rem;
	}
	.swiper-button_black.swiper-button-next{
		right: -1.7rem;
	}

	/* ステージ一覧絞り込み */
	.search_option_wrap .stage_filter_wrap{
		flex-flow: row nowrap;
		margin-bottom: 1.5rem;
	}
	.search_option_wrap .stage_filter_wrap .stage_filter_select_wrap{
		/* width: 47%; */
		/* max-width: 30.5rem; */
		width: 32rem;
	}
	.search_option_wrap .stage_filter_wrap .stage_filter_select_wrap .select_wrap{
		width: 65%;
	}
	.search_option_wrap .stage_filter{
		/* width: calc((53% - 1.5rem) / 2); */
		/* width: calc((100% - 32rem) / 2); */
		padding: 1.1rem 0;
		margin-bottom: 0;
		margin-right: 1.5rem;
	}
	.stage_filter_select_wrap{
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-end;
		align-items: center;
		white-space: nowrap;
		width: 100%;
	}
	.stage_filter_select_wrap p{
		margin-bottom: 0;
		margin-right: 1.2rem;
	}

	.more_search_wrap .stage_filter_select_wrap{
		justify-content: flex-start;
		margin-bottom: 1rem;
	}
	.more_search_wrap .stage_filter_select_wrap p{
		width: 12rem;
		margin: 0;
	}
	.more_search_wrap .stage_filter_select_wrap .select_wrap{
		width: calc(100% - 12rem);
	}

	/* サムネイル表示リスト表示切り替えボタン */
	.display_switching{
		margin: 0 auto 1.5rem;
	}
	.display_switching label{
		width: 2.2rem;
		height: 2.2rem;
		margin-left: 2.3rem;
	}
	/* 標準表示（サムネイル） */
	#stage_link_list{
		max-width: 110rem;
		margin: auto;
	}
	#stage_link_list li{
		width: calc((100% - 5rem) / 3);
		margin-bottom: 1.5rem;
		margin-left: 2.5rem;
	}
	#stage_link_list li:nth-child(2n){
		margin-left: 2.5rem;
	}
	#stage_link_list li:nth-child(3n+1){
		margin-left: 0;
	}
	/* リスト表示 */
	.display_list .stage_detail{
		padding-top: 1rem!important;
		width: calc(75% - 3rem)!important;
		margin-left: 3rem!important;
	}
	.display_list #stage_link_list>li {
		width: 100%!important;
		padding: 1rem 0 2rem!important;
		margin-bottom: 1rem!important;
	}
	#stage_link_list .stage_detail ul li{
		margin-top: 1.5rem;
	}
	#stage_link_list .stage_detail .stage_status_nowplaying,
	#stage_link_list .stage_detail .stage_status_nowonsale{
		margin: 0 0.7rem 1.2rem 0;
		padding: 0.5rem 2rem;
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	#stage_link_list .stage_detail .stage_title {
		font-size: 2rem;
		line-height: 2.9rem;
		margin-bottom: 2rem;
	}
	#stage_link_list .stage_detail ul{
		font-size: 1.6rem;
	}
	#stage_link_list .stage_detail ul li a{
		font-size: 1.4rem;
	}
	#stage_link_list .stage_detail ul div{
		margin: 0.6rem 0 0;
		max-width: 41rem;
	}


	/* トピックス一覧　アーカイブページ */
	.topics_page_deco .circle__orange_1{
		width: 20.1rem;
		height: 20.1rem;
		top: -01.1rem;
		right: -6.2rem;
	}
	.topics_page_deco .circle__orange_2{
		width: 12.8rem;
		height: 12.8rem;
		top: 9.6rem;
		left: -1.1rem;
	}
	.topics_page_deco .circle__blue_3{
		width: 5.3rem;
		height: 5.3rem;
		top: 20rem;
		right: 12.6rem;
	}
	#archive_wrap .topics_link_list .topics_link{
		padding: 1.5rem;
	}
	#archive_wrap .topics_link_list .topics_link:last-child{
		border-bottom: none;
	}
	
	/* トピックス一覧 絞り込み */
	#topics_category_swiper_wrap [class*="simplebar-"]{
		overflow: visible;
	}
	#topics_category_swiper_wrap #topics_category_swiper{
		overflow: hidden;
	}
	.search_option_wrap.search_option_topics_category{
		width: 100%;
		margin: 0 auto;
	}
	#topics_category_swiper_wrap{
		position: relative;
		margin: 3rem 0 0;
		width: unset;
	}
	#topics_category_swiper_wrap p{
		display: none;
	}
	#topics_category_swiper_wrap .swiper-scrollbar{
		display: none;
	}
	.swiper-wrapper.topics_category_filter_wrap{
		overflow: unset;
		padding-bottom: 0;
		margin: 0;
	}
	a.swiper-slide.topics_category_filter{
		font-size: 1.4rem;
		line-height: 2rem;
		width: 11.9rem;
		height: 4.8rem;
		margin-right: 1rem;
	}
	a.swiper-slide.topics_category_filter:hover{
		color: var(--blue);
	}
	a.swiper-slide.topics_category_filter.active:hover{
		color: var(--white);
	}
	a.swiper-slide.topics_category_filter:first-child{
		margin-left: 0;
	}
	a.swiper-slide.topics_category_filter:last-child{
		margin-right: 1rem;
	}
	#topics_category_swiper_wrap .swiper-button_black{
		display: block;
	}

	.tag_list_wrap{
		padding: 3rem 0 0;
	}
	.tag_list_wrap>a{
		margin: 0.7rem 0.5rem 0 0;
	}
	.tag_list_wrap>a.tag_s{
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	.tag_list_wrap>a.tag_m{
		font-size: 1.4rem;
		line-height: 2rem;
	}
	.tag_list_wrap>a.tag_l{
		font-size: 1.8rem;
		line-height: 2.1rem;
	}

	/* 動画配信・グッズなど一覧　アーカイブページ */
	.contents_page_deco .circle__orange_1{
		width: 17.5rem;
		height: 17.5rem;
		top: 20.6rem;
		right: -4.5rem;
	}
	.contents_page_deco .circle__orange_2{
		width: 20.6rem;
		height: 20.6rem;
		top: 33rem;
		left: -7.3rem;
	}
	.contents_page_deco .circle__blue_3{
		width: 5.5rem;
		height: 5.5rem;
		top: 13.8rem;
		right: 8em;
	}
	#others_menu ul{
		width: 100%;
		max-width: 100rem;
		padding: 0;
		justify-content: center;
	}
	#others_menu ul li{
		width: calc(100% / 9);
		font-size: 1.2rem;
	}
	.header_contents .search_option_wrap .stage_filter_wrap .stage_filter_select_wrap{
		justify-content: center;
		width: 100%;
		max-width: 90rem;
	}
	/* .header_contents .stage_filter_select_wrap .select_wrap{
		width: 100%;
	} */
	.contents_archive_wrap h2{
		margin-bottom: 3rem;
	}
	#contents_link_list li,
	#contents_link_list li:nth-child(3n){
		width: calc((100% - 7.2rem) / 4);
		margin-right: 2.4rem;
		margin-bottom: 3rem;
	}
	#contents_link_list li:nth-child(4n){
		margin-right: 0;
	}
	#contents_link_list li a{
		display: block;
	}
	#contents_link_list li a:hover{
		margin-top: -1rem;
		margin-bottom: 1rem;
	}
	#contents_link_list .contents_title{
		font-size: 1.4rem;
		line-height: 2.4rem;
		margin-top: 0.9rem;
	}

	/* ページャ */
	.pager,
	.wp-pagenavi{
		padding: 4.5rem 0 0;
	}


	/* ステージ詳細ページ */
	.stage_page_mv_wrap{
		width: calc(50% - 9rem);
	}
	.stage_detail_wrap{
		width: calc(50% + 2rem);
		max-width: 58.4rem;
		/* padding: 11rem 1.5rem 1.5rem 5.5rem; */
		padding: 9rem 1.5rem 1.5rem 5.5rem;
		margin: auto 0;
	}
	#article_page.stage_page .header_stage{
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		align-items: stretch;
	}
	#article_page.stage_page .header_stage .simplebar-track{
		display: unset;
	}

	#stage_mv_swiper{
		height: 100%;
	}
	#stage_mv_swiper .swiper-slide::before{
		display: none;
	}
	#stage_mv_swiper .swiper-slide .bg_filter_img{
		/* position: unset;
		height: 100%; */
	}
	#stage_mv_swiper .swiper-slide::after{
		content: '';
		display: block;
		width: 5rem;
		height: 100%;
		position: absolute;
		top: 0;
		right: 0;
		background-color: var(--white);
	}
	.stage_mv_img_wrap{
		width: 80%;
		max-width: 46rem;
		position: relative;
		margin: 11rem 0 12rem auto;
	}
	#article_page.stage_page #swiper_pagination_wrap,
	#article_page.stage_page #swiper_pagination_wrap .swiper-pagination{
		/* position: unset; */
		flex-flow: row nowrap;
		width: fit-content;
	}
	#article_page.stage_page #swiper_pagination_wrap{
		top: 60vw;
		right: 0;
		bottom: auto;
		width: 80%;
		max-width: 46rem;
		justify-content: center;
	}
	#article_page.stage_page #swiper_pagination_wrap .swiper-pagination{
		margin-left: 1rem;
		margin-top: 0;
	}
	#article_page.stage_page #swiper_pagination_wrap .swiper-pagination .circle{
		/* margin: 0 0.8rem 0 0; */
	}

	.stage_detail_wrap .stage_status_wrap{
		margin-bottom: 1.5rem;
	}
	.stage_detail_wrap .stage_status_nowplaying,
	.stage_detail_wrap .stage_status_nowonsale{
		font-size: 1.2rem;
		line-height: 1.7rem;
		padding: 0.5rem 2rem;
		height: fit-content;
	}
	.stage_detail_wrap h1.stage_title{
		font-size: 2rem;
		line-height: 2.4rem;
		margin-bottom: 3.2rem;
	}
	.stage_detail_wrap .performance_date dl{
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-start;
		align-items: flex-start;
		margin-bottom: 1.5rem;
	}
	.stage_detail_wrap .performance_date dl dt{
		white-space: nowrap;
		margin-right: 1.2rem;
		width: 10rem;
		padding: 0.5rem 0;
		text-align: center;
	}
	.stage_detail_wrap .performance_date dl dd{
		font-size: 1.3rem;
		flex: 1;
	}
	#stage_page_others_menu{
		margin: 0 0 1.7rem;
	}
	#stage_page_others_menu ul{
		padding: 0 1.5rem 0 0;
		justify-content: flex-start;
	}
	#stage_page_others_menu ul li{
		margin-left: 0.9rem;
	}
	.stage_date_note{
		padding: 0;
	}
	.introduction_wrap{
		margin: 3.7rem auto 2.5rem;
		padding: 2rem;
	}
	.introduction_wrap .introduction_title{
		left: 1.4rem;
		right: auto;
	}
	.introduction_wrap p{
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	.btn__orange_arrow{
		width: fit-content;
		padding: 1rem 6.5rem;
	}

	#stage_page_topics_wrap{
		margin: 6rem auto 3rem;
	}
	#stage_page_topics_wrap #topics_link_list{
		max-height: 24.8rem;
		margin-bottom: 1.9rem;
	}
	#stage_page_topics_wrap #topics_link_list li{
		padding: 2rem;
	}
	#stage_page_topics_wrap #topics_link_list li:hover{
		color: var(--blue);
	}
	#stage_page_topics_wrap #topics_link_list .topics_date{
		font-size: 1.2rem;
		line-height: 1.7rem;
		margin-bottom: 0.4rem;
	}
	#stage_page_topics_wrap #topics_link_list .topics_title{
		font-size: 1.4rem;
		line-height: 2rem;
	}

	#stage_page_topics_wrap .read_more_btn{
		margin: 0 0 0 auto;
	}


	.stage_article .details_content{
		border-radius: 0 0 1rem 1rem;
		background-color: var(--white);
		padding: 2.2rem 3rem 4.5rem;
	}

	/* ステージ詳細　共通 */
	.stage_archive_content_wrap dl dt{
		padding: 1rem 2rem;
	}
	.dl_details .dl_summary{
		padding: 1rem 3.6rem 1rem 2rem;
	}
	.dl_details .dl_summary:before,
	.dl_details .dl_summary:after{
		right: 1.5rem;
	}

	/* ステージ詳細　期間・劇場 */
	.stage_article #schedule .details_content{
		padding: 2.2rem 3rem 4.5rem;
	}
	#schedule li{
		padding: 3rem 0;
	}
	#schedule .theater_list .schedule_head{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	#schedule .theater_list .schedule_head>div{
		width: calc(100% - 20rem);
	}
	#schedule .theater_list .period{
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin-bottom: 1rem;
	}
	#schedule .theater_list .theater{
		height: 2rem;
		line-height: 2rem;
		margin: 0;
		max-width: 100%;
	}
	#schedule .theater_list .theater a:last-child{
		width: 1.4rem;
		margin-left: 1.3rem;
	}
	.js_schedule_open_btn{
		width: 20rem;
		border-radius: 2.3rem;
		font-size: 1.4rem;
		line-height: 4.6rem;
		margin: 0 0 0 auto;
	}
	.js_schedule_open_btn:before,
	.js_schedule_open_btn:after{
		right: 1.4rem;
	}
	.js_schedule_open_btn:hover{
		background-color: var(--blue);
		color: var(--white)!important;
	}
	.js_schedule_open_btn:hover:before,
	.js_schedule_open_btn:hover:after{
		background-color: var(--white);
	}
	.js_schedule_open_btn.active:hover{
		background-color: var(--lightgray);
		color: var(--blue)!important;
	}
	.js_schedule_open_btn.active:hover:before,
	.js_schedule_open_btn.active:hover:after{
		background-color: var(--blue);
	}

	#schedule li.active .schedule_wrap{
		padding-top: 2.5rem;
	}
	#schedule .schedule_wrap table{
		margin-bottom: 1.8rem;
	}
	#schedule .schedule_wrap table + table{
		margin-top: 2.5rem;
	}
	#schedule .schedule_wrap table thead th{
		padding: 0.5rem 0;
	}
	#schedule .schedule_wrap table tbody td .closed{
		height: calc(100% - 7.8rem);
		font-size: 1.3rem;
	}
	.schedule_note{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	/* チケット */
	#ticket .playguide{
		margin: 1.8rem auto 1.1rem;
	}
	#ticket .playguide li{
		width: calc((100% - 6rem) / 3 );
		margin-right: 3rem;
	}
	#ticket .playguide li a{
		height: 5.5rem;
		line-height: 5.5rem;
	}
	#ticket .playguide_note{
		margin-top: 1.8rem;
	}
	/* ステージ詳細　シリーズ公演 */
	#stage_series{
		padding: 3rem 0 3.8rem;
	}
	.stage_series_title{
		font-size: 1.8rem;
		line-height: 2.6rem;
		margin: 0 auto 0.7rem;
		width: calc(100% - 3rem);
		max-width: 90rem;
	}
	.stage_series_title span{
		font-size: 10rem;
		line-height: 14rem;
		top: -6.55rem;
	}
	.stage_series_list_wrap{
		flex-flow: row wrap;
		width: calc(100% - 3rem);
		max-width: 90rem;
		padding: 0 0 1rem 0;
		margin: 0 auto;
	}
	.stage_series_list_wrap .stage_link{
		width: calc((100% - 6rem) / 5);
		max-width: 17rem;
		margin-right: 1.5rem;
	}
	.stage_series_list_wrap .stage_link:nth-child(5n){
		margin-right: 0;
	}

	#stage_footer{
		padding: 3rem 1.5rem 2.5rem;
	}
	#stage_footer .btn__orange_arrow{
		margin: 0 auto;
	}
	[class*="btn__"][class*="_orange"][class*="_arrow"]:hover::after{
		background-image: url('img/arrow_right_orange.svg');
	}
	#stage_footer .footer_text{
		margin-top: 3rem;
	}
	#stage_footer .copy{
		margin-top: 4rem;
	}
	/* 固定フッターメニュー */
	#fix_footer_menu{
		width: 35.5rem;
	}
	/* モーダル */
	.modal_toggle{
		top: 4rem;
		right: 3rem;
	}
	.modal_inner{
		padding: 7rem 1.5rem 7rem;
		height: calc(100% - 14rem);
	}
	.modal_title{
		font-size: 3rem;
		line-height: 4.3rem;
		margin: 0 auto 1.7rem;
	}
	/* ステージ詳細　infoモーダル */
	.info_modal .modal_info_text{
		padding: 3.5rem 4rem 5rem;
		margin-bottom: 2.7rem;
		font-size: 1.6rem;
		line-height: 2.6rem;
		height: calc(100vh - 30rem);
	}
	
	


	/* 動画配信・グッズなど詳細ページ */
	#article_page .contents_page_deco .circle__orange_1{
		width: 17.5rem;
		height: 17.5rem;
		top: 20.6rem;
		right: -4.5rem;
	}
	#article_page .contents_page_deco .circle__orange_2{
		width: 20.6rem;
		height: 20.6rem;
		top: 33rem;
		left: -7.3rem;
	}
	#article_page .contents_page_deco .circle__blue_3{
		width: 5.5rem;
		height: 5.5rem;
		top: 15.7rem;
		right: 13.8rem;
	}
	.contents_page_title_wrap{
		margin: 3.2rem auto 0;
	}
	.contents_page_title_wrap .img_wrap{
		width: 25.65rem;
	}
	.contents_page_title_wrap .contents_page_detail_wrap{
		width: calc(100% - 28.65rem);
	}
	.contents_page_detail_wrap h2{
		font-size: 3rem;
		line-height: 4.4rem;
		margin-bottom: 2rem;
	}
	.contents_page_detail_wrap .performance_date{
		margin-bottom: 2rem;
	}
	.contents_page_detail_wrap .performance_date dt{
		font-size: 1.4rem;
		line-height: 2rem;
		padding: 0.3rem 1rem;
	}
	.contents_page_detail_wrap .performance_date dd{
		font-size: 1.4rem;
		line-height: 2rem;
		padding: 0.3rem 1.5rem;
	}
	.contents_detail_link{
		font-size: 1.4rem;
		line-height: 2rem;
	}


	.contents_detail_wrap{
		padding: 0 0 4rem;
		max-width: 90rem;
		margin: 0 auto;
	}
	.contents_detail_wrap h3{
		font-size: 1.8rem;
		line-height: 4.3rem;
		height: 4.3rem;
		padding: 0.7rem 1.5rem;
	}
	.contents_detail_wrap .others_group{
		margin-top: 4rem;
	}
	.contents_detail_wrap .others_group:first-child{
		margin-top: 0;
	}
	.icon_list_wrap li,
	.icon_list_wrap li:nth-child(3n){
		width: calc((100% - 7rem) / 6);
		margin-right: 1.4rem;
		margin-bottom: 1rem;
	}
	.icon_list_wrap li:nth-child(6n){
		margin-right: 0;
	}
	.contents_detail_text_wrap p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}


	/* トピックス詳細ページ */
	#article_page .topics_page_deco .circle__orange_1{
		width: 5.3rem;
		height: 5.3rem;
		top: 20rem;
		right: 12.6rem;
	}
	#article_page .topics_page_deco .circle__orange_2{
		width: 12.8rem;
		height: 12.8rem;
		top: 9.6rem;
		left: -1.1rem;
	}
	#article_page .topics_page_deco .circle__blue_3{
		width: 20.1rem;
		height: 20.1rem;
		top: -1.1rem;
		right: -6.2rem;
	}
	#page_wrap.topics_article_page_wrap,
	#page_wrap.page_wrap_padding{
		border-radius: 5rem;
		padding: 6rem 2rem;
	}

	.article_title{
		padding: 1rem 0 3rem;
		margin: 0 auto 4rem;
	}
	.article_title h2{
		font-size: 3rem;
		line-height: 4.4rem;
		margin-bottom: 2.2rem;
	}
	.article_title_top{
		margin-bottom: 2.3rem;
	}
	.article_title_top .tag{
		padding: 0.2rem 1.5rem;
		border-radius: 1.2rem;
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	.article_title_top a{
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	.article_title_bottom .topics_date{
		margin-right: 2.1rem;
		font-size: 1.2rem;
		line-height: 1.8rem;
	}
	.article_title_bottom div a{
		margin-right: 1.5rem;
		font-size: 1.2rem;
		line-height: 1.8rem;
	}

	/* 記事タグ */
	#article{
		margin: 4rem auto 4.5rem;
	}
	#article>*{
		margin-bottom: 4rem;
	}
	#article h2,
	#article h3{
		font-size: 2.4rem;
		line-height: 3.5rem;
		margin-bottom: 3.7rem;
	}
	#article h4{
		font-size: 1.8rem;
		line-height: 2.6rem;
		padding: 1.5rem;
	}
	#article h5{
		font-size: 1.6rem;
		line-height: 2.4rem;
		padding-bottom: 1rem;
	}
	#article p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	#article a{
	}
	#article table{
		border-spacing: 0 0.8rem;
	}
	#article table th,
	#article table td{
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	#article table th{
		padding: 1.2rem 1.8rem 1.2rem 1.7rem;
	}
	#article table td{
		padding: 1.2rem 0 1.2rem 2rem;
	}
	#article .frame{
		padding: 2.5rem;
	}
	#article .frame h5{
		margin-bottom: 2rem;
		margin-top: 4rem;
	}
	#article small{
		font-size: 1rem;
		line-height: 1.5rem;
	}
	#article hr{
		margin: 3.8rem auto 4.8rem;
	}
	#article figure{
	}
	#article figure figcaption{
		margin-top: 0.9rem;
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	#article figure.landscape{
		max-width: 75rem;
	}
	#article figure.portrait{
		max-width: 42.6rem;
	}
	#article figure img{
	}
	#article .gallery{
		margin-bottom: 1rem;
	}
	#article [class*="gallery-columns"]{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
	#article .gallery-columns-2 .gallery-item{
		width: calc((100% - 1rem) / 2);
	}
	#article .gallery-columns-3 .gallery-item{
		width: calc((100% - 2rem) / 3);
	}
	#article .gallery-columns-4 .gallery-item{
		width: calc((100% - 3rem) / 4);
	}
	#article .gallery-columns-5 .gallery-item{
		width: calc((100% - 4rem) / 5);
	}
	#article .gallery-columns-6 .gallery-item{
		width: calc((100% - 5rem) / 6);
	}
	#article .gallery-columns-7 .gallery-item{
		width: calc((100% - 6rem) / 7);
	}
	#article .gallery-columns-8 .gallery-item{
		width: calc((100% - 7rem) / 8);
	}
	#article .gallery-columns-9 .gallery-item{
		width: calc((100% - 8rem) / 9);
	}
	#article .gallery-columns-10 .gallery-item{
		width: calc((100% - 9rem) / 10);
	}
	#article .gallery .gallery-item,
	#article .gallery .gallery-item img{
		margin-bottom: 0;
		margin-right: 0;
		margin-left: 0;
	}
	#article .block-media-text{
		flex-flow: row nowrap;
		align-items: center;
		width: 100%;
	}
	#article .block-media-text .block-media-text__media{
		width: calc((100% - 6rem) / 4);
		margin: 0;
	}
	#article .block-media-text .block-media-text__content{
		width: calc((100% - 3rem - calc((100% - 6rem) / 4)));
		margin-left: 3rem;
		margin-top: 0;
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	#article .block-columns{
		flex-flow: row nowrap;
		justify-content: center;
	}
	#article .block-columns>*{
		/* width: calc(50% - 1rem); */
		margin-bottom: 0;
		width: calc(25% - 1.5rem);
		margin-right: 2rem;
	}
	#article .block-columns>*:last-child{
		margin-right: 0;
	}
	#article .block-columns .block-columns>*{
		width: calc((100% - 2rem) / 2);
		margin-bottom: 0;
	}
	.return_link{
		line-height: 2rem;
		margin: 0 auto;
	}
	.return_link:before{
		height: 2rem;
	}
	.return_link:hover{
		text-decoration: underline;
	}
	/* 関連記事 */
	.related_article{
		padding: 0 0rem 5rem;
	}
	.related_article_title{
		padding: 5rem 0 2rem;
	}


	/* 開幕のお知らせ */
	.openingday_page .bg_line_text{
		font-size: 14vw;
	}
	.openingday_page_deco .circle__orange_1{
		width: 17.1rem;
		height: 17.1rem;
		top: 21.2rem;
		right: -5.3rem;
	}
	.openingday_page_deco .circle__orange_2{
		width: 12.8rem;
		height: 12.8rem;
		top: 21.8rem;
		left: -4.4rem;
	}
	.openingday_page_deco .circle__blue_3{
		width: 5.5rem;
		height: 5.5rem;
		top: 15.7rem;
		left: 9rem;
	}
	.openingday_page .stage_title{
		font-size: 1.4rem;
		line-height: 2.4rem;
		margin-top: 0.9rem;
	}
	.header_openingday .search_option_wrap{
		margin-top: 3rem;
	}
	/* 開幕のお知らせ　記事 */
	#nelmaga{
		margin: 5rem auto 0;
		padding: 5rem 0 6rem;
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
	}
	#nelmaga>div{
		width: calc(100% - 17.5rem);
		padding-left: 4.1rem;
	}
	#nelmaga .img_wrap{
		width: 13.4rem;
		margin: 0;
		padding: 0;
	}
	#nelmaga .nelmaga_vol{
		font-size: 2.4rem;
		line-height: 3.5rem;
		margin-bottom: 1.3rem;
	}
	#nelmaga p{
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin-bottom: 1.2rem;
	}

	/* ネルマガバックナンバー */
	.backnumber_link_list{
		flex-flow: row wrap;
		justify-content: flex-start;
		align-items: flex-end;
		max-width: 110rem;
	}
	.backnumber_link_list li{
		width: calc((100% - 5rem) / 3);
		margin-right: 2.5rem;
		margin-bottom: 3.5rem;
	}
	.backnumber_link_list li:nth-child(3n){
		margin-right: 0;
	}
	.vol_wrap{
		padding: 1rem 1rem;
	}
	.vol_wrap .nelmag_vol{
		font-size: 2rem;
		line-height: 2.9rem;
	}
	.vol_wrap .nelmag_date{
		font-size: 1.4rem;
		line-height: 2rem;
	}
	a:hover .vol_wrap{
		background-color: var(--blue);
	}
	a:hover .vol_wrap .nelmag_vol{
		color: var(--white);
	}
	a:hover .vol_wrap .nelmag_date{
		color: var(--white);
	}

	/* ネルケハ！チケット先行受付　一覧 */
	#tickets_link_list li{
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}
	#tickets_link_list a{
		align-items: center;
	}
	#tickets_link_list .img_wrap{
		width: 13.5rem;
	}
	#tickets_link_list .tickets_detail{
		width: calc(100% - 16.5rem);
	}
	#tickets_link_list .contents_title{
		font-size: 2rem;
		line-height: 2.9rem;
		margin-bottom: 1.4rem;
	}
	#tickets_link_list .tickets_detail div p{
		font-size: 1.6rem;
		line-height: 2.6rem;
		font-weight: var(--jp-regular);
	}
	/* ネルケハ！チケット先行受付　記事 */
	h2.tickets_title{
		font-size: 3rem!important;
		line-height: 4.4rem!important;
		margin-bottom: 4rem!important;
	}
	
	
	/* -----　固定ページ　共通　----- */
	.fixedpage_header{
		padding-top: 8.8rem;
	}

	/* ウェルカムキッズプロジェクト */
	#fixedpage_wkp h2{
		font-size: 3.6rem;
		line-height: 5.2rem;
		margin-bottom: 4.2rem;
	}
	#fixedpage_wkp h3{
		font-size: 1.8rem;
		line-height: 2.6rem;
		padding: 1.5rem 0;
		margin: 5.5rem auto 2.2rem;
	}
	#fixedpage_wkp_contents{
		padding: 7rem 3rem 8.3rem;
	}
	#fixedpage_wkp_contents::before{
		border-radius: 5rem;
	}
	#fixedpage_wkp_contents>p{
		font-size: 1.8rem;
		line-height: 3.4rem;
	}
	.wkp_policy{
		margin: 3.5rem auto 6.4rem;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
	}
	.wkp_policy ul{
		width: calc(50% - 0.5rem);
	}
	.wkp_policy li{
		margin-bottom: 1.5rem;
		padding: 2.5rem 2rem;
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.wkp_endtext{
		text-align: center;
		width: 100%;
	}
	.wkp_endtext p{
		font-size: 1.8rem;
		line-height: 3.4rem;
	}
	.wkp_endtext img{
		height: 15.1rem;
		bottom: auto;
		top: 0.7rem;
	}
	.wkp_endtext img.nel_img{
		right: auto;
		left: -2.5rem;
	}
	.wkp_endtext img.lke_img{
		left: auto;
		right: -2.5rem;
	}

	/* ネルケウエスト */
	#fixedpage_nw h2{
		font-size: 3.6rem;
		line-height: 5.2rem;
		margin-bottom: 4.2rem;
	}
	#fixedpage_nw h3{
		font-size: 1.8rem;
		line-height: 2.6rem;
		padding: 1.5rem 0;
		margin: 5.5rem auto 2.2rem;
	}
	#fixedpage_nw_contents{
		padding: 7rem 3rem 5.3rem;
	}
	#fixedpage_nw_contents::before{
		border-radius: 5rem;
	}
	#fixedpage_nw_contents>p{
		font-size: 1.8rem;
		line-height: 3.4rem;
	}
	.nw_contents_wrap{
		display: flex;
		justify-content: space-between;
		margin-bottom: 3rem;
	}
	.nw_policy{
		width: 55%;
	}
	.nw_policy>p{
		line-height: 2.8rem;
	}
	.nw_wel{
		width: calc(45% - 3rem);
		margin: 0;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;

	}
	.wel_txt_wrap{
		font-size: 1.4rem;
	}
	.wel_img_wrap{
		margin: 0.5rem auto 0;
	}
	.nw_wel li{
		margin-bottom: 1.5rem;
		padding: 2.5rem 1.5rem;
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.nw_wel ul li p{
		line-height: 1.5;
	}
	.nw_banner>ul{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-around;
		align-items: center;
	}
	.nw_banner>ul>li{
		width: calc(50% - 1rem);
	}
	.nw_banner a:hover{
		margin-top: -1rem;
		padding-bottom: 1rem;
	}
	.nw_wel li>p{
		font-size: 1.3rem;
	}

	/* お問い合わせ　一覧 */
	.contact_page .bg_line_text{
		font-size: 14rem;
		line-height: 10rem;
	}
	.contact_page_deco .circle__orange_1{
		width: 21.3rem;
		height: 21.3rem;
		top: 21.4rem;
		left: -2.8rem;
	}
	.contact_page_deco .circle__blue_2{
		width: 9.3rem;
		height: 9.3rem;
		top: 11.1rem;
		right: -2.5rem;
	}
	.contact_link_list{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		align-items: stretch;
	}
	.contact_link_list a{
		width: calc(50% - 4.2rem);
	}
	.contact_link_list a:hover::before{
		width: calc(100% - 0.4rem);
		height: calc(100% - 0.4rem);
		border: 0.2rem solid var(--blue);
	}

	/* お問い合わせフォーム */
	.contact_form_page_inner{
		width: 100%;
		margin: 3rem auto 4rem;
	}
	/* 公演カレンダー */
	.calendar_page .bg_line_text{
		font-size: 14rem;
		line-height: 9rem;
	}
	.calendar_page_deco .circle__orange_1{
		width: 16rem;
		height: 16rem;
		top: 15.2rem;
		right: -2.4rem;
	}
	.calendar_page_deco .circle__orange_2{
		width: 8.1rem;
		height: 8.1rem;
		top: 17.3rem;
		left: 7rem;
	}
	.calendar_page_deco .circle__blue_3{
		width: 5rem;
		height: 5rem;
		top: 10.7rem;
		right: 14.3rem;
	}

	.calendar_page .h2_wrap{
		margin-bottom: 2rem;
		justify-content: center;
		position: relative;
	}
	.calendar_page .h2_wrap .month_pager{
		position: absolute;
		right: 0;
	}
	.month_pager li{
		margin-left: 1.5rem;
	}
	.page_thismonth{
		padding: 0.4rem 1.5rem;
		border-radius: 0.5rem;
	}
	.month_pager li div:hover{
		display: block;
		width: 2.8rem;
		height: 2.8rem;
		border-radius: 50%;
		background-color: var(--blue);
		background-image: url('img/arrow_right_white3.png');
	}
	.page_thismonth:hover{
		background-color: var(--lightgray);
	}

	#calendar_table th,
	#calendar_table td{
		font-size: 1.2rem;
	}
	#calendar_table td{
		line-height: 1.8rem;
	}
	[class*="calendar_data__"] span{
		font-size: 1.2rem;
	}
	[class*="calendar_data__"]:hover{
		z-index: 2;
	}
	[class*="calendar_data__"]:hover .hover_title{
		color: var(--black);
		font-size: 1.2rem;
		line-height: 1.7rem;
		display: block;
		/* white-space: nowrap; */
		background: var(--white);
		width: fit-content;
		padding: 1.2rem 2rem;
		border: 0.1rem solid var(--gray);
		border-radius: 1rem;
		box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 15%);
		position: absolute;
		top: 2.5rem;
		left: 2rem;
		z-index: 1;
	}
	.calendar_note{
		margin-top: 1.9rem;
		font-size: 1.2rem;
		line-height: 1.7rem;
	}

	/* 404 */
	#page404 .page_header{
		padding-top: 13.4rem;
		padding-bottom: 7.5rem;
	}
	#page404 .page_header p{
		font-size: 1.6rem;
		line-height: 2.4rem;
		margin: 0 auto 4.2rem;
	}
	#page404 .page_header p.blue{
		font-size: 6rem;
		line-height: 8.4rem;
		margin: 1.2rem auto 0;
	}
	#page404 .read_more_btn{
		margin: 0 auto;
	}

	/* 会社情報　共通 */
	.company_page{overflow: hidden;}
	.company_page #archive_wrap.br_all{
		border-radius: 5rem;
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.company_page .company_page_deco{
		position: relative;
		z-index: 1;
	}
	.company_page .company_page_deco img{
		position: fixed;
		display: block;
	}
	.company_page .company_page_deco img.nel{
		top: 10rem;
		left: -5rem;
		height: 15rem;
		width: auto;
	}
	.company_page .company_page_deco img.lke{
		top: 15rem;
		right: -5rem;
		height: 16rem;
		width: auto;
	}
	.page_mv{
		margin: 0 auto 5rem;
		max-width: 110rem;
	}
	.page_mv_img{
		margin-bottom: 6rem;
	}
	.page_mv_img img{
		height: 35rem;
		border-radius: 2rem;
	}
	.img_copyright{
		padding-top: 0.5rem;
	}
	.page_mv_catch{
		margin-bottom: 10rem;
		margin-top: -22rem;
	}
	.page_mv_catch span{
		font-size: 3.2rem;
		line-height: 5.4rem;
		width: fit-content;
		background-color: var(--white);
		position: relative;
		margin-bottom: 1.4rem;
	}
	.page_mv_text{
		font-size: 1.8rem;
		line-height: 4rem;
	}
	/* ギャラリースワイパー */
	.gallery_wrap .gallery_title,
	.casting_list_wrap .casting_list_title{
		font-size: 10rem;
		line-height: 14rem;
		margin-bottom: -4rem;
	}
	#gallery_swiper_wrap{
		position: relative;
		width: calc(100% - 10rem);
		max-width: 110rem;
		margin: 0 auto;
		margin-bottom: 7rem;
	}
	#gallery_swiper{
	}
	#gallery_swiper_wrap .swiper-pagination{
    bottom: -3rem;
	}
	#gallery_swiper_wrap .swiper-button-prev,
	#gallery_swiper_wrap .swiper-button-next{
		display: block;
		position: absolute;
		width: 1.2rem;
		height: 2.2rem;
	}
	#gallery_swiper_wrap .swiper-button-prev{
		right: -2.4rem;
		left: auto;
		transform: rotate(0deg);
	}
	#gallery_swiper_wrap .swiper-button-next{
		left: -2.4rem;
		right: auto;
		transform: rotate(180deg);
	}

	#service_link .front_service_link_wrap{
		padding: 5.7rem 0;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
	}
	#service_link .front_service_link_wrap li{
		width: calc((100% - 5rem) / 3);
		max-width: 35rem;
		margin-bottom: 0;
	}
	#service_link .front_service_link_wrap li a::before{
		padding-top: 7.3rem;
	}
	#service_link .front_service_link_wrap li a p{
		font-size: 1.1rem;
		line-height: 1.7rem;
	}
	#service_link .front_service_link_wrap li a:after{
		right: 1.6rem;
		bottom: 1.7rem;
	}
	/* 会社情報 */
	#company_index_page .page_deco.bg_line_text{
		font-size: 17vw;
		line-height: 12vw;
	}
	#company_index_page .company_bg_img_wrap{
		height: 62rem;
	}
	#company_index_page .page_header{
		padding: 7.8rem 3rem 8rem;
	}
	#company_index_page.page_wrap h2{
		margin-bottom: 3rem;
	}
	.corp_archive_wrap .corp_text{
		font-size: 2rem;
		line-height: 4rem;
	}
	#company_index_page .company_text_wrap{
		width: calc(100% - 6rem);
	}
	#company_index_page .company_text_wrap>div .catchphrase .catchphrase_ani{
		font-size: 3.2rem;
		line-height: 5.4rem;
	}
	#company_index_page #corp_service_list h2,
	:lang(en) #company_index_page #en_message h2,
	:lang(en) #company_index_page #en_service h2{
		font-size: 4.4rem;
		line-height: 6.1rem;
	}
	#company_index_page #corp_service_list h2 span{
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	#company_index_page #corp_service_list .front_service_link_wrap li {
		width: calc((100% - 6rem)/4);
		margin-bottom: 0;
	}
	#company_index_page #corp_service_list .front_service_link_wrap li a:after{
		width: 1.5rem;
		height: 1.5rem;
		right: 2.5rem;
		bottom: 2.5rem;
	}
	#company_index_page #corp_service_list .corp_service_list li{
		width: calc(50% - 1rem);
		margin-bottom: 2rem;
	}
	/* 会社情報　英語版 */
	:lang(en) header{
		background: unset;
		box-shadow: none;
	}
	:lang(en) #company_index_page .page_deco.bg_line_text{
		top: 0;
	}
	:lang(en) #company_index_page .page_deco.bg_line_text span{
		font-size: 3rem;
		line-height: 4.3rem;
	}
	:lang(en) .company_page .company_page_deco img.nel,
	:lang(en) .company_page .company_page_deco img.lke{
		top: 0rem;
	}
	:lang(en) #company_index_page .company_text_wrap{
		margin-top: 20rem;
	}
	#en_message .card{
		max-width: 110rem;
		margin: 0 auto;
	}
	#en_message .card .card_inner{
		width: unset;
	}
	#en_service{
		margin-top: 7rem;
	}
	.en_service_list{
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		max-width: 110rem;
		margin: 0 auto;
	}
	.en_service_list .card{
		width: calc(50% - 2rem);
		margin-bottom: 4rem;
	}
	.en_service_list .card .img_wrap{
		width: 100%;
		position: relative;
	}
	.en_service_list .card .img_wrap::before{
		content: '';
		display: block;
		padding-top: 43.9%;
	}
	.en_service_list .card .img_wrap img{
		display: block;
		position: absolute;
		top: 0; right: 0; left: 0; bottom: 0;
		margin: auto;
		z-index: 1;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	:lang(en) .overview_wrap{
		margin: 8rem auto 5rem;
	}
	:lang(en) .company_overview dl dd.company_name img{
		margin-left: 0;
		height: 10rem;
	}
	:lang(en) #company_index_page .btn_wrap{
		margin-bottom: 6rem;
	}
	/* ステージ制作 */
	#company_tp_page .page_deco.bg_line_text{
		font-size: 7.5vw;
		line-height: 12.7rem;
	}
	.sp_br_pc_space{
		display: inline-block;
		margin-left: 0.5em;
	}
	/* 海外事業・中国事業 */
	#company_china_page .page_deco.bg_line_text{
		font-size: 7.5vw;
		line-height: 12.7rem;
	}
	/* 権利開発 */
	#company_rd_page .page_deco.bg_line_text{
		font-size: 7.5vw;
		line-height: 12.7rem;
	}
	/* キャスティング */
	#company_casting_page .page_deco.bg_line_text{
		font-size: 7.5vw;
		line-height: 12.7rem;
	}
	#company_casting_page .casting_list_note{
		margin-bottom: 6rem;
	}
	#company_casting_page .casting_list li{
		width: calc((100% - 2rem)/3);
		margin-right: 1rem;
		-webkit-transition: var(--hover);
		-o-transition: var(--hover);
		transition: var(--hover);
	}
	#company_casting_page .casting_list li>a{
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}
	#company_casting_page .casting_list li>a:hover{
		margin-top: 0rem;
		margin-bottom: 2.5rem;
	}
	#company_casting_page .casting_list li:nth-child(2n){
		margin-right: 1rem;
	}
	#company_casting_page .casting_list li:nth-child(3n){
		margin-right: 0;
	}
	/* 代表メッセージ */
	#company_message_page .page_deco.bg_line_text{
		font-size: 16rem;
		/* line-height: 11rem; */
	}
	.corp_message_wrap .img_wrap{
		margin-bottom: 5rem;
	}
	/* 会社概要 */
	#company_overview_page .page_deco.bg_line_text{
		font-size: 13rem;
		/* line-height: 9rem; */
	}
	.overview_wrap .group_heading{
		margin: 6rem auto 4rem;
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	.company_overview{
		margin-bottom: 6rem;
	}
	#nelkechina.company_overview{
		margin-bottom: 4.5rem;
	}
	.company_overview .img_wrap{
		border-radius: 2rem;
		padding: 4.4rem 0;
		margin-bottom: 3rem;
	}
	.company_overview dl{
		display: flex;
		flex-flow: row nowrap;
		margin-bottom: 0.8rem;
		width: 100%;
	}
	.company_overview dl dt,
	.company_overview dl dd{
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	.company_overview dl dt{
		width: 15.8rem;
		padding: 1.2rem 1.7rem;
	}
	.company_overview dl dd{
		width: calc(100% - 15.8rem - 3.4rem - 4rem);
		padding: 1.2rem 2rem;
	}
	.company_overview dl dd.company_name{
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	/* オフィスガイド */
	#company_office_page #archive_wrap,
	#company_history_page #archive_wrap,
	#guidance_page #archive_wrap{
		padding-top: 5rem;
	}
	#company_office_page .page_header,
	#company_history_page .page_header,
	#guidance_page .page_header{
		padding-bottom: 4rem;
	}
	.officeguide_text,
	.history_text,
	.guidance_text{
		width: fit-content;
		margin-bottom: 10rem;
		font-size: 1.8rem;
		line-height: 4rem;
		text-align: center;
	}
	#company_office_page .card_wrap{
		width: fit-content;
		margin: 0 auto;
	}
	#company_office_page .card{
		width: calc(100% - 10rem);
		max-width: 100rem;
		margin: 0 0 11rem 10rem;
	}
	#company_office_page .card:nth-child(2n){
		margin-right: 10rem;
		margin-left: 0;
	}
	#company_office_page .card:last-child{
		margin-bottom: 7.5rem;
	}
	#company_office_page .card_inner{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: stretch;
		padding: 4rem;
	}
	#company_office_page .card_inner .main_img_wrap{
		width: calc(50% - 4.5rem);
		margin-bottom: 0;
	}
	#company_office_page .card_inner .officeguide_card_text_wrap{
		width: 50%;
		display: flex;
		flex-flow: column nowrap;
		justify-content: space-between;
	}
	#company_office_page h2{
		left: 50%;
		right: auto;
		width: fit-content;
		margin: 0;
	}
	#entertainment .main_img_wrap{ order: 1;}
	#entertainment .officeguide_card_text_wrap{ order: 0;}
	#entertainment .officeguide_card_text_wrap h2{
		left: 4rem;
		right: auto;
	}
	#company_office_page .card_inner .main_img_wrap img{
		border-radius: 2rem;
		margin-left: -14rem;
		max-width: unset;
		width: calc(100% + 14rem);
		height: 100%;
		object-fit: cover;
	}
	#company_office_page #entertainment .card_inner .main_img_wrap img{
		margin-left: 0;
		margin-right: 50%;
	}
	.officeguide_card_text_wrap p {
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin: auto 0;
	}
	#company_office_page .img_wrap{
		margin-top: 1rem;
	}
	/* 沿革 */
	.history_text,
	.guidance_text{
		margin-bottom: 5rem;
	}
	#history_wrap{
		width: 100%;
		max-width: 90rem;
	}
	#history_wrap dl.season_start dt{
		margin-bottom: 2rem;
	}
	#history_wrap dl.season_end dt{
		margin-top: 2rem;
	}
	#history_wrap dl.history_end dt{
		margin-top: 3rem;
	}
	#history_wrap dl dt span{
		width: 8rem;
		line-height: 8rem;
	}
	#history_wrap dl.season_start dt span,
	#history_wrap dl.history_end dt span{
		width: 13rem;
		line-height: 3.7rem;
	}
	#history_wrap dl.history_end dt span{
		line-height: 5.7rem;
		border-radius: 3rem;
	}
	#history_wrap dl dd{
		border-radius: 3rem;
		margin-left: 12rem;
		padding: 3rem;
	}
	#history_wrap dl dd::before,
	#history_wrap dl dd::after,
	#history_wrap dl.season_start dt::before,
	#history_wrap dl.season_end dt::after,
	#history_wrap dl.history_end dt::after{
		width: 0.5rem;
		height: calc(100% + 2.2rem);
		position: absolute;
		left: -8rem;
	}
	#history_wrap dl.season_start dt::before,
	#history_wrap dl.season_end dt::after,
	#history_wrap dl.history_end dt::after{
		height: 2rem;
		left: 4rem;
		bottom: -2rem;
	}
	#history_wrap dl.season_end dt::after{
		height: 3rem;
	}
	#history_wrap dl.season_start.season_end dt::before,
	#history_wrap dl.season_start.season_end dt::after,
	#history_wrap dl.history_end dt::after{
		height: 3rem;
		bottom: -2rem;
	}
	#history_wrap dl.season_start.season_end dt::after,
	#history_wrap dl.history_end dt::after{
		bottom: auto;
		top: -3rem;
	}
	#history_wrap dl dd::after{
		width: 8rem;
		height: 0.5rem;
		left: -8rem;
		top: 4rem;
	}
	#history_wrap dl dd{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.history_detail{
		flex: 1;
	}
	#history_wrap dl dd .img_wrap{
		width: 16rem;
		margin-left: 2rem;
	}
	#history_wrap dl dd img{
		width: 16rem;
		margin: 0;
	}
	.history_date_wrap{
		font-size: 1.4rem;
	}
	.history_date_wrap span{
		margin-bottom: 1.6rem;
	}
	.history_title{
		font-size: 2rem;
		line-height: 2.9rem;
	}
	.history_note{
		margin-top: 1.5rem;
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	/* 会社案内ダウンロード */
	.company_download_img_wrap>div>div{
		margin: 1.9rem auto 0;
		width: 10rem;
		font-size: 1.5rem;
	}
	.company_download_wrap>p{
		text-align: center;
		margin: 4rem auto;
		font-size: 1.6rem;
	}

	/* はじめての観劇案内 */
	#guidance_menu{
		width: 100%;
		max-width: 90rem;
		margin: 0 auto 6rem;
	}
	#guidance_menu li{
		width: calc((100% - 2.7rem) / 3);
	}
	#guidance_menu li a{
		padding-top: 8.3rem;
		border-radius: 1.5rem;
	}
	#guidance_menu li a>div{
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
	}
	#guidance_menu li a>div img{
		margin: 0 1.3rem 0 0;
		width: 4.5rem;
		height: 4.5rem;
	}
	#guidance_menu li a>div span{
		font-size: 2.4rem;
		line-height: 3.5rem;
		margin-bottom: 0;
	}
	#guidance_menu li a::after{
		background-position: center center;
		top: 0; right: 1.5rem; bottom: 0; left: auto;
		margin: auto 0;
	}
	#guidance_wrap{
		width: 100%;
		margin-bottom: 1rem;
	}
	#guidance_wrap>.card{
		margin-top: 6rem;
		padding: 0 10rem 6rem;
	}
	#guidance_wrap>.card .card_orange{
		margin-top: 4.9rem;
		padding: 5.4rem 4rem 4.9rem;
	}
	#guidance_wrap>.card h2{
		margin-bottom: 3.7rem;
		font-size: 3.2rem;
	}
	#guidance_wrap>#buy.card h2{
		margin-bottom: 3.7rem;
	}
	#guidance_wrap>.card h2>div:first-child{
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
		align-items: center;
	}
	#guidance_wrap>.card h2 span{
		display: inline-block;
		font-size: 10rem;
		line-height: 14rem;
		margin-top: -3.5rem;
		white-space: nowrap;
	}
	#guidance_wrap>#buy.card h2 span:first-child{
		margin-right: 0.25em;
	}
	#guidance_wrap>.card h2 div:last-child{
		top: 5rem;
	}
	#guidance_wrap>.card h2 img{
		margin: 0 2.4rem 0 0;
		width: 6rem;
		height: 4.7rem;
	}
	#guidance_wrap>.card p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	#guidance_wrap>.card .card_orange p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	#guidance_wrap>.card p.note{
		font-size: 1.2rem;
		line-height: 1.7rem;
		margin: 2rem auto 2rem;
	}
	#guidance_wrap>.card .card_orange h3{
		margin: -7.2rem auto 3.6rem;
		font-size: 2.5vw;
		line-height: 3.5rem;
	}
	#guidance_wrap>.card .card_orange h3::before,
	#guidance_wrap>.card .card_orange h3::after{
		width: 0.3rem;
		height: 100%;
	}
	#guidance_wrap>.card .card_orange h3::before{
		left: -1.2rem;
	}
	#guidance_wrap>.card .card_orange h3::after{
		right: -1.2rem;
	}
	#guidance_wrap>.card .card_orange h4{
		font-size: 2rem;
		line-height: 2.9rem;
		text-align: center;
	}
	#guidance_wrap>.card .card_orange .btn_wrap{
		max-width: 56.6rem;
		margin: 2rem auto 4rem;
		flex-flow: row nowrap;
	}
	#guidance_wrap>.card .card_orange .btn_wrap a{
		width: calc(50% - 11.5rem)!important;
		margin-bottom: 0;
		max-width: 16.8rem;
	}
	#guidance_wrap>.card .card_orange .watch_sns_wrap p{
		text-align: center;
	}
	#guidance_wrap>.card .card_orange .sns_nav{
		margin-top: 2rem;
	}
	.watch_point>div{
		margin-bottom: 3rem;
	}
	#page_wrap.recruit_page_wrap h2,
	.watch_point>div h3{
		padding: 1.5rem 2rem;
		margin-bottom: 2rem;
	}
	.watch_point>div h3 img{
		height: 2.3rem;
		margin-right: 1rem;
	}
	.watch_point>div li{
		margin-bottom: 3rem;
	}
	.watch_point>div li p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.watch_point>p:last-child{
		text-align: center;
	}

	/* 採用情報 */
	.header_recruit{
		padding-bottom: 8.5rem;
	}
	.recruit_page_deco .circle__orange_1{
		width: 16rem;
		height: 16rem;
		top: 15.2rem;
		right: -2.4rem;
	}
	.recruit_page_deco .circle__blue_2{
		width: 5rem;
		height: 5rem;
		top: 10.7rem;
		right: 14.3rem;
	}
	.recruit_page_deco .circle__blue_3{
		width: 8.1rem;
		height: 8.1rem;
		top: 17.3rem;
		left: 7rem;
	}
	#page_wrap.recruit_page_wrap{
		padding: 6rem 3rem 6rem;
	}
	.recruit_detail{
		max-width: 90rem;
		margin-left: auto;
		margin-right: auto;
	}
	#page_wrap.recruit_page_wrap h2{
		margin-bottom: 2rem;
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.recruit_detail p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.recruit_newgrad{
		margin-bottom: 4rem;
	}
	.recruit_midcareer a{
		margin-top: 3rem;
	}

	/* よくある質問 */
	#page_wrap.faq_page_wrap{
		padding: 5rem 3rem 6rem;
	}
	#faq_menu{
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
	}
	#faq_menu li{
		width: calc((100% - 3rem) / 3);
		margin-bottom: 0;
	}
	#faq_menu li a{
		line-height: 4.8rem;
		font-size: 1.4rem;
	}
	#faq_menu li a:hover{
		background-color: var(--blue);
		color: var(--white);
	}
	#faq_menu li a:hover::after{
		filter: invert(100%);
	}
	.faq_list_wrap>div{
		margin-bottom: 9rem;
	}
	.faq_list_wrap h2{
		margin-bottom: 3rem;
	}
	.faq_list{
		margin: 3rem 0;
	}
	.faq_list details{
		margin-bottom: 4rem;
	}
	.faq_list details:last-child{
		margin-bottom: 3rem;
	}
	.faq_list details summary{
		padding: 1.5rem 4rem 1.5rem 2rem;
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.faq_list details summary:hover{
		color: var(--black);
		text-decoration: none;
	}
	.faq_list details summary span{
		font-size: 2rem;
		line-height: 3rem;
		margin-right: 1.1rem;
	}
	.faq_list details summary::before,
	.faq_list details summary::after{
		top: 2.5rem;
		right: 2rem;
	}
	.faq_list details>div{
		margin-top: 2rem;
	}

	/* ネルケハ！ */
	.nelkeha_page_deco .circle__orange_1{
		width: 5.5rem;
		height: 5.5rem;
		top: 15.7rem;
		left: 9rem;
	}
	.nelkeha_page_deco .circle__blue_2{
		width: 12.8rem;
		height: 12.8rem;
		top: 21.8rem;
		left: -4.4rem;
	}
	.nelkeha_page_deco .circle__blue_3{
		width: 17.1rem;
		height: 17.1rem;
		top: 21.2rem;
		right: -5.3rem;
	}
	.header_nelkeha{
		padding-bottom: 3rem;
	}
	.header_nelkeha_inner img{
		margin: 3.5rem auto 0;
	}
	.header_nelkeha_inner .btn_wrap{
		margin-bottom: 4.4rem;
	}
	.header_nelkeha_inner .btn_wrap>div{
		margin-top: 4rem;
	}
	.header_nelkeha_inner .btn_wrap span{
		font-size: 1.1rem;
		line-height: 1.7rem;
		margin-top: 1rem;
	}
	.header_nelkeha_inner p{
		font-size: 1.6rem;
		line-height: 2.6rem;
		text-align: center;
	}
	.nelkeha_page.page_wrap h2{
		font-size: 2.4rem;
		line-height: 3.5rem;
		margin: 0 auto 5.2rem;
	}
	.nelkeha_page #archive_wrap{
		padding-left: 3rem;
		padding-right: 3rem;
	}
	.nelkeha_page .benefits_wrap{
		margin: 0 auto 6rem;
	}
	.nelkeha_page .benefit_detail_wrap{
		overflow: unset;
		margin: 7rem auto 0;
		padding: 0 10rem 6rem;
	}
	.nelkeha_page .benefit_detail_wrap.benefit_detail1{
		margin-top: 0;
	}
	.nelkeha_page .benefit_number{
		width: 21.5rem;
		height: 10.75rem;
		margin: 0 auto 2.2rem;
	}
	.nelkeha_page .benefit_number div{
		bottom: 1.25rem;
		font-size: 2rem;
		line-height: 2.9rem;
	}
	.nelkeha_page .benefit_number div span{
		font-size: 6rem;
		line-height: 8.4rem;
		margin-top: -0.6rem;
	}
	.nelkeha_page .benefit_detail_wrap h3 img{
		top: auto;
		bottom: -1rem;
		z-index: 2;
	}
	.nelkeha_page .benefit_detail_wrap h3 img.nel{
		left: -9rem;
	}
	.nelkeha_page .benefit_detail_wrap h3 img.lke{
		right: -9rem;
	}
	.nelkeha_page .benefit_title{
		margin-bottom: 3.5rem;
		font-size: 3.2rem;
		line-height: 4.8rem;
	}
	.nelkeha_page .benefit_detail_wrap p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.nelkeha_page .benefit_detail_wrap p.note{
		font-size: 1.2rem;
		line-height: 1.7rem;
		margin-top: 2rem;
	}
	.benefit_img_wrap{
		margin: 6.9rem auto 0;
		padding: 7.4rem 5rem 4.4rem;
	}
	.benefit_img_wrap .benefit_img_title{
		top: -2.7rem;
		border-radius: 2.7rem;
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	.benefit_img_wrap_inner .img_flex{
		flex-flow: row nowrap;
	}
	.benefit_img_wrap_inner .img_flex img{
		margin-bottom: 0;
		width: calc(50% - 1rem);
	}
	.nelkeha_page.page_wrap .nelkeha_btn_wrap h2{
		margin-bottom: 1.6rem;
	}
	.nelkeha_btn_wrap p{
		text-align: center;
	}
	.nelkeha_btn_wrap p span{
		white-space: nowrap;
	}
	.nelkeha_btn_wrap .btn_wrap{
		margin: 3rem auto 2.5rem;
	}
	/* ネルマガ 利用規約 プライバシーポリシー 情報セキュリティポリシー */
	.header_terms{
		padding-bottom: 5rem;
	}
	#archive_wrap.terms_text_wrap{
		padding: 2.5rem 3rem 3rem;
	}
	#archive_wrap.terms_text_wrap h2{
		margin-bottom: 3rem;
		font-size: 2rem;
		line-height: 2.9rem;
	}
	.terms_text>p,
	.terms_text>div{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
}




/* パソコンサイズ以上 ------------------------------- */
@media (min-width: 1024px) {
	/* header */
	header .header_nav>li>ul,
	header .header_project_nav,
	header .header_nav>li>a>span,
	header .pc_menu_none{
		display: none;
	}
	.header_nav_wrap1 br,
	.header_nav_wrap2 br{
		display: none;
	}
	.header_nav_wrap,
	.header_nav_wrap1,
	.header_nav_wrap2,
	header .header_nav{
		display: flex;
		flex-flow: row nowrap;
	}
	.header_right_wrap{
		display: block;
		position: absolute;
		right: 29rem;
		top: 2.7rem;
	}
	.header_right_wrap li{
		padding-right: 1rem;
	}
	.header_right_wrap li a{
		font-size: 1.2rem;
		line-height: 2.4rem;
		font-weight: 700;
		-webkit-transition: unset;
		-o-transition: unset;
		transition: unset;
	}
	.header_right_wrap li a:hover{
		color: var(--blue);
	}
	.nerukeha_btn span{
		display: none;
	}
	/* header active時 */
	header.active{
	}
	header.active .header_nav>li>ul,
	header.active .header_project_nav,
	header.active .header_nav>li>a>span,
	header.active .pc_menu_none,
	header.active .header_right_wrap li{
		display: block;
		padding-right: 0;
	}
	header.active .header_nav_wrap1,
	header.active .header_nav_wrap2,
	header.active .header_nav,
	header.active .header_nav_wrap1 br,
	header.active .header_nav_wrap2 br{
		display: block;
	}
	header.active .header_nav{
		padding-right: 5rem;
	}
	header.active .header_nav>li>a{
		font-size: 1.9rem;
	}
	header.active .header_nav>li>a>span{
		font-size: 1.4rem;
	}
	header.active .header_nav>li>ul>li,
	header.active .header_nav>li>ul>li>a,
	header.active .header_nav>li>ul>li>ul>li,
	header.active .header_nav>li>ul>li>ul>li>a{
		font-size: 1.5rem;
	}
	header.active .nerukeha_wrap .nerukeha_btn{
		font-size: 1.3rem;
	}
	header.active .nerukeha_wrap p{
		font-size: 1.3rem;
	}
	header.active .nerukeha_wrap .nerukeha_text_link{
		font-size: 1.5rem;
	}
	/* header.active .lang_wrap{
		left: auto;
	} */
	header.active .header_right_wrap{
		display: block;
		position: unset;
	}
	header.active .header_menu_circle{
		display: block;
		z-index: -1;
	}
	header.active .circle__orange_1{
		width: 31rem;
		height: 31rem;
		bottom: 8.7rem;
		left: -15.5rem;
	}
	header.active .circle__orange_2{
		width: 14rem;
		height: 14rem;
		top: 32.5rem;
		right: -4.5rem;
	}
	header.active .circle__blue_3{
		width: 7.4rem;
		height: 7.4rem;
		top: 18rem;
		right: 7.5rem;
	}

	/* トップページ　ここから　------------------------------------ */
	#mv_swiper .mv_img_wrap::before{
		padding-top: 100vh;
		padding-top: calc(100vh - 7.8rem);
	}

	#front_main_menu .nel_img{
		right: calc(50% + 40rem);
		left: auto;
	}
	#front_main_menu .lke_img{
		left: calc(50% + 40rem);
		right: auto;
	}

	
	.front_service_link_wrap li a div,
	#company_index_page #corp_service_list .front_service_link_wrap li a div{
		font-size: 2.4rem;
	}
	.front_service_link_wrap li a p,
	#company_index_page #corp_service_list .front_service_link_wrap li a p{
		font-size: 1.6rem;
	}

	/* トップページ　ここまで　------------------------------------ */
	/* mvキャッチフレーズ */
	.mv_catchphrase p{
		font-size: 2.6rem;
	}
	.mv_catchphrase div{
		font-size: 2rem;
	}

	/* 動画配信・グッズなど一覧　アーカイブページ */
	#others_menu ul li{
		font-size: 1.4rem;
	}
	#stage_page_others_menu ul{
		width: 100%;
		max-width: 100rem;
		padding: 0;
	}
	#stage_page_others_menu ul li{
		width: calc(100% / 9);
		max-width: 6.5rem;
		font-size: 1.2rem;
	}


	/* お問い合わせフォーム */
	
	/* 公演カレンダー */
	.calendar_page .bg_line_text{
		font-size: 18rem;
		line-height: 12.7rem;
	}



	/* ステージ詳細ページ */
	.stage_detail_wrap h1.stage_title{
		font-size: 3rem;
		line-height: 4.4rem;
	}
	.stage_detail_wrap .performance_date dl dd{
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin-bottom: 0;
	}
	/* モーダル */
	.modal_toggle{
		top: 8rem;
		right: auto;
		left: calc(50% + 47rem);
	}


	/* 会社情報　共通 */
	.page_mv_catch{
		margin-bottom: 3rem;
		margin-top: -16.5rem;
		margin-left: calc(100% - 100rem);
	}
	/* 会社情報 */
	#company_index_page .page_deco.bg_line_text{
		font-size: 18rem;
		line-height: 12rem;
	}
	#company_index_page .company_bg_img_wrap{
		height: 100vh;
		min-height: 65rem;
	}
	#company_index_page .page_header{
		height: calc(100vh - 15.8rem);
		min-height: calc(65rem - 15.8rem);
		padding: 7.8rem 3rem 8rem;
	}
	#company_index_page .company_text_wrap{
		position: absolute;
		bottom: 11.5rem;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	#company_index_page #corp_service_list .corp_service_list li a::before{
		padding-top: 15rem;
	}
	#company_index_page #corp_service_list .corp_service_list li a div{
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
	#company_index_page #corp_service_list .corp_service_list li a p{
		font-size: 4.4rem;
		line-height: 6.1rem;
		margin-bottom: -0.6rem;
	}
	/* 会社情報　英語版 */
	:lang(en) #company_index_page .company_text_wrap{
		margin-top: 0;
	}
	:lang(en) .company_page .company_page_deco img.nel,
	:lang(en) .company_page .company_page_deco img.lke{
		top: 5rem;
	}
	.en_service_list .card_inner{
		padding: 2rem 3rem 3rem;
	}
	.en_service_list .card_inner p{
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
	.en_service_list h3{
		font-size: 3.2rem;
		line-height: 4.5rem;
		margin-bottom: 1.5rem;
	}
	.en_service_list .copy span{
		display: inline-block;
		margin-left: 1em;
	}
	.en_service_list .copy span:first-child{
		margin-left: 0;
	}

	/* 代表メッセージ */
	.corp_message_wrap{
		width: calc(100% - 12rem);
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: flex-start;
	}
	.corp_message_wrap .img_wrap{
		width: calc(100% - 57rem - 6rem);
		margin: 0;
	}
	.corp_message_wrap .message_text_wrap{
		width: 57rem;
	}
	.message_catch{
		font-size: 2.4rem;
    line-height: 4rem;
    margin-bottom: 4rem;
	}
	.message_text p {
		font-size: 1.6rem;
		line-height: 3.4rem;
		margin-bottom: 3.5rem;
	}
	/* 会社概要 */
	/* オフィスガイド */
	#company_office_page .page_deco.bg_line_text,
	#company_history_page .page_deco.bg_line_text,
	#guidance_page .page_deco.bg_line_text{
		font-size: 18rem;
	}
	#company_office_page h2{
		font-size: 3rem;
		top: -2rem;
	}
	#company_office_page h2 ruby{
		font-size: 4.4rem;
	}
	[data-ruby]::before {
		top: -1.2rem;
		font-size: 1.2rem;
		line-height: 1.7rem;
	}
	/* 沿革 */
	/* 会社案内ダウンロード */
	/* はじめての観劇案内 */
	#guidance_wrap>.card .card_orange h3{
		font-size: 2.4rem;
	}
	/* 採用情報 */
	/* よくある質問 */
	/* ネルケハ！ */
	.header_nelkeha_inner .btn_wrap span{
		font-size: 1.2rem;
	}
	.nelkeha_page .benefit_detail_wrap h3 img.nel{
		left: 5rem;
	}
	.nelkeha_page .benefit_detail_wrap h3 img.lke{
		right: 5rem;
	}
	/* ネルマガ 利用規約 プライバシーポリシー 情報セキュリティポリシー */
	#archive_wrap.terms_text_wrap{
		padding: 6rem 0 3rem;
	}
	#archive_wrap.terms_text_wrap>*{
		max-width: 90rem;
		margin-left: auto;
		margin-right: auto;
	}
}




@media (min-width: 1113px) {
	/* mvキャッチフレーズ */
	.mv_catchphrase p{
		font-size: 3.2rem;
	}
	.mv_catchphrase div{
		font-size: 2rem;
	}

	/* TOPICS　STAGE */
	#front_topics,
	#front_stage{
		/* width: calc(50% + 55rem); */
		overflow: hidden;
		margin: 0 0 0 auto;

	}
	#front_topics h2,
	#front_stage h2{
		position: relative;
	}
	#front_topics .circle__orange_1,
	#front_stage .circle__blue_1{
		width: 17rem;
		height: 17rem;
		top: -4.3rem;
		left: -5rem;
	}
	.swiper_wrap{
		/* margin: 0 calc(50vw - 55rem); */
		margin: 0 auto;
		max-width: 110rem;
	}
	.swiper_wrap .swiper{
		overflow: visible;
	}
	/* #topics_swiper .swiper-wrapper,
	#stages_swiper .swiper-wrapper{
		padding-left: calc(50vw - 55rem);
		padding-right: calc(50vw - 55rem);
	} */
	#front_topics .read_more_btn,
	#front_stage .read_more_btn{
		right: calc(50% - 55rem);;
	}

	/* COMPANY-SERVICE */

	/* お問い合わせ　一覧 */
	.contact_page .bg_line_text{
		font-size: 18rem;
		line-height: 12.7rem;
	}
	.contact_page_deco .circle__blue_2{
		width: 9.3rem;
		height: 9.3rem;
		top: 11.1rem;
		right: 7.7rem;
	}


	/* ステージ詳細ページ */
	#article_page.stage_page #swiper_pagination_wrap{
		bottom: 8rem;
		top: auto;
	}
	/* ステージ詳細　シリーズ公演 */
	.stage_series_title span{
		left: -9.4rem;
	}


	/* キャスティング */
	#company_casting_page .casting_list li{
		width: calc((100% - 7.35rem)/4);
		margin-right: 2.45rem;
	}
	#company_casting_page .casting_list li .casting_newicon{
		right: -1rem;
	}
	#company_casting_page .casting_list li>a{
		margin-top: 1rem;
		margin-bottom: 2rem;
	}
	#company_casting_page .casting_list li>a:hover{
		margin-top: 0rem;
		margin-bottom: 3rem;
	}
	#company_casting_page .casting_list li:nth-child(2n){
		margin-right: 2.45rem;
	}
	#company_casting_page .casting_list li:nth-child(3n){
		margin-right: 2.45rem;
	}
	#company_casting_page .casting_list li:nth-child(4n){
		margin-right: 0;
	}
	#company_casting_page .casting_list .casting_text p{
		font-size: 1.4rem;
		line-height: 2.4rem;
	}
	/* 代表メッセージ */
	/* 会社概要 */
	/* オフィスガイド */
	/* 沿革 */
	/* 会社案内ダウンロード */
	#company_download_page .bg_line_text {
		font-size: 18rem;
		line-height: 12rem;
	}
	/* はじめての観劇案内 */
	/* 採用情報 */
	/* よくある質問 */
	/* ネルケハ！ */
	.nelkeha_page .benefit_detail_wrap h3 img.nel{
		left: 5rem;
	}
	.nelkeha_page .benefit_detail_wrap h3 img.lke{
		right: 5rem;
	}
	/* ネルマガ 利用規約 プライバシーポリシー 情報セキュリティポリシー */
}

@media (max-width: 375px) {
	#guidance_wrap>.card .card_orange .sns_nav{
		width: 100%;
	}
}

@media (min-width: 1440px) {
	.header_right_wrap{
		right: 39rem;
	}
	.header_right_wrap li {
		padding-right: 3rem;
	}
	.header_right_wrap li a{
		font-size: 1.5rem;
	}
	.nerukeha_btn span{
		display: inline-block;
	}
	/* header active時 */
	header.active .header_nav{
		padding-right: 7rem;
	}
	/* トップページ　ここから　------------------------------------ */
	/* mvキャッチフレーズ */
	.mv_catchphrase img{
		right: auto;
		left: calc(50% + 51rem);
	}

	#front_main_menu .nel_img{
		right: calc(50% + 42.5rem);
	}
	#front_main_menu .lke_img{
		left: calc(50% + 43rem);
	}
	.front_company .circle__blue_1{
		right: auto;
		left: calc(50% + 50.6rem);
	}
	.front_company .circle__orange_1 {
		left: auto;
		right: calc(50% + 45.9rem);
	}
	.front_casting .circle__orange_1 {
		left: auto;
		right: calc(50% + 52.35rem);
	}

	#front_topics h2,
	#front_stage h2{
		width: 75%;
		margin: 0 auto;
	}
	.topics_swiper_wrap,
	.stage_swiper_wrap{
		width: 75%;
		max-width: unset;
		padding: 0;
	}
	#front_topics .read_more_btn,
	#front_stage .read_more_btn{
		right: 12.5%;
	}
	.swiper-button_wrap{
		width: 100%;
		max-width: unset;
	}


	/* キャスティングアニメ */
	#casting_swiper{
		/* max-width: 150rem; */
		width: 80%;
		max-width: fit-content;
		margin: auto;
	}
	#casting_swiper .swiper-slide{
		/* width: 25rem; */
	}
	/* トップページ　ここまで　------------------------------------ */

	/* 開幕のお知らせ */
	.openingday_page .bg_line_text{
		font-size: 18rem;
	}
	
	/* お問い合わせフォーム */

	/* 公演カレンダー */
	[class*="calendar_data__"]:hover .hover_title{
		white-space: nowrap;
	}


	/* 会社情報　共通 */
	.company_page .company_page_deco img.nel{
		top: 12rem;
		left: auto;
		right: calc(50% + 52rem);
		height: 22rem;
		width: auto;
	}
	.company_page .company_page_deco img.lke{
		top: 17rem;
		right: auto;
		left: calc(50% + 53rem);
		height: 23rem;
		width: auto;
	}
	/* 会社情報 */
	/* 会社情報　英語版 */
	/* ステージ制作 */
	#company_tp_page .page_deco.bg_line_text{
		font-size: 10.8rem;
	}
	/* 海外事業・中国事業 */
	#company_china_page .page_deco.bg_line_text{
		font-size: 10.8rem;
	}
	/* 権利開発 */
	#company_rd_page .page_deco.bg_line_text{
		font-size: 10.8rem;
	}
	/* キャスティング */
	#company_casting_page .page_deco.bg_line_text{
		font-size: 10.8rem;
	}
	/* 代表メッセージ */
	/* 会社概要 */
	/* オフィスガイド */
	/* 沿革 */
	/* 会社案内ダウンロード */
	/* はじめての観劇案内 */
	/* 採用情報 */
}
