@charset "utf-8";
/* CSS Document */

/***　フォント
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
***/

/*** 色 ****/
/*
赤：#eb0011 rgba(235,0,17,1)
*/

/******************************************

　共通

******************************************/


/********マージン、パディング********/

.marTop1em {margin-top: 1em;}
.marTop2em {margin-top: 2em;}
.marTop3em {margin-top: 3em;}
.marTop4em {margin-top: 4em;}
.marTop5em {margin-top: 5em;}
.marRgt1em {margin-right: 1em;}
.marRgt2em {margin-right: 2em;}
.marRgt3em {margin-right: 3em;}
.marRgt4em {margin-right: 4em;}
.marRgt5em {margin-right: 5em;}
.marBtm1em {margin-bottom: 1em;}
.marBtm2em {margin-bottom: 2em;}
.marBtm3em {margin-bottom: 3em;}
.marBtm4em {margin-bottom: 4em;}
.marBtm5em {margin-bottom: 5em;}
.marLft1em {margin-left: 1em;}
.marLft2em {margin-left: 2em;}
.marLft3em {margin-left: 3em;}
.marLft4em {margin-left: 4em;}
.marLft5em {margin-left: 5em;}


/********リンク********/
a{ color:#eb0011;}
a:hover{ color: #eb0011;}


a:hover img{
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}

/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}


/********　　********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.caution {
	font-size: 0.9em;
	text-align: left;
}

.caution li{
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.8;
	margin-bottom: 0.5em;
}

.pk {display: inline-block;}


/******************************************
　構造
******************************************/

html {  
    overflow-y:scroll;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
    -webkit-text-size-adjust: none;    
}  

body{
    overflow: hidden;
	margin: 0;
	padding: 0;
	background: #000;
	font-size: 18em;
	line-height:2;
	color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;


}    	

body:before{
}

@media screen and (max-width: 1045px) {

	body{}
	
	body:before{
	}	
	
}


@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}
}


@media screen and (orientation: portrait) { /**　画面が縦長の時　**/
    body:before{
        position: fixed;        
    	background-image: url(../../images/2026/bg_smp.jpg);    
    	background-position:top center;    
        background-size: contain;	
    }
}

.wrap {
		min-height: 100vh;/*フッター固定用*/
		box-sizing: border-box;/*フッター固定用*/
		position: relative;
		width: 100%;
		margin: 0 auto;
		padding-bottom: 140px;/*フッター固定用*/
		text-align: center;
		overflow: hidden;
		animation: fadeIn 3s ease 0s 1 normal;
		-webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@media screen and (orientation: portrait) { 
    .wrap{
        animation: fadeIn 1s ease 0s 1 normal;
        -webkit-animation: fadeIn 1s ease 0s 1 normal;
    }
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.main{
	max-width: 900px;
	margin: 20px auto 0;
	text-align: center;
	word-wrap: break-word;
}

@media screen and (max-width: 1024px) {
    .main{
        margin: 0 auto;
        }
	.index .main {
		margin: 20px auto 0;
	}
}

@media screen and (max-width: 768px) {
    .main {
    padding: 0 10px;
    }
}



/*******************************************
	メニュー　ナビ
********************************************/

/****　ハンバーガーメニュー　****/
*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.cp_offcm03 {
    z-index: 100;    
    overflow: auto;
    width: 100%;
    height: auto;
    padding-top: 0;
    -webkit-transition: transform 0.3s ease-in;
            transition: transform 0.3s ease-in;
    text-align: center;

}

/* menu toggle */
#cp_toggle03 {
    display: none;
   
}
#cp_toggle03:checked ~ .cp_offcm03 {
    -webkit-transform: translateX(0);
                    transform: translateX(0);
}
#cp_toggle03:checked ~ .cp_container {
    -webkit-transform: translateX(0);
                    transform: translateX(0);
}
.cp_mobilebar {
    display: none;
}

@media (max-width: 1024px) {
    .cp_offcm03 {
        position: absolute;
        position: fixed;        
        left: -340px;
        width: 340px;
        height: 100%;
        padding-top: 50px;
        color: #fff;
        background-color: rgba(191,4,18,0.95);
    }
    .cp_offcm03 nav {
        background: none;
        text-align: left;
    }
    .cp_offcm03 nav .list {
         overflow: auto;
     -webkit-overflow-scrolling: touch;
    }    
    .cp_offcm03 li {
        display: block;
    }
    
    .cp_offcm03 a {}
    
    .cp_mobilebar {
        display: block;
        z-index: 10;
        position: fixed;
        top: 0;
        left: 0;
        padding: 0 20px;
        width: 100%;
        height: 50px;
        color: #ffffff;
        z-index: 20000;
    }
    .cp_menuicon {
        display: block;
        position: relative;
        width: 25px;
        height: 100%;
        cursor: pointer;
        -webkit-transition: transform .3s ease-in;
                transition: transform .3s ease-in;
    }
    .cp_menuicon > span.border {
        display: block;
        position: absolute;
        top: 55%;
        margin-top: -0.3em;
        width: 100%;
        height: 0.3em;
        border-radius: 1px;
        background-color: #fff;
        -webkit-transition: transform .3s ease;
                transition: transform .3s ease;
    }
    .cp_menuicon > span.border:before,
    .cp_menuicon > span.border:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 1px;
        background-color: #fff;
        -webkit-transition: transform .3s ease-in;
                transition: transform .3s ease-in;
    }
    .cp_menuicon > span.border:before {
        -webkit-transform: translateY(-0.6em);
                transform: translateY(-0.6em);
        margin-left: -13px;
    }
    .cp_menuicon > span.border:after {
        -webkit-transform: translateY(0.6em);
                transform: translateY(0.6em);
        margin-left: -13px;
    }
    .cp_menuicon > span.lbl {
        display: block;
      position: absolute; 
        top:75%;
        font-weight: 700;
        font-size: 0.7em;
        text-indent: -0.2em;
        color: #fff;
        text-shadow: 1px 1px 0 rgba(1,22,75,0.8);
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    #cp_toggle03:checked + .cp_mobilebar span:before,
    #cp_toggle03:checked + .cp_mobilebar span:after {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
    }
    #cp_toggle03:checked ~ .cp_offcm03 {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
    #cp_toggle03:checked ~ .cp_container {
        -webkit-transform: translateX(250px);
                transform: translateX(250px);
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon.cp_menuicon > span.border {
        background-color: #fff;
        box-shadow: none;
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon.cp_menuicon > span.border:before,
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon.cp_menuicon > span.border:after {
        background-color: #fff;
        box-shadow: none;
    }
    #cp_toggle03:checked + .cp_mobilebar .cp_menuicon > span.lbl {
        display: none;
    }
    
    /* content */
    .cp_container {
        top: 60px;
        height: 92vh;
    }
}
@media (max-width: 768px) {
    .cp_offcm03 {
        left: -300px;
        width: 300px;
    }
}
/****　ハンバーガーメニュー　ここまで　****/


nav {
    display: block;
    position: relative;
    z-index: 100;
    padding: 5px 0;
    text-align: center;
    background-color: #000;
}
nav .logo {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
}
nav .logo img {
	width: 100%;
}
nav .nav_list {
	padding: 1.3em 1em 0.5em;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 2px solid #eb0011;
/*    border-top: 2px solid #eb0011;*/
}

nav .nav_list a {
	color: #fff;
    text-decoration: none;
}
nav .nav_list a:hover {
	color: #eb0011;
    transition-duration: 0.5s;
}

nav .nav_list .nav_item {
    display: inline-block;
    margin: 0 0.5em 0.8em;
    vertical-align: top;
    font-size: 20rem;
    line-height: 1;
    text-align: center;
    font-style: normal;       
}

nav .nav_list .nav_item .lbl {
	display: inline-block;
	padding: 0 0.5em;
	background: #ff7ee8;
	color: #000;
	font-weight: bold;
}

nav .nav_list .nav_item.sns_icon {
    margin: 0 0.2em 0.8em;

}

nav .nav_list .nav_item .en {
    display: block;
    color: #eb0011;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
}

nav .nav_list .nav_item .jp {
    display: block;
    margin: 0.3em auto 0;
    font-size: 0.5em;
    color: #fff;
    font-family: 'Noto sans JP', serif; 
    font-weight: 500;
}

nav .nav_list .nav_item .en .amp {
	margin: 0 0.2em;
	font-size: 0.9em;
}

nav .nav_list .res_nav {
    display: none;
}


@media screen and (max-width: 1250px) {
	nav .nav_list .res_nav {
		display: inline;
	}
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 1024px) {
	nav .logo {
		display: none;
	}
    nav .nav_list {
        border-bottom: none;
        border-top: none;
    }

	nav .nav_list .res_nav {
		display: none;
	}	
    
    nav .nav_list .nav_item {
        display: block;
        margin: 20px 0;
        text-align: left;
        line-height: 1.5;
	}


	nav .nav_list .nav_item .en {
		color: #fff;
	}

	nav .nav_list .nav_item .jp {
		margin-top: 0;
		color: #000;
		font-weight: 900;
	}    
    
    nav .nav_list .res_nav {
        display: none;
    }
    
}


/*******************************************
	フッター
********************************************/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #fff;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}


footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #fff;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .billing {
    max-width: 600px;
    width: 70%;
    margin: 2em auto 0;
}

footer .billing img {
    display: block;
    width: 100%;
}

footer .copy {
	display: block;
	padding: 1em;
font-family: 'Noto Serif JP', serif;
    font-weight: 700;
	font-style: normal;
	line-height: 1.5;
}

footer .sns_link {
    margin-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em 0.5em;
    text-align: center;
    vertical-align: top;
}

footer .sns_link li img {
    width: 100%;
}

footer .sns_link li.icon_toho {
    width: 45px;
}

footer .sns_link li.icon_x {
	position: relative;
	top: 5px;
    width: 35px;
}

footer .policy_link {
	margin: 1em auto 0;
}

footer .policy_link li {
	display: inline-block;
	margin: 0 auto 1em;
}

footer .policy_link li:not(:last-of-type)::after {
	content: "｜";
	margin: 0 0.5em;
}

footer .policy_link li a {
	text-decoration: none;
	color: #fff;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 1024px) {

}

/****　ページトップへ戻る　****/

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;

}

#pagetop a {
	text-decoration: none;
	color: #eb0011;
}

#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f106";
	font-weight: 900;
	font-size: 4em;
}
@media screen and (max-width: 1024px) {

}

/******** 見出し ********/

.heading_page {
    margin: 1em auto;
    font-size: 50rem;    
	color: #eb0011;
	line-height: 1.3;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.heading_page .en {
    display: block;
    color: #eb0011;
    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
	
	background-image: url(../../images/2026/heading_page_bg.jpg);
	-webkit-background-clip: text;
	color: transparent;
}
.heading_page .jp {
    display: block;
    font-size: 0.4em;
    letter-spacing: 0.1em;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.heading_page .en .amp {
	margin: 0 0.2em;
	font-size: 0.9em;
}

.heading_page_sub {
    display: inline-block;
    
    margin: 1em auto;
    padding: 0.3em 0.5em;

    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
    font-size: 30rem;    
	background-image: url(../../images/2026/heading_page_bg.jpg);
	-webkit-background-clip: text;
	color: #eb0011;
	color: transparent;
	line-height: 1;
    font-weight: 900;
}

.heading_page_sub .l{
    font-size: 1.1em;    
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 414px){

	.heading_page {    
        margin: 2em auto 1em;
		font-size: 40rem;
	}
    .heading_page_sub {
        font-size: 24rem; 
    }
  
}




/*******************************************
　トップページ
********************************************/

.index .area_btn {
	display: inline-block;
	max-width: 900px;
	width: 100%;
	margin: 1em auto 0;
	padding: 1em 0;
	outline: 2px solid #eb0011;
	outline-offset: -0.5em;
	border-radius: 5px;
    background-color: rgba(1,22,75,0.8);
    background: -webkit-linear-gradient(rgba(23,68,181,1) 0%, rgba(1,22,75,1) 59%, rgba(1,22,75,1) 100%);
    background: -o-linear-gradient(rgba(23,68,181,1) 0%, rgba(1,22,75,1) 59%, rgba(1,22,75,1) 100%);
    background: linear-gradient(rgba(23,68,181,1) 0%, rgba(1,22,75,1) 59%, rgba(1,22,75,1) 100%);
}
.index .area_btn dt {
	display: inline-block;
	margin: 0 1em;
	color: #eb0011;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.index .area_btn dt .fas {
	margin-left: 0.3em;
}
.index .area_btn dd {
	display: inline-block;
}
.index .area_btn .item {
	display: inline-block;
	margin: 0 0.3em;
	padding: 0.3em 1.5em;
	background: #eb0011;
	border-radius: 5px;
    color: #000;
    font-size: 20rem;
	font-weight: 700;
    line-height: 1;
	text-decoration: none;
}
.index .area_btn .item .fas {
	display: none;
}

@media screen and (max-width: 1024px) {
	.index .area_btn {
		margin: 70px auto 0;
		width: 80%;
	}
}
@media screen and (max-width: 600px) {
	.index .area_btn {
		margin: 70px auto 0;
		width: 95%;
	}
	.index .area_btn .item {
		margin: 0 0.2em;
		padding: 0.3em 1em;
		font-size: 18rem;
		font-weight: 700;
		border-radius: 3px;
	}
}

@media screen and (max-width: 430px) {
	.index .area_btn dt {
		display: block;
		margin: 0 auto;
	}
	.index .area_btn dt .fas {
		display: none;
	}
	.index .area_btn .item .fas {
		display: inline;
		margin-right: 0.3em;
	}

}

@media screen and (max-width: 320px) {
	.index .area_btn .item {
		font-size: 16rem;
	}
}

.index .area_btn2 {
	margin: 1em auto;
}
.index .area_btn2 .item {
	display: inline-block;
	margin: 0 0.3em;
	padding: 0.5em 2em;
	background: #eb0011;
	border: 3px solid #eb0011;
	outline: 3px double #000;
	outline-offset: -5px;
    color: #000;
    font-size: 20rem;
	font-weight: 900;
    line-height: 1.3;
	text-decoration: none;
	font-family: 'Noto Serif JP', serif;
	font-weight: 900;
	transition: 0.5s;
}
.index .area_btn2 .item .fas {
	display: none;
}

.index .area_btn2 .item:hover {
	background: #000;
	color: #eb0011;
}

@media screen and (max-width: 600px) {
	.index .area_btn2 {
		width: 95%;
	}
}
@media screen and (max-width: 414px) {
	.index .area_btn2 .item {
		padding: 0.5em 1em;
		font-size: 18rem;
	}
}
@media screen and (max-width: 350px) {
	.index .area_btn2 .item {
		font-size: 18rem;
	}
}
/***　ビジュアル　***/

.index .area_visual {
	max-width: 900px;
    height: auto;
	margin: 0 auto;
	width: 100%;
}

.index .area_visual img {
	width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);      
}


@media screen and (max-width: 1024px) {
    .index .area_visual {
       /* margin: 70px auto 0;*/
	  margin: 60px auto 0;
    }
    .index .area_visual img {
        width: 95%;

    }
}

@media (orientation: portrait) { /**　画面が縦長の時　**/
}


/*****　インフォエリア　****/

.index .area_info {
    max-width: 900px;
    margin: 1em auto 0;
}

/********Twitter********/

.index .area_info .twi_area {
	width: 35%;
	display: inline-block;
	text-align: right;
}
.index .area_info .twi_box {
	max-width: 550px;
	width: 100%;
	margin: 0 auto;;
}

.index .area_info .twi_box dt {
	display: none;
}

/********NEWSエリア********/

.news .area_news .list {
	margin-bottom: 40px;
	font-size: 18rem;
	color: #fff;
	text-align: left;
}

.news .area_news .list li {
    padding: 0.5em;
	border-bottom: 1px outset #fff;
    line-height: 1.5;
}

/*.news .area_news .list li:not(:last-child) {
	border-bottom: 1px outset #fff;
}*/

.news .area_news .list a {
	color: #fff;
	position: relative;
    transition: 1s;
}

.news .area_news .list a:hover {
	color: #eb0011;
}

.news .area_news .list .day {
    display: block;
    color: #eb0011;
}

.news .area_news .list .text {
    display: block;
}

.news .area_news .list .text .note {
	display: inline-block;
	font-weight: 400;
	font-size: 0.9em;
}

@media screen and (max-width: 900px){

    .news .area_news .list {
        font-size: 16rem;
    }
}

@media screen and (max-width: 768px){

	.news .area_news .list {
        text-align: left;
    }
    
    .news .area_news .list li:not(:last-child) {
        border-bottom: 1px outset #fff;
    }
    
    .news .area_news .list .day {
        display: block;
        margin-right: 0;

    }
	
}

@media screen and (max-width: 375px){
	.news .area_news .list {
		font-size: 18rem;
	}

}

/*******************************************
	NEWS
********************************************/

.index .area_info .news_area {
	width: 60%;
	display: inline-block;
    margin-right: 4%;
	padding: 0;
	text-align: left;
	vertical-align: top;
}
.index .area_info .news_area .title {
    margin: 0 auto 1em;
	font-family: 'Noto Serif JP', serif;
    color: #eb0011;
    font-size: 24rem;
	font-weight: 900;
    line-height: 1;
}

.index .area_info .news_area .text_link {
	margin-bottom: 40px;
	font-size: 18rem;
	color: #fff;
	border-bottom: 1px solid #fff;
}

.index .area_info .news_area .text_link li {
    padding: 0.5em;
    line-height: 1.5;
}

.index .area_info .news_area .text_link li:not(:last-child) {
	border-bottom: 1px outset #fff;
}

.index .area_info .news_area .text_link a {
	color: #fff;
	position: relative;
    transition: 1s;
}

.index .area_info .news_area .text_link a:hover {
	color: #eb0011;
}

.index .area_info .news_area .text_link .day {
    display: block;
    color: #eb0011;
}

.index .area_info .news_area .text_link .text {
    display: block;
}

.index .area_info .news_area .text_link .text .note {
	display: inline-block;
	font-weight: 400;
	font-size: 0.9em;
}

.news_area .btn_more {
	display: block;
	text-decoration: none;
	font-weight: 900;
	font-family: 'Noto Serif JP', serif;
	text-align: right;
}
.news_area .btn_more .icon {
	margin-right: 0.3em;
}

@media screen and (max-width: 900px){
    .index .area_info {
        padding: 0 10px;
    }
    .index .area_info .news_area .text_link {
        font-size: 16rem;
    }
}

@media screen and (max-width: 768px){

	.index .area_info .twi_area {
		width: 95%;
		display: block;
		margin: 20px auto;
		text-align: center;
	}
    
    .index .area_info .news_area {
        width: 95%;
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    
    .index .area_info .news_area .ban_list li {
        width: 45%;
        display: inline-block;
        margin: 0 10px;
    }

    .index .area_info .news_area .text_link {
        text-align: left;
    }
    
    .index .area_info .news_area .text_link li:not(:last-child) {
        border-bottom: 1px outset #fff;
    }
    
    .index .area_info .news_area .text_link .day {
        display: block;
        margin-right: 0;

    }
	
}

@media screen and (max-width: 375px){
	.index .area_info .news_area .text_link {
		font-size: 18rem;
	}

}

/*******************************************
	イントロ
********************************************/

.intro .wrap{
}

.intro .area_intro {
    padding: 0 1em;

}
.intro .area_intro .logo {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}
.intro .area_intro .logo img {
    width: 100%;
}
    
.intro .area_intro .catch {
    margin: 0 auto 1em;
    font-size: 24rem;
    font-family: 'Noto serif JP', sans-serif;
    font-weight: 900;
}

.intro .area_intro .catch .point {
	color: #eb0011;
	font-size: 1.3em;
}

.intro .area_intro .catch .l {
	font-size: 1.3em;
}

.intro .area_intro .catch .point2 {
	color: #eb0011;
}

.intro .area_intro .text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 2em;
    font-size: 18rem;
	font-weight: 400;
}

.intro .area_intro .text p {
	margin-bottom: 1em;
	text-align: left;
}

@media screen and (max-width: 600px) {
	.intro .area_intro .catch {
		font-size: 18rem;
	}
}

@media screen and (max-width: 414px) {
	.intro .area_intro .catch .point {
		color: #eb0011;
	}
}


@media screen and (max-width: 370px) {
	.intro .area_intro .catch {
		margin-bottom: 2em;
		text-align: left;
	}
	.intro .area_intro .catch .pk {
		display: inline;
	}
}


/*******************************************
	ストーリーページ
********************************************/

.story .wrap{

}

.story .area_story {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1em;
}

.story .area_story .text {
    margin: 0 auto 2em;
    line-height: 2em;
	text-align: left;
	font-weight: 400;
}

.story .area_story .text p {
	margin-bottom: 1em;
}

.story .area_story .text .point {
	margin: 0 0 0 0.3em;
    font-weight: 700;
}

@media screen and (max-width: 1024px){
    .story .wrap{
    }
	.story .area_story {
		padding: 0 3em;
	}
}

@media screen and (max-width: 414px){

	.story .area_story {
		padding: 0 1em;
	}	

    .story .area_story .text_wrap {
        padding: 1.5em;
    }    

}


/*******************************************
	キャスト＆スタッフページ
********************************************/

/*******　キャスト　*******/

/***　プリンシバル1 ***/

.c-s .area_cast {
	margin: 0 auto 3em;
	padding: 0 1em;
}

.c-s .area_cast .list_p1 {
	margin: 2em auto 0;
	font-size: 26rem;
}

.c-s .area_cast .list_p1 dt {}

.c-s .area_cast .list_p1 dd {
	margin-bottom: 3em;

}

.c-s .area_cast .list_p1 .yaku {
    font-size: 0.6em;
    color: #eb0011;
    line-height: 1.5;
}
.c-s .area_cast .list_p1 .yaku .note {
	display: block;
	font-weight: 500;
	font-size: 0.8em;
}
.c-s .area_cast .list_p1 .name {
	font-family: 'Noto Serif JP', serif;
	line-height: 1em;
}
.c-s .area_cast .list_p1 .name .item {
	display: inline-block;
	margin: 0.5em 1em 0;
	vertical-align: top;

}
.c-s .area_cast .list_p1 .name .item .note {
	display: block;
	font-weight: 500;
	font-size: 0.5em;
}

/***　プリンシバル2 ***/

.c-s .area_cast .list_p2 {
	margin: 2em auto 0;
}


.c-s .area_cast .list_p2 li{
	display: inline-block;
	margin: 0 0.5em;
    font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.5;
	vertical-align: top;
}
.c-s .area_cast .list_p2 li .note {
	display: block;
	font-weight: 500;
	font-size: 0.7em;
}
.c-s .area_cast .list_p2 .res {
	display: none;
}

@media screen and (max-width: 410px){

	.c-s .area_cast .list_p2 .res {
		display: inline;
	}
}

/***　アンサンブル　 ***/

.c-s .area_cast .list_e {
	margin: 2em auto 0;
}


.c-s .area_cast .list_e li{
	display: inline-block;
	margin: 0 0.5em;
    font-size: 20rem;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.5;
}

.c-s .area_cast .list_e .note {
	font-size: 0.7em;
}

.c-s .area_cast .list_e .res {
	display: none;
}
.c-s .area_cast .list_e .res2 {
	display: none;
}

@media screen and (max-width: 510px){

	.c-s .area_cast .list_e .res {
		display: inline;
	}
}

@media screen and (max-width: 340px){

	.c-s .area_cast .list_e .res2 {
		display: inline;
	}
}


/*******　スタッフ　*******/

.c-s .area_staff {
	max-width: 980px;
	margin: 8em auto 0;
	padding: 0 1em;
}

.c-s .area_staff .list {
	margin: 1em auto 2em;
	font-size: 18rem;
}

.c-s .area_staff .list::after {
  content: "";
  display: block;
  clear: both;
}

.c-s .area_staff .list dt {
	clear: both;
	float: left;
	width : 48% ; /* IE8以下とAndroid4.3以下用フォールバック */
	width : -webkit-calc(50% - 1em) ;
	width : calc(50% - 1em) ;
	text-align: right;
	color: #eb0011;
}

.c-s .area_staff .list dd {
	float: left;
	width : 48% ; /* IE8以下とAndroid4.3以下用フォールバック */
	width : -webkit-calc(50% - 1em) ;
	width : calc(50% - 1em) ;
	margin-left: 1em;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
}

.c-s .area_staff .list dd .item {
	display: inline-block;
	margin-right: 1em;
}


@media screen and (max-width: 768px){

	.c-s .area_staff .list {
		margin: 1em auto 3.5em;
	}
	
	.c-s .area_staff .list dt {
		float: none;
		width: 100%;
		margin-bottom: 0.5em;
		font-size: 16rem;
		font-weight: 700;
		color: #eb0011;
		line-height: 1.5;
		text-align: center;
	}

	.c-s .area_staff .list dd {
		float: none;
		width: 100%;
		margin: 0 auto 1.5em;
		font-size: 18rem;
		font-weight: 700;
		color: #fff;
		line-height: 1.5;
		text-align: center;
	}

	.c-s .area_staff .list dd .item {
		margin: 0 0.5em;
	}
}


/****************************************
　チケット
****************************************/

.ticket .area_sokuho {
	margin: 0 auto;
	padding: 0 1em;
}

.ticket .area_sokuho .list dt {
    display: inline-block;
    margin: 1em auto 0.5em;
    padding: 0.3em 0.5em;
    font-family: 'Noto serif JP', sans-serif;
    font-size: 30rem;    
	background-image: url(../../images/2026/heading_page_bg.jpg);
	-webkit-background-clip: text;
	color: #eb0011;
	color: transparent;
	line-height: 1;
    font-weight: 900;
}

.ticket .area_sokuho .list dd {
	margin: 0 auto 2em;
	padding: 0.5em 0.5em 1em;

	border: 2px solid rgba(235,0,17,0.8);
	font-size: 24rem;
    font-family: 'Noto serif JP', sans-serif;
}
.ticket .area_sokuho .list dd .day {
	font-size: 1.1em;
}
.ticket .area_sokuho .list dd .day .s {
	margin: 0 0.2em;
	font-size: 0.7em;
}
.ticket .area_sokuho .list dd .host {
	font-size: 0.7em;
	
}

@media screen and (max-width: 768px){
	.ticket .area_sokuho .list dd {
		font-size: 20rem;
	}
}

/***************************************************

　ムービー

**************************************************/

.movie {}

.movie .list {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto;
/*    padding: 10px;*/
}

.movie .list.center {
    justify-content: center;
}

.movie .item{
    width: 100%;
    justify-content: center;
	max-width: 600px;
    margin-bottom: 4em;
    margin: 0 auto 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.movie .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 18rem;
    line-height: 1.3;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}

.movie .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #eb0011;  
}

@media screen and (max-width: 768px){
    .movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .movie .item{
        width: 90%;
        margin: 0 auto 2em;
    }
	.movie .name {
		margin-bottom: 0;
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .movie .name {
        font-size: 16rem;
		font-weight: 700;

    }
    .movie .list {
       /* margin-bottom: 10px;*/
    } 
}


