@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

ドット風
font-family: "ab-megadot9", sans-serif;
font-weight: 400;
font-style: normal;
***/

/***色
ピンク１　#f8dfe3;
ピンク２　#d5708e
紫　#bc197a;
青　#2f5f85;
紺　#303d84;
***/


/******************************
　ナビ
******************************/


/*モーダルメニュー*/
.menu-btn {
    position: fixed;
    top: 0px;
    left: 10px;
    width: 1em;
    height: 2em;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    z-index: 1005;
}

.menu-btn span {
    color: #303d84;
}

.menu-btn span:after {
font-family: "Font Awesome 5 Free";	
	content: "\f0c9";
font-weight: 900;
	font-size: 2em;

}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu-btn span {
    color: #303d84;
}
.open .menu-btn span:after {
font-family: "Font Awesome 5 Free";		
	content: "\f00d";

}


@media screen and (max-width: 414px){
.menu-btn {
    line-height: 1.6;
    }
}

/*モーダルメニューここまで*/

/*メニューのスタイル*/
.navi {
    position: fixed;
    display: table;
	z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237,174,191,0.95);
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
}

.navi  ul {
    display: table-cell;
    vertical-align: middle;

}

.navi li {
    max-width: 600px;
    line-height: 1;
    margin: 0 auto 1em;
/*	padding-left: 20px;*/
    text-align: center;
	font-size: 24rem;
	font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    color: #fff;
/*    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 100px #fff;*/
    font-weight: 400;
    letter-spacing: 0.3em;
	line-height: 1.5;
}


.navi li .en {
	display: block;
	color: #fff;
	transition: 0.5s;
    font-family: "ab-megadot9", sans-serif;
    font-style: normal;
    text-shadow: 2px 2px 0 #2f5f85;
    letter-spacing: 0.08em;
}

.navi li .en .amp {
	margin: 0 0.2em;
	font-size: 0.8em;
}

.navi li .jp {
	display: block;
	color: #2f5f85;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 0.5em;
}

/*.navi li:hover {
	background: #d5708e;
}*/

/*.navi li.sns {
	display: none;
}*/

/* 開閉用ボタンがクリックされた時のスタイル */
.open .navi  {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}
/*メニューのスタイルここまで*/

 
@media only screen and (max-width: 767px){

	/*モーダルメニュー*/
	.menu-btn {
		right: 5px;
		top: 1px;
	}

	.navi {
		padding-top: 40px;
	}
	
	.navi li {
/*		height: 40px;*/
		font-size: 28rem;
	}
}

@media only screen and (max-width: 767px){
	.navi li {
		margin: 0 auto 1em;
	}
}

@media only screen and (max-width: 500px){
    .navi li {
        font-size: 18rem;
        letter-spacing: 0.2em;
    }
}

@media screen and (orientation: landscape) and (max-height: 700px) { /*画面が横長で高さが700以下の時時*/
    .navi li {
        font-size: 18rem;
        margin-bottom: 0.5em;
    }
} 

.navi .sub_sns-list {
	display: flex;
	justify-content: center;
	flex-direction: row; /* アイコンを縦積みに配置 */
	margin-top: 1em;
	gap: 20px;
	font-size: 24px;
}
.navi .sub_sns-list a {
	display: block;
	text-decoration: none;
	color: #333333;
}

.navi .sub_sns-list .icon.x {
	max-width: 1em;
}
.navi .sub_sns-list .icon.insta {
	max-width: 1em;
}
.navi .sub_sns-list .icon img {
	display: block;
	width: 100%;
}




/****************************************

　ファーストビュー

*****************************************/

.container {
  display: flex;
  width: 100%;
  height: 100vh; /* 画面全体の高さに固定 */
  gap: 20px;     /* カラム間の余白 */
  /*padding: 20px;*/
  box-sizing: border-box;
  background-color: #f8dfe3;
}


/* ==========================================================================
   2. 中央左：縦長画像エリア（フェード切り替え）
   ========================================================================== */
.column-portrait {
  height: 100%;
  flex-shrink: 0;
flex-grow: 1;
  position: relative; /* 子要素（画像）を絶対配置するための基準点 */
  /* 画像の比率（横:縦）に合わせて数値を調整してください */
  aspect-ratio: 1 / 1.414; 
}
.column-portrait .fade-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
  /* アニメーション設定：総サイクル8秒、無限ループ */
  animation: fadeAnimation 8s infinite;
}
/* 2枚目の画像はアニメーションを4秒遅らせて交互に表示 */
.column-portrait .img-2 {
  animation-delay: -4s; 
}

@media (max-width: 1300px) {
	.column-portrait {
		flex: 1;
	}
}

.column-sns {
  flex: 0 0 300px; /* 左メニューと同じ幅にして左右対称を維持 */
  height: 100%;
padding: 20px;
  display: flex;
flex-direction: column;
/*  justify-content: center;*/
  align-items: flex-start;
	background: #edaec1;
}
.sns-list {
  display: flex;
margin: 0 auto 1em;
  gap: 20px;
  font-size: 24px;
}
.sns-list a {
	display: block;
  text-decoration: none;
  color: #333333;
}

.column-sns .icon.x {
	max-width: 1em;
}
.column-sns .icon.insta {
	max-width: 1em;
}
.column-sns .icon img {
	display: block;
	width: 100%;
}

.column-sns .wrap_ban {
}

.column-sns .wrap_ban .ban {
	display: inline-block;
	max-width: 700px;
	width: 100%;
    margin: 0 auto 1em;
}

.column-sns .wrap_ban .ban img {
	display: block;
	width: 100%;
}

@media only screen and (max-width: 1500px){
	.column-sns {
	  flex: 0 0 240px;
	}
}

.wrap_ban_smp {
	display: none;
}


/* ==========================================================================
   アニメーション（フェードイン・フェードアウト）
   ========================================================================== */
@keyframes fadeAnimation {
  0% { opacity: 1; visibility: visible; }
  40% { opacity: 1; }
  50% { opacity: 0; visibility: hidden; }
  90% { opacity: 0; visibility: hidden; }
  100% { opacity: 1; visibility: visible; }
}


/* ==========================================================================
   スマホ時のスタイル（画面幅900px以下）※スマホは最初からハンバーガー固定
   ========================================================================== */
@media (max-width: 900px) {
  .container {
    flex-direction: column; /* 縦並び（1カラム）に変更 */
    height: auto;           /* 高さをコンテンツ合わせに */
    padding: 10px;          /* 余白を最大限狭める */
    gap: 15px;
  }

	
  /* スマホ時はSNSアイコンを横並びに変更 */
  .column-sns {
	display: none;
/*	flex: 0 0 auto;
	width: 100%;*/
  }
  .sns-list {
	flex-direction: row;
	justify-content: center;
	width: 100%;
	gap: 30px;
  }

  /* 中央左（縦長画像）のスマホ最適化 */
  .column-portrait {
    width: 100%;
    height: auto;
/*    aspect-ratio: 2 / 3;*/
/*	  margin-top: 30px;*/
  }

	.wrap_ban_smp {
		display: block;
		margin-top: 40px;
	}

	.wrap_ban_smp .ban {
		display: inline-block;
		max-width: 600px;
		width: 90%;
		margin: 0 auto;
	}

	.wrap_ban_smp .ban img {
		display: block;
		width: 100%;
	}
}



/****************************************

　構造用css

*****************************************/

.sec {
    max-width: 1100px;
    margin: 0 auto;
	padding: 0 1em;
}

.sec:first-of-type{
	margin-top: 6em;
/*	padding: 3em 0;*/
}


.sec .box {
/*    padding: 3em;*/
    box-shadow: 0 0 20px rgba(153,78,79,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
}

.sec .inner {
    margin: 0 auto;
	padding: 2em;
}

@media screen and (max-width: 400px){
	.sec .inner {
		padding: 1.5em;
	}
}


.heading_sec {
	padding: 0.7em 0.5em 0.5em;
	background: #d5708e;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    font-size: 46rem;
    line-height: 1.3;
    font-weight: 400;
    color: #fff;
}

.heading_sec .en {
    display: block;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 2px rgba(153,78,79,0.5);
    font-family: "ab-megadot9", sans-serif;
    font-style: normal;
}

.heading_sec .en .amp {
    margin: 0 0.3em;
}

.heading_sec .jp {
    display: block;
    font-size: 0.4em;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 600px){

    .heading_sec {
        font-size: 40rem;
    }
}

@media screen and (max-width: 460px){

    .heading_sec {
        font-size: 30rem;
    }
}

@media screen and (max-width: 380px){

    .heading_sec {
        font-size: 24rem;
    }
}

/**********************************

装飾用css

*********************************/


/***フォントメモ
font-family: 'Noto Sans JP', sans-serif; wght@400;500;700;900
font-family: 'Noto Serif JP', serif; :wght@600;700;900
font-family: 'Luckiest Guy', cursive;
***/

/***色メモ
黄緑　4bc709
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/*アニメーション要素のスタイル*/
.fadein2{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/*アニメーション要素のスタイル*/
.fadein3{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(30px);
}
/*アニメーション要素までスクロールした時のスタイル*/
.active2{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/********リンク********/
a {
	color: #bc197a;
    text-decoration: none;
}

a:hover{}

a:hover img{
  filter: alpha(opacity=70);
  opacity: 0.7;
  zoom: 1.0;
  }

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;
  }
}

/********マージン、パディング********/

.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;}


/********テキスト********/

.uline {text-decoration: underline;}
.bold {font-weight: bold;}
.italic {font-style: italic;}

.right {text-align: right;}
.left {text-align: left;}
.cen {text-align: center;}

.point {color:#f6ff00;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

.pk {
    display: inline-block;
}



html {  
	overflow-y:scroll; 
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 6.25%; /* sets the base font to 10px for easier math */
 	-webkit-text-size-adjust: none;
/*    scroll-behavior:smooth;*/
} 



body{
	margin: 0;
	padding: 0;
	font-size: 18em;
	line-height: 2;
	color: #2f5f85;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #fcedee;
	text-align: center;
}

body:after {
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/2026/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;  
    background-color: #fcedee;
}
main {
    padding: 0 2em;
}

@media screen and (max-width: 1023px){
	html {font-size: 6%;}
	body {font-size: 17em;}    
}

.wrap{ 
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
    
/*    background: url("../images/bg.jpg")no-repeat center bottom;
    background-size: cover;
    background-attachment: fixed;
    background-position: center top -300px;*/
 
}

.wrap:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
}


@media screen and (orientation: portrait) { /*画面が縦長の時*/
    .wrap:before {
/*        background: url("../images/bg_smp.png")no-repeat center bottom;        
        background-size: cover;        
        background-attachment: scroll;        
        background-position: center bottom;*/
    }
    
}

.anchor {
    display: block;
    margin-top: -2em;
    padding-top: 2em;
}


@media screen and (max-width: 500px){
    .anchor {
        display: block;
        margin-top: -6em;
        padding-top: 6em;
    }

}


/****************************************

　フッター

*****************************************/

/****　ページトップへ戻る　****/
#pagetop{
    position: fixed;
    right: 10px;
    bottom: 10px;
	z-index: 1000;
	max-width: 2vw;
	min-width: 100px;
}

#pagetop img {
	width: 100%;
	display: block;
}

@media screen and (max-width: 500px){
	#pagetop{
		min-width: 60px;
	}  
}

footer{
	width: 100%;
	margin: 0 auto;
    padding: 2em 0 0;
	color: #2f5f85;
	text-align: center;
	font-size: 18rem;
	bottom: 0;
}

footer .copy {
	display: block;
	padding: 1em;
	line-height: 1.5;
    font-family: "ab-megadot9", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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: #2f5f85;
	font-size: 16rem;
	font-weight: 500;
}

footer .policy_link li a:hover {
	text-decoration: underline;
}


/**************************************
　スタートエフェクト
**************************************/
/*
.start {
	background: rgba(255,255,255,1);
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	max-width: 1500px;
}
.start p img {
    width: 100%;
    margin: 0 auto;
}*/


/**********************************************************************

　イントロ

**********************************************************************/

.area_intro {
	display: block;
	width: 100%;
	margin: 0 auto 10em;
}

.area_intro .inner {
}

.area_intro .text {
	position: relative;
	text-align: left;
    line-height: 2.5;

}

.area_intro .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}
.area_intro .text .pict_wrap {
	position: absolute;
	bottom: 0;
	right: 0;
}


.area_intro .text .pict {
	margin: 0 auto;
}
.area_intro .text .pict.r1 {
/*	float: right;*/
	max-width: 260px;
/*	padding: 1em;*/
}
.area_intro .text .pict.l1 {
	float: left;
	max-width: 200px;
}
.area_intro .text .pict img {
	display: block;
	width: 100%;
}

.area_intro .box_story {
	margin: 2em auto 0;
	padding: 2em;
	background: #f8dfe3;
	border-radius: 10px;
	outline: 5px solid #fff;
	outline-offset: -20px;
}

.area_intro .box_story .heading_sec {
	background: none;
	font-size: 36rem;
}

.area_intro .box_story .heading_sec .en {
  display: inline-flex;
  align-items: center;
	color: #315e85;
}

/* 左右のアイコン共通設定 */
.area_intro .box_story .heading_sec .en::before,
.area_intro .box_story .heading_sec .en::after {
  content: "";
  display: block; /* inline-blockではなくblockでOK */
  width: 50px;    /* アイコンの幅 */
  height: 50px;   /* アイコンの高さ */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 左アイコン個別設定 */
.area_intro .box_story .heading_sec .en::before {
  background-image: url('../images/story_heading.svg');
  margin-right: 16px; /* 文字との余白 */
}

/* 右アイコン個別設定 */
.area_intro .box_story .heading_sec .en::after {
  background-image: url('../images/story_heading.svg');
  margin-left: 8px;  /* 文字との余白 */
}

.area_intro .box_story .heading_sec .jp {
	color: #d5708e;
}
.area_intro .box_story .inner {
	padding-top: 0;
}
.area_intro .box_story .pict {
	max-width: 300px;
	width: 70%;
	margin: 2em auto 0;
}
.area_intro .box_story .pict img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.area_intro .box_story .heading_sec {
		background: none;
		font-size: 30rem;
	}
}

@media screen and (max-width: 500px) {
	.area_intro .box_story {
		padding: 1.5em 1em;
	}
	.area_intro .box_story .heading_sec {
		background: none;
		font-size: 22rem;
	}
}


/**********************************************************************

　ストーリー

**********************************************************************/

.area_story {	display: block;
	width: 100%;
	margin: 0 auto 10em;
}

.area_story .inner {
}

.area_story .text {
	text-align: left;
    line-height: 2.5;

}

.area_story .text p:not(:last-of-type) {
	margin: 0 auto 1em;
}

.area_story .sokanzu {
	max-width: 900px;
	margin: 2em auto 0;
}
.area_story .sokanzu img {
	display: block;
	width: 100%;
}

/**********************************************************************

　キャスト

**********************************************************************/
.area_cast {
    margin: 0 auto 10em;

}

.area_cast .sokanzu {
	max-width: 900px;
	margin: 0 auto;
}

.area_cast .sokanzu img {
	display: block;
	width: 100%;
}


/**********************************************************************

　モーションポスター

**********************************************************************/
.area_mp {
    margin: 0 auto 10em;

}

/***　プリンシバル1　***/
.area_mp .list_p {
    margin-top: 3.5em;
    font-size: 24rem;
}
.area_mp .list_p .item {
    margin-bottom: 3em;
    line-height: 1.5;
}

.area_mp .list_p .item.wcast dd{
    display: inline-block;
    margin: 0 1em;
}

.area_mp .list_p .yaku {
    display: block;
    margin: 0 auto 0.5em;
    color: #e17495;
    line-height: 1.3;
    font-family: "ab-megadot9", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/*.area_mp .list_p .yaku::after {
    content: "...";
    margin-left: 1em;
}

.area_mp .list_p .yaku::before {
    content: "...";
    margin-right: 1em;
}*/

.area_mp .list_p .yaku .note {
    font-size: 0.7em;
}

.area_mp .list_p .wrap_photo {
    max-width: 300px;
    margin: 0 auto;
}

.area_mp .list_p .photo {
    display: block;
	margin: 0 auto;
}
.area_mp .list_p .photo .cast_p {
    display: block;
    width: 100%;
    border-radius: 2px;
}

.area_mp .list_p .name_wrap {
    display: flex;
	justify-content: center;
	align-items: center;
	width: 6em;
    margin-top: 0.3em; 
	margin: 0.3em auto 0;
}

.area_mp .list_p .name {
	display: inline-block;
	width: 4em;
    line-height: 2em;
}

.area_mp .list_p .btn_mp {
    display: inline-block;
	width: 2em;
    margin: 0 auto;
	text-align: left;
}

.area_mp .list_p .btn_mp img {
    display: block;
    width: 100%;
}
/*.area_mp .list_p .btn_mp.p1,
.area_mp .list_p .btn_mp.p2 {
	bottom: 2.5vw;
	left: 2vw;
}
.area_mp .list_p .btn_mp.p3 {
	bottom: 2.5vw;
	right: 2vw;
}
.area_mp .list_p .btn_mp.p4 {
	bottom: 1.5vw;
	right: 3vw;
}*/

@media screen and (max-width: 700px) {
    .area_mp .list_p .item.wcast dd{
        margin: 0;
    }

    .area_mp .list_p .photo {
        max-width: 180px;
    }
}

@media screen and (max-width: 560px) {
	.area_mp .list_p {
		margin-top: 1em;
	}
    .area_mp .list_p .yaku {
        margin: 0 auto 1em;
        padding: 0.3em;
        background: rgba(255,223,224,0.5);
    }
    .area_mp .list_p .item.wcast dd{
		display: block;
        margin: 0 auto 1em;
    }
    .area_mp .list_p .photo {
        max-width: 300px;
    }
}

@media screen and (max-width: 460px) {


/*    .area_mp .list_p .yaku::after {
        content: "...";
        margin-left: 1em;
    }

    .area_mp .list_p .yaku::before {
        content: "...";
        margin-right: 1em;
    }*/
/*    .area_mp .list_p .item.wcast dd{
        display: block;
        margin: 1em auto 1em;
    }*/
}

/**********************************************************************

　クリエイティブ

**********************************************************************/
.area_creative {
    margin: 0 auto 10em;
}

.area_creative .list {
	margin-bottom: 2em;
    font-size: 24rem;
}
.area_creative .list li {
    margin-bottom: 1em;
    line-height: 1.5;
}
.area_creative .list .work {
    display: block;
    font-size: 0.7em;
    color: #e17495;
}
.area_creative .list .name {
    display: block;
}
.area_creative .list .name.lt {
    letter-spacing: -0.05em;
}
.area_creative .list .name .office {
    display: block;
    font-size: 0.7em;
}
.area_creative .list .name .item {
    display: inline-block;
    margin: 0 0.5em;
}

.area_creative .list2 {
    font-size: 20rem;
}

.area_creative .list2 .res2 {
	display: none;
}

.area_creative .list2 li {
	display: inline-block;
    margin: 0 0.8em 1em;
    line-height: 1.5;
}
.area_creative .list2 .work {
    display: block;
    font-size: 0.7em;
    color: #e17495;
}
.area_creative .list2 .name {
    display: block;
}

.area_creative .list2 .name .office {
    display: block;
    font-size: 0.7em;
}
.area_creative .list2 .name .item {
    display: inline-block;
    margin: 0 0.5em;
}

.area_creative .list2:last-of-type {
	margin-top: 2em;
}

@media screen and (max-width: 700px) {
	.area_creative .list2 .res {
		display: none;
	}
	.area_creative .list2 .res2 {
		display: inline;
	}
}

@media screen and (max-width: 540px) {
	.area_creative .list2 .res2 {
		display: none;
	}
	.area_creative .list2 li {
		display: block;
		margin: 0 auto 0.5em;
	}
}

/**********************************************************************

　チケット＆スケジュール

**********************************************************************/

.ticket {
    color: #2f5f85;  
    margin: 0 auto 10em;
}

.ticket.sec {
    padding-bottom: 0;
}

.ticket .head_info {
	margin: 0 auto 3em;
}

.ticket .head_info .sch {
    max-width: 600px;
    margin: 2em auto;
}

.ticket .head_info .sch img {
    width: 100%;
}

.ticket .head_info .hoshitori {
    max-width: 900px;
    margin: 2em auto 0;
}

.ticket .head_info .hoshitori img {
    width: 100%;
}

.ticket .head_info .hoshitori.smp {
    display: none;
}

.ticket .head_info .theater {
	max-width: 280px;
	width: 60%;
    margin: 1em auto 0;
}

.ticket .head_info .theater img {
	display: block;
    width: 100%;
}

.ticket .head_info .btn_castsch{
	position: relative;
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 1em auto 0;
	padding: 0.5em;
	background: #d5708e;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.5);
	text-decoration: none;
	font-size: 1.3em;
	transition: 0.5s;
}

.ticket .head_info .btn_castsch:hover {
	background: #2f5f85;
}

.ticket .head_info .btn_castsch .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
/***色
ピンク１　#f8dfe3;
ピンク２　#d5708e
紫　#bc197a;
青　#2f5f85;
紺　#303d84;
***/

.ticket .head_info .toho-one {
    max-width: 900px;
	margin: 2em auto;
	padding: 2em 2em 1em;
	border: 2px solid #d5708e;
	border-radius: 5px;
}
.ticket .head_info .toho-one .tokuten {
	margin: 1em auto 0;
}
.ticket .head_info .toho-one .tokuten th,
.ticket .head_info .toho-one .tokuten td {
	padding: 0.5em 1em;
	border: 1px solid #d5708e;
}
.ticket .head_info .toho-one .tokuten th {
	width: 5em;
	background: #f8dfe3;
}

.ticket .head_info .toho-one .tokuten ul {
	display: inline-block;
	margin: 0 auto;
}
.ticket .head_info .toho-one .tokuten ul li {
	text-align: left;
	line-height: 1.5;
}

.ticket .head_info .toho-one .tokuten ul li .note {
	font-weight: 400;
	font-size: 0.8em;
}
.ticket .head_info .toho-one .caution {
	display: inline-block;
	margin: 0 auto;
}

@media screen and (max-width: 480px) {
	.ticket .head_info .toho-one .lead {
		text-align: left;
	}
	.ticket .head_info .toho-one .lead .pk {
		display: inline;
	}
	.ticket .head_info .toho-one {
		padding: 1em;
		font-size: 0.9em;
	}
}

.ticket .head_info .caution {
	max-width: 900px;
    margin: 2em auto;
	padding: 1em 0;
	background: rgba(255,255,255,0.5);
    text-align: left;
    font-weight: 500;
	font-size: 0.9em;
}

.ticket .head_info .caution li {
    text-indent: -1em;
    padding-left: 1em;
}

.ticket .head_info .caution .tel a {
	color: #2f5f85;
	text-decoration: none;
}

.ticket .head_info .price {
	max-width: 900px;
	margin: 0 auto;
	font-weight: 500;
}

.ticket .head_info .price table {
	width: 100%;
	table-layout: fixed;
}

.ticket .head_info .price caption {
	font-size: 1.2em;
}
.ticket .head_info .price caption .s {
	font-size: 0.8em;
}
.ticket .head_info .price th,
.ticket .head_info .price td {
	padding: 0.5em 1em;
	border: 1px solid #2f5f85;
}
.ticket .head_info .price th {
	background: #eee;
	font-weight: 400;
}
.ticket .head_info .price td {}

.ticket .head_info .price .caution {
	margin-top: 0;
	padding-right: 0.5em;
	text-align: right;
}

@media screen and (max-width: 560px){
	.ticket .head_info .hoshitori.pc {
		display: none;
	}
	.ticket .head_info .hoshitori.smp {
		display: block;
		max-width: 360px;
	}
}
@media screen and (max-width: 500px){

	.ticket .head_info .btn_castsch{
		width: 70%;
	}
}

/****　チケット詳細　****/

.ticket .detail {
	max-width: 900px;
	margin: 0 auto 4em;
	border: 1px solid #2f5f85;
}

.ticket .detail > dt {
	background: #2f5f85;
	color: #fff;
	padding: 0.5em 1em;
	font-size: 1.1em;
	font-weight: 500;

}
.ticket .detail > dt .text {
	display: block;
/*	padding-left: 0.5em;
	border-left: 7px solid #fff;*/
}
.ticket .detail > dd {
	padding: 1em 1em 2em;
	color: #2f5f85;
	font-weight: 500;
}

.ticket .detail dd .s {
	font-size: 0.8em;
}

.ticket .detail dd .start_say {
	color: #2f5f85;
}

.ticket .detail dd .start_say::before {
	content: "≪";
	margin-right: 0.2em;
}

.ticket .detail dd .start_say::after {
	content: "≫";
	margin-left: 0.2em;
}

.ticket .detail dd .caution {
	display: inline-block;
	margin: 1em auto 0;
	font-size: 0.9em;
}

.ticket .detail dd .caution li {
	text-indent:  -1em;
	padding-left: 1em;
}


@media screen and (max-width: 767px){

	.ticket .detail {
		margin: 20px auto 0;
	}
}

@media screen and (max-width: 400px){

/*	.ticket .detail > dd {
		padding: 1em 1em 2em;
	}*/
}

/***　ナビザーブ　***/

.ticket .detail .toho .btn {
	position: relative;
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 1em auto;
	padding: 0.5em;
	background: #d5708e;
/*	border: 1px solid #2f5f85;*/
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 1.3em;
	text-align: center;
	transition: 0.5s;
}

.ticket .detail .toho .btn:hover {
	background: #2f5f85;
}

.ticket .detail .toho .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

.ticket .detail .toho .toho-one {
    padding: 2em;
    border-radius: 5px;
	background: #fcedee;
}
.ticket .detail .toho .toho-one p {
    text-align: left;
}
.ticket .detail .toho .toho-one .btn2 {
	position: relative;
	display: block;
	max-width: 240px;
	width: 95%;
	margin: 1em auto;
	padding: 0.8em 0;
    background: #d5708e;
	border-radius: 5px;
	color: #fff;
	font-weight: 500;
	font-size: 1.1em;
	line-height: 1;
    text-decoration: none;
	transition: 0.5s;
}

.ticket .detail .toho .toho-one .btn2:hover {
	background: #2f5f85;
}

.ticket .detail .toho .toho-one .faq {
    margin: 1em auto 0;
}
.ticket .detail .toho .toho-one .contact {
    text-align: left;
	background: #fff;
}

.ticket .detail .toho .toho-one .contact {
    width: 100%;
    margin: 1em auto;
}
.ticket .detail .toho .toho-one .contact th,
.ticket .detail .toho .toho-one .contact td {
    padding: 0.5em 1em;
    border: 1px solid #2f5f85;
}
.ticket .detail .toho .toho-one .contact th {
    white-space: nowrap;
	font-weight: 500;
}
.ticket .detail .toho .toho-one .contact td {

}
.ticket .detail .toho .toho-one .contact .tel {
    display: inline-block;
    margin: 0;
    font-size: 1em;
    line-height: 1.8;
}

.ticket .detail .toho .toho-one .contact .time {
    display: inline-block;
    line-height: 1.8;
}
.ticket .detail .toho .toho-one .contact .note {
    margin-top: 1em;
    font-size: 0.8em;
}

@media screen and (max-width: 600px){
    .ticket .detail .toho .toho-one .contact th,
    .ticket .detail .toho .toho-one .contact td {
        display: block;
        width: 100%;
        text-align: center;
    }
    .ticket .detail .toho .toho-one .contact th {
        border-bottom: none;
    }
    .ticket .detail .toho .toho-one .contact td {
        margin-bottom: 0.5em;
    }
    .ticket .detail .toho .toho-one .contact .note {
        text-align: left;
        font-size: 0.9em;
    }
}

@media screen and (max-width: 400px){
	.ticket .detail .toho .toho-one {
		padding: 1em;
	}
}

/***　プレミアム　***/
.ticket .detail .toho .toho-one .premium {
	margin: 1em auto;
	padding: 1em 1em 0;
	border-radius: 5px;
	border: 1px solid #2f5f85;
	background: #fff;
}
.ticket .detail .toho .toho-one .premium dt {
	line-height: 1.5;
}
.ticket .detail .toho .toho-one .premium dt .title1 {
	margin-bottom: 0.5em;
	padding: 0.2em 0.5em;
	background: #2f5f85;
	border-radius: 3px;
	color: #fff;
	font-weight: 700;
	text-align: center;
}
.ticket .detail .toho .toho-one .premium dt .title2 {
	margin-bottom: 0.5em;
	padding: 0.5em 0 0;
	text-align: center;
	font-size: 1.1em;
}
.ticket .detail .toho .toho-one .premium dt .title2 .strong {
	display: inline-block;
	font-weight: 900;
	font-size: 1.2em;
}

.ticket .detail .toho .toho-one .premium dd {
	padding: 0.5em 1em 0;

}
.ticket .detail .toho .toho-one .premium dd .list_point {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	padding: 1.5em 1.5em 6em;
	border-top: 1px solid #2f5f85;
	border-bottom: 1px solid #2f5f85;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.ticket .detail .toho .toho-one .premium dd .list_point ul {
	position: relative;
	z-index: 100;
}
.ticket .detail .toho .toho-one .premium dd .list_point li {
}

.ticket .detail .toho .toho-one .premium dd .list_point .icon {
	margin-right: 0.2em;
	color: #2f5f85;
}
.ticket .detail .toho .toho-one .premium dd .list_point .note {
	display: inline-block;
}
.ticket .detail .toho .toho-one .premium dd .list_point .wrap_pict {
	z-index: 99;
	position: absolute;
	bottom: 0.5em;
	right: 0.5em;
	text-align: right;
}
.ticket .detail .toho .toho-one .premium dd .list_point .pict {
	max-width: 200px;
	margin: 0 0 0 auto;
}
.ticket .detail .toho .toho-one .premium dd .list_point .pict img {
	display: block;
	width: 100%;
}

.ticket .detail .toho .toho-one .premium dd .list_point .msg {
	position: relative;
	z-index: 100;
	margin: 0.5em auto 0;
	color: #bc197a;
	font-weight: 700;
}

.ticket .detail .toho .toho-one .premium .logo_toho-one {
	max-width: 240px;
	min-width: 170px;
	margin: 0 auto;
	width: 60%;
}

.ticket .detail .toho .toho-one .premium .logo_toho-one img {
	display: block;
	width: 100%;
}


@media screen and (max-width: 900px){
	.ticket .detail .toho .toho-one .premium dd .list_point {
		padding: 1.5em 1.5em 6em;
	}
	.ticket .detail .toho .toho-one .premium dd .list_point .pict {
		max-width: 180px;
	}
}
@media screen and (max-width: 760px){
	.ticket .detail .toho .toho-one .premium dd .list_point {
		padding: 1.5em 1.5em 7em;
	}
}

@media screen and (max-width: 600px){
	.ticket .detail .toho .toho-one .premium dt .title2 {
		font-size: 1em;
		line-height: 1.8;
	}
	.ticket .detail .toho .toho-one .premium dt .title2 .strong {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 500px){
	.ticket .detail .toho .toho-one .premium dd {
		padding: 1em 0;

	}
	.ticket .detail .toho .toho-one .premium dd .list_point {
		padding: 1.5em 0 5em;
	}
	.ticket .detail .toho .toho-one .premium dd .list_point .pict {
		max-width: 140px;
	}
}

.ticket .detail .toho .senkou {
	width: 100%;
	margin: 1em auto 0;
}

.ticket .detail .toho .senkou th,
.ticket .detail .toho .senkou td {
	padding: 0.5em 1em;
	border: 1px solid #2f5f85;
	text-align: left;
}
.ticket .detail .toho .senkou th {
	background: #eee;
	font-weight: 500;
	text-align: center;
}
.ticket .detail .toho .caution1 {
	max-width: inherit;
	margin: 0 auto;
	border-top: none;
}

.ticket .detail .toho .senkou .caution {}


/***　プレイガイド　***/
.ticket .detail .playguide {
	width: 100%;
	max-width: 900px;
	justify-content: center;
	display: flex;
	gap: 1em;
	margin: 1em auto 0;
}
.ticket .detail .playguide li {
	width: 100%;
}
.ticket .detail .playguide .btn {
	display: block;
	width: 100%;
	position: relative;
	padding: 0.5em;
	background: #d5708e;
/*	border: 1px solid #2f5f85;*/
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
	text-align: center;
	transition: 0.5s;
}

.ticket .detail .playguide .btn:hover {
	background: #2f5f85;
}

.ticket .detail .playguide .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 640px){

	.ticket .detail .playguide {
		display: block;
	}
	.ticket .detail .playguide li {
		max-width: 400px;
		width: 80%;
		margin: 0 auto;
	}
	.ticket .detail .playguide li:not(:last-of-type) {
		margin: 0 auto 0.5em;
	}
	.ticket .detail .playguide .btn {
		display: block;
		width: 100%;
		position: relative;
		padding: 0.5em;
		background: #d5708e;
	/*	border: 1px solid #2f5f85;*/
		border-radius: 5px;
		color: #fff;
		text-decoration: none;
		font-size: 1.1em;
		text-align: center;
		transition: 0.5s;
	}
}


/***　グループ観劇　***/
.ticket .detail .group .btn {
	position: relative;
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 1em auto;
	padding: 0.5em;
	background: #d5708e;
/*	border: 1px solid #2f5f85;*/
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
	text-align: center;
	transition: 0.5s;
}

.ticket .detail .group .btn:hover {
	background: #2f5f85;
}

.ticket .detail .group .btn .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}
.ticket .detail .group .office {
	display: inline-block;
	margin: 0 0.05em;
}
.ticket .detail .group .tel {
	display: inline-block;
	margin: 0 0.05em;
}
.ticket .detail .group .tel a{
	text-decoration: none;
	color: #2f5f85;
}
.ticket .detail .group .note {
	display: inline-block;
	margin: 0 0.05em;
}

/***　テレザーブ　***/

.ticket .detail .tele .tel {
	display: inline-block;
	margin: 0 0.05em;
	font-size: 1.3em;
}
.ticket .detail .tele .tel a{
	text-decoration: none;
	color: #2f5f85;
}
.ticket .detail .tele .tel .icon {
	margin-right: 0.2em;
}
.ticket .detail .tele .note {
	display: inline-block;
	margin: 0 0.05em;
}


@media screen and (max-width: 580px){
}


/****　リセール　*****/

.ticket .detail .resale {
	text-align: left;
    font-size: 16rem;
}

.ticket .detail > dd.resale {
	padding: 1em 1.5em;
}

.ticket .detail .resale .list {
    text-align: center;
}

.ticket .detail .resale .list li{
	display: inline-block;
	vertical-align: middle;
    margin: 0.5em;
}

.ticket .detail .resale .list li:last-child{
	margin-right: 0;
}

.ticket .detail .resale .list img {
    display: block;
    height: auto;
}
.ticket .detail .resale .list a {
    color: #bf0017;
	text-decoration: none;
    }

.ticket .detail .resale .caution {
    width: 100%;
    text-align: left;
    font-size: 0.9em;    
}

.ticket .detail .resale .caution li {
    text-indent: -1em;
    padding-left: 1em;    
}

@media screen and (max-width: 414px){

	.ticket .detail .resale {
		font-size: 15rem;
	}
}


/***　会場案内　***/

.ticket .kaijyou {}

.ticket .kaijyou .logo {
	margin: 0 auto;
}

.ticket .kaijyou .map {
	width: 100%;
	max-width: 602px;
	margin: 40px auto 20px;
}

.ticket .kaijyou .map img {
	width: 100%;
}

.ticket .kaijyou .logo {
	max-width: 257px;
	margin: 1em auto;	
}

.ticket .kaijyou .logo img {
	display: block;
	width: 100%;
}

.ticket .kaijyou .add {}

.ticket .kaijyou .koutsu{
	display: inline-block;
	margin: 1em auto 2em;
	text-align: left;
	font-size: 0.9em;
}

.ticket .kaijyou .koutsu li{
	margin-bottom: 0.5em;
	padding-left: 1.3em;
	text-indent: -1.3em;
	line-height: 1.5;
}

.ticket .kaijyou .koutsu li::before {
	content: "・";
}

.ticket .contact{
	font-size: 18rem;    
}
.ticket .contact .lbl {
	display: inline-block;
}
.ticket .contact .tel {
	display: inline-block;
	margin: 0 0.5em;
}
.ticket .contact .tel a {
	color: #2f5f85;
	text-decoration: none;
}
.ticket .contact .tel .icon {
	margin-right: 0.3em;
}
.ticket .contact .office {
	display: inline-block;
	margin: 0 0.5em;
}

.ticket .kaijyou .btn_seat {
	position: relative;
	display: block;
	max-width: 400px;
	width: 80%;
	margin: 1em auto;
	padding: 0.5em;
	background: #d5708e;
/*	border: 1px solid #2f5f85;*/
	border-radius: 5px;
	color: #fff;
	text-decoration: none;
	font-size: 1.1em;
	text-align: center;
	transition: 0.5s;
}

.ticket .kaijyou .btn_seat:hover {
	background: #2f5f85;
}

.ticket .kaijyou .btn_seat .icon{
	position: absolute;
	top: calc(50% - 0.5em);
	right: 1em;
}

@media screen and (max-width: 510px){
	.ticket .contact .lbl {
		display: block;
	}
}

@media screen and (max-width: 414px){

    .ticket .maeuri {
        margin: 0 auto 10px;
    } 

    .ticket .detail .url {
        font-size: 20rem;
    }

    .ticket .detail .senkou dd {
        font-size: 18rem;
    }    
    
    .ticket .caution {
        font-weight: 700;
    }  

    .ticket .detail .playguide dd {
        font-size: 18rem;
    }
    .ticket .kaijyou {
        padding: 10px 20px;
    }
    .ticket .kaijyou .logo {
       max-width: 180px;
    }

    .ticket .kaijyou .map {
        width: 100%;
        max-width: 602px;
        margin: 10px auto;
    } 
    
    .ticket .contact .fas {
        margin-left: 0;
    }    
}


@media screen and (max-width: 375px){

    .ticket .day {
        font-size: 48rem;
    }
    .ticket .start_say {
        font-size: 18rem;
    }       
}

@media screen and (max-width: 320px){

    .ticket .day {
        font-size: 38rem;
    }

}

/**********************************************************************

　スケジュール

**********************************************************************/
.area_info {
    margin: 0 auto 5em;

}

.area_info .sokuho {
    margin-bottom: 2em;
    font-size: 24rem;
}

.area_info .sokuho .sch {
    display: block;
    margin: 0 auto 0.5em;
}

.area_info .sokuho .theater {
    display: block;
    max-width: 300px;
    width: 80%;
    margin: 0 auto;
}
.area_info .sokuho .theater img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 360px){

}

/****　ムービングポスター　*****/

