<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*---------------------------------------

[reset]

[base]
	font
	anchor
	add class

.body_common set-up]
	h
	pagetop link

[lower.body_common]

[each page]

.body_common contents]
	container
	header
	main contents
	footer
	print

[clearfix]

[cms setting]

---------------------------------------*/

/* CSS Document */
/*===============================================
●style.css
===============================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: reset */
body,div,dl,dt,dd,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote {
	margin: 0;
	padding: 0;
}
ul,ol{
	margin: 0;
}

header,nav,section,aside,footer {
	display: block;
}

table {
	border-spacing: 0;
	max-width:100% !important;
}

fieldset,img,a img,abbr,acronym {
	border: 0;
}

li img,dt img {
	vertical-align: top;
}

address,caption,cite,code,dfn,th,var {
	font-style: normal;
	font-weight: normal;
}

caption,th {
	text-align: left;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

q:before,q:after {
	content: '';
}

a {
	outline: none;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: base */

html {
	font-size: 62.5%;
}
body {
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
	line-height: 1.5;
	color: #1d2129;
	-webkit-text-size-adjust: 100%;
	font-size: clamp(14px, 1vw, 16px);
}
.container {
	width: 100%;
}
iframe{
	max-width:100% !important;
}
@media screen and (max-width:779px) {
.php,body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
}

/*----------------------- color */
/* red */
.red {
	color: #FF0000;
}

/* white */
.white {
	color: #FFFFFF;
}

/* aqua */
.aqua {
	color: #2b71b7;
}

/* blue */
.blue {
	color: #334f99;
}

/* black */
.black {
	color: #0b0b0b;
}
/*----------------------- size */
/* size10px */
.size10 {
	font-size: 0.71em;
}

/* size12px */
.size12 {
	font-size: 0.85em;
}

/* size14px */
.size14 {
	font-size: 1.0em;
}

/* size16px */
.size14 {
	font-size: 1.14em;
}

/* size18px */
.size18 {
	font-size: 1.28em;
}

/* size22px */
.size22 {
	font-size: 1.57em;
}

/* size24px */
.size22 {
	font-size: 1.71em;
}


/*--------------------------------------- anchor */

a {
	color: #333333;
}

a:hover {
	color: #333333;
}

/* btn */
.btn {
	text-align: center;
	display: block;
	padding: 0.5em 20px;
}

.btn a {
	border-radius: 5px;
	padding: 0.8em 2em;
	line-height: 1.5;
	background-color: #b80006;
	color: #FFFFFF;
	text-decoration: none;
	display: inline-block;
	transition: linear background-color 0.2s;
}

.btn a:hover {
	background-color: #d4070e;
}

/* エディター：スタイル */
.editor-style-btn1 {
	display:inline-block;
	background:linear-gradient(to bottom, #DD0011, #990000);
	border:1px solid #FEFB00;
	color:#FEFB00;
	padding:0.5em 1em;
	text-decoration:none;
}

.editor-style-btn1:hover {
	background:linear-gradient(to bottom, #990000, #DD0011);
}

.editor-style-btn1 a {
	color:#FEFB00;
	text-decoration: none;
}
.editor-style-btn2 {
	display:inline-block;
	background:linear-gradient(to bottom, #DD0011, #990000);
	border:1px solid #E60012;
	color:#FFFFFF;
	line-height:1.5em;
	text-decoration:none;
}
.editor-style-btn2 img{
	vertical-align:middle;
}

.editor-style-btn2:hover {
	background:linear-gradient(to bottom, #990000, #DD0011);
}

.editor-style-btn2 a {
	display:block;
	padding:0.8em 1.5em;
	color:#FFFFFF;
	text-decoration: none;
}
.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),-1px -1px 5px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------- add class */

.floatL {
	float: left;
}

.floatR {
	float: right;
}

.clearB {
	clear: both;
}

.clearB:after{
	content: "";
	display: block;
	clear: both;
	width: 100%;
}
.center {
	text-align: center;
}

.right {
	text-align: right;
}

.bold {
	font-weight: bold;
}

/*--------------------------------------- columnBox */
.columnBox .column {
	padding:1em 20px;
}
@media screen and (min-width: 780px), print {
	.columnBox {
		display: table;
		table-layout: fixed;
		width: 100%;
	}
	.columnBox .column {
		display: table-cell;
		vertical-align: top;
	}
	.columnBox .v_middle {
		vertical-align: middle;
	}
	.columnBox .v_bottom {
		vertical-align: bottom;
	}
	.w20 {
		width: 20%;
	}
	.w30 {
		width: 30%;
	}
	.w40 {
		width: 40%;
	}
	.w50 {
		width: 50%;
	}
	.w60 {
		width: 60%;
	}
	.w70 {
		width: 70%;
	}
	.w80 {
		width: 80%;
	}
	.padr3 {
		padding-right: 3%;
	}
	.padL3 {
		padding-left: 3%;
	}
	.padt3 {
		padding-top: 3%;
	}
	.padt6 {
		padding-top: 6%;
	}
}

/*--------------------------------------- list_text */
.body_news .main_title {
	padding: 30px 20px 20px;
}
.list_text,
.list_text li {
	display: block;
	padding: 0;
	margin: 0;
}

.list_text li a {
	text-decoration:none;
	display: block;
	color: #777;
}
.list_text li .listBox {
	width: 100%;
}
.list_text li .date {
	font-size: 0.9em;
	width: 8em;
}
.list_text li .new {
	font-size: 0.9em;
	margin: 5px;
}
@media screen and (min-width: 481px), print {
	.list_text li .listBox {
		display: table;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .text {
		display: table-cell;
		vertical-align: top;
		padding: 10px;
	}
}
@media screen and (max-width: 480px) {
	.list_text li .listBox {
		padding: 10px 20px;
		display: block;
	}
	.list_text li .listBox .date,
	.list_text li .listBox .text {
		padding: 5px 0;
		display: block;
	}
}
/*--------------------------------------- list_thumbnail */
.list_thumbnail {
	width:100%;
	padding: 1em 0;
	margin: 0;
}

.list_thumbnail li{
	display: inline-block;
	vertical-align: top;
	margin: 0;
}
.list_thumbnail li a {
	display: block;
	text-decoration: none;
	color: #777777;
}
.list_thumbnail .listBox {
	display: block;
	padding: 0 10px 1em;
	position: relative;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}
.list_thumbnail .thumbnail span{
	padding: 27% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: inset 0 -1em 4em 1em rgba(0, 0, 0, 0.05);
	transition: transform 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span{
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail .dateBox {
	display: block;
	padding: 0 10px;
	background-color: #f4f4f4;
	font-size: 0.9em;
}
.list_thumbnail .date,
.list_thumbnail .new {
	margin: 5px;
	display: inline-block;
	vertical-align: middle;
}
.list_thumbnail .date {
	padding: 0.1em 0;
}
.new {
	color: #e81911;
	padding: 2px 5px;
	border: 1px solid;
	border-radius: 5px;
}
.list_thumbnail .title {
	display: block;
	padding: 0.5em 10px 1em;
}
.list_thumbnail .text {
	display: block;
	padding: 0.5em 10px 1em;
	border-top: 1px dashed #ddd;
	color: #999;
	font-size: 0.9em;
}
@media screen and (min-width: 1200px) {
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}
@media screen and (min-width: 780px) {
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC2 li{
		width: 50%;
	}
	.list_thumbnailC3 li{
		width: 33%;
	}
	.list_thumbnailC4 li{
		width: 25%;
	}
	.list_thumbnailC5 li{
		width: 20%;
	}
	.list_thumbnailC6 li{
		width: 16%;
	}
}

@media screen and (max-width: 779px) {
	.list_thumbnailC2 .listBox {
		padding: 0 0 2em;
	}
	.column_thumbnail {
		width: 35.2%;
	}
	.list_thumbnail li{
		width: 50%;
	}
	.list_thumbnailC1 li{
		width: 100%;
		display:block;
	}
	.list_thumbnailC4 li{
		width: 50%;
	}
	.list_thumbnailC5 li{
		width: 50%;
	}
	.list_thumbnailC6 li{
		width: 50%;
	}
}

@media screen and (min-width: 480px) {
	.list_thumbnailC2 li .listBox {
		padding: 1em 2em 1em 0;
	}
	.list_thumbnailC2 li:nth-child(2n) .listBox {
		padding: 1em 0 1em 2em;
	}
}
@media screen and (max-width: 479px) {
	.list_thumbnail li{
		width: 100%;
	}
}
/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common set-up */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
}
h2 {
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
	font-weight: normal;
}
/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	color:#D40D17;
	margin: 1em 0 0.5em;
	padding: 0.5em 12px 0.5em 24px;
	font-weight: bold;
	border-radius: 10px;
	text-shadow: 1px 1px 1px #DBBA16;
	box-shadow: 0px 0px 10px #ebdbb8;
	background: #FFDE3A;
}
h4{
	color: #333333; /* 文字色 */
	padding: 5px 5px 5px 30px; /* 上・右・下・左の余白 */
	position: relative;
	border:none;
	margin: 1em 0;
}
h4:before{
	background-color: #F9B800; /* 左側の線の色 */
	border-radius: 5px;
	content: '';
	position: absolute;
	top: 0;
	left: 3px; /* 左端からの位置 */
	width: 5px; /* 左側の線の幅 */
	height: 100%;
}
h4:after{
	background-color: #FFD800; /* 右側の線の色 */
	border-radius: 5px;
	content: '';
	position: absolute;
	top: 0;
	left: 12px; /* 左端からの位置 */
	width: 5px; /* 右側の線の幅 */
	height: 100%;
}
h5 {
	margin: 1.5em 0 1em;
	padding: 0 10px 0 30px;
}
h5:before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	border: 6px solid #2ba0ed;
	position: absolute;
	left: 0;
	top: 4px;
}
h6 {
	color: #2b71b7;
	font-weight: bold;
	margin: 1em 0;
}

@media screen and (min-width: 780px), print {
	h2 {
		font-size: 1.71em;
	}
	h3 {
		font-size: 1.5em;
	}
	h4 {
		font-size: 1.4em;
	}
	h5 {
		font-size: 1.1em;
	}
	h6 {
		font-size: 1em;
	}
}
@media screen and (max-width: 779px) {
	h2 {
		font-size: 1.2em;
	}
	h3 {
		font-size: 1.2em;
	}
	h4 {
		font-size: 1.2em;
	}
	h5,h6 {
		font-size: 1em;
	}
}

/* table */
table {
	border-collapse: collapse;
}

table th,
table td {
	border: 1px solid #CCCCCC;
}

table th {
}

table[border="0"],
table[border="0"] th,
table[border="0"] td {
	border: none;
}
table[border="1"],
table[border="1"] th,
table[border="1"] td {
	border: 1px solid #CCCCCC;
}
@media screen and (max-width:779px) {
	table th {
		width: auto !important;
	}
	table.responsive{
		width:100%;
	}
	table.responsive tr{
		display: block;
	}
	table.responsive th,
	table.responsive td{
		/*text-align:left;*/
		width:96% !important;
		display: list-item;
		list-style:none;
	}
	table.responsive tr table{
		display: table;
	}
	table.responsive th table th,
	table.responsive td table td{
		width:auto !important;
		display: table-cell;
	}
	table.noresponsive tr{
		display: table-row;
	}
	table.noresponsive th,
	table.noresponsive td{
		text-align:left;
		width:100% !important;
		display: table-cell;
		list-style:none;
	}
	table.noresponsive tr table{
		display: table;
	}
	table.noresponsive th table th,
	table.noresponsive td table td{
		width:auto !important;
		display: table-cell;
	}
}

/* contact form */
.form_flow {
	width: 100%;
	margin: 20px auto 0;
	padding: 0;
	display: table;
	table-layout: fixed;
}

.form_flow li {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	border-left: 10px solid #ffffff;
	padding: 0 5px;
	width: 34%;
	background-color: #adadad;
}

.form_flow li:first-child {
	border-left: none;
}

.form_flow li.current {
	background-color: #2b71b7;
}

.form_flow li span {
	color: #ffffff;
	font-size: 0.9em;
	padding: 10px;
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}

.contact_msg {
	font-size: 0.9em;
	margin: 0 auto;
}

.contact_msg_complete {
	padding: 40px;
	box-shadow: inset 0 0 0 2px #f0f0f0;
}

.contact_msg .editor-style-btn1 {
	float: right;
}

.contact_msg .editor-style-btn1:after {
	content: "";
	display: block;
	width: 100%;
	clear: both;
}

.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5,-1px 0px #e5e5e5;
	padding: 20px 5%;
}

.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}

.error_box .error_msg {
	margin-top: 20px;
}

.contact form {
	text-align: center;
}

#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}

#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}

#input-table table li {
	margin-left: 0;
}

#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}

#input-table table td {
	padding-left: 10px;
}

#input-table table tr {
	transition: linear background-color 0.2s;
	border-top: 1px solid #ccc;
}

#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}

#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}

.input_required,
.input_not_required:before {
	font-size: 0.9em;
	padding: 2px 6px;
	display: inline-block;
	background-color: #2b71b7;
	color: #ffffff;
	position: absolute;
	right: 10px;
	top: 20px;
}

.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}

#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}

#input-table table tr:last-child td {
	text-align: center;
}

#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}

#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

input[type="text"],
input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}

.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}

#input-table table .form_input_addnumber {
	width: 40% !important;
}

#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

input:focus,
input:textarea {
	border: solid 1px #3ba5eb;
}

.input_button {
	font-size: 0.9em;
	font-weight: bold;
	-webkit-appearance: none;
	padding: 4px 10px;
	background-color: #2b71b7;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#input-table .input_button {
	padding: 10px 50px;
}

#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}

#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
	border-radius: 3px;
}

/* セパレーター */
#input-table table tr.input-formgroup-blank th{
	background:#F0F0F0;
	border:none;
}
#input-table table tr.input-formgroup{
	padding-top:20px;
}
#input-table table tr.input-formgroup th{
	text-align:left;
	border:none;
	padding:10px 0 5px 50px;
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	background-color:#074D93;/* セパレーターth背景色 */
	border-top:2px solid #EEEEEE;
	border-left:2px solid #EEEEEE;
	border-right:2px solid #EEEEEE;
	border-bottom:1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed{
	background-image:url(./img/icon_arrow_down.png);
	background-repeat:no-repeat;
	background-position: 5px 10px;
	border-bottom:2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover{
	cursor:pointer;
	filter: alpha(opacity=90);
	opacity:0.90;
	-moz-opacity:0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title{
	display:block;
	color:#FFFFFF;/* セパレータータイトル文字色 */
	font-size:1.3em;/* セパレータータイトル文字サイズ */
	padding-bottom:5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text{
	position: relative;
	display:block;
	color:#FFFFFF;/* セパレーター説明文文字色 */
	padding:0 5px 0 1em;
	margin:5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before{
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content:"";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited,
#input-table table tr.input-formgroup span.input-formgroup-text a:link{
	color:#FFFFFF;/* セパレーター説明文内リンク色1 */
	text-decoration:underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover,
#input-table table tr.input-formgroup span.input-formgroup-text a:active{
	color:#66FFFF;/* セパレーター説明文内リンク色2 */
	text-decoration:underline;
}
@media screen and (max-width:779px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}

	#input-table table th ,
		#input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}

	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content:"";
		display:block;
		clear:both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required,
	.input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}
@media screen and (max-width:479px) {
	.form_flow li {
		display: block;
		width: 100%;
		border-left: 10px solid #cccccc;
		border-top: 1px dotted #ccc;
		text-align: left;
	}
	.form_flow li:first-child {
		border-top: none;
	}
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::.body_common contents */

/*--------------------------------------- container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0;
}

header #header_inner,
.breadCrumb ul,
.layout02,
.copy div,
article {
	max-width: 1024px;
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------- header */
.scroll_nav {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 100;
	/*border-bottom: 2px solid #f3b71e;*/
	background-color: #E73A21;
	box-shadow: 0 0 12px rgba(4, 0, 0, 0.4);
	text-align: center;
}
.scroll_nav img {
	max-width: 100%;
	vertical-align: middle;
}
@media screen and (max-width: 779px){
	.scroll_nav {
		display:none;
	}
}

/*--------------------------------------- kayFrame */

/*--------------------------------------- mainContaints */
.container {
	padding: 30px 0;
}
.lower .container {
	margin-top:60px;
}
@media screen and (max-width: 779px){
	.lower .container {
		margin-top:0;
	}
}
.bg_gray {
	background-color: #f4f4f4;
}

.header_menu{
	width:100%;
	max-width:1024px;
	height:60px;
	margin:0 auto;
	background:#E73A21;
}
.header_menu a{
	width:11.11111%;
	height:60px;
	float:left;
	text-indent:-9800px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header_menu_home {
	background-color: #F9E467;
	background-image: url(./img/header_menu_home.png?v=2023);
}
.header_menu_info {
	background-color: #5EAAEF;
	background-image: url(./img/header_menu_info.png?v=2023);
}
.header_menu_facebook {
	background-color: #A66CD8;
	background-image: url(./img/header_menu_facebook.png?v=2023);
}
.header_menu_seat {
	background-color: #56B7D1;
	background-image: url(./img/header_menu_seat.png?v=2023);
}
.header_menu_manners {
	background-color: #F473A4;
	background-image: url(./img/header_menu_manners.png?v=2023);
}
.header_menu_archive {
	background-color: #FFA14D;
	background-image: url(./img/header_menu_archive.png?v=2023);
}
.header_menu_contact {
	background-color: #4ACCA7;
	background-image: url(./img/header_menu_contact.png?v=2023);
}
.header_menu_movie {
	background-color: #EB653F;
	background-image: url(./img/header_menu_movie.png?v=2023);
}
.header_menu_ticket {
	background:  url(./img/header_menu_ticket.png) #E73A21;
	border-top:solid 2px #F3B71E;
	border-left:solid 1px #F3B71E;
	border-right:solid 1px #F3B71E;
	border-bottom:solid 1px #F3B71E;
}
@media screen and (min-width: 1201px){
	.header_menu a{
		/*width:11.11111%;チケット購入表示時*/
		width:12.45%;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px), print{
	.header_menu{
		padding-left:0.5%;
	}
	.header_menu a{
		/*width:11.11111%;チケット購入表示時*/
		width:12.45%;
	}
}
@media screen and (min-width: 780px), print {
	header #header_logo img {
		max-width: 80px;
	}
	.sp_menu_btn,
	.sp_menu {
		display: none;
	}
}
@media screen and (max-width:779px) {
	header #header_inner {
		padding: 0;
		padding-right: 60px;
		display: block;
		text-align: left;
	}
	header #header_logo {

	}
	header #header_logo a {
		display: block;
		padding: 10px;
		text-align: left;
	}
	header #header_logo img {
		max-width: 60px;
	}
	nav.gNavi {
		display: none;
	}
	/* sp_menu */
	.sp_menu_btn,
	.sp_menu_btn span {
		display: inline-block;
		box-sizing: border-box;
	}
	.sp_menu_btn {
		position: relative;
		width: 40px;
		height: 34px;
		padding:2px;
		background-color:rgba(255,255,255,0.5);
	}
	.sp_menu_btn.close{
		background-color:transparent;
	}
	.sp_menu_btn span {
		position: absolute;
		width: 36px;
		height: 4px;
		background-color: #750d14;
		border-radius: 4px;
		transition: transform .4s;
	}
	.sp_menu_btn span:nth-of-type(1) {
		top: 2px;
	}
	.sp_menu_btn span:nth-of-type(2) {
		top: 14px;
	}
	.sp_menu_btn span:nth-of-type(3) {
		bottom: 2px;
	}
	.sp_menu_btn.close span {
		background-color: #ffffff;
	}
	.sp_menu_btn.close span:nth-of-type(1) {
		-webkit-transform: translateY(14px) rotate(-45deg);
		transform: translateY(13px) rotate(-45deg);
	}
	.sp_menu_btn.close span:nth-of-type(2) {
		opacity: 0;
	}
	.sp_menu_btn.close span:nth-of-type(3) {
		-webkit-transform: translateY(-15px) rotate(45deg);
		transform: translateY(-13px) rotate(45deg);
	}
	.sp_menu_bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 20;
		width: 100%;
		height: 100%;
		display: none;
	}
	.sp_menu_bg.bg_fixed {
		display: block;
		background-color: transparent;
	}
	.sp_menu_btn {
		position: fixed;
		top: 18px;
		right: 10px;
		z-index: 999999;
	}
	.sp_menu {
		position: fixed;
		z-index: 135;
		right: -100%;
		top: 0;
		width: 100%;
		max-width: 280px;
		height: 100%;
		padding: 60px 0px;
		background-color: #E73A21;
		box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
		overflow-y: auto;
		opacity:0;
		transition: right 0.3s;
	}
	.sp_menu a {
		text-decoration: none;
	}
	.sp_menu_navi ul {
		list-style: none;
		padding: 0;
	}
	.sp_menu_navi ul li {
		width: 50%;
		display: inline-block;
	}
	.sp_menu_navi ul li.sp_menu_navi_100{
		width: 100%;
	}
	.sp_menu_navi ul li a {
		display: block;
		text-decoration: none;
		text-indent: -9800px;
		padding: 10px;
		color: #fff;
		height: 90px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}
	.sp_menu.menu_fixed {
		right: 0;
		opacity: 10;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main.body_common */

.entry li {
	margin-left: 2em;
}
@media screen and (max-width:779px) {
	.container {
		padding: 30px 0;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: lower.body_common */

/* subnavi */
.subnavi ul{
	width: 980px;
	max-width: 100%;
	margin: 0 auto 2.0em;
	padding:0;
	list-style:none;
}
.subnavi li{
	float:left;
	margin-right:1%;
	margin-bottom:5px;
	background:#0D6BB8;
}
.subnavi li.current{
	background:#22BAEF;
}
.subnavi li a{
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none;
	display:block;
	padding:1.0em 1.5em;
}

.body_photo_archive .subnavi li a{
	padding:1.0em 2.0em;
}
@media screen and (min-width: 481px) and (max-width: 980px){
	.subnavi ul{
		max-width: 96%;
		margin-left:2%;
		margin-right:2%;
	}
}
@media screen and (max-width: 480px){
	.subnavi ul{
		max-width: 92%;
		margin-left:4%;
		margin-right:4%;
		text-align:center;
	}
	.subnavi li a{
		font-size:90%;
		padding:10px 15px;
	}
}
/* breadCrumb */
.breadCrumb {
	font-size: 0.9em;
	color: #fff;
	background-color: #b80006;
}
.breadCrumb ul {
	padding: 0.5em 20px;
}
.breadCrumb li {
	display: inline;
}
.breadCrumb li a {
	color: #ffffff;
	background: transparent url(img/breadcrumb.png) no-repeat scroll right center;
	margin-right: 2px;
	padding-right: 16px;
	text-decoration: none;
}
/*--------------------------------------- pagetop link */
#page_top {
	z-index:999;
}

/*--------------------------------------- pageprev/next link */
.page_link {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

.page_link a.page_link_left {
	margin: 0 10px 0 0;
	padding: 0 0 0 12px;
	background: url(img/icon_page_link_left.gif) no-repeat left center;
}

.page_link a.page_link_right {
	margin: 0 0 0 10px;
	padding: 0 12px 0 0;
	background: url(img/icon_page_link_right.gif) no-repeat right center;
}
/*--------------------------------------- pager */
.pager_box{
	clear:both;
	text-align:center;
	margin-top:15px;
}
.pager_box .pager{
	width:2.5em;
	display:inline-block;
	border:1px solid #BFBFBE;
	border-radius:3px;
}
.pager_box .pager a{
	display:block;
	width:100%;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager a:link,
.pager_box .pager a:visited{
	color:#333333;
	text-decoration:none;
}
.pager_box .pager a:hover,
.pager_box .pager a:active{
	background:#F1F1F1;
	text-decoration:none;
}
.pager_box .pager_current{
	background:#F1F1F1;
	padding-top:0.5em;
	padding-bottom:0.5em;
}
.pager_box .pager_dot{
	width:1.5em;
	display:inline-block;
}
.pager_box .pager_space{
	width:1em;
	display:inline-block;
	padding-left:0.2em;
	padding-right:0.2em;
}
.pager_box .pager_first{
	display:inline-block;
}
.pager_box .pager_last{
	display:inline-block;
}

/*--------------------------------------- footer */
footer {
	text-align: center;
	padding: 60px 0 40px;
}
footer .fLogo a {
	display: inline-block;
}
footer .copyright {
	font-size: 0.8em;
	padding-top: 10px;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: clear */
.entry:after,
article:after,
ul:after,
section:after,
header:after,
header div:after,
footer:after,
.clearFix:after {
	content: "";
	display: block;
	clear: both;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms setting */

/* フォームツールチップ */
.invisible {
	display: none;
}

a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}

#input-table a.tooltiplink:link,
#input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

#input-table a.tooltiplink:hover,
#input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

a.tooltiplink:link,
a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

a.tooltiplink:hover,
a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}

p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}

#input-table p.tooltipbox a:link,
#input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

#input-table p.tooltipbox a:hover,
#input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

p.tooltipbox a:link,
p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}

p.tooltipbox a:hover,
p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}

/* comment form */
.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}

.comment_box th,
.comment_box td {
	padding: 10px;
}

.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}

.comment_name {
	width: 70%;
	text-align: left;
}

.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}

.comment_box td {
	padding-top: 0;
}

.comment_text {
	padding: 15px;
	background: #ffffff;
}

.icon_comment {
	text-align: right;
}

.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}

/* twitter widget */
#twtr-hd h3,
#twtr-hd h4,
.twtr-widget h3,
.twtr-widget h4,
.twtr-widget p,
.twtr-widget-profile h3,
.twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */
iframe.twitter-share-button {
	width: 115px!important;
}

/* フォームエラー */
.error_msg,
.error_msg_js {
	padding : 5px 5px 5px 20px;
	background: url(./img/form_error.gif) left 10px no-repeat;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: main */
/* fadein */
.fadein {
	opacity: 0.1;
	transform: translate(0, 100px);
	transition: transform 1200ms,opacity 1200ms;
	-moz-transition-delay: 200ms;
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
}
.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
/*--------------------------------------- /index.php */

.main_box{
	background:linear-gradient(#FFE358, #FFD60C);
}
/*      main_img      */
.main_img {
	background-image: url(../common/main_img_2020.png);
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	margin-top:60px;
	height:1684px;
	/*padding: 320px 20px 27px;*/
	padding: 0;
	position: relative;
}
#main_img_sp_flag{
	display:none;
}
#main_img_hover{
	max-width:100%;
	opacity:1;
}
#main_img_hover map:hover{
	opacity:1;
}
/*.main_img_box {
	position:relative;
	margin: 0 auto;
	max-width: 506px;
}
.main_img_box .swiper-slide .img{
	padding: 0 0 10px;
}
.swiper_change {
	padding-top: 70px;
}*/
@media screen and (min-width: 780px) and (max-width: 1200px){
	.main_img {
		width:100% !important;
		background-image: url(../common/main_img_2020.png);
		background-repeat: no-repeat;
		background-position: center top;
		background-size:100%;
		background-color:#FED80F;
		padding: 0;
/*		padding-top: calc(100vw * 0.28);
		padding-bottom: calc(100vw * 0.05);*/
		height:calc(100vw * 1.4);
	}
/*	.main_img_box {
		max-width: 100%;
	}
	.swiper-container{
		width: calc(100vw * 0.40);
	}
	.swiper-container img{
		width:100%;
	}*/
}
@media screen and (min-width: 480px) and (max-width: 779px){
	.main_img {
		width:100% !important;
		margin-top:0;
		background-image: url(../common/main_img_2020.png);
		background-repeat: no-repeat;
		background-position: center top;
		background-size:100%;
		padding: 0;
		/*padding-top: calc(100vw * 0.42);*/
		padding-bottom: calc(100vw * 0.7);
		height:calc(100vw * 1.4);
	}
	#main_img_hover{
	}
/*	.main_img_box {
		max-width: 100%;
	}
	.swiper-container{
		width: calc(100vw * 0.6);
	}
	.swiper-container img{
		width:100%;
	}*/
}
@media screen and (max-width: 479px){
	.main_img {
		width:100% !important;
		margin-top:0;
		background-image: url(../common/main_img_2020_sp.png);
		background-position: center top;
		background-size:100%;
		padding: 0;
		padding-top: calc(100vw * 0.42);
		padding-bottom: calc(100vw * 0.68);
		height:calc(100vw * 1.4);
	}
	#main_img_sp_flag{
		display:block;
		position:relative;
		top:-10px;
	}
	#main_img_sp_flag img{
		width:100%;
		height:auto;
	}
	#main_img_hover{
		display:none;
	}
/*	.main_img_box {
		max-width: 100%;
	}
	.swiper-container{
		width: calc(100vw * 0.6);
	}
	.swiper-container img{
		width:100%;
	}*/
}
#btn_character {
	position: absolute;
	text-indent: -999999px;
}
#btn_character a {
	display: block;
	background-image: url(../common/btn_chara.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: contain;
	position: relative;
	z-index: 2;
}
#btn_character a:hover {
	background-image: url(../common/btn_chara_hover.png);
}
@media screen and (min-width:1201px){
	#btn_character {
		right: 50%;
		margin-right: -180px;
		top: 770px;
		text-indent: -999999px;
	}
	#btn_character a {
		width: 140px;
		height: 100px;
	}
}

@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#btn_character {
		right: 35%;
		top: calc(100vw *0.62);
		text-indent: -999999px;
	}
	#btn_character a {
		width: 140px;
		height: 100px;
	}
}
@media screen and (max-width: 779px){
	#btn_character {
		right: 35%;
		top: calc(100vw *0.62);
		height: 64px;
		text-indent: -999999px;
	}
	#btn_character a {
		width: calc(100vw *0.15);
		height: calc(100vw *0.15);
	}
}

#sign_text{
	position:absolute;
	text-align:left;
	width:150px;
	height:40px;
	z-index: 50;
}
@media screen and (min-width:1201px){
	#sign_text{
		left: 50%;
		margin-left: 305px;
		top: 1560px;
		text-indent: -999999px;
	}
	#sign_text a {
		display: block;
		height: 25px;
		width: 42px;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#sign_text{
		left: 75%;
		top: calc(100vw *1.275);
		text-indent: -999999px;
	}
	#sign_text a {
		display: block;
		height: 70%;
		width: 31%;
	}
}
@media screen and (min-width: 480px) and (max-width: 779px){
	#sign_text{
		left: 75%;
		top: calc(100vw *1.26);
		height: 64px;
		text-indent: -999999px;
	}
	#sign_text a {
		display: block;
		height: 30%;
		width: 43%;

	}
}
@media screen and (max-width: 479px){
	#sign_text{
		left: 27%;
		top: calc(100vw *1.67);
		height: 64px;
		text-indent: -999999px;
	}
	#sign_text a {
		display: block;
		height: 30%;
		width: 43%;
	}
}
#balloon1_box,
#balloon2_box,
#balloon3_box,
#balloon4_box{
	display:none;
}
@media screen and (max-width: 480px){
	#balloon1_box,
	#balloon2_box,
	#balloon3_box,
	#balloon4_box{
		display:block;
	}
}
#balloon1_box{
	position:absolute;
	text-align:left;
	width:300px;
	height:200px;
	z-index: 50;
}
@media screen and (min-width:1201px){
	#balloon1_box{
		left: 50%;
		margin-left: -530px;
		top: 330px;
		text-indent: -999999px;
	}
	#balloon1_box a {
		display: block;
		width:300px;
		height:200px;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#balloon1_box{
		left: 5%;
		top: calc(100vw * 0.26);
		text-indent: -999999px;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
	#balloon1_box a {
		display: block;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
}
@media screen and (max-width: 779px){
	#balloon1_box{
		left: 5%;
		top: calc(100vw * 0.26);
		text-indent: -999999px;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
	#balloon1_box a {
		display: block;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
}

#balloon2_box{
	position:absolute;
	text-align:left;
	width:220px;
	height:220px;
	z-index: 50;
}
@media screen and (min-width:1201px){
	#balloon2_box{
		left: 50%;
		margin-left: 300px;
		top: 330px;
		text-indent: -999999px;
	}
	#balloon2_box a {
		display: block;
		width:220px;
		height:220px;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#balloon2_box{
		left: 75%;
		top: calc(100vw * 0.26);
		text-indent: -999999px;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
	#balloon2_box a {
		display: block;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
}
@media screen and (max-width: 779px){
	#balloon2_box{
		left: 75%;
		top: calc(100vw * 0.26);
		text-indent: -999999px;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
	#balloon2_box a {
		display: block;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
}

#balloon3_box{
	position:absolute;
	text-align:left;
	width:300px;
	height:200px;
	z-index: 50;
}
@media screen and (min-width:1201px){
	#balloon3_box{
		left: 50%;
		margin-left: -530px;
		top: 600px;
		text-indent: -999999px;
	}
	#balloon3_box a {
		display: block;
		width:300px;
		height:200px;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#balloon3_box{
		left: 5%;
		top: calc(100vw * 0.5);
		text-indent: -999999px;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
	#balloon3_box a {
		display: block;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
}
@media screen and (max-width: 779px){
	#balloon3_box{
		left: 5%;
		top: calc(100vw * 0.5);
		text-indent: -999999px;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
	#balloon3_box a {
		display: block;
		width:calc(100vw * 0.25);
		height:calc(100vw * 0.20);
	}
}

#balloon4_box{
	position:absolute;
	text-align:left;
	width:220px;
	height:220px;
	z-index: 50;
}
@media screen and (min-width:1201px){
	#balloon4_box{
		left: 50%;
		margin-left: 310px;
		top: 610px;
		text-indent: -999999px;
	}
	#balloon4_box a {
		display: block;
		width:220px;
		height:220px;
	}
}
@media screen and (min-width: 780px) and (max-width: 1200px),print{
	#balloon4_box{
		left: 75%;
		top: calc(100vw * 0.5);
		text-indent: -999999px;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
	#balloon4_box a {
		display: block;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
}
@media screen and (max-width: 779px){
	#balloon4_box{
		left: 75%;
		top: calc(100vw * 0.5);
		text-indent: -999999px;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
	#balloon4_box a {
		display: block;
		width:calc(100vw * 0.20);
		height:calc(100vw * 0.20);
	}
}


/* swiper */
.swiper-pagination-bullet {
	width: 18px;
	height: 18px;
	display: inline-block;
	margin: 0 4px;
	border-radius: 100%;
	background: #c40009;
	border: 4px solid #fff;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #e62986;
}
.swiper-pagination_1,
.swiper-button-prev_1,
.swiper-button-next_1 {
	display: inline-block;
	vertical-align: middle;
}
.swiper-button-prev_1,
.swiper-button-next_1 {
	width: 34px;
	height: 54px;
	cursor: pointer;
}
.swiper-button-prev_1 {
	background-image: url(../common/swiper_arrow_prev.png);
}
.swiper-button-next_1 {
	background-image: url(../common/swiper_arrow_next.png);
}
@media screen and (min-width: 480px) and (max-width: 779px){
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	.swiper-button-prev_1,
	.swiper-button-next_1 {
		width: 17px;
		height: 27px;
		background-size:100%;
	}
	.swiper_change {
		padding-top: calc(100vw * 0.08);
	}
}
@media screen and (max-width: 479px){
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	.swiper-button-prev_1,
	.swiper-button-next_1 {
		width: 17px;
		height: 27px;
		background-size:100%;
	}
	.swiper_change {
		padding-top: calc(100vw * 0.05);
	}
}
/*      lead(+footer about)       */
.container_famifes {
	position: relative;
	padding: 30px 0;
	background:  linear-gradient(to bottom, #FFD60C, #F8B713);
}
.container_famifes2 {
	position: relative;
	padding: 30px 0;
	background:  linear-gradient(to bottom, #F8B713, #EE7300);
}
@media screen and (min-width: 479px) and (max-width: 779px){
	.container_famifes table.list_table td{
		display:inline-block;
		width:49%;
	}
}
@media screen and (max-width: 479px){
	.container_famifes{
		margin:0 0 0;
	}
	.container_famifes table.list_table td{
		display:inline-block;
		width:49%;
	}
}

#content_lead {
	margin-top:20px;
}
#content_lead .content_box_detail{
	margin-bottom:30px;
}
#content_lead .content_box_detail_content{
	width:80%;
	margin-left:auto;
	margin-right:auto;
	padding:4% 5% 3%;
	background:#fff9e5;
	border: 3px solid #D10000;
	box-shadow: -2px 5px 5px #F8B813;
	border-radius: 20px;
}
.container_famifes2 #content_lead .content_box_detail_content{
	box-shadow: -2px 5px 5px #EE7300;
}

@media screen and (max-width: 479px){
	#content_lead {
		margin-top:0;
	}
}
/*      ticket      */
.container_ticket {
	position: relative;
	background-image: url(../common/ticket_bg.jpg);
	padding: 60px 0;
}

.container_ticket:before,
.container_ticket:after {
	content: "";
	display: block;
	width: 100%;
	height: 51px;
	position: absolute;
	z-index: 1;
	left: 0;
}
.container_ticket:before {
	top: 0;
	background-image: url(../common/ticket_border.png);
	background-size:200vw;
	background-repeat:no-repeat;
}
.container_ticket:after {
	bottom: 0;
	background-image: url(../common/ticket_border_bottom.png);
	background-repeat:no-repeat;
	background-position:bottom;
}
.container_ticket a{
	color:#7F131B;
}
@media screen and (min-width: 479px) and (max-width: 779px){
	.container_ticket:before {
		background-size:300vw;
	}
	.container_ticket:after {
		background-size:300vw;
	}
}
#content_1{
	margin-bottom:50px;
}
#content_1 .content_box_detail{
	width:95%;
	max-width: 750px;
	margin: 0 auto 3%;
	background-color:#F4EBD8;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
}
#content_1 .content_box_detail_content{
	padding:4%;
}
#content_1 .content_box_detail_2 .content_box_detail_content{
	padding:4%;
}
#content_1 .content_box_detail_top,
#content_1 .content_box_detail_bottom {
	height: 6px;
	background-color:#F4EBD8;
	background-image: url(../common/bg_detail_bottom.png);
	background-repeat:repeat-x;
	background-position: center;
	padding:0 20px 4px;
}

#content_1 .content_box_detail{
	position: relative;
}
#content_1 a.ticket_link{
	display:inline-block;
	background:linear-gradient(to bottom, #DD0011, #990000);
	border:1px solid #FEFB00;
	color:#FEFB00;
	padding:0.5em 1em;
	text-decoration:none;
}
#content_1 .content_box_detail_1 td{
	word-break: break-all;
}
.table_d1 {
	width:100%;
	background-color: #fff;
	background-image: url(../common/bg_detail_bottom.png);
	background-repeat: repeat-x;
	background-position: center top;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
	word-break: break-all;
}
.table_d1 td {
	padding: 20px;
}
.table_d1 hr {
	border: none;
	border-top: 2px solid #d2002f;
}
@media screen and (max-width: 479px){
	#content_1 .content_box_detail{
		margin: 0 auto 3%;
		background-color:#F4EBD8;
		box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
	}
	#content_1 .content_box_detail_2 {
		margin-top:100px;
		margin-bottom:100px;
	}
	#content_1 .content_box_detail_2:before {
		left: -8%;
	}
	#content_1 .content_box_detail_2:after {
		right: -8%;
	}
}

#content_2 {
	margin-top:20px;
}
#content_2 .content_box_detail{
	margin-bottom:30px;
}
#content_2 .content_box_detail_content{
	width:98%;
	margin-left:auto;
	margin-right:auto;
	padding:4% 5% 3%;
}
/*      movie      */
.container_movie {
	position: relative;
	background-image: url(../common/movie_bg.png);
}
.container_movie .content_box_detail {
	position: relative;
}
.container_movie .content_box_detail:before {
	content: "";
	position: absolute;
	display: block;
	left: 6px;
	top: 6px;
	right: 6px;
	bottom: 6px;
	background-color: rgba(255, 255, 255, 0.76);
	border-radius: 15px;
	box-shadow: 0 0 10px #fce056;
}
.container_movie .content_box_detail .box_bg_1 {
	position: relative;
	z-index: 1;
	background:
		url(../common/movie_border_top.png) left 28px top repeat-x,
		url(../common/movie_border_top.png) left 28px bottom repeat-x,
		url(../common/movie_border_side.png) left top 28px repeat-y,
		url(../common/movie_border_side.png) right top 28px repeat-y;

}

table.movie_table td{
	width:33%;
}
@media screen and (max-width: 779px){
	table.movie_table td{
		display:inline-block;
		width:100%;
	}
}
.movie_img {
	text-align: center;
	position: relative;
}
.movie_img a {
	position: relative;
	z-index: 1;
}
.movie_img:before,
.movie_img:after {
	content: "";
	display: block;
	background-repeat:no-repeat;
	background-size:100% auto;
	background-position:bottom;
	width: 20%;
	height: 100%;
	bottom: 0;
	position: absolute;
}
.movie_img:before {
	background-image: url(../common/movie_img_01.png);
	left: -4%;
}
.movie_img:after {
	background-image: url(../common/movie_img_02.png);
	right: -4%;
}

@media screen and (max-width: 779px){
	.movie_img {
		padding-bottom: 25%;
	}

	.movie_img:before,
	.movie_img:after {
		width: 30%;
	}
}
/*      lower      */
.container_lower {
	position: relative;
	background-image: url(./img/lower_bg.jpg);
	margin-bottom:50px;
}
.container_lower h1{
	color:#750D14;
	font-size:2.4em;
	margin: 10px auto 40px;
	padding-bottom:0.2em;
	background-image: url(./img/lower_title_bg.png);
	background-position:center bottom;
	background-repeat:no-repeat;
	max-width: 1200px;
	text-align: center;
}
@media screen and (max-width: 479px){
	.container_lower h1{
		font-size: 2.0em;
	}
}

.container_lower h2{
	color:#750D14;
	font-size:2.0em;
	margin-top:30px;
	margin-bottom:20px;
	padding-bottom:0.2em;
}
.container_lower .inner_box{
	width:980px;
	max-width:96%;
	margin: 0 auto 3%;
	background-color:#FFFFFF;
	box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
}
.container_lower .content_box_detail{
	padding:1% 2% 3%;
}
.container_lower .content_box_detail_top,
.container_lower .content_box_detail_bottom {
	height: 6px;
	background-color:#F4EBD8;
	background-image: url(../common/bg_detail_bottom.png);
	background-repeat:repeat-x;
	background-position: center;
	padding:0 20px 4px;
}

/*      news      */
.container_news {
	position: relative;
	background-image: url(../news/news_bg.jpg);
}
.container_news_top {
	padding: 130px 0 60px;
}
.container_news_top:before {
	content: "";
	position: absolute;
	background-image: url(../news/news_border_top.jpg);
	width: 100%;
	height: 55px;
	top: 0;
	left: 0;
}
#illust_author{
	text-align:center;
	margin-top:60px;
}
.container_news article {
	max-width: 960px;
	margin: 0 auto;
	padding: 0;
	background-color: #fff;
	box-shadow: 0 0 6px rgba(4, 0, 0, 0.23);
}
.container_news article:before,
.container_news article:after {
	content: "";
	display: block;
	width: 100%;
	height: 15px;
	background-image: url(../news/news_box_border.jpg);
}
.container_news .inner_box {
	padding: 0 20px;
}
.container_news .news_area {
	padding: 0 0 30px;
	max-width: 860px;
	margin: 0 auto;
}
.read_more {
	text-align: right;
}
.read_more a {
	text-decoration: none;
}
/*      about      */
.container_about {
	color: #ffffff;
	background-color: #b90006;
	position: relative;
	padding-top:50px;
	background-image: url(../common/about_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.container_about table td{
	padding-right:1em;
}

/*--------------------------------------- /aladdin_a/index.php */
.aladdin_a_1 {
	position: relative;
}
.aladdin_a_1:before {
	content: "";
	display: block;
	width: 100%;
	height: 282px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../aladdin_a/aladdin_a_1_top.png);
	top: 0;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.aladdin_a_2 {
	position: relative;
}
.aladdin_a_2:before,
.aladdin_a_2:after {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	left: 0;
}
.aladdin_a_2:before {
	background-image: url(../aladdin_a/aladdin_a_2_bg_border_top.png);
	top: 0;
}
.aladdin_a_2:after {
	background-image: url(../aladdin_a/aladdin_a_2_bg_border_bottom.png);
	bottom: 0;
}
/*--------------------------------------- news/index.php */
.container_news_inner {
	padding: 60px 0;
}
/*--------------------------------------- news/index_detail.php */
.inner_box_news h2 {
	padding: 30px 0 20px;
}
.inner_box_news .date {
	display: block;
	margin-bottom: 20px;
	padding: 0 0 10px;
	font-size: 0.9em;
	border-bottom: 1px solid #ddd;
	text-align: right;
}
/*--------------------------------------- contact/index.php */
.contact p {
	margin-bottom: 2em;
}

/*--------------------------------------- /top_b/index.php */
.container_news_top_b {
	background-image: url(../top_b/top_b_news_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 80px 0 40px;
}
.container_news_top_b h2 {
	padding: 0;
	background-color: #a80001;
}
.container_news_top_b .news_area {
	background-color: #fffbc3;
	padding: 30px;
}
.container_news_top_b .list_text {
	max-width: 900px;
	margin: 0 auto;
}
.container_news_top_b .list_text li {
	border-bottom: 2px solid #a80001;
}
.container_news_top_b .read_more {
	max-width: 900px;
	margin: 0 auto;
	padding: 20px 0;
}
.container_news_top_b .news_area_img {
	max-width: 1200px;
	margin: -50px auto 0;
}

/*--------------------------------------- /aladdin_b/index.php */
.section_aladdin_b {
	text-align: center;
	background-image: url(../aladdin_b/bg_ptn.png);
}
.section_aladdin_b article {
	max-width: 1200px;
}
.section_aladdin_b .content_box {

}
.section_aladdin_b .content_box .title {
	position: relative;
	z-index: 1;
	cursor: pointer;
}
.section_aladdin_b .content_box .title .close {
	display: none;
}
.section_aladdin_b .content_box .title_close .open {
	display: none;
}
.section_aladdin_b .content_box .title_close .close {
	display: block;
}
.section_aladdin_b .content_box .detail {
	position: relative;
	z-index: 0;
	margin-top: -10%;
}
.section_aladdin_b .ilust_text {
	padding: 15px 20px 30px;
}
/*--------------------------------------- /seat/index.php */
.gallery_top .slide_img {
	display: none;
}
.gallery_top .slide_img.active {
	display: block;
}

.gallery_thumbs .slide_box {
	display: table;
	width: 100%;
	text-align: center;
}
.gallery_thumbs .slide_box .slide_img {
	display: table-cell;
}


.wdg-player {
	position: relative;
	height: auto;
	margin: 0 auto;
}
.body_seat .wdg-player{
	width: 100%;
}
.body_manners .wdg-player {
	width: 84%;
	max-width:674px;
}
.wdg-player ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.wdg-player li {
	display: none;
	/*position: absolute;*/
}

.wdg-player li.on {
	display: block;
}

.wdg-player img {
	width: 100%;
	height: auto;
}

.wdg-player .button {
	cursor: pointer;
}

.wdg-player .button:hover {
	opacity: .8;
}

.wdg-player .button-prev,
.wdg-player .button-next {
	display: block;
	position: absolute;
	width: 8%;
	height: 100%;
	background-color: rgba(0, 111, 196, 0.8);
	z-index: 2;
}

.wdg-player .button-prev:before,
.wdg-player .button-next:before {
	display: block;
	position: absolute;
	content: "";
	background-image: url(./img/player-icon-chevron-left.png);
	width: 30px;
	height: 50px;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -25px;
}

.wdg-player .button-prev {
	left: -80px;
}
.wdg-player .button-next {
	right: -80px;
}

.body_manners .wdg-player .button-prev {
	left: -8%;
}
.body_manners .wdg-player .button-next {
	right: -8%;
}

.wdg-player .button-next:before {
	background-image: url(./img/player-icon-chevron-right.png);
}

.wdg-player .controls {
	position: absolute;
	background: rgba(255, 255, 255, 0.9);
	right: 15px;
	bottom: 10px;
	padding: 10px 15px;
}
@media screen and (max-width: 779px){
	.body_manners .wdg-player{
		margin-bottom:60px;
	}
	.body_manners .wdg-player .controls {
		bottom: -60px;
	}
}
.wdg-player .controls .button {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center center;
}

.wdg-player .button-play {
	background-image: url(./img/player-icon-play.png);
	margin-right: 30px;
}

.wdg-player .button-stop {
	background-image: url(./img/player-icon-stop.png);
}

.wdg-player.large {
	width: 100%;
	height: auto;
}
.wdg-player.large:after {
	display:block;
	content:"";
	clear:both;
}
.wdg-player.large .button-next {
	right: 0;
}

.wdg-player.large .button-prev {
	left: 0;
}

.wdg-player.large .controls {
	right: 95px;
}

.wdg-player-tabs {
	margin: 10px 0 40px;
}

.wdg-player-tabs ul {
	width: 96%;
	list-style-type: none;
	margin: 0;
	margin-left:4%;
	padding: 0;
}

.wdg-player-tabs ul:after {
	content: "";
	clear: both;
	display: table;
}

.wdg-player-tabs li {
	float: left;
	display: block;
	width: 150px;
	margin-right: 2%;
	position: relative;
	cursor: pointer;
}

.wdg-player-tabs li:first-child {
	margin-left: 0;
}

.wdg-player-tabs li:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: 5px solid #fbd541;
	box-sizing: border-box;
	opacity: 0;
}

.wdg-player-tabs li:hover:before {
	opacity: .5;
}

.wdg-player-tabs li.on:before {
	opacity: 1;
}

.wdg-player-tabs img {
	vertical-align: top;
}
@media screen and (min-width: 481px) and (max-width: 640px){
	.wdg-player-tabs li {
		float: left;
		display: block;
		width: 120px;
		margin-right: 2%;
		position: relative;
		cursor: pointer;
	}
	.wdg-player-tabs li img{
		width:120px;
		height:auto;
	}
	.wdg-player .button-prev:before,
	.wdg-player .button-next:before {
		background-size:15px;
		background-repeat:no-repeat;
		background-position:center center;
	}
}
@media screen and (max-width: 480px){
	.wdg-player-tabs li {
		float: left;
		display: block;
		width: 80px;
		margin-right: 3%;
		position: relative;
		cursor: pointer;
	}
	.wdg-player-tabs li img{
		width:80px;
		height:auto;
	}
	.wdg-player .button-prev:before,
	.wdg-player .button-next:before {
		background-size:15px;
		background-repeat:no-repeat;
		background-position:center center;
	}
}
/*--------------------------------------- /info */
.body_info h3 span{
	font-size:60%;
	display:block;
}
.info_subbox{
	margin-bottom:60px;
}
table.performance_table{
	border:none;
	width:100%;
}
.info_subbox table td{
	border:none;
	vertical-align:top;
}
.info_subbox table td.performance_photo{
	text-align:center;
	width:400px;
}
.performance_box{
	padding:20px;
	margin-right:2%;
	min-height:430px;
}
.performance_info{
	padding:0 3% 20px;
}
.performance_info tr{
	border-bottom:1px dotted #999999;
}
.performance_info td{
	padding:0.4em 1em 0.3em;
}
.performance_info td:first-child{
	text-align:right;
	white-space: nowrap;
}
.performance_msg div{
	padding:20px 4%;
}
.link_detail{
	text-align:center;
	padding:30px 0 30px;
}
.link_detail a{
	color:#ffffff;
	font-size:120%;
	width:250px;
	display:inline-block;
	padding: 0.5em 2em;
	text-decoration:none;
	background:linear-gradient(to bottom, #DD0011, #990000);
}
.link_detail a:hover{
	background:linear-gradient(to bottom, #990000, #DD0011);
}
@media screen and (max-width: 779px){
	.info_subbox table td.performance_photo{
		width:100%;
	}
	table.performance_table td{
		display:block;
		width:100%;
	}
	table.performance_table td .performance_info td{
		display:table-cell;
		width:auto;
	}
	.performance_info{
		padding:0 1% 20px;
	}
	.performance_info tr{
		border-bottom:1px dotted #999999;
	}
	.performance_info td{
		padding:0.2em 0.4em 0.1em;
	}
	.performance_info td:first-child{
		text-align:left;
		word-wrap: break-word;
	}
}
/*--------------------------------------- /photo_archive */
.photo_archive_ul{
	list-style:none;
	margin:40px 0 20px;
	padding:0;
}
.photo_archive_ul li{
	width:25%;
	float:left;
}
.photo_archive_ul li img{
	width:90%;
	padding:10px 5%;
}
.photo_archive_ul li p{
	padding:0 5%;
}
.photo_archive_ul li a{
	text-decoration:none;
}
@media screen and (max-width: 779px){
	.photo_archive_ul li{
		width:50%;
		float:left;
	}
}
/*--------------------------------------- /character */
.body_character .msg:after{
	display:block;
	content:"";
	clear:both;
}
#msg1{
	width:97%;
	margin-left:1%;
	margin-bottom:15px;
	background:#FFFFE6;
	line-height:2em;
}
#msg2{
	width:48%;
	float:left;
	margin-left:1%;
	background:#DFFFFF;
	line-height:2em;
}
#msg3{
	width:48%;
	float:left;
	margin-left:1%;
	background:#FFE3F0;
	line-height:2em;
}
@media screen and (min-width: 580px) and (max-width: 779px){
	#msg2{
		width:97%;
		margin-bottom:15px;
	}
	#msg3{
		width:97%;
	}
}
@media screen and (max-width: 579px){
	#msg2{
		width:97%;
		margin-bottom:15px;
	}
	#msg3{
		width:97%;
	}
	#msg1 td{
		display:block;
		width:100%;
	}
	#msg2 td{
		display:block;
		width:100%;
	}
	#msg3 td{
		display:block;
		width:100%;
	}
	#msg1 td:first-child,
	#msg2 td:first-child,
	#msg3 td:first-child{
		width:auto !important;
		text-align:center;
	}
}
/*--------------------------------------- print */
@media print {
	body {
		min-width:1200px !important;
		-webkit-print-color-adjust: exact;
	}
	.sp_menu_btn,
	#page_top {
		display: none !important;
	}
	.scroll_nav{
		position:absolute;
	}

}</pre></body></html>