@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: "new-tegomin", sans-serif;
font-weight: 400;
font-style: normal;

***/

/***色
藍　#1e2432;
薄い藍　#52547b;
***/

/******フェードイン*****/

.fadein {
    animation-name: fadein;
    animation-duration: 3s;
}

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/********リンク********/
a {
    color: #52547b;
    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;}



/********共通********/

.floatL {float: left;}
.floatR {float: right;}
.clear {float: clear;}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.hidden {
	display: none;
}

/********改行********/

.pk {
	display: inline-block;
}

.anchor {
	display: block;
	margin-top: -80px;
	padding-top: 80px;
}

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:#1e2432;
	font-family: 'Noto Serif JP', serif;
    font-weight: 500;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

    
/*	background-image: url(../images/bg_pc.png);
	background-position:bottom -50px center;
	background-repeat: no-repeat;
	background-attachment:fixed;
	background-size: contain;	*/

	background-color: #fff;
   
}

body:after {/*擬似要素をつくる*/
    z-index: -1;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../images/bg_pc.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;  
    background-color: #fff; /*非対応ブラウザ用*/
}


@media (orientation: portrait) { /**　画面が縦長の時　**/
    body {
	background-image: url(../images/bg_smp.jpg);
	background-position:top center;
	background-repeat: repeat;
	background-attachment:scroll;
	background-size: auto;	
    }    

}

@media screen and (max-width: 768px){
	html {font-size: 5%;}
	body {font-size: 16em;}    
}




/**************************************
　モーダルウィンドウ
**************************************/


.modal-wrapper {
  z-index: 1001;
  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;
	max-width: 800px;
	margin: 0 auto 2em;
	padding: 2em 3em 3em;
	background-color: rgba(255,255,255,0.9);
	outline: 3px solid #52547b;
	text-align: center;
}

.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
	padding: 0;
}

.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #fff;
	
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: rgba(153,143,133,0.9);
	
}

.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: 60px;
  color: #52547b !important;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #52547b !important
}

@media screen and (max-width: 414px){

    .modal-wrapper .modal-window {
	 padding: 2em 1.5em 1.5em;
    }
}


.top_info_popup .name {
    display: block;
	margin: 1em auto;	
    font-size: 24rem;
    line-height: 1;
    letter-spacing: 0.2;
	text-shadow: 3px 3px 3px rgba(40,30,28,0.1);
}

.top_info_popup .name .work {
	display: block;
	margin: 0 auto 0.5em;
	font-family: "new-tegomin", sans-serif;
	font-style: normal;
	font-weight: bold;
	color: #52547b;
	font-size: 0.7em;
}

.top_info_popup .name .ls {
    letter-spacing: 0.1em;
}

.top_info_popup .photo {
	max-width: 400px;
	margin: 0 auto;
	padding: 0 1em;
}

.top_info_popup .photo img {
	width: 100%;
}

.top_info_popup .cmt {
	margin: 1em auto 0;
	padding: 0 1em;
	font-size: 18rem;
}
.top_info_popup .cmt .lbl {
	display: block;
	margin: 0 auto 0.5em;
	font-family: "new-tegomin", sans-serif;
	font-style: normal;
	font-weight: bold;
	color: #52547b;
}

.top_info_popup .cmt .text {
	text-align: left;
}
.top_info_popup .cmt .text:not(:last-of-type) {
	margin-bottom: 1em;
}

.top_info_popup .link {
	margin: 1em auto 0;
	font-weight:500;
	font-size: 16rem;
	color: #52547b;
	}

.top_info_popup .link .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
}

@media screen and (max-width: 414px){
	.top_info_popup .name {
		font-size: 20rem;
	}
}

/**************************************
　ナビ　メニュー
**************************************/


/****　ハンバーガーメニュー　****/
*, *:before, *:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.cp_offcm03 {
    z-index: 5;    
    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: 768px) {
    .cp_offcm03 {
        position: absolute;
        position: fixed;        
        left: -400px;
/*        overflow-y: hidden;*/
        width: 400px;
        height: 100%;
        padding-top: 50px;
        color: #fff;
        background-color: rgba(255,255,255,0.9);
        z-index: 9000;
    }
    .cp_offcm03 nav {
        background: none;
        text-align: left;
    }
    .cp_offcm03 nav .n_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 15px;
        width: 100%;
        height: 50px;
        color: #52547b;
/*        background: #fff;*/
        z-index: 9999;
    }
    .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: #52547b;
        -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: #52547b;
        -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;
    }
    #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 > span.lbl {
        display: none;
    }
    
    /* content */
    .cp_container {
        top: 60px;
        height: 92vh;
    }
}

@media (max-width: 768px) {
    .cp_offcm03 {
        left: -300px;
        width: 300px;
        height: 100%;
    }
}

/****　ハンバーガーメニュー　ここまで　****/


nav {
/*    position: relative;
    z-index: 1000;
	display: block;
    margin: 0 auto 1em;
	padding: 0 0.5em;
	background: rgba(255,255,255,0.7);
	border-bottom: 2px solid #a6cabc;
	box-shadow: -3px 0 20px rgba(80,103,94,0.3);
	text-align: center;*/
    width: 100%; 
    height: 100%;
    margin: 0 auto 1em;
	background-image: url("../images/bg_header.jpg");
	background-size: auto 5px;
	background-repeat: repeat-x;
	background-position: top;
	background-color: rgba(255,255,255,0.8)
}


nav .n_list {
	padding: 1em 1em;

}

nav .n_list .res_nav {
	display: none;
}

nav .n_list a {
    text-decoration: none;
    transition: 0.5s;
}
nav .n_list a:hover {
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 0.8em;
    padding: 0.5em 0 0.3em;
    font-size: 24rem;
    line-height: 1;
    vertical-align: middle;
	letter-spacing: -0.1em;
	font-family: "new-tegomin", sans-serif;
	font-weight: bold;
	font-style: normal;
}


nav .n_list .n_item a {
    text-decoration: none;
    color: #52547b;
	text-shadow: 2px 2px 1px #eee;
	font-weight: bold;
}

nav .n_list .n_item a .amp {
	color: rgba(82,84,123,0.3);
}

nav .n_list .break {
    display: none;
}


@media screen and (max-width: 1480px) {
    nav .n_list .break {
        display: inline;
    }
}

@media screen and (max-width: 830px) {
    nav .n_list .break {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    nav {
		background: none;
        border: none;
		box-shadow: none;
    }

	nav .n_list {
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	nav .n_list .res_nav {
		display: none;
	}
    nav .n_list .break {
        display: none;
    }
    
    nav .n_list .n_item {
        text-align: left;
        display: block;
        margin: 20px 0;
        font-size: 24rem;
        text-shadow: none;
	}
	
/*    nav .n_list .n_item .en {
		color: #fff;
	}*/
	
	nav .n_list .n_item.info {
		margin: 30px 0 0;
	}
    nav .n_list .n_item.crea {
        margin-top: 2em;
    }

    
    nav .n_list a {
        color: #fff;
    }
    nav .n_list a:hover {
        color: #fff;
    }

}

/*
header {
    width: 100%;
    margin: 0 auto;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
}

nav {
    width: 100%; 
    height: 100%;
    margin: 0 auto;
	background-image: url("../images/bg_header.jpg");
	background-size: auto 5px;
	background-repeat: repeat-x;
	background-position: top;
	background-color: rgba(255,255,255,0.8)
}

nav .res_nav {
	display: none;
}
nav .res_nav2 {
	display: none;
}

nav .n_list {
	padding: 1em;
}

nav .n_list .n_item {
    display: inline-block;
    margin: 0 0.8em;
    padding: 0.5em 0 0.3em;
    font-size: 24rem;
    line-height: 1;
    vertical-align: middle;
	letter-spacing: -0.1em;
	font-family: "new-tegomin", sans-serif;
	font-weight: bold;
	font-style: normal;
}


nav .n_list .n_item a {
    text-decoration: none;
    color: #52547b;
	text-shadow: 2px 2px 1px #eee;
	font-weight: bold;
}

nav .n_list .n_item a .amp {
	color: rgba(82,84,123,0.3);
}

@media screen and (max-width: 1090px){

    nav .n_list {
        padding-bottom: 0.3em;
    }

	nav .n_list .n_item {
	    font-size: 20rem;
	}

}

@media screen and (max-width: 630px){
	nav .n_list .n_item {
		margin: 0 0.5em;
		letter-spacing: -0.2em;
	}
}

@media screen and (max-width: 520px){

	nav .res_nav {
		display: inline;
	}
}

@media screen and (max-width: 340px){

	nav .res_nav {
		display: none;
	}
	nav .res_nav2 {
		display: inline;
	}
}

@media screen and (max-height: 780px) {
  header {
	position: relative;
  }
}
*/

/*****メインコンテンツ*****/

.wrap{ 
    min-height: 100vh;/*フッター固定用*/
	box-sizing: border-box;/*フッター固定用*/
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

main{
/*	padding-top: 10vh;*/
}

@media screen and (max-width: 768px){

/*	main{
		padding-top: 8vh;
	}*/

	main {
		padding-top: 60px;
	}
}

/*****フッター*****/


#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
    line-height: 0;
	z-index: 1000;
}


#pagetop a {
	text-decoration: none;
	color: #1e2432;
}

#pagetop a::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../images/page_top.svg") no-repeat;
  background-size: contain;
}
/*#pagetop a::after {
	font-family: "Font Awesome 5 Free";	
	content: "\f151";
	font-weight: 900;
	font-size: 4em;
}*/

footer{
	width: 100%;
	margin: 10em auto 0;
    padding-bottom: 1em;
	text-align: center;
	font-size: 16rem;
	bottom: 0;
}

footer .copy {
	display: block;
    color: #1e2432;
}

footer .copy li {
	display: inline-block;
	margin: 0 1em;
}

footer .sns_link {
    padding-top: 40px;
}

footer .sns_link li {
    display: inline-block;
    margin: 1em;
    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;
}

.policy_link {
	display: block;
    margin-bottom: 1em;
}

.policy_link .link a {
    display: inline-block;
	margin: 0 1em;
	text-decoration: none;
	color: #000;
	font-size: 14rem;
	font-weight: 500;
	transition: 0.5s;
}

.policy_link .link a:hover {
	color: #52547b;
}

#pagetop{
    position: fixed;
    right: 15px;
    bottom: 15px;
	z-index: 1000;
}
@media screen and (max-width: 414px){
}


/****************************************

　ボックス

*****************************************/

.sec {
    margin: 6em auto 0;
}

/****************************************

　見出し

*****************************************/
.heading_sec {
    margin: 1em auto 0.5em;
    max-width: 600px;
	width: 100%;
    text-shadow: 0 0 3px rgba(0,0,0,0.1);
	font-family: "new-tegomin", sans-serif;
	font-weight: bold;
	font-style: normal;
	font-size: 40rem;
	line-height: 1.2;
	color: #52547b;
}
.heading_sec .en {
	display: block;
	font-weight: 500;
	font-size: 0.6em;
	color: rgba(82,84,123,0.3);
    text-shadow: 0 0 3px rgba(0,0,0,0.1);
}

.heading_sec .amp {
	color: rgba(82,84,123,0.3);
}

@media screen and (max-width: 420px){
	.heading_sec {
		font-size: 34rem;
	}
}


/****************************************

　ビジュアル

*****************************************/
/***色
藍　#1e2432;
薄い藍　#52547b;
***/

.area_visual {
    max-width: 900px;
    padding: 10px;
    margin: 0 auto 8em;
}
@media screen and (max-width: 520px){
	.area_visual {
		margin: 1em auto 8em;
	}

}

@media screen and (max-width: 300px){
	.area_visual {
		margin: 3em auto 8em;
	}
}

.area_visual .top_info {
	margin: 0 auto;
}

.area_visual .top_info .btn {
	display: inline-block;
	margin: 0 auto 1em;
	padding: 1em 2em;
	background-image: url("../images/bg_btn.jpg");
	background-size: cover;
	background-color: rgba(255,255,255,0.8);
	outline: 2px solid rgba(82,84,123,0.3);
	outline-offset: -5px;
    box-shadow: 0 0 2px  rgba(82,84,123,0.3);
/*	background: rgba(82,84,123,0.9);*/
	line-height: 1.5;
	font-size: 20rem;
	color: #52547b;
	transition: 0.5s;
}

.area_visual .top_info .btn .point {
	padding: 0 0.2em;
	font-size: 1.2em;
	letter-spacing: -0.05em;
}

.area_visual .top_info .btn:hover {
    box-shadow: 0 0 20px  rgba(230,190,231,0.5);
}

@media screen and (max-width: 560px){
	.area_visual .top_info {
		margin: 0 auto;
	}
}

@media screen and (max-width: 500px){
	.area_visual .top_info .btn {
		font-size: 18rem;
	}
}

@media screen and (max-width: 380px){
	.area_visual .top_info .btn {
		font-size: 16rem;
	}
}


.area_visual .top_info2 {
	margin: 0 auto 1em;
}

.area_visual .top_info2 .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 90%;
	min-height: 3.6em;
	margin: 0 0.2em 0.5em;
	padding: 1em;
	border-radius: 5px;
	background: rgba(82,84,123,0.1);
	line-height: 1.3;
	font-size: 20rem;
	color: #52547b;
	vertical-align: middle;
	transition: 0.5s;
}

.area_visual .top_info2 .btn:not(.long) {
	padding: 0.8em 0;
	line-height: 2em;
}

.area_visual .top_info2 .btn.long {
	padding: 0.5em 0;
}

.area_visual .top_info2 .btn .icon {
	margin-right: 0.2em;
	display: none;
}
.area_visual .top_info2 .btn:hover {
	background: rgba(82,84,123,0.2);
}

.area_visual .top_info2 .btn .lbl {
	font-size: 0.8em;
}

@media screen and (max-width: 900px){
	.area_visual .top_info2 .btn {
		font-size: 18rem;
	}
	.area_visual .top_info2 .btn:not(.long) {
		width: 30%;
	}
	.area_visual .top_info2 .btn.long {
		width: 36%;
	}
}


@media screen and (max-width: 630px){
	.area_visual .top_info2 {
		display: block;
		height: inherit;
		margin: 0 auto 1em;
	}
	.area_visual .top_info2 .btn:not(.long),
	.area_visual .top_info2 .btn.long {
		display: block;
		width: 100%;
		background: rgba(82,84,123,0.1);
	}
	.area_visual .top_info2 .btn .icon {
		display: none;
	}
}

@media screen and (max-width: 380px){
	.area_visual .top_info2 .btn {
		font-size: 16rem;
	}
}

.area_visual .visual .item {
    display: block;
    margin: 0.5em auto;
    text-align: center;
}

.area_visual .visual .item img {
    width: 100%;
    box-shadow: 0 0 10px rgba(82,84,123,0.3);
}


.area_visual .logo {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	position: relative;
}

.area_visual .logo::after{
  content: "";
  display: block;
  clear: both;
}

.area_visual .logo .item1 {
	position: absolute;
	left: 0.5em;
	top: 0.5em;
	display: inline-block;
	max-width: 160px;

}

.area_visual .logo .item2 {
	position: absolute;
	right: 0.5em;
	top: 0.2em;
	display: inline-block;
	max-width: 186px;

}

.area_visual .logo .item1 img {
	display: block;
	width: 100%;
	vertical-align: bottom;
}

.area_visual .logo .item2 img {
	display: block;
	width: 100%;
	vertical-align: bottom;
}

@media screen and (max-width: 900px) {
	.area_visual .logo img {
		max-width: 20vw;
		min-width: 100px;
	}
}

@media (max-width: 850px) {
/*	.area_visual {
		margin-top: 80px;
	}*/
}

@media screen and (max-width: 500px) {
	.area_visual .logo img {
		max-width: 25vw;
		min-width: 100px;
	}
}

@media (orientation: portrait) { /**　画面が縦長の時　**/  
}

/****************************************

　ニュース

*****************************************/

.area_news {
	max-width: 900px;
}

.area_news .list {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	margin: 0 auto 2em;
	padding: 1em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
    text-align: left;
	line-height: 1.5;
}

.area_news .list > dt {
	margin-bottom: 0.3em;
	padding: 0;
/*	background: rgba(82,84,123,0.1);*/
/*	border-bottom: 1px solid rgba(82,84,123,0.3);*/
	font-size: 20rem;
	line-height: 1.5em;

}

.area_news .list > dt .day {
/*	float: left;
	display: inline-block;*/
	display: block;
	max-width: 10em;
	padding: 0 1em;
	background: #52547b;
	color:#fff;
	font-size: 0.9em;
	text-align: center;
}

.area_news .list > dt .title {
	display: inline-block;
/*	margin-left:-6em;*/
	padding: 0 0.5em;
	color:#1e2432;
	line-height: 1.5em;
	text-align: left;
}

.area_news .list > dd {
	padding: 0.5em 2em 1em;
	font-size: 18rem;
}

.area_news .list > dd .title {
	margin: 0 auto 0.5em;
	font-size: 20rem;
	text-align: center;
}

.area_news .list a {
	text-decoration: underline;
	font-weight: 900;
}

.area_news .seisaku {
	padding: 0.5em 2em 2em;
	color: #52547b;
}

.area_news .seisaku .a_box {}

.area_news .seisaku .a_box .photo {
	max-width: 800px;
	margin: 0.5em auto;
}

.area_news .seisaku .a_box .photo img {
	display: block;
	width: 100%;
}

.area_news .seisaku .a_box .list_title {
	margin: 1.5em auto;
	font-size: 20rem;
	text-align: center;
}

.area_news .seisaku .a_box .btn_list {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

.area_news .seisaku .a_box .btn_list .btn_media {
	display: inline-block;
	width: 40%;
	margin: 0 0.5em 0.5em;
	padding: 0.5em 0;
	border: 2px solid #52547b;
	background: #52547b;
	border-radius: 2px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	font-weight: 400;
	color: #fff;
	transition: 0.5s;
}

.area_news .seisaku .a_box .btn_list .btn_media:hover {
	background: #fff;
	color: #52547b;
}

.area_news .seisaku .a_box .btn_list .btn_media .icon {
	display: none;
	margin-right: 0.2em;
}

@media screen and (max-width: 940px){

	.area_news .box {
		padding: 0 2em;
	}
	.area_news .seisaku .a_box .btn_list .btn_media {
		font-size: 16rem;
	}
}

@media screen and (max-width: 650px){

	.area_news .list > dt {
		padding: 0.5em;
		font-size: 18rem;
	}

/*	.area_news .list > dt .day {
		float: none;
		display: block;
		margin: 0 auto 0.5em;
		font-size: 0.8em;
		line-height: 1.5;
	}
	.area_news .list > dt .title {
		margin: 0 auto;
	}*/

	.area_news .list > dd {
		padding: 0 0.5em 1em;
	}

}

@media screen and (max-width: 600px){
	
	.area_news .seisaku {
		padding: 0.5em 1em 2em;
	}

	.area_news .seisaku .a_box .btn_list {
		text-align: center;
	}
	
	
	.area_news .seisaku .a_box .btn_list .btn_media {
		width: 45%;
	}
}

@media screen and (max-width: 500px){

	.area_news .seisaku .a_box .btn_list .btn_media {
		width: 45%;
		margin: 0 0.2em 0.5em;	
		font-size: 15rem;
	}
}

@media screen and (max-width: 480px){

	.area_news .seisaku .a_box .btn_list .btn_media {
		font-size: 14rem;
	}
}

@media screen and (max-width: 450px){

	.area_news .seisaku .a_box .btn_list .btn_media {
		display: block;
		width: 80%;
		margin: 0 auto 0.5em;
	}
}

@media screen and (max-width: 420px){
	.area_news .list > dt .day {
		float: none;
		display: block;
		max-width: 100%;
		margin: 0 auto 0.5em;
		font-size: 0.8em;
		line-height: 1.5;
	}

}

@media screen and (max-width: 410px){

	.area_news .seisaku .a_box .btn_list .btn_media {
		display: block;
		width: 95%;
		margin: 0 auto 0.5em;
	}
}


@media screen and (max-width: 320px){
	.area_news .seisaku .a_box .list_title {
		font-size: 16rem;
	}
}

/***　動画　***/

.area_news .news_movie {
    width: 100%;
    justify-content: center;
    vertical-align: bottom;
	margin-top: auto;
}

.area_news .news_movie .youtube {
	position: relative;
	height: 0;

	padding-bottom: 56.25%;
	overflow: hidden;
    box-shadow: 0 0 10px rgba(82,84,123,0.3);
/*	outline: 2px groove #dbd6aa;*/
}

.area_news .news_movie .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
 	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/****************************************

　イントロ

*****************************************/
.area_intro {
	max-width: 900px;
}

.area_intro .box {
	padding: 0 2em;
}

.area_intro .box .text {
	text-align: left;
	font-size: 18rem;
	text-shadow: 0 0 50px rgba(255,255,255,0.5),0 0 20px rgba(255,255,255,0.5),0 0 10px rgba(255,255,255,0.5),0 0 5px rgba(255,255,255,0.5);
}

.area_intro .box .text p {
	margin-bottom: 1em;
}

@media screen and (max-width: 900px){
}

@media screen and (max-width: 600px){

	.area_intro .box .text {
		font-size: 18rem;
		line-height: 2;
		font-weight: 500;
	}
}

@media screen and (max-width: 400px){}



/****************************************

　キャストコメント

*****************************************/
.area_cmt {
	max-width: 900px;
}

.area_cmt .box {
	padding: 0 1em;
}

.area_cmt .list {}

.area_cmt .list .item {
	overflow: hidden;
	margin: 0 auto 2em;
	padding: 2em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
}

.area_cmt .list dt {
	margin-bottom: 0.3em;
	padding: 0em 0 0.5em;
	font-size: 30rem;
	line-height: 1.5;
	text-align: center;
}

.area_cmt .list dd {
	font-size: 18rem;
	text-align: left;
}

.area_cmt .list .photo {
	float: left;
	max-width: 340px;
	padding: 0 2em 1em 0;
}
.area_cmt .list .photo img {
	display: block;
	width: 100%;
	border: 1px solid rgba(82,84,123,0.1);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
	
.area_cmt .list .name {
	display: inline-block;
	color: #52547b;
}

.area_cmt .list .yaku {
	display: inline-block;
	margin-left: 1em;
	font-size: 0.7em;
}

.area_cmt .list .yaku .note {
	font-size: 0.8em;
}

.area_cmt .list .yaku .lbl {
	margin-left: 0.2em;
	font-size: 0.9em;
}

.area_cmt .text {
	overflow: hidden;
}

@media screen and (max-width: 768px){

	.area_cmt .list .photo {
		max-width: 180px;
	}
}

@media screen and (max-width: 600px){
	.area_cmt .text {
		overflow: visible;
	}
}

@media screen and (max-width: 510px){
	.area_cmt .list dt {
		margin-bottom: 0;
		padding: 0;
	}
	.area_cmt .list dd {
		padding: 1.5em;
	}

	.area_cmt .list .photo {
		float: none;
		max-width: 340px;
		width: 90%;
		margin: 0 auto;
		padding: 1em 0;
	}
	.area_cmt .list .name {
		display: block;
	}

	.area_cmt .list .yaku {
		display: block;
		margin: 0;
		font-size: 0.6em;
	}
}

@media screen and (max-width: 400px){
	.area_cmt .list .item {
		padding: 1em;
	}
	.area_cmt .list dd {
		padding: 1.5em 1em 1em;
	}
}


/****************************************

　キャスト

*****************************************/

.area_cast {
	max-width: 900px;
}


/***　プリンシバル　***/

.area_cast .list_p {
	margin: 1em auto 4em;
	line-height: 1.5;
	font-size: 28rem;
	font-weight: 700;
}
.area_cast .list_p:last-of-type {
	margin-top: 6em;
}

/***　Wキャスト　***/

.area_cast .list_p .wrap_w {}

.area_cast .list_p .wrap_w .item {
	display: inline-block;
	margin: 0 0.5em;
}

.area_cast .list_p .yaku {
	display: block;
	color: #52547b;
}

.area_cast .list_p .yaku .note {
	display: block;
	font-size: 0.5em;
	font-feature-settings: "palt";
}

.area_cast .list_p .yaku .note::before {
	content: "（";
}

.area_cast .list_p .yaku .note::after {
	content: "）";
}

.area_cast .list_p .yaku .role {
	max-width: 900px;
	margin: 0.5em auto;
	padding:0.5em;
	font-size: 0.6em;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	text-shadow: none;
	color: rgba(255,255,255,0.9);
}

.area_cast .list_p .photo {
	display: block;
	max-width: 340px;
	margin: 1em auto 0.5em;
}

.area_cast .list_p .photo img{
	display: block;
	width: 100%;
	border: 1px solid rgba(82,84,123,0.1);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.area_cast .list_p .name {
	display: block;
	letter-spacing: 0.1em;
}

.area_cast .list_p .btn{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 120px;
	margin: 0.5em auto 0;
	padding: 0.5em;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 14rem;
	color: #52547b;
	font-weight: 700;
	line-height: 1;
	transition: 0.5s;
}

.area_cast .list_p .btn:hover {
	background: rgba(218,168,192,0.6);
}

.area_cast .list_p .role .title {
	display: block;
	margin: 0 0.5em;
	font-size: 0.8em;
	color: #52547b;
}

@media (max-width: 1200px) {
	.area_cast .list_p {
		font-size: 22rem;
	}
	.area_cast .list_p .photo {
		max-width: 300px;
	}

}

@media (max-width: 740px) {
	.area_cast .list_p .photo {
		max-width: 240px;
	}
}

@media (max-width: 620px) {
	.area_cast .list_p .photo {
		max-width: 200px;
	}
}

@media (max-width: 520px) {
	.area_cast .list_p {
		font-size: 20rem;
	}	
	.area_cast .list_p .photo {
		max-width: 160px;
	}
}

@media (max-width: 430px) {
	.area_cast .list_p {
		font-size: 22rem;
	}
	.area_cast .list_p .item {
		display: block;
		padding: 0.5em 0;
	}

	.area_cast .list_p .photo {
		max-width: 90%;
	}

}

@media (max-width: 280px) {
	.area_cast .list_p .yaku .role {
		padding: 0.5em 1em;
		text-align: left;
	}
	.area_cast .list_p .yaku .role .pk {
		display: inline;
	}
}


/***　アンサンブル　***/
.area_cast .list_e {
	margin: 2em auto 1em;
	line-height: 1.5;
	font-size: 22rem;
	font-weight: 700;
}

.area_cast .list_e li {
	display: inline-block;
	margin: 0 0.5em 1em;
	vertical-align: top;
}

.area_cast .list_e .note {
	display: block;
	margin: 0 auto;
	text-align: right;
	font-size: 0.7em;
	font-weight: 400;
}

.area_cast .list_e .list_e_res {
	display: none;
}

@media (max-width: 1200px) {
	.area_cast .list_e {
		font-size: 18rem;
	}
}

@media (max-width: 520px) {
	.area_cast .list_e {
		font-size: 16rem;
	}

	.area_cast .list_e .list_e_res {
		display: inline;
	}
}
@media (max-width: 430px) {
	.area_cast .list_e {
		font-size: 17rem;
	}
}

@media (max-width: 300px) {
	.area_cast .list_e li {
		display: block;
		margin: 0 auto 0.5em;
	}
	.area_cast .list_e .pk {
		display: inline;
	}
	.area_cast .list_e .list_e_res {
		display: none;
	}
}

/***　子役　***/
.area_cast .list_k {
	margin: 2em auto 1em;
	line-height: 1.5;
	font-size: 22rem;
	font-weight: 700;
}

.area_cast .list_k li {
	display: inline-block;
	margin: 0 0.5em 1em;
	vertical-align: top;
}

.area_cast .list_k .yaku {
	display: block;
	margin-bottom: 0.5em;
	color: #52547b;
	font-size: 0.6em;
	font-feature-settings: "palt";
}

.area_cast .list_k .yaku .note::before {
	content: "（";
}

.area_cast .list_k .yaku .note::after {
	content: "）";
}

@media (max-width: 1200px) {
	.area_cast .list_k {
		font-size: 18rem;
	}
}

@media (max-width: 520px) {
	.area_cast .list_k {
		font-size: 16rem;
	}
}

@media (max-width: 430px) {
	.area_cast .list_k {
		font-size: 17rem;
	}
}

@media (max-width: 300px) {
	.area_cast .list_k li {
		display: block;
		margin: 0 auto 0.5em;
	}
	.area_cast .list_k .pk {
		display: inline;
	}
	.area_cast .list_k .yaku {

	}
}

/****************************************

　コメント　モーダルウィンドウ

*****************************************/

.cast_cmt .modal-wrapper {
	z-index: 10000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 30px 10px;
	text-align: center
}

.cast_cmt .modal-wrapper:not(:target) {
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.cast_cmt .modal-wrapper:target {
	opacity: 1;
	visibility: visible;
	transition: opacity .4s, visibility .4s;
}

.cast_cmt .modal-wrapper::after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	vertical-align: middle;
	content: ""
}

.cast_cmt .modal-wrapper .modal-window {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	z-index: 20;
	position: relative;
	max-width: 900px;
	margin: 0 auto 0;
	padding: 3em;
	background: rgba(255,255,255,0.9);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border: 1px solid #52547b;
	border-radius: 5px;
}

.cast_cmt .modal-wrapper .modal-window .modal-content {
	max-height: 80vh;
	overflow-y: auto;
	padding: 0 1em;
}

.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
    width: 10px;
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track {
	background: #000;
	
}
.cast_cmt .modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
	background: #999;
	
}

.modal-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.cast_cmt .modal-wrapper .modal-close {
  z-index: 20;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  color: #52547b!important;
  font-size: 3em;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.cast_cmt .modal-wrapper .modal-close:hover {
  color: #52547b !important
}

@media screen and (max-width: 414px){

    .cast_cmt .modal-wrapper .modal-window {
      padding: 2em 1.5em;
    }

}

/*****　キャストコメント　*****/
.cast_cmt .cmt .cmt_box {}

.cast_cmt .cmt .cmt_box .name {
    display: block;
	margin: 0.5em 0 1em;
    font-size: 30rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1;
}

.cast_cmt .cmt .cmt_box .name .kana {
	display: inline-block;
	margin: 0.3em auto 0;
	line-height: 1;
	font-size: 0.6em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: -0.1em;
}
.cast_cmt .cmt .cmt_box .yaku {
	margin: 0.3em auto 0;
	line-height: 1;
	color: #52547b;
}

.cast_cmt .cmt .cmt_box .name .ls {
    letter-spacing: 0.1em;
}

.cast_cmt .cmt .cmt_box .photo {
	max-width: 400px;
	margin: 0 auto 1em;
	padding: 0 1em;
}

.cast_cmt .cmt .cmt_box .photo img {
	width: 100%;
}

.cast_cmt .cmt .cmt_box .title {
	display: none;
	margin: 0 0 0.5em;
	font-weight: 700;
	color: #52547b;
	font-size: 24rem;
	line-height: 1;
}

.cast_cmt .cmt .text {
    text-align: left;
	font-size: 18rem;
}

.cast_cmt .cmt .cmt_box .text p {
    margin-bottom: 1em;


}


@media screen and (max-width: 800px){
	.cast_cmt .cmt .cmt_box {
		display: block;
	}

	.cast_cmt .cmt .cmt_box .box_left {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.cast_cmt .cmt .cmt_box .box_right {
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		padding: 1em 0;
	}
}


.cast_cmt .cmt .cmt_box .link {
	margin: 1em auto 0;
	font-weight:500;
	font-size: 16rem;
	color: #52547b;
	}

.cast_cmt .cmt .cmt_box .link .icon {
	margin-right: 0.2em;
	font-size: 0.9em;
}


/****************************************

　クリエイティブ

*****************************************/
.area_creative {
	max-width: 900px;
}

.area_creative .list1,
.area_creative .list2 {
	line-height: 1.5;
}

.area_creative .list1::after,
.area_creative .list2::after{
  content: "";
  display: block;
  clear: both;
}

.area_creative .list1 {
	margin: 0 auto 2em;
	font-size: 18rem;
}

.area_creative .list1 .note {
	display: block;
	font-size: 0.8em;
}

.area_creative .list1:first-of-type {
	padding-top: 2em;
}

.area_creative .list2 {
	margin: 0 auto;
	font-size: 18rem;
}

.area_creative .list2:not(:last-of-type) {
	margin: 0 auto 2em;
}

.area_creative .list1 dt,
.area_creative .list2 dt {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	clear: flex;
	float: left;
	width: 50%;
	margin-bottom: 0.5em;
	padding: 0 0.5em;
	text-align: right;
	color: #52547b;
}
.area_creative .list1 dd,
.area_creative .list2 dd {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 50%;
	margin-bottom: 0.5em;
	padding: 0 0.5em;
	text-align: left;
}

.area_creative .credit {
	margin: 2em auto;
	font-size: 18rem;
}

@media screen and (max-width: 580px){

	.area_creative .list1 dt,
	.area_creative .list2 dt {
		float: none;
		width: inherit;
		margin: 0 auto;
		font-size: 0.8em;
		text-align: center;
	}
	.area_creative .list1 dd,
	.area_creative .list2 dd {
		float: none;
		width: inherit;
		text-align: center;
	}
	.area_creative .list1 dd:not(:last-of-type),
	.area_creative .list2 dd:not(:last-of-type) {
		margin-bottom: 0.8em;
	}	
}

.area_creative .btn{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	max-width: 120px;
	width: 100%;
	margin: 0 0.5em;
	padding: 0.5em;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 14rem;
	color: #52547b;
	font-weight: 700;
	line-height: 1;
	transition: 0.5s;
	text-align: center;
}

.area_creative .btn:hover {
	background: rgba(218,168,192,0.6);
}

@media screen and (max-width: 580px){
	.area_creative .btn{
		display: block;
		max-width: 80px;
		margin: 0 auto;
	}
}

/****************************************

　チケット＆スケジュール

*****************************************/
.area_ticket {
	max-width: 900px;
}
.area_ticket .box {
	padding: 0 1em;
}

.area_ticket .box .heading_area {
	color: #52547b;
	font-size: 30rem;
    display: flex;
    align-items: center;
}
 
.area_ticket .box .heading_area:before,
.area_ticket .box .heading_area:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: rgba(82,84,123,0.3);
}
 
.area_ticket .box .heading_area:before {
    margin-right: 1em;
}
 
.area_ticket .box .heading_area:after {
    margin-left: 1em;
}

.area_ticket .box.tokyo {
	margin: 0 auto 6em;
}

.area_ticket .stage_info {
	max-width: 900px;
	margin: 4em auto 5em;
	padding: 0 1em;
}

.area_ticket .stage_info .sch {
	max-width: 619px;
	width: 100%;
	height: auto;
	margin: 0 auto 1em;
}

.area_ticket .stage_info .sch img {
	width: 100%;
}

.area_ticket .stage_info .hoshitori {
	max-width: 900px;
	width: 100%;
	height: auto;
	margin: 0 auto 2em;
}

.area_ticket .stage_info .hoshitori img {
	width: 100%;	
}

.area_ticket .stage_info .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0 auto;
	padding: 0.8em 0.5em 0.8em 1em;
	box-shadow: 0 0 10px rgba(82,84,123,0.3);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 20rem;
	color: #52547b;
	font-weight: 900;
	line-height: 1;
	transition: 0.5s;
}

.area_ticket .stage_info .btn:hover {
	background: rgba(218,168,192,0.6);
}

.area_ticket .stage_info .btn .icon {
	float: right;
	margin-right: 0.2em;
}

.area_ticket .stage_info .btn:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.area_ticket .stage_info .caution {
	margin: 3em auto 0;
	text-align: left;
	font-weight: 400;
}
.area_ticket .stage_info .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
	font-weight: 400;
}

.area_ticket .stage_info .caution a {
	color: #52547b;
	text-decoration: none;
}

/***　料金表　***/

.area_ticket .stage_info .list_price {
	margin: 2em auto;
	line-height: 1.5;
}
.area_ticket .stage_info .list_price dt {
	margin-bottom: 0.5em;
	font-size: 22rem;
	font-weight: 700;
	color: #52547b;
}

.area_ticket .stage_info .list_price dt .note {
	margin-left: 0.3em;
	font-size: 0.7em;
}
.area_ticket .stage_info .list_price dd {}
.area_ticket .stage_info .list_price .list {
	width: 100%;
	text-align: center;
}	

.area_ticket .stage_info .list_price .list {
	/*background:  rgba(17,2,43,0.5);*/
}

.area_ticket .stage_info .list_price .list th,
.area_ticket .stage_info .list_price .list td {
	padding: 0.5em;
	border: 1px solid rgba(82,84,123,0.3);
}
.area_ticket .stage_info .list_price .list th {
	background: rgba(82,84,123,0.1);
	color: #52547b;
}
.area_ticket .stage_info .list_price .list .type:not(.none) {
	width: 40%;
}

.area_ticket .stage_info .list_price .list .seat {}

.area_ticket .stage_info .list_price .list .price{}


@media screen and (max-width: 380px){
	.area_ticket .stage_info .list_price .list .type {
		font-size: 0.9em;
	}
	.area_ticket .stage_info .btn {
		font-size: 18rem;
	}
}

/***　//料金表　***/

.area_ticket .way {
	overflow: hidden;
	margin: 0 auto 2em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
}

.area_ticket .way > dt {
	margin-bottom: 0.3em;
	padding: 0.5em;
	background: rgba(82,84,123,0.1);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	font-size: 24rem;
	line-height: 1.5;
	text-align: center;
	color: #52547b;
}

.area_ticket .way > dd {
	padding: 1em 2em;
	font-size: 18rem;
}

.area_ticket .way > dd .caution {
	margin: 1em auto 0;
    padding: 1em 0.5em 0.5em;
	border-top: 1px solid rgba(82,84,123,0.3);
    text-align: left;
    font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
}

.area_ticket .way > dd .caution li {
    margin-bottom: 0.5em;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 1.5;
}

.area_ticket .way .start {
	display: inline-block;
	margin: 1em auto;
	line-height: 1.5;
	font-size: 20rem;
}
.area_ticket .way .tel {
	display: block;
	position: relative;
	font-size: 30rem;
	line-height: 40px;
}

.area_ticket .way .tel a{
	color: #52547b;
	text-decoration: none;
}
.area_ticket .way .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #52547b;
}
.area_ticket .way.toho .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #52547b;
}


@media screen and (max-width: 767px){

	.area_ticket .way {
		margin: 20px auto 0;
	}
}


@media screen and (max-width: 414px){
	.area_ticket {
	}
    .area_ticket .start {
        font-size: 18rem;
    }
}
	
@media screen and (max-width: 375px){

	.area_ticket .way > dd{
		padding: 1em;
	}
  
}
@media screen and (max-width: 374px){

}


/***　東宝ナビザーブ・テレザーブ　***/

.area_ticket .way.toho .pc {
	margin-top: 0.5em;
	position: relative;
	font-size: 30rem;
	line-height: 40px;
}

.area_ticket .way.toho .pc a{
	text-decoration: none;
	color: #52547b;
}
.area_ticket .way.toho .senkou {
	margin: 2em auto 0;
}

.area_ticket .way.toho .senkou dt {
	background: rgba(82,84,123,0.1);
	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	color: #52547b;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}
.area_ticket .way.toho .senkou dd {
	padding: 1em 0.5em;
	font-size: 20rem;
}

@media screen and (max-width: 414px){
    .area_ticket .way.toho .pc {
        font-size: 24rem;
        line-height: 1.5;
    }

	.area_ticket .way.toho .tel {
        font-size: 24rem;

    }
}
	
@media screen and (max-width: 375px){
    .area_ticket .way.toho .pc {
        font-size: 18rem;
    }    
}

@media screen and (max-width: 413px){
    .area_ticket .way.toho .senkou dd {
        font-size: 18rem;
    }
}

@media screen and (max-width: 364px){
    .area_ticket .way.toho .senkou dd {
        font-size: 16rem;
    }
}


/*****　プレイガイド　*****/
.area_ticket .way .playguide {
    margin: 1em auto 0;
}

.area_ticket .way .playguide dt {
	background: rgba(82,84,123,0.1);
	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	color: #52547b;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

.area_ticket .way .playguide dd {
	padding: 1em 0.5em;
	font-size: 20rem;
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_ticket .way .playguide a {
	text-decoration: none;
	color: #52547b;
}
.area_ticket .way .playguide .pc {
    margin-bottom: 0.5em;
	font-family: 'Noto Serif JP', serif;
}
.area_ticket .way .playguide .tel {
    display: inline-block;
    margin-bottom: 0.5em;
}
.area_ticket .way .playguide .time {
    display: inline-block;
    margin-left: 0.5em;
    font-size: 0.8em;
}
.area_ticket .way .playguide .first_day {
    width: 90%;
    margin: 0 auto;
    padding: 0.5em;
    border: 1px solid #52547b;
}
.area_ticket .way .playguide .first_day .lbl {
    display: inline-block;
    margin-right: 1em;
    color: #000;
}
.area_ticket .way .playguide .first_day .f_caution {
    font-size: 0.8em;
}
.area_ticket .way .playguide .fas {
	margin-right: 0.3em;
	font-size: 0.8em;
	color: #000;
}
.area_ticket .way .playguide .code {
	display: inline-block;
    font-size: 0.9em;
}


@media screen and (max-width: 480px){

    .area_ticket .way .playguide dd {
        font-size: 18rem;
    }
    .area_ticket .way .playguide .time {
        font-size: 0.8em;
    }    
}
@media screen and (max-width: 450px){
    .area_ticket .way .playguide .first_day .lbl {
        display: block;
    }
}

@media screen and (max-width: 365px){

    .area_ticket .way .playguide .pc {
        font-size: 18rem;
    }
}


@media screen and (max-width: 414px){

    .area_ticket .way .playguide dd {
        font-size: 16rem;
        padding-left: 0;
    }
}


/***　グループ観劇　***/

.area_ticket .way .group .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 400px;
	margin: 0 auto;
	padding: 0.8em;
	box-shadow: 0 0 10px rgba(82,84,123,0.3);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 20rem;
	color: #52547b;
	font-weight: 900;
	line-height: 1;
	transition: 0.5s;
}

.area_ticket .way .group .btn:hover {
	background: rgba(218,168,192,0.6);
}

.area_ticket .way .group .btn .icon {
	margin-right: 0.2em;
}




/*****　リセール　*****/

.area_ticket .way .resale p {
    text-align: left;
	font-size: 16rem;
	font-weight: 400;
		
}

.area_ticket .way .resale .list {
    margin-top: 1em;
}

.area_ticket .way .resale .list li {
    margin: 1em;
    display: inline-block;
}

.area_ticket .way .resale .list span {
    font-size: 0.9em;
	font-weight: 500;
}
.area_ticket .way .resale .list img {
    display: block;
    margin-bottom: 0;
    vertical-align: bottom;
}

/***　会場案内　***/

.area_ticket .way > dd.kaijyou {
	padding: 20px 20px;
	text-align: center;
}

.area_ticket .kaijyou .map {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}

.area_ticket .kaijyou .map img {
	width: 100%;
}

.area_ticket .kaijyou .theater {
	max-width: 271px;
	margin: 1em auto 0;
    font-weight: 400;
}

.area_ticket .kaijyou .theater img {
	width: 100%;
}

.area_ticket .kaijyou .add{
	font-size: 0.9em;
    font-weight: 400;
}

.area_ticket .kaijyou .add .pk {
	margin: 0 0.5em;
}

.area_ticket .kaijyou .access {
	margin: 1em auto 0;
	padding: 1em;
	border-top: 1px solid #52547b;
	border-bottom: 1px solid #52547b;
	font-size: 16rem;
    font-weight: 400;
}
.area_ticket .kaijyou .access li {
	margin-bottom: 0.5em;
	line-height: 1.5;
}


.area_ticket .kaijyou .wrap_btn {
	display: flex;
	justify-content: center;
	max-width: 600px;
	margin: 1em auto 2em;
	padding: 0 10px;
}

.area_ticket .wrap_btn .btn {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 5px;
	padding: 0.5em 3em 0.5em 2.5em;
	box-shadow: 0 0 10px rgba(82,84,123,0.3);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 18rem;
	color: #52547b;
	font-weight: 900;
	line-height: 1;
	transition: 0.5s;
}

.area_ticket .wrap_btn .btn:hover {
	background: rgba(218,168,192,0.6);
}

.area_ticket .wrap_btn .btn.ls {
	letter-spacing: 0.1em;
}

.area_ticket .wrap_btn .btn .icon {
	margin-right: 0.2em;
	transition: 0.5s;
}


.area_ticket .kaijyou .contact {
    margin: 1em auto 0;
    font-weight: 500;
}

.area_ticket .kaijyou .contact dt {
	background: rgba(82,84,123,0.1);
	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	color: #52547b;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

.area_ticket .kaijyou .contact dd {
	padding: 1em 0.5em;
	font-size: 20rem;
    word-break: break-all;
    text-align: center;
    line-height: 1.5;
}

.area_ticket .kaijyou .contact .tel {
	display: inline-block;
    margin: 0 0.5em;
	font-size: 20rem;
}
.area_ticket .kaijyou .contact .tel a {
    text-decoration: none;
	color: #1e2432;
}
.area_ticket .kaijyou .contact .tel .icon {
	margin-right: 0.3em;
	font-size: 0.8em;
}
.area_ticket .kaijyou .contact .office {
	display: inline-block;
    margin: 0 0.5em;
}

@media screen and (max-width: 480px){
	.area_ticket .wrap_btn .btn {
		padding: 0.5em 2em 0.5em 1.5em;
		font-size: 18rem;
	}

}

@media screen and (max-width: 414px){

	.area_ticket .kaijyou .theater {
		width: 200px;
	}

	.area_ticket .kaijyou .access {
		font-size: 15rem;
	}
    .area_ticket .kaijyou .contact dt {
        display: block;
    }
}

@media screen and (max-width: 330px){
	.area_ticket .kaijyou .wrap_btn {
		display: block;
		max-width: inherit;
	}
	.area_ticket .wrap_btn .btn {
		display: block;
		margin: 0 auto;
		padding: 0.5em 1em;
		font-weight: 900;
	}
	.area_ticket .wrap_btn .btn:not(:last-of-type) {
		margin-bottom: 0.5em;
	}
	.area_ticket .wrap_btn .btn .icon {
		display: none;
	}
}


/****************************************
　お問合せ
****************************************/

.area_ticket .way.contact dd{
    padding: 1em;
    text-align: center;
    line-height: 1.5;
}
.area_ticket .way.contact .office {
    display: block;
    margin: 0 auto;
    color: #52547b;
    font-weight: 900;
}

.area_ticket .osaka .way.contact .office {
    letter-spacing: 0.1em;
}

.area_ticket .way.contact .tel {
    display: block;
    margin: 0.5em auto 0;
    font-size: 28rem;
    color: #fff;
}

.area_ticket .way.contact .tel a{
    color: #fff;
    text-decoration: none;
}

.area_ticket .way.contact .tel .fas {
    padding-right: 0.3em;
    font-size: 0.9em;
    color: #52547b;
}

.area_ticket .way.contact .time {
    display: block;
    margin: 0 auto;
    color: #fff;
}
.area_ticket .way.contact .caution {
    margin: 1em auto 0;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 340px){
    .area_ticket .way.contact .caution {
        text-align: left;
        padding-left: 1em;
        text-indent: -1em;
    }
}




/****　速報1 ****/
.area_ticket .box.sokuho {
	padding: 0 1em;
}

.area_ticket .box.sokuho .heading_area {
	color: #52547b;
	font-size: 30rem;
    display: flex;
    align-items: center;
}
 
.area_ticket .box.sokuho .heading_area:before,
.area_ticket .box.sokuho .heading_area:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: rgba(82,84,123,0.3);
}
 
.area_ticket .box.sokuho .heading_area:before {
    margin-right: 1em;
}
 
.area_ticket .box.sokuho .heading_area:after {
    margin-left: 1em;
}

.area_ticket .box.sokuho .list {
	margin: 0 auto 3em;
	padding: 1em;
	line-height: 1.5;
	text-shadow: 0 0 50px rgba(255,255,255,0.5),0 0 20px rgba(255,255,255,0.5),0 0 10px rgba(255,255,255,0.5),0 0 5px rgba(255,255,255,0.5);
}

.area_ticket .box.sokuho .list .day {
	font-size: 34rem;
	margin-right: -0.5em;
	margin-bottom: 0.3em;
}

.area_ticket .box.sokuho .list .day .ls {
	letter-spacing: 0.05em;
}
.area_ticket .box.sokuho .list .day .s {
	padding: 0 0.2em;
	font-size:0.6em;
}

.area_ticket .box.sokuho .list .theater {
	font-size: 28rem;
}

.area_ticket .box.sokuho .list .theater .logo {
	display: block;
	width: 100%;
	max-width: 240px;
	margin: 0 auto;

}

.area_ticket .box.sokuho .list .theater .logo img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 900px){
	.area_ticket .box.sokuho {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 380px){

	.area_ticket .box.sokuho .list .day {
		font-size: 28rem;
	}

	.area_ticket .box.sokuho .list .day .ls {
		letter-spacing: 0;
	}
	.area_ticket .box.sokuho .list .day .s {
		padding: 0 0.2em;
	}
	.area_ticket .box.sokuho .list .theater {
		font-size: 22rem;
	}

	.area_ticket .box.sokuho .list .theater .logo {
		max-width: 180px;
	}
}

@media screen and (max-width: 280px){
	.area_ticket .box.sokuho .list .theater .pk {
		display: inline;
	}
}


/****　速報2 ****/

.area_ticket .box.sokuho2 {
	padding: 0 1em;
}

.area_ticket .box.sokuho2 .heading_area {
	color: #52547b;
	font-size: 30rem;
    display: flex;
    align-items: center;
}
 
.area_ticket .box.sokuho2 .heading_area:before,
.area_ticket .box.sokuho2 .heading_area:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: rgba(82,84,123,0.3);
}
 
.area_ticket .box.sokuho2 .heading_area:before {
    margin-right: 1em;
}
 
.area_ticket .box.sokuho2 .heading_area:after {
    margin-left: 1em;
}

.area_ticket .box.sokuho2 .list {
/*	display: inline-block;*/
	margin: 0 auto 3em;
	padding: 1em;
	line-height: 1.5;
	text-shadow: 0 0 50px rgba(255,255,255,0.5),0 0 20px rgba(255,255,255,0.5),0 0 10px rgba(255,255,255,0.5),0 0 5px rgba(255,255,255,0.5);
}

.area_ticket .box.sokuho2 .list .day {
	font-size: 34rem;
	margin-right: -0.5em;
	margin-bottom: 0.3em;
}

.area_ticket .box.sokuho2 .list .day .ls {
	letter-spacing: 0.05em;
}
.area_ticket .box.sokuho2 .list .day .s {
	padding: 0 0.2em;
	font-size:0.6em;
}

.area_ticket .box.sokuho2 .list .area {
	display: inline-block;
	width: 4em;
	font-size: 28rem;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 380px){

	.area_ticket .box.sokuho2 .list .day {
		font-size: 28rem;
	}

	.area_ticket .box.sokuho2 .list .day .ls {
		letter-spacing: 0;
	}
	.area_ticket .box.sokuho2 .list .day .s {
		padding: 0 0.2em;
	}
}

/****　東京公演　****/

.area_ticket .box.sokuho2 .list.tokyo {
	padding: 1.5em 0 2em;
}

.area_ticket .box.sokuho2 .list.tokyo .theater {
	font-size: 28rem;
}

.area_ticket .box.sokuho2 .list.tokyo .theater .logo {
	display: block;
	width: 100%;
	max-width: 240px;
	margin: 0 auto;

}

.area_ticket .box.sokuho2 .list.tokyo .theater .logo img {
	display: block;
	width: 100%;
}

@media screen and (max-width: 900px){
	.area_ticket .box.sokuho2 {
		padding: 2em 2em;
	}
}

@media screen and (max-width: 380px){

	.area_ticket .box.sokuho2 .list.tokyo .theater {
		font-size: 22rem;
	}

	.area_ticket .box.sokuho2 .list.tokyo .logo {
		max-width: 180px;
	}
}

@media screen and (max-width: 280px){
	.area_ticket .box.sokuho2 .list.tokyo .theater .pk {
		display: inline;
	}
}

/****　全国公演　****/

.area_ticket .box.sokuho2 .list.tour dd:not(:last-of-type) {
	margin-bottom: 2em;
}

.area_ticket .box.sokuho2 .list.tour table {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.area_ticket .box.sokuho2 .list.tour table th,
.area_ticket .box.sokuho2 .list.tour table td {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0.5em 2em;
	border: 1px solid rgba(82,84,123,0.3);
}

.area_ticket .box.sokuho2 .list.tour table th {
	width: 10em;
	background: rgba(82,84,123,0.1);
	font-size: 20rem;
}

.area_ticket .box.sokuho2 .list.tour table td {
	background: rgba(255,255,255,0.5);
	font-size: 20rem;
	text-align: left;
}

@media screen and (max-width: 500px){
	.area_ticket .box.sokuho2 .list.tour table th,
	.area_ticket .box.sokuho2 .list.tour table td {
			padding: 0.5em 1em;
	}
	.area_ticket .box.sokuho2 .list.tour table th {
		width: 6em;
	}


}

@media screen and (max-width: 450px){
	.area_ticket .box.sokuho2 .list.tour table th {
		font-size: 18rem;
	}

	.area_ticket .box.sokuho2 .list.tour table td {
		font-size: 18rem;
	}
}


@media screen and (max-width: 380px){
	.area_ticket .box.sokuho2 .list.tour table th {
		display: block;
		width:100%;
		border-bottom: none;
	}

	.area_ticket .box.sokuho2 .list.tour table td {
		display: block;
		width:100%;
		margin: 0 auto 0.5em;
		text-align: center;
	}
}



/***************************************************

　ツアー

**************************************************/
.area_tour {
	max-width: 900px;
}
.area_tour .box {
	padding: 0 1em;
}

.area_tour .list {
	overflow: hidden;
	margin: 0 auto 2em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
}

.area_tour .list dt {
	margin-bottom: 0.3em;
	padding: 0.5em;
	background: rgba(82,84,123,0.1);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	font-size: 24rem;
	line-height: 1.5;
	text-align: center;
	color: #52547b;
}

.area_tour .list dd {
	padding: 1em 2em;
	font-size: 18rem;
}
/*.area_tour .list dt {
	font-size: 24rem;
	color: #52547b;
}

.area_tour .list dd {}*/

.area_tour .list .theater {
	display: block;
	margin: 0 auto 1em;
	font-size: 20rem;
	color: #52547b;
}

.area_tour .list .theater a::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f08e";
	margin-left: 0.2em;
}

.area_tour .list .theater a:hover {
	color: #c64f88;
}

.area_tour .list .theater .pk {
	display: inline-block;
}

.area_tour .list .theater .pk:not(:last-of-type) {
	display: inline-block;
	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 dotted #52547b;
}
.area_tour table td:first-of-type {
	border-top: 1px dotted #52547b;
}

.area_tour table td .point {
	color: #b71c83;
}

.area_tour table td .note {
	display: block;
	margin: 0 0.5em;
	font-size: 0.8em;
	line-height: 1.3;
}

.area_tour .contact {
	margin: 1em auto 0;
}

.area_tour .contact .lbl {
	display: inline-block;
	color: #52547b;
}

.area_tour .contact .lbl::before {
	content: "［";
}

.area_tour .contact .lbl::after {
	content: "］";
}

.area_tour .contact .office {
	display: inline-block;
	margin: 0 0.3em;
}

.area_tour .contact .tel {
	display: inline-block;
	margin: 0 0.3em;
	color: #1e2432;
	text-decoration: none;
}


.area_tour .iwate .contact .lbl {
	margin-bottom: 0.5em;
}

.area_tour .iwate .contact ul {
	line-height: 1.5;
}

.area_tour .iwate .contact ul li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

@media screen and (max-width: 340px){
	.area_tour .list .theater {
		font-size: 18rem;
	}
	.area_tour table {
		font-size: 16rem;
	}
}

/***************************************************

　ムービー

**************************************************/

.area_movie {}

.area_movie .list {
    max-width: 800px;
    display: flex;
    flex-wrap: wrap; 
    margin: 0 auto 40px;
    padding: 10px;
}

.area_movie .list.center {
    justify-content: center;
}

.area_movie .list .item{
    width: 100%;
    justify-content: center;
    margin-bottom: 4em;
    margin: 0 10px 4em;
    vertical-align: bottom;
	margin-top: auto;
}

.area_movie .list .name {
    margin-bottom: 0.5em;
    padding: 0.3em 1em;
    font-size: 24rem;
    line-height: 1.3;
	color: #52547b;
}

.area_movie .list .name .pk {
	display: inline-block;
	margin: 0 0.5em;
}

.area_movie .list .youtube {
	position: relative;
	height: 0;
	margin-bottom: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
    box-shadow: 0 0 10px rgba(82,84,123,0.3);
	border: 1px groove #52547b;
/*	outline: 2px groove #dbd6aa;*/
}

.area_movie .list .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
 

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 768px){
    .area_movie .list {
        display: block;
        margin: 0 auto;
        text-align: center;
    }
    .area_movie .list .item{
       /* width: 90%;*/
        margin: 0 auto 2em;
    }
	.area_movie .list .name {
		font-size: 20rem;
	}
}

@media screen and (max-width: 414px){
    .area_movie .list .name {
        font-size: 16rem;
    }
    .area_movie .list .list {
        margin-bottom: 10px;
    } 
}
@media screen and (max-width: 340px){

}

/****************************************

　グッズ

*****************************************/

/***色
黒　#231815;
赤　#1e2432;
***/

.area_goods.sec {
	margin: 0 auto 5em;
}

.area_goods .box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 900px;
	width: 100%;
	margin: 0 auto 6em;
	padding: 0 2em 4em;
	text-align: center;
	color: #231815;
	font-size: 18rem;
}

/*.area_goods .list {
	margin: 0 auto;
	padding: 1em;
	background: #fff;
	border: 3px solid #1e2432;
	border-radius: 5px;
}

.area_goods .list:not(:last-of-type) {
	margin-bottom: 2em;
}

.area_goods .list > dt{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto 0.5em;
	padding: 0.5em;
	background: #1e2432;
	font-size: 22rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}

.area_goods .list > dt .lbl {
	display: inline-block;
	padding: 0.3em 1em;
	border: 2px solid #fff;
	font-size: 0.8em;
}

.area_goods .list > dd{
	padding: 1em;
	border-top: none;	
	text-align: center;
	color: #1a0502;
}*/

.area_goods .list {
	overflow: hidden;
	margin: 0 auto 2em;
	background: rgba(255,255,255,1);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
}

.area_goods .list > dt {
	margin-bottom: 0.3em;
	padding: 0.5em;
	background: rgba(82,84,123,0.1);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	font-size: 20rem;
	line-height: 1.5;
	text-align: center;
	color: #52547b;
}

.area_goods .list > dd {
	padding: 1em 2em;
	font-size: 18rem;
}

.area_goods .list .name {
	display: inline-block;
	margin: 0 0.5em;
}

.area_goods .list .name .note {
	display: block;
	padding: 0.2em 1em;
	border-radius: 3px;
	font-size: 0.7em;
	font-weight: 400;
}

.area_goods .list .name .note {
	font-size: 0.8em;
}

.area_goods .list .price {
	display: inline-block;
	margin: 0 0.5em;
}
.area_goods .list .price .s {
	font-size: 0.8em;
}

.area_goods .list .photo {
	margin: 0 auto;
	padding: 1em 0;
	border-radius: 2px;
}

.area_goods .list .photo img {
	display: block;
	width: 100%;
	margin: 0 auto;
-webkit-backface-visibility: hidden;
}

.area_goods .list.program .photo img { max-width: 300px; width: 80%;}
.area_goods .list.cd .photo img { max-width: 400px; width: 80%;}
.area_goods .list.card .photo img { max-width: 696.5px;}
.area_goods .list.file .photo img { max-width: 500px;}
.area_goods .list.akusta .photo img { max-width: 349px;}
.area_goods .list.canvas .photo img { max-width: 500px;}
.area_goods .list.cup .photo img { max-width: 598px;}
.area_goods .list.charm .photo img { max-width: 504.5px;}
.area_goods .list.towel .photo img { max-width: 688px;}
.area_goods .list.sacoche .photo img { max-width: 458.5px;}
.area_goods .list.caramel .photo img { max-width: 400px;}

.area_goods .list .list_cont {
	display: inline-block;
	margin: 2em auto 1em;}

.area_goods .list .list_cont dt {
	margin-bottom: 1em;
	background: rgba(82,84,123,0.1);
	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	color: #52547b;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
}

.area_goods .list .list_cont dd {
	padding: 0 2em;
	text-align: left;
}
.area_goods .list .list_cont li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	font-size: 16rem;
	line-height: 1.5;
	color: #52547b;

}

.area_goods .list .list_cont .icon {
	margin-right: 0.2em;
	color: #1e2432;
	font-size: 0.8em;
}

.area_goods .list .list_cont .no {
	display: inline-block;
	width: 1em;
}

.area_goods .list .list_cont .lbl {
	display: inline-block;
	margin-right: 0.2em;
	padding: 0.2em 1em;
	border: 2px solid #1e2432;
	border-radius: 5px;
	font-size: 0.8em;
	line-height: 1;
	color: #1e2432;
	text-align: center;
	text-indent: 0;
}

.area_goods .list .catch {
	padding: 1em 2em;
	border-radius: 10px;
	font-size: 18rem;
	font-weight: 500;
	color: #52547b;
	line-height: 1.5;
}

.area_goods .list .catch .icon {
	padding: 0 0.5em 0 0;
}

.area_goods .list .note {
	font-size: 0.9em;
	color: #52547b;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

.area_goods .list .data {
	margin: 1em auto 0;
	padding: 1em;
	border-top: 1px solid rgba(82,84,123,0.3);
	font-size: 0.8em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	color: #52547b;
}

.area_goods .list .data li {
	display: inline-block;
}

.area_goods .list .data li:not(:last-of-type)::after {
	content: "／";
	padding-left: 0.5em;
}

.area_goods .list .cam {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 1em auto 0;
	padding: 1em;
	border: 1px solid rgba(82,84,123,0.3);
	border-radius: 5px;

}

.area_goods .list .cam dt {
/*	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);*/
	padding: 0.5em;
	background: rgba(218,168,192,0.3);
	color: #52547b;
	font-size: 20rem;
	line-height: 1.5;
}

.area_goods .list .cam dd {
	padding: 1em 1em 0;
	font-size: 16rem;
}

.area_goods .list .cam .text {
	line-height: 1.8;
}

.area_goods .list .cam .text .point {
	color: #b71c83;
	font-size: 1.2em;
}

.area_goods .list .cam .list_item {
	display: inline-block;
	margin: 1em auto;
	padding: 1em;
	border-top: 1px solid rgba(82,84,123,0.3);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	text-align: left;
}

.area_goods .list .cam .list_item .icon {
	margin-right: 0.2em;
	color: #52547b;
}

.area_goods .list .cam .cap {
	display: inline-block;
	color: #52547b;
	text-align: center;
	font-weight: 900;
	line-height: 1.5;
}
.area_goods .list .cam .cap::before {
	content: "≪";
	margin-right: 0.5em;
}
.area_goods .list .cam .cap::after {
	content: "≫";
	margin-left: 0.2em;
}
.area_goods .list .cam .photo {
	margin: 0 auto;
	padding: 1em 0;
	border-radius: 2px;
}

.area_goods .list .cam .photo img {

	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	-webkit-backface-visibility: hidden;
}

.area_goods .list .cam .photo2 img { max-width: 761px;}


@media screen and (max-width: 530px){

	.area_goods .list > dt .lbl {
		display: block;
		margin-bottom: 0.5em;
		background: #fff;
		color: #52547b;
		font-weight: 900;
	}

	.area_goods .list > dd{
		padding: 1em;

	}
	
	.area_goods .list .name {
		display: block;
		margin: 0 auto 0.3em;
		padding-bottom: 0.3em;
		border-bottom: 1px solid rgba(82,84,123,0.3);
		line-height: 1.3;
	}
	
	.area_goods .list .name .note {
		display: block;
	}
	
	.area_goods .list .price {
		display: block;
		margin: 0 auto;
		font-size: 0.8em;
		font-weight: 400;
	}
	.area_goods .list .photo {
		padding: 1em 0;
	}

	.area_goods .list .catch {
		padding: 1em 1.5em;
		font-size: 0.9em;
	}

}

@media screen and (max-width: 450px){
	.area_goods .list .data {
		font-size: 0.9em;
	}

	.area_goods .list .catch {
		text-align: left;
	}
	.area_goods .list .catch .pk {
		display: inline;
	}
	.area_goods .list .cam .cap::before {
		content: none;
	}
	.area_goods .list .cam .cap::after {
		content: none;
	}
}

@media screen and (max-width: 420px){

	.area_goods .list .cam dt {
		font-size: 18rem;
	}
	.area_goods .list .cam dd {
		padding: 1em 0 0;
	}
}

@media screen and (max-width: 400px){
	.area_goods .list .data li {
		font-size: 0.8em;
	}
	.area_goods .list .list_cont dd {
		padding: 0 1em;
		
	}
	.area_goods .list .list_cont li {
		font-size: 16rem;
	}
	.area_goods .list .cam .text {
		text-align: left;
	}
	.area_goods .list .cam .text .pk {
		display: inline;
	}
	.area_goods .list .cam .text .point {
		font-size: 1em;
	}
}


.area_goods .caution {
	display: inline-block;
	margin: 0 auto 2em;
	text-align: left;
}

.area_goods .caution li {
	margin-bottom: 0.5em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5;
	font-size: 0.9em;
	font-weight: 700;
	color: #1e2432;
}

.area_goods .sale {
	margin: 3em auto 0;
}

.area_goods .sale > dt{
	padding: 0 0.5em 0.3em;
	color: #52547b;
	font-weight: 700;
    font-size: 24rem;
    text-align: left;
	line-height: 1.5;
}


.area_goods .sale > dt::before {
	content: "●";
	margin-right: 0.2em;
	color: #52547b;
}

.area_goods .sale > dd{
	margin-bottom: 2em;
}

@media screen and (max-width: 430px){

	.area_goods .sale > dt{
		text-align: center;
	}

	.area_goods .sale > dt::before {
		content: none;
	}
}

/*.area_goods .list {
	overflow: hidden;
	margin: 0 auto 2em;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
	border-radius: 5px;
}

.area_goods .list > dt {
	margin-bottom: 0.3em;
	padding: 0.5em;
	background: rgba(82,84,123,0.1);
	border-bottom: 1px solid rgba(82,84,123,0.3);
	font-size: 24rem;
	line-height: 1.5;
	text-align: center;
	color: #52547b;
}

.area_goods .list > dd {
	padding: 1em 2em;
	font-size: 18rem;
}*/

.area_goods .sale table {
	width: 100%;
	margin: 0 auto;
	background: rgba(255,255,255,0.5);
	border: 2px solid rgba(82,84,123,0.3);
}

.area_goods .sale th,
.area_goods .sale td {
	padding: 1em;
	border: 1px solid rgba(82,84,123,0.3);
	vertical-align: middle;
}

.area_goods .sale th {
	width: 8em;
	background: rgba(82,84,123,0.1);
	white-space: nowrap;
	color: #52547b;
}

.area_goods .sale td {
	text-align: left;

}

/*.area_goods .sale .btn_order {
	display: block;
	width: 10em;
	margin: 0.5em 0;
	padding: 0.5em 1em 0.5em;
	background: #231815;
	text-decoration: none;
	font-weight: 700;
	font-size: 24rem;
	text-align: center;
	color: #fff;
	line-height: 1;
	transition: 0.5s;
}

.area_goods .sale .btn_order.ls {
	letter-spacing: 0.1em;
}

.area_goods .sale .btn_order .fas {
	margin-right: 0.2em;
}

.area_goods .sale .btn_order:hover {
	background: #1e2432;
}*/

.area_goods .sale .btn_order {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	max-width: 300px;
	margin: 0;
	padding: 0.8em;
	box-shadow: 0 0 10px rgba(82,84,123,0.3);
	border: 1px solid rgba(82,84,123,0.3);
	background: rgba(218,168,192,0.3);
	border-radius: 5px;
	text-decoration: none;
	font-size: 20rem;
	color: #52547b;
	font-weight: 900;
	line-height: 1;
	transition: 0.5s;
	text-align: center;
}

.area_goods .sale .btn_order:hover {
	background: rgba(218,168,192,0.6);
}

.area_goods .sale .btn_order .icon {
	margin-right: 0.2em;
}

.area_goods .sale .note {
	display: block;
	padding: 0.5em;
	font-size: 0.9em;
	line-height: 1.5;
}

/**　削除用タイマー　**/
.area_goods .sale .js-time_limited{
  display: none;
}
.area_goods .sale .js-time_limited_fire{
  display: block;
}
/**　//削除用タイマー　**/

.area_goods .sale .link {
	text-decoration: underline;
	color: #1e2432;
}

@media screen and (max-width: 430px){
	.area_goods .sale table {
		width: 100%;
		border: 1px solid rgba(82,84,123,0.3);
	}
	
	.area_goods .sale th,
	.area_goods .sale td {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		padding: 0.5em;
		box-sizing: border-box;
		text-align: center;
	}
	.area_goods .sale th {
		display: block;
		width: 100%;
		border-top: 1px solid rgba(82,84,123,0.3);
		border-bottom: 1px solid rgba(82,84,123,0.3);
		text-align: center;
	}

	.area_goods .sale td {
		display: block;
		width: 100%;
		padding: 10px 0
	}
	.area_goods .sale .btn_order {
		margin: 0 auto;
		width: 80%;
	}
}