@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: vdl-v7marugothic, sans-serif;
font-weight: 300;
font-style: normal;

font-family: vdl-v7marugothic, sans-serif;
font-weight: 700;
font-style: normal;
***/

/***色メモ
ピンク　#e65296
青　#0e74b9　rgba(14,116,185,1)
水色 #7ad1fb
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a:link{
    color: #e65296;
    text-decoration: none;
}
a:hover{}
a:visited {color: #e65296;}


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:#FF0004;}


/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

/********改行********/

.res {
	display: none;
}

.res2 {
	display: none;
}

.res3 {
	display: none;
}

.res4 {
	display: none;
}

.pk {
	display: inline-block;
}


@media screen and (max-width: 768px){

	.res {
		display: inline;
	}
}

@media screen and (max-width: 414px){

	.res2 {
		display: inline;
	}
}

@media screen and (max-width: 375px){

	.res3 {
		display: inline;
	}
}

@media screen and (max-width: 320px){

	.res4 {
		display: inline;
	}
}

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;
} 

body{
	margin: 0;
	padding: 0;
	font-size: 16em;
	line-height:2;
	color:#0e74b9;
font-family: vdl-v7marugothic, sans-serif;
font-weight: 700;
font-style: normal;
    overflow: hidden;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    
	/* 画像ファイルの指定 */
	background-image: url("../images/bg_wood.jpg");

	/* 画像を常に天地左右の中央に配置 */
	background-position: bottom -20px center;

	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: repeat;

	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: scroll;

	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
	background-size: auto; 
    
	background-color: #fff;
}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}




.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
}

@media screen and (max-width: 900px){
    
    main .visual {
        margin: 0 auto;
        padding: 10px;
    }
    main .ban_list {
        max-width: 300px;
    }    
}

@media screen and (max-width: 768px){

    main .visual {
        margin-top: 0;
    }

}

@media screen and (max-width: 414px){
    main .ban_list {
        max-width: 240px;
        margin-bottom: 0;
    }      
    .billing {
        font-size: 14rem;
    }
}

/*****フッター*****/

footer{
	width: 100%;
	margin: 10px auto 0;
    padding-bottom: 0;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
    
    
    padding-bottom: 20%;
    
	/* 画像ファイルの指定 */
	background-image: url("../images/bg_footer.png");

	/* 画像を常に天地左右の中央に配置 */
	background-position: bottom center;

	/* 画像をタイル状に繰り返し表示しない */
	background-repeat: no-repeat;

	/* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
	background-attachment: scroll;

	/* 表示するコンテナの大きさに基づいて、背景画像を調整 */
	background-size: 100%;    
}

.index footer{
	margin-top: 3em;
    padding-bottom: 20px;    
	background-image: none;
}


.footer .policy_link {
	margin: 5em 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: #000;
	font-size: 15rem;
}
.footer .policy_link li:not(:last-of-type) {
	content: "｜";
}
.footer .policy_link li a:hover {
	text-decoration: underline;
}


.footer .copy {
	display: inline-block;
    color: #e65296;
    color: #000;
}

.footer .sns_link {
	display: inline-block;
    margin-left: 10px;
}

.footer .sns_link .icon_x,
.footer .sns_link .icon_toho {
    display: inline-block;
    vertical-align: top;  
    margin: 0 5px;
}

.footer .sns_link .icon_toho {
    width: 35px;
}

.footer .sns_link .icon_x {
	position: relative;
	top: 5px;
    width: 25px;
}

.footer .sns_link .icon_x img,
.footer .sns_link .icon_toho img {
    width: 100%;
}


#pagetop{
    position: fixed;
    right: 20px;
    bottom: 20px;
	z-index: 1000;
    max-width: 200px;
}

#pagetop img {
    max-width: 100%;
}


@media screen and (max-width: 414px){
    #pagetop{
        right: 10px;
        bottom: 5px;
        max-width: 120px;
    }

}

@media screen and (max-width: 414px){
}

/****　フェードイン2　****/

.fadein2 {
    opacity: 0;
    animation: fadein2 6s ease forwards;
}
@keyframes fadein2 {
    100% {  opacity: 1;}
}
 
/*以下遅延の指定*/
.item01 {animation-delay: 0s;}
.item02 {animation-delay: 0.5s;}
.item03 {animation-delay: 1s;}
.item04 {animation-delay: 1s;}
.item05 {animation-delay: 1.5s;}
.item06 {animation-delay: 1.5s;}

/****　フェードイン3　****/
.fadein3 {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

@media (orientation: portrait) { /**　画面が縦長の時　**/

    .fadein3 {
      opacity : 1;
      transform: translateY(0);        
    }
}


/*****　モーダルウィンドウ　*****/
.modal-wrapper {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 20;
  position: relative;
/*  width: 70%;*/
  max-width: 800px;
  padding: 3em;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, .6);
  vertical-align: middle
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
      padding: 1.5em;
    }
}



/*******************************************
	お願いリンク
********************************************/

.btn_area {
	width: 100%;
/*    margin-bottom: 10px;*/
	padding: 0.5em 0 0;
/*	background: rgba(230,82,150,0.8);
	background: rgba(0,115,189,0.9); */   
	text-align: center;

}

.btn_area .btn {
	display: inline-block;
    min-width: 260px; 
    margin-bottom: 0.8em;
	color: rgba(0,115,189,0.9); 
	padding: 0.3em 1em;
	text-decoration: none;
	font-size: 14rem;
font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
    border: 2px solid #fff;
    border-radius: 5px;
	border: 2px solid rgba(0,115,189,0.9); 
}

.btn_area .btn.s {
min-width: 140px; 
}


.btn_area .btn::before {
	font-family: "Font Awesome 5 Free";	
	content: "\f0da";
	font-weight: 900;
	font-size: 1em;
	padding-right: 0.2em;
/*    color: #e65296;*/
}

.btn_area.pc {
/*    border-bottom: 2px dotted #f2e7da;*/
}

/*.btn_area.smp {
    display: none;
}*/

@media (max-width: 1076px) {
    .btn_area .btn.s {
    min-width: 260px; 
    }
}

@media (max-width: 414px) {
    .btn_area .btn,
    .btn_area .btn.s {
        display: block;
        width: 90%;
    margin: 0 auto 0.8em;        
    }
}




/**************************************
　ナビ　メニュー
**************************************/

nav {
    background: rgba(0,115,189,0.9);
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 20px;
    padding: 10px;
    outline: 2px solid #fff;
    outline-offset: -5px;
    box-shadow: 0 5px 10px #ccc;
font-family: 'Margarine', cursive;
    font-weight: normal;
}

nav .n_list {
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 10px;
    padding: 0.5em 0;
    font-size: 20rem;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 0 #e65296;
    line-height: 1;
    vertical-align: middle;
}

nav .n_list .n_item a {
    text-decoration: none;
    color: #fff;
}
nav .n_list .n_item.jp {
    font-family: vdl-v7marugothic, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 17rem;
}

nav .n_list .n_item .amp {
    margin: 0 0.2em;
}

main .ban_smp {
    display: none;
}
nav .n_list .n_item.ban_pc {
    max-width: 200px;
    width: 100%;
}

nav .n_list .n_item.ban_pc img {
    width: 100%;
    box-shadow: 0 0 5px #02304d;

}

@media screen and (max-width: 1040px){
    nav {
/*        margin-bottom: 0;*/
        padding: 15px 40px;
    }
    
    .index nav {
/*        margin-bottom: 0;*/
    }    

    nav .n_list {
        width: 80%;
        margin: 0 auto;
    }
    
    nav .n_list .n_item {
        margin: 0 0.3em;
        padding: 0.2em 0;    
    }
}


@media screen and (max-width: 768px){
    nav {
/*        margin-bottom: 0;*/
    }    
    nav .n_list .n_item.ban_pc {
        display: none;
    }
    
    main .ban_smp {
        display: block;
        max-width: 900px;
        width: 97%;
        margin: 0.5em auto 0;
    }

    main .ban_smp img {
        width: 100%;
        box-shadow: 0 0 10px #ccc;

    }
}

@media screen and (max-width: 414px){
    nav .n_list {
        width: auto;
    }
    nav .n_list .n_item {
        text-shadow: none;
    }
    
    main .ban_smp {
        margin: 0.5em auto 0;
    }
}

/*************************************
　共通
*************************************/

.page_logo {
    max-width: 280px;
    margin: 0 auto;
}

.page_logo img {
    width: 100%;
}

@media screen and (max-width: 900px){
    .page_logo img {
        width: 80%;
    }
}

/****　見出し　****/

.heading_page {
    display: block;
    margin-bottom: 1.3em;
    font-size: 40rem;
font-family: 'Margarine', cursive;
    font-style: normal;
    line-height: 1;
    color: rgba(0,115,189,0.8);
}

.heading_page .amp {
    margin: 0 0.2em;
}

.heading_page_sub {
    display: block;
    margin-bottom: 0.8em;
    font-size: 30rem;
font-family: 'Margarine', cursive;
    font-style: normal;
    line-height: 1;
    color: #e65296;
}

/****　色　****/
.c1 {
    color: #e65296;
}


/**************************************
　トップページ
**************************************/
.index {}


/***　お知らせ系ポップアップ　***/

.modal-wrapper.info {
}

.modal-wrapper.info .title {
    margin: 0 auto 0.5em;
    font-size: 24rem;
}

.modal-wrapper.info .info_box .text {
    border-top: 3px double #0e74b9;
    border-bottom: 3px double #0e74b9;
    padding: 1em 0;
    text-align: left;
}
.modal-wrapper.info .info_box .text p:not(:last-child) {
    margin-bottom: 1em;
}

/*.index .info .btn_cmt {
    min-width: 90px;
    margin: 10px 5px 0;
    padding: 0 15px;
    line-height: 1.5;
    border-right: 2px solid #bf246b;
    border-bottom: 2px solid #bf246b;
    color:#fff;
    border-radius: 5px;
    background: #E65296;
    font-weight: 900;
    display: inline-block;
}


.index .info .btn_cmt .fas {
    margin-right: 0.3em;
    font-size: 0.8em;
}*/


.btn_info_area {
	width: 100%;
    margin: 0.5em auto;
	padding: 0 0 0;
	text-align: center;

}

.btn_info_area .btn {
	display: inline-block;
    max-width: 400px;
	width: 100%;
    margin: 0 0.5em 0.8em;
	padding: 0.5em 1em;    
    border: 3px solid #e65296;    
    background: #e65296;    
    color: #fff;
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	border-radius: 5px;
	transition: 0.3s;
	font-size: 20rem;
	line-height: 1.5;
}

.btn_info_area .btn:hover {
    color: #e65296;
    background: rgba(255,255,255,0.5);
}

.btn_info_area .item {
    display: inline-block;
}

@media (max-width: 1020px) {

	.btn_info_area .btn {
	    max-width: 280px;
	}
}

@media (max-width: 900px) {
    .btn_info_area {
        width: 97%; 
    }
}
@media (max-width: 700px) {

	.btn_info_area .btn {
	    max-width: 200px;
		margin: 0 0.25em;
		font-size: 18rem;
	}
}
@media screen and (max-width: 440px){

    .btn_info_area .btn {
        display: block;
        width: 90%;
		max-width: inherit;
		margin: 0 auto 0.5em;
	}

}

/***　メインビジュアル　***/

.index .visual {
    max-width: 900px;
    margin: 0 auto;
}

.index .visual img {
    max-width: 100%;
    box-shadow: 0 0 10px #ccc;
}

/**************************************
　イントロ＆ストーリーページ
**************************************/

.i-s {}

.i-s .photo {
    max-width: 700px;
    margin: 0 auto 1.5em;
}

.i-s .photo img {
    max-width: 100%;
    display: block;
    box-shadow: 0 0 10px #ccc;
    box-shadow: 3px 3px 2px #ccc;
}
.i-s .photo .cap {
    display: block;
    margin-top: 0.5em;
    font-size: 12rem;
    text-align: right;
    color: #333;
    font-weight: 700;
    line-height: 1.5;
}

.i-s .intro {
    max-width: 800px;
    margin: 0 auto;
}
.i-s .intro .box {
    padding: 4em 3em 3em;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    outline: 2px dashed #e65296;
    outline-offset: -10px;
    border: 2px solid #e65296;    
}
.i-s .intro .lead {
    margin: 0 auto 1em;
    font-size: 28rem;
    text-align: center;
    line-height: 1.8;
    color: #0e74b9;
}
.i-s .intro .c1 {
    color: #e65296;
}
.i-s .intro .text {
    text-align: left;
    font-size: 18rem;
    color: #0e74b9;
}
.i-s .intro .text p {
    margin-bottom: 1em;
}


@media screen and (max-width: 800px){
    .i-s .intro {
        padding: 0 10px;
    }   
}

@media screen and (max-width: 414px){
    .i-s .intro .lead {
        font-size: 20rem;
        line-height: 1.5;
    }
    .i-s .intro .box {
        padding: 2.4em; 
    }
}

@media screen and (max-width: 320px){
    .i-s .intro .box {
        padding: 2em;
    }  
}

/****　ストーリー　****/
.i-s .story {
    max-width: 800px;
    margin: 3em auto 0;
}

.i-s .story .c1 {
    color: #e65296;
    font-weight: 700;
}

.i-s .story .box {
    padding: 4em 3em 3em;
    background: rgba(255,255,255,0.9);
    border-radius: 10px;
    outline: 2px dashed #e65296;
    outline-offset: -10px;
    border: 2px solid #e65296;  
}
.i-s .story .text {
    text-align: left;
    font-size: 18rem;
    color: #0e74b9;
}

.i-s .story .text p {
    margin-bottom: 1em;
}

@media screen and (max-width: 800px){
    .i-s .story {
        padding: 0 10px;
    }   
}

@media screen and (max-width: 414px){
    .i-s .story .box {
        padding: 2.4em; 
    }
}

@media screen and (max-width: 320px){
    .i-s .story .box {
        padding: 2em;
    }  
}

/**************************************
　キャストページ
**************************************/

.c-s main {
    padding: 0 20px;
}


/***　キャスト　***/

.c-s .list {
    margin: 0 auto 6em;
}

.c-s .heading_page_sub {
    margin-bottom: 1.3em;
}

.c-s .list > .item {
    max-width: 700px;
    margin: 40px auto 20px;
    background: rgba(255,255,255,0.8);
    padding: 2em;
    border: 3px solid #e65296;
    border-radius: 10px;
    position: relative;
}

.c-s .list > .item .item_w {
    display: inline-block;
    margin: 0 2em;
}

.c-s .list > .item .photo {
    display: block;
    max-width: 240px;
    margin: 30px auto 0.5em;
}

.c-s .list > .item .photo.l {
    max-width: 300px;
}

.c-s .list > .item .photo img{
    display: block;
    max-width: 100%;
	box-shadow: 3px 3px 5px #afbecc;    
}
.c-s .list > .item .yaku {
    font-size: 20rem;
    font-weight: 700;
    line-height: 1.5;
    position: absolute;
    top:-29px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.c-s .list > .item .yaku::before {
    content: url("../images/cast_yaku.png");
    display: block;
}
.c-s .list > .item .yaku .note {
/*    display: block;*/
    font-size: 0.8em;
    letter-spacing: -0.1em;
}
.c-s .list > .item .name {
	margin-top: 0.8em;
    font-size: 24rem;
    line-height: 1.5;
    color: #e65296;
}
.c-s .list > .item .kana {
    display: block;
    font-size: 0.5em;
    letter-spacing: -0.1em;
    
}
.c-s .list > .item .about {
    display: block;    
    margin: 1.5em auto;
    text-align: left;
    line-height: 1.8;
    padding: 1em 2em;
	border-radius: 5px;
    border: #E65296 2px dotted;

}

.c-s .list > .item .btn_cmt {
    min-width: 90px;
    margin: 10px 5px 0;
    padding: 0 15px;
    line-height: 1.5;
    border-right: 2px solid #bf246b;
    border-bottom: 2px solid #bf246b;
    color:#fff;
    border-radius: 5px;
    background: #E65296;
    font-weight: 900;
    display: inline-block;
}


.c-s .list > .item .btn_cmt .fas {
    margin-right: 0.3em;
    font-size: 0.8em;
}

@media screen and (max-width: 530px){

    .c-s .list > .item .photo {
        max-width: 160px;
    }
	
    .c-s .list > .item .photo.l {
        max-width: 200px;
    }

    .c-s .list > .item .item_w {

    }
}

@media screen and (max-width: 440px){
    .c-s .list > .item .item_w {
        display: block;
    }
    .c-s .list > .item .item_w:first-of-type {
        margin-bottom: 1.5em;
    }
}


/***　キャストページ　コメント　***/
.c-s .cast .cmt {
}

.c-s .cast .cmt .title {
    margin: 0 auto;
    font-size: 28rem;
}

.c-s .cast .cmt .cmt_box .name {
    display: block;
    margin-bottom: 1em;
    font-size: 28rem;
    line-height: 1;
}
.c-s .cast .cmt .cmt_box .name .ls {
    letter-spacing: 0.1em;
}
.c-s .cast .cmt .text {
    border-top: 3px double #0e74b9;
    border-bottom: 3px double #0e74b9;
    padding: 1em;
    text-align: left;
}

.c-s .cast .cmt .cmt_box .qa dt {
	color: #e65296;
}

.c-s .cast .cmt .cmt_box .qa dd {
    margin-bottom: 1em;
}


/***　アンサンブル　***/

.c-s .cast .ens_list {
    margin: 0 auto 2em;
	font-size: 20rem;
}

.c-s .cast .ens_list .item {
    display: inline-block;
    margin: 0 auto 1em;
    padding: 0 5px;
}

.c-s .cast .ens_list .name {
    line-height: 1;
    text-align: center;
}
.c-s .cast .ens_list .photo {
    display: block;
    vertical-align: bottom;
    max-width: 160px;
    margin: 0 auto;
}
.c-s .cast .ens_list .photo img {
    max-width: 100%;
}

.c-s .cast .ens_list .hosoku {
    display: block;
    font-size: 0.8em;
}

@media screen and (max-width: 1300px){

    .c-s .cast .ens_list {
        max-width: 800px;

    }
}

@media screen and (max-width: 740px){

    .c-s .cast .ens_list {
        max-width: 600px;
    }
    .c-s .cast .ens_list .photo {
        max-width: 120px;
    }
}

@media screen and (max-width: 580px){

    .c-s .cast .ens_list {
        max-width: 600px;
    }
    .c-s .cast .ens_list .photo {
        max-width: 100px;
    }

}


@media screen and (max-width: 500px){

    .c-s .cast .ens_list {
        max-width: 600px;
    }
    .c-s .cast .ens_list .photo {
        max-width: 80px;
    }

}

@media screen and (max-width: 414px){

    .c-s .cast .ens_list .item {
        display: block;

    }
    .c-s .cast .ens_list .photo {
        max-width: 120px;
    }

}



/***　子役　***/
.c-s .cast .child_list {
	margin: 0 auto 5em;
}

/*.c-s .cast .child_list .yaku {
    display: inline-block;
    margin-bottom: 1em;
    padding: 0 0.5em;
    border-bottom: 2px dotted #e65296;
    font-size: 20rem;
}*/

.c-s .cast .child_list .yaku {
    display: inline-block;
    margin-bottom: 0.5em;
    padding: 0.2em 0;
    color: #e65296;
/*    border-top: 2px solid #e65296;*/
/*    border-bottom: 2px solid #e65296;*/
    font-size: 20rem;
    line-height: 1.5;
}

.c-s .cast .child_list .yaku .inner{
    display: inline-block;
    padding: 0 1em;
/*    border-top: 2px dotted #e65296;    
    border-bottom: 2px dotted #e65296;*/
}


.c-s .cast .child_list .item {
    display: inline-block;
    margin: 0 auto 1em;
    padding: 0 5px;
}

.c-s .cast .child_list .name {
    line-height: 1;
    text-align: center;
	font-size: 20rem;
}
.c-s .cast .child_list .photo {
    display: block;
    vertical-align: bottom;
    max-width: 160px;
    margin: 0 auto;
}
.c-s .cast .child_list .photo img {
    max-width: 100%;
}


@media screen and (max-width: 1300px){

    .c-s .cast .child_list {
        max-width: 800px;

    }

}


@media screen and (max-width: 740px){

    .c-s .cast .child_list {
        max-width: 600px;
    }
    .c-s .cast .child_list .photo {
        max-width: 120px;
    }
}

@media screen and (max-width: 580px){

    .c-s .cast .child_list {
        max-width: 600px;
    }
    .c-s .cast .child_list .photo {
        max-width: 100px;
    }

}


@media screen and (max-width: 500px){

    .c-s .cast .child_list {
        max-width: 600px;
    }
    .c-s .cast .child_list .photo {
        max-width: 80px;
    }

}

@media screen and (max-width: 414px){

    .c-s .cast .child_list .item {
        display: block;

    }
    .c-s .cast .child_list .photo {
        max-width: 120px;
    }

}

/***　スタッフ　***/


.c-s .staff {
    max-width: 900px;
    margin: 60px auto;
}
.c-s .staff .s_list {
    margin-top: 1.5em;
}
.c-s .staff .s_list .item {
    display: inline-block;
    margin: 5px 10px 20px;
    line-height: 1.5;

}

.c-s .staff .s_list .work {
    display: block;
    color: #e65296;
}

.c-s .staff .s_list .name {
    font-weight: 700;
    font-size: 20rem;
 
}
.c-s .staff .s_list .name .word{
    display: inline-block;
 
}

/***　スタッフ2　***/

.c-s .staff .s_list2 {
    margin: 1.5em auto 4em;
}
.c-s .staff .s_list2 .item {
    display: block;
    margin: 5px 10px 30px;
    line-height: 1.5;

}

.c-s .staff .s_list2 .work {
    display: block;
    color: #e65296;
}

.c-s .staff .s_list2 .name {
    font-weight: 700;
    font-size: 20rem;
 
}
.c-s .staff .s_list2 .name .word{
    display: inline-block;
 
}

@media screen and (max-width: 364px){
    .c-s .staff .s_list .name {
        font-size: 16rem;

    }    
    .c-s .staff .s_list2 .name {
        font-size: 16rem;

    }
}

/**************************************
　チケット
**************************************/

/*********　速報　********/

.ticket .sokuho .msg_tour {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

    font-size: 30rem;
    max-width: 15em;
	width: 100%;
    margin: 0 auto 1em;
    text-indent: 0.3em;
	position: relative;
	padding: 1.5rem 5px;
}

.ticket .sokuho .msg_tour:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #e65296, #e65296 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #e65296, #e65296 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ticket .sokuho {
    max-width: 700px;		
    text-align: center;
    margin: 6em auto;
    padding: 0 1em;
}
.ticket .sokuho .area_wrap {
	max-width: 700px;
    margin: 0 auto 3em;
    border: 3px solid #0e74b9;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-radius: 10px;
}

.ticket .sokuho .area_title {
	background: #0e74b9;
	color: #fff;
	padding: 0.8em 0 0.5em;
	vertical-align: middle;
	color: #fff;
	font-size: 1.2em;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
}

.ticket .sokuho .area_wrap dd{
	padding: 1em;
    background: rgba(255,255,255, 0.9);
    font-size: 1.2em;
}

.ticket .sokuho .theater img {
	display: block;
	max-width: 240px;
	width: 80%;
	margin: 0 auto;
}

/****　本報　****/

.ticket {
	margin: 0 auto;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

.ticket .area_ticket {
	margin: 0 auto 5em;
	padding: 0 1em;
}

.ticket .area_ticket .area_btn {}

.ticket .area_ticket .area_btn .btn {
	display: inline-block;
	padding: 0.2em 2em;
	margin: 10px;
	background: #e65296;
    color: #fff;
/*	border: 3px solid #0e74b9;*/
	border-radius: 3px;
	font-size: 20rem;
	text-decoration: none;
	font-weight: 900;
	transition: 0.5s;
}
.ticket .area_ticket .area_btn .fas {
	margin-right: 0.3em;
}

.ticket .area_ticket .area_btn .btn:hover {
	background: #f6187e;
}

@media screen and (max-width: 374px){

	.ticket .area_ticket .area_btn .btn {
		padding: 0.2em 1em;
	}
}


.ticket .area_title {
    font-size: 30rem;
    width: 10em;
    margin: 3em auto 2em;
    text-indent: 0.3em;
	position: relative;
	padding: 1.5rem 5px;
}

.ticket .area_title:after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #e65296, #e65296 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #e65296, #e65296 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ticket .area_ticket .stage_deta {
	margin: 0 auto;
	max-width: 900px;
	padding: 0 1em;
}

.ticket .area_ticket .stage_deta .sch {
	width:100%;
	max-width: 700px;
	margin: 40px auto 20px;
}
.ticket .area_ticket .stage_deta .sch img {
	width: 100%;
}

.ticket .area_ticket .stage_deta .theater {
	width: 40%;
	max-width: 240px;
	margin: 0 auto 40px;
}
.ticket .area_ticket .stage_deta .theater img {
	display: block;
	width: 100%;
}

.ticket .area_ticket .stage_deta .hoshitori {
	max-width: 800px;
	margin: 0 auto 30px;
}

.ticket .area_ticket .stage_deta .hoshitori img {
	width: 100%;
}

.ticket .area_ticket .stage_deta .caution {
	margin: 0 auto 2em;
    text-align: left;
}

.ticket .area_ticket .stage_deta .caution li {
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.8;
    margin-bottom: 0.5em;
	font-weight: 700;
}

.ticket .area_ticket .stage_deta .caution li a {
	color: #0e74b9;
	text-decoration: none;
}

.ticket .area_ticket .stage_deta .list_price {
	margin: 1em auto 0;
}

.ticket .area_ticket .stage_deta .list_price table {
	table-layout: fixed;
	width: 100%;
	background: rgba(255,255,255,0.9);
}

.ticket .area_ticket .stage_deta .list_price capiton {}

.ticket .area_ticket .stage_deta .list_price capiton .note {
	font-size: 0.8em;
}

.ticket .area_ticket .stage_deta .list_price th,
.ticket .area_ticket .stage_deta .list_price td {
	padding: 0.5 1em;
	border: 2px solid #0e74b9;
}
.ticket .area_ticket .stage_deta .list_price th {
	background: rgba(14,116,185,0.1);
}
.ticket .area_ticket .stage_deta .list_price th:first-of-type {
	width: 5em;
}
.ticket .area_ticket .stage_deta .list_price td {}

@media screen and (max-width: 800px){
    .ticket .area_ticket .stage_deta .sch img {
        width: 90%;
    }
}

.ticket .area_ticket .way {
	max-width: 900px;
	margin: 2em auto 0;
	text-align: left;
}

.ticket .area_ticket .way > dt{
	background: #0e74b9;
	border-top: 3px solid #0e74b9;
	border-left: 3px solid #0e74b9;
	border-right: 3px solid #0e74b9;	
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	padding:0.8em 0 0.5em;
    vertical-align: middle;
	color: #fff;
    font-size: 1.2em;
    font-weight: 900;
    text-align: center;
	line-height: 1.5;
}

.ticket .area_ticket .way > dd{
	padding: 20px 20px;
    color: #0e74b9;
	border: 3px solid #0e74b9;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;    
	border-top: none;	
	background: rgba(255,255,255,0.9);
	text-align: center;
}

.ticket .area_ticket .way .start {
	display: block;
	max-width: 15em;
	margin: 0 auto;
	border-bottom: 3px dotted #e65296;
	margin-bottom: 1em;
	font-weight: 900;
	line-height: 1.5;
	font-size: 20rem;
}

.ticket .area_ticket .s {
	font-size: 0.9em;
    font-weight: 900
}

.ticket .area_ticket .way .caution {
	margin-top: 1em;
	padding: 0 1em;
    text-align: left;
}

.ticket .area_ticket .way .caution li {
	text-indent: -1em;
    padding-left: 1em;
    line-height: 1.5;
    margin-bottom: 0.5em;
    font-size: 1em;
}

.ticket .area_ticket .way .caution.cen {
    text-align: center;
}


@media screen and (max-width: 767px){

	.ticket .area_ticket .way {
		margin: 20px auto 0;
	}
}

@media screen and (max-width: 580px){

	.ticket .area_ticket .way .caution.cen {
		text-align: left;
	}
}
	
@media screen and (max-width: 375px){

	.ticket .area_ticket .way > dd{
		padding: 1em;
	}
}

/****　東宝ナビザーブ　****/

.ticket .area_ticket .toho .lbl {
	font-weight: 700;
}

.ticket .area_ticket .toho .btn {
	display: block;
	max-width: 400px;
	width: 90%;
	margin: 0 auto;
	padding: 0.5em 1em 0.3em;
	background: #e65296;
    color: #fff;
	border-radius: 3px;
	font-size: 24rem;
	text-decoration: none;
	font-weight: 900;
	transition: 0.5s;
}

.ticket .area_ticket .toho .btn .icon {
	margin-right: 0.3em;
}

.ticket .area_ticket .toho .btn:hover {
	background: #f6187e;
}

.ticket .area_ticket .toho .senkou {
	margin: 2em auto 0;
}

.ticket .area_ticket .toho .senkou dt {
	background: #0e74b9;
	padding: 0.3em 0.5em;
	color: #fff;
	font-weight: 900;
}
.ticket .area_ticket .toho .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	font-size: 20rem;
	font-weight: 900;    
}

/****　フジテレビ　****/

.ticket .area_ticket .fuji {}


.ticket .area_ticket .kyodo .playguide .time {
    margin-top: 0.5em;
    margin-bottom: 1em;
    line-height: 1;
    font-size: 16rem;
    padding: 1em;
	border: 3px dotted #e65296;
    border-radius: 5px;
}

/****　キョードー東京　****/

.ticket .area_ticket .kyodo {

}

.ticket .area_ticket .kyodo .senkou dt {
	background: #0e74b9;
	padding: 0.3em 0.5em;
	color: #fff;
	font-weight: 900;
}
.ticket .area_ticket .kyodo .senkou dd {
	margin-bottom: 1em;
	padding: 0.5em;
	word-break: break-all;
    text-align: center;
	font-size: 20rem;
	font-weight: 900;    
}
.ticket .area_ticket .kyodo .senkou .url {
	line-height: 1.5;
}

.ticket .area_ticket .kyodo .senkou .tel {
	display: block;
	margin: 1em auto 0;
	color: #e65296;
}

.ticket .area_ticket .kyodo .senkou .tel a{
	color: #e65296;
	text-decoration: none;
}
.ticket .area_ticket .kyodo .senkou .time {
	display: inline-block;
	font-weight: 500;
	font-size: 0.8em;
	color: #0e74b9;
}




/****　テレザーブ　****/

.ticket .area_ticket .tele .tel {
	display: block;
	position: relative;
	font-size: 30rem;
	font-weight:  bold;
	line-height: 40px;
    color: #e65296;
}

.ticket .area_ticket .tele .tel a{
	color: #e65296;
	text-decoration: none;
}

.ticket .area_ticket .tele .tel .fas {
    margin-right: 0.2em;
}

.ticket .area_ticket .tele .tel .note {
	display: inline-block;
	font-size: 0.7em;
}

/****　グループ観劇　****/

.ticket .area_ticket .group .btn {
	display: block;
	max-width: 300px;
	width: 90%;
	margin: 1em auto;
	padding: 0.5em 1em 0.3em;
	background: #e65296;
    color: #fff;
	border-radius: 3px;
	font-size: 20rem;
	text-decoration: none;
	font-weight: 900;
	transition: 0.5s;
}

.ticket .area_ticket .group .btn .icon {
	margin-right: 0.3em;
}

.ticket .area_ticket .group .btn:hover {
	background: #f6187e;
}

.ticket .area_ticket .group .tel {
	display: block;
	position: relative;
	font-size: 20rem;
	font-weight:  bold;
	line-height: 40px;
    color: #e65296;
}

.ticket .area_ticket .group .tel a{
	color: #e65296;
	text-decoration: none;
}

.ticket .area_ticket .group .tel .fas {
    margin-right: 0.2em;
}

/*****　プレイガイド　*****/


.ticket .area_ticket .playguide dt {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
    background: #0e74b9;
    color: #fff;
	font-weight: 900;
}

.ticket .area_ticket .playguide dd {
	text-align: left;
    font-size: 20rem;
    font-weight: 900;
	margin-bottom: 1em;
	padding-left: 1em;
	word-break: break-all;
    text-align: center;
}

.ticket .area_ticket .playguide a {
	text-decoration: none;
}

.ticket .area_ticket .playguide .tel_list {
    text-align: left;
    font-size: 18rem;
    margin: 1em auto 0;
}

.ticket .area_ticket .playguide .tel_list th,
.ticket .area_ticket .playguide .tel_list td {

}

.ticket .area_ticket .playguide .tel_list th {
    padding-right: 1em;
    vertical-align: top;
}
.ticket .area_ticket .playguide .url {
	line-height: 1.5;
}


/*.ticket .area_ticket .kyodo .playguide .time {
    margin-top: 0.5em;
    margin-bottom: 1em;
    line-height: 1;
    font-size: 16rem;
    padding: 1em;
	border: 3px dotted #e65296;
    border-radius: 5px;
}

.ticket .area_ticket .kyodo .playguide .time .lbl {
    display: block;
    margin-bottom: 0.5em;
}
.ticket .area_ticket .kyodo .playguide .time .lbl::before {
    content: "《";    
}
.ticket .area_ticket .kyodo .playguide .time .lbl::after {
    content: "》";    
}
.ticket .area_ticket .kyodo .playguide .time .item {
    display: inline-block;
    margin: 0.5em;
}

.ticket .area_ticket .kyodo .playguide .url {
    font-size: 24rem;
}*/

@media screen and (max-width: 550px){
    .ticket .area_ticket .playguide .tel_list th,
    .ticket .area_ticket .playguide .tel_list td {
        display: block;
        width: 100%;
    }
    .ticket .area_ticket .playguide .tel_list th::before {
        content: "●";
    }
    .ticket .area_ticket .playguide .tel_list td {
        margin-left: 1em;
    }
}


/*****　リセール　*****/

.ticket .resale p {
    text-align: left;
}

.ticket .resale .list {
    margin-top: 2em;
}

.ticket .resale .list li {
    margin: 1em;
    display: inline-block;
}

.ticket .resale .list span {
    font-size: 0.9em;
}
.ticket .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

/***　会場案内　***/

.ticket .area_ticket .kaijyou {
	padding-top: 40px;
	text-align: center;
}


.ticket .area_ticket .kaijyou .logo {
	max-width: 240px;
	margin: 1em auto;	
}

.ticket .area_ticket .kaijyou .logo img {
	width: 100%;
}


.ticket .area_ticket .kaijyou .add{
}

.ticket .area_ticket .kaijyou .btn_seat {
	display: inline-block;
	padding: 0.2em 2em;
	margin: 10px;
	background: #e65296;
    color: #fff;
	border-radius: 3px;
	font-size: 20rem;
	text-decoration: none;
	font-weight: 900;
	transition: 0.5s;
}
.ticket .area_ticket .kaijyou .btn_seat .fas {
	margin-right: 0.3em;
}

.ticket .area_ticket .kaijyou .btn_seat:hover {
	background: #f6187e;
}


.ticket .area_ticket .kaijyou .koutsu{
	width:100%;
	max-width: 21em;
	margin: 1em auto 0;
	text-align: left;
	font-size: 0.9em;
	font-weight: bold;
}

.ticket .area_ticket .kaijyou .koutsu li{
	padding-left: 1.3em;
	text-indent: -1.3em;
}

@media screen and (max-width: 414px){

	.ticket .area_ticket .kaijyou .logo {
		width: 80%;
	}
	.ticket .area_ticket .btn_seat {
		max-width: 6em;
		font-size: 18rem;
	}
}


/****　お問い合わせ　****/

.ticket .area_ticket .contact .tel {
	display: block;
	position: relative;
	font-size: 20rem;
	font-weight:  bold;
	line-height: 40px;
    color: #e65296;
}

.ticket .area_ticket .contact .tel a{
	color: #e65296;
	text-decoration: none;
}

.ticket .area_ticket .contact .tel .fas {
    margin-right: 0.2em;
}

.ticket .area_ticket .contact .tel .note {
	display: inline-block;
	font-size: 0.7em;
}

/*********　全国公演　ツアー　********/
.area_tour {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 1em;
}

.area_tour .list {
	margin: 0 auto 2em;
	text-align: left;
}

/*.area_tour .list > dt{
	padding:0.5em 0 1em;
    border-bottom: 1px solid #9d86ba;
	color: #0e74b9;
    font-size: 24rem;
    font-weight: 900;
    text-align: center;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
}

.area_tour .list > dd{
	padding: 1em;
	border-top: none;	
	text-align: center;
    background: rgba(10,5,12,0.5);
}*/


.area_tour .list > dt{
	background: #0e74b9;
	border-top: 3px solid #0e74b9;
	border-left: 3px solid #0e74b9;
	border-right: 3px solid #0e74b9;	
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	padding:0.8em 0 0.5em;
    vertical-align: middle;
	color: #fff;
    font-size: 1.2em;
    font-weight: 900;
    text-align: center;
	line-height: 1.5;
}

.area_tour .list > dd {
	padding: 20px 20px;
    color: #0e74b9;
	border: 3px solid #0e74b9;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;    
	border-top: none;	
	background: rgba(255,255,255,0.9);
	text-align: center;
}

.area_tour .list .theater {
	display: block;
	margin: 0 auto 1em;
	font-size: 20rem;
	color: #fff;
	font-weight: 700;
}
.area_tour .list .theater .icon {
	margin-left: 0.3em;
}
.area_tour .list .theater .pk {
	display: inline-block;
}

.area_tour .list .theater .pk:not(:last-of-type) {
	margin-right: 1em;
}

.area_tour table{
	margin: 0 auto;
	width: 100%;
	max-width: 30em;
}

.area_tour table {
	font-size: 18rem;
}

.area_tour table td {
	padding: 0.2em;
	border-bottom: 1px solid #0e74b9;
}
.area_tour table td:first-of-type {
	border-top: 1px solid #0e74b9;
}

.area_tour table td .point {
	color: #0e74b9;
}

.area_tour table td .note {
	display: block;
	margin: 0 0.5em;
	font-size: 0.8em;
	line-height: 1.3;
}

.area_tour .list .contact {
	margin: 1em auto 0;
}

.area_tour .list .contact .lbl {
	display: inline-block;
	color: #0e74b9;
}

.area_tour .list .contact .lbl::before {
	content: "［";
}

.area_tour .list .contact .lbl::after {
	content: "］";
}

.area_tour .list .contact .office {
	display: inline-block;
	margin: 0 0.3em;
}

.area_tour .list .contact .tel {
	display: inline-block;
	margin: 0 0.3em;
	text-decoration: none;
}

.area_tour .list .contact .tel a {
	color: #0e74b9;
	text-decoration: none;
}

.area_tour .list .contact .time {
	display: inline-block;
}


@media screen and (max-width: 520px){
	.area_tour .list .contact .office {
		display: block;
	}
}

@media screen and (max-width: 414px){
	.area_tour .list {
		padding: 1em;
	}
	.area_tour .list > dt {
	}
	.area_tour .list > dd {
		padding: 1em 0;
	}
}

@media screen and (max-width: 340px){

	.area_tour table {
		font-size: 16rem;
	}
}





/****************************************
　movie　ムービー
******************************************/

.movie {}

.movie .list {
    max-width: 600px;
    margin: 2em auto 40px;
    padding: 10px;
/*    display: flex;
    justify-content: space-between;
    align-items: flex-start;   */ 
}
.movie .list .item{
/*    flex-basis: 47.0%;*/
    margin: 0 auto 2em;
}
.movie .list .single{
}

.movie .name {
    margin-bottom: 5px;
    font-size: 20rem;
    color: #e65296;
}

.movie .youtube {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
border: 3px solid #e65296;
    border-radius: 10px;
}
.movie .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 620px){
    .movie .list {
        display: block;
    }
    .movie .name {
        margin-bottom: 5px;
        font-size: 20rem; 
    }  
}

@media screen and (max-width: 414px){

	.movie .list .item.single{
        flex-basis: 100%;
    }    
    .movie .name {
        font-size: 16rem;
    }
    .movie .list {
        margin-bottom: 10px;
    } 
}



/****************************************
　goods　グッズ
******************************************/

.goods .way_list{
    max-width: 900px;
    margin: 3em auto 0;
	padding: 0 1em;
}

.goods .way_list .way {
    margin: 0 auto;
	text-align: left;
/*    padding: 1em;
    border: 3px solid #E65296;
    border-radius: 10px;
    background: rgba(255,255,255,0.8);*/
}

.goods .way dt {
	font-size: 1.5em;
	line-height: 1.5;
}
.goods .way dt::before {
	content: "●";
	color: #e65296;
}
.goods .way dd {
	margin: 0 auto 2em;
    line-height: 1.5;
}

.goods .way table {
	width: 100%;
	margin: 0 auto;
	border: 2px solid #E65296;
	background: rgba(255,255,255,0.8);
}
.goods .way table th,
.goods .way table td {
	padding: 0.8em 1em 0.5em;
	border: 1px solid #E65296;
}
.goods .way table th {
	width: 10em;
	background: rgba(230,82,150,0.1);
	text-align: center;
}
/*.goods .way .btn_way {
    display: inline-block;
    max-width: 293px;
    margin-bottom: 0.3em;
}

.goods .way .btn_way img {
    width: 100%;
}*/

.goods .way .btn_way {
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 300px;
	width: 90%;
	margin: 0 0 0.5em;
	padding: 0.5em 1em 0.3em;
	background: #e65296;
    color: #fff;
	border-radius: 3px;
	font-size: 24rem;
	text-decoration: none;
	font-weight: 900;
	text-align: center;
	transition: 0.5s;
}

.goods .way .btn_way .icon {
	margin-right: 0.3em;
}

.goods .way .btn_way:hover {
	background: #f6187e;
}

.goods .way .lbl {
    display: block;
    width: 90%;
    margin: 0 auto 0.5em;
    font-weight: bold;
    line-height: 1.5;
    color: #E65296;
    border-bottom: 2px dashed #E65296;
    border-top: 2px solid #E65296;
}


.goods .way .day {
    display: inline-block;
    font-weight: bold;
    font-size: 16rem;
    color: #E65296;

}
.goods .way .note {
    display: block;
    margin-top: 0.5em;
    font-size: 15rem;
    color: #E65296;
}


@media screen and (max-width: 380px){
	.goods .way table th {
		width: 8em;
	}
}
@media screen and (max-width: 340px){
	.goods .way dt {
		font-size: 1.3em;
	}
	.goods .way table th {
		width: 6em;
		padding: 0.8em 0.5em 0.5em;
	}
	.goods .way .btn_way {
		width: 100%;
		padding: 0.5em 0.5em 0.3em;
		font-size: 20rem;
	}

}
/*
@media screen and (max-width: 640px){

    .goods .way_list{
        display: block;
    }
    .goods .way_list .way {
        display: block;
        margin: 0 auto;
        margin-top: 2em;
        width: 90%;
    }
    .goods .way .btn_way {
        display: block;
        margin: 0 auto;
    }

    .goods .way dd {
        font-size: 15rem;
    }    
}
*/

.goods .list {
    padding: 0 1em;

}

.goods .list > .item {
    max-width: 900px;
    margin: 40px auto 20px;
    background: rgba(255,255,255,0.8);
    padding: 2em;
    border: 3px solid #E65296;
    border-radius: 10px;
    position: relative;
    outline: #E65296 dashed 2px;
    outline-offset: -10px;
}

.goods .list > .item dt {
    margin-bottom: 1.5em;
    padding: 0.5em 0;
    background: #E65296;
    color: #fff;
/*    border-bottom: #E65296 dashed 2px;  */  
    font-size: 24rem;

    font-weight: 700;
    line-height: 1.5;
}

.goods .list > .item dt .price {
    display: inline-block;
    margin-left: 1em;

}

.goods .list > .item dt .price .s {
    font-size: 0.8em;
}

.goods .list > .item dt.ribbon3 {
  display: inline-block;
  position: relative;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 7px 0;
  font-size: 22rem;
  background: #E65296;
  color: #FFF;
  box-sizing: border-box;
}

.goods .list > .item dt.ribbon3 > span {
	display: block;
	margin: 0;
	padding: 0 3em;
	border-top: dashed 2px rgba(255, 255, 255, 1);
	border-bottom: dashed 2px rgba(255, 255, 255, 1);
	line-height: 42px;
	font-family: 'Noto Sans JP', sans-serif;
}

.goods .list > .item dt.ribbon3:before, .goods .list > .item dt.ribbon3:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.goods .list > .item dt.ribbon3:before {
  /*左の山形*/
  top: 0;
  left: 0;
  border-width: 30px 0px 30px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.goods .list > .item dt.ribbon3:after {
  /*右の山形*/
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}


@media screen and (max-width: 600px){

    .goods .list > .item dt.ribbon3 > span {
      padding: 0 2em;
    }
}


@media screen and (max-width: 540px){
    .goods .list > .item dt.ribbon3 {
      height: 2em;
        padding: 0;
      line-height: 2em;    
      font-size: 18rem;
    }

    .goods .list > .item dt.ribbon3 > span {
      border-top: none;
      border-bottom: none;
      line-height: 2em;
    }
    .goods .list > .item dt.ribbon3:before {
      /*左の山形*/
      border-width: 1em 0px 1em 0.5em;
    }

    .goods .list > .item dt.ribbon3:after {
      /*右の山形*/
      border-width: 1em 0.5em 1em 0px;
    }
/*}

@media screen and (max-width: 430px){*/
    .goods .list > .item dt.ribbon3 {
		padding-top: 0.5em;
		padding-bottom: 0.5em;
/*      font-size: 16rem;*/
    }

    .goods .list > .item dt.ribbon3 > span {
      padding: 0 1.5em;
    }

	.goods .list > .item dt.ribbon3 {
		width: 100%;
        background: #E65296;
		height: inherit;
		border-radius: 3px;
        color: #fff;
    }
    .goods .list > .item dt.ribbon3:before {
      /*左の山形*/
      border-width: inherit;
    }

    .goods .list > .item dt.ribbon3:after {
      /*右の山形*/
      border-width: inherit;
    }
	.goods .list > .item dt .price {
		display: block;
		margin-left: auto;
		        border-top: 1px solid #fff;

	}
}


.goods .list > .item .photo {
	display: block;
    width: 100%;
	margin: 0 auto;
}

.goods .list > .item .photo img {
	display: block;
    width: 100%;
}

.goods .list > .item.program .photo {max-width: 300px;}
.goods .list > .item.bag .photo {max-width: 520px;}
.goods .list > .item.pouch .photo {max-width: 550px;}
.goods .list > .item.strap .photo {max-width: 518px;}
.goods .list > .item.ts .photo {max-width: 752px;}

.goods .list > .item .note {
    display: block;
    margin-top: 0.5em;
}
.goods .list > .item .catch {
	margin: 1em auto;
	padding: 1em;
	border-radius: 5px;
	background: rgba(14,116,185,0.1);
}

@media screen and (max-width: 380px){
	.goods .list > .item:not(.program) .catch {
		text-align: left;
	}

	.goods .list > .item .catch .pk {
		display: inline;
	}

}
.goods .list > .item .catch2 {
	margin: 1em auto;
	padding: 1em;
	border-radius: 5px;
	border: 1px solid rgba(14,116,185,0.5);
	background: #fff;
	text-align: left;
	font-size: 0.9em;
}

@media screen and (max-width: 380px){
	.goods .list > .item .catch2 {
		text-align: left;
	}
	.goods .list > .item .catch2 .pk {
		display: inline;
	}

}

.goods .list > .item:not(.ts) .date {
	text-align: right;
	font-size: 0.9em;
}

.goods .list > .item.ts .date table {
	margin: 2em auto 0;
	width: 100%;
	font-size: 0.8em;
	line-height: 1.3;
}

.goods .list > .item.ts .date th,
.goods .list > .item.ts .date td {
	padding: 0.51em;
	border: 1px solid #0e74b9;
}
.goods .list > .item.ts .date th {
	background: rgba(14,116,185,0.1);
}

.goods .list > .item.ts .date .note {
	text-align: right;
}


@media screen and (max-width: 449px){
    .goods .caution {
        padding: 0 1em;
        text-align: left;
    }
    .goods .caution li {
        padding-left: 1em;
        text-indent: -1em;
        line-height: 1.5;
    }    
}



/**********************************************************************

　ナビザーブ電話番号変更

**********************************************************************/
.area_ticket .tele_note {
	margin: 0.5em auto 0;
	padding: 0.5em 1em;
	border: 2px solid #0e74b9;
	line-height: 1.5;
}

.area_ticket .tele_note .tele_no a{
	color: #0e74b9;
	text-decoration: none;
}

@media screen and (max-width: 350px){
	.area_ticket .tele_note {
		text-align: left;
	}
	.area_ticket .tele_note .pk {
		display: inline;
	}
}

