@charset "UTF-8";
/* CSS Document */
/* 
 * @media screen and (min-width:480px){
 * 	画面サイズ480px以下
 * }
 * @media screen and (min-width:768px) and (max-width:1024px){
 * 	画面サイズ768px-1024px
 * }
 * @media screen and (min-width:1024px){
 * 	画面サイズ1024px以上
 * }
 */

@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic bold");
	font-weight: bold;
}
@font-face {
	font-family: "Helvetica Neue";
	src: local("Helvetica Neue Regular");
	font-weight: 100;
}
@font-face {
	font-family: "Helvetica Neue";
	src: local("Helvetica Neue Regular");
	font-weight: 200;
}


html {
	box-sizing: border-box;
}
*,
*::before,
*::after {
	box-sizing: inherit;
}

ul,ol,li {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.h1,.h2,.h3,.h4,.h5,.h6 {
	margin: 0;
	padding-right: 8px;
	padding-left: 8px;
	padding-bottom: 8px;
}

.h1 {
	font-size: 2em;
}
.h2 {
	font-size: 1.5em;
}
.h3 {
	font-size: 1.125em;
}
.h4 {
	font-size: 1em;
}
.h5 {
	font-size: 0.75em;
}
.h6 {
	font-size: 0.625em;
}

a {
	text-decoration: none;
}

a:link,a:visited,a:hover,a:active {
	color: #fff;
	text-decoration: underline;
}

.underline {
	text-decoration: underline;
}

.warning {
	color: #ff4500;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #eee;
	background-image: url('../img/background.jpg');
	letter-spacing: 0.8pt;
	margin: 0;
	background-color: #202020;
	z-index: 1;
}
@media all and (ms-high-contrast: none) {
	body {
		font-family: Verdana, Meiryo, sans-serif;
	}
}

.container {
	margin-right: auto;
	margin-left: auto;
	clear: both;
	padding: 8px 16px;
}
@media screen and (min-width:480px){
	.container{
		width: 480px;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
	.container{
		width: 768px;
	}
}
@media screen and (min-width:1024px){
	.container {
		width: auto;
		min-width: 1024px;
	}
}


.header {
	padding-bottom: 8px;
	overflow: hidden;
	width: 100%;
}

.brand {
	display: block;
	text-align: center;
	border-right: none;
	border-bottom: 1px solid #eee;
	padding: 0;
	margin: 0;
}
.subText {
	text-align: center;
	display: block;
	width: 100%;
	padding-top: 4px;
	padding: 0;
	margin: 0;
}
@media screen and (min-width:480px){
	.brand {
		display: block;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #eee;
		padding-bottom: 0;
	}
	.subText {
		text-align: center;
		display: block;
		width: 100%;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
	.brand {
		display: block;
		text-align: center;
		border-right: none;
		border-bottom: 1px solid #eee;
	}
	.subText {
		text-align: center;
		display: block;
		width: 100%;
		margin: auto;
	}
}
@media screen and (min-width:1024px){
	.brand {
		display: block;
		text-align: left;
		float: left;
		border-right: 2px solid #eee;
		border-bottom: 0;
		margin-top: 0;
		padding-right: 8px;
	}
	.subText {
		display: block;
		float: left;
		padding-left: 4px;
		width: auto;
		text-align: left;
	}
}
.subText span {
	display: block;
	clear: both;
}

.about{
	margin: 8px auto;
	border: 1px solid #fff;
	position: relative;
	display: block;
}
.about span {
	background: #202020;
	position: absolute;
	top: -12px;
	left: 4px;
	padding-right: 8px;
	padding-left: 8px;
	font-style: italic;
}
.about p {
	padding-right: 8px;
	padding-left: 8px;
}
@media screen and (min-width:1024px){
	.about {
		float: left;
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 8px;
		height: 36px;
	}
	.about span {
		position: static;
		top: 0;
		left: 0;
		display: inline;
		height: 36px;
		line-height: 36px;
		background-color: none;
	}
	.about p {
		display: inline;
		height: 36px;
		line-height: 36px;
		-webkit-box-flex: 1;
	}
}

.globalMenu {
	display: block;
	background-color: #404040;
	width: 100%;
	overflow: hidden;
}

.globalMenu .globalMenuItem {
	display: inline;
	width: calc(100% / 10);
	width: -webkit-calc(100% / 10);
	text-align: left;
	padding: 8px 16px;
	margin-right: auto;
	margin-left: auto;
	border-right: 1px solid #333;
	background-color: #404040;
	overflow: hidden;
	float: left;
}

.globalMenu .globalMenuItem:last-child {
	border-right: none;
}

.globalMenu .globalMenuItem > a {
	display: block;
	padding: 8px 16px;
	margin: -8px -16px;;
}

.wrapper {
	display: block;
	clear: both;
	width: 100%;
}

.movie {
	padding: 8px 16px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 8px;
}
.movie div {
	text-align: center;
}

.mainContent {
	width: 100%;
	float: left;
	padding: 8px 16px;
	margin-right: 8px;
	margin-left: auto;
	margin-bottom: 8px;
	background-color: rgba(255,255,255,0.23);
}
@media screen and (max-width:480px){
	.mainContent {
		width: 100%;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
	.mainContent {
		width: 100%;
	}
}
@media screen and (min-width:1024px){
	.mainContent {
		width: calc(70% - 8px);
		width: -webkit-calc(70% - 8px);
	}
}

.sideContent {
	padding: 8px 16px;
	float: none;
	width: 100%;
	overflow: hidden;
	background-color: rgba(255,255,255,0.23);
	margin-bottom: 8px;
}
@media screen and (min-width:480px){
	.sideContent {
		float: none;
		width: 100%;
	}
}
@media screen and (min-width:768px) and (max-width:1024px){
	.sideContent {
		float: none;
		width: 100%;
	}
}
@media screen and (min-width:1024px){
	.sideContent {
		float: left;
		width: 30%;
	}
}


.contentTitle {
	color: #fff;
	font-size: 1.4em;
	text-shadow:
				2px 2px 4px #dcdc00,
				2px -2px 4px #dcdc00,
				-2px 2px 4px #dcdc00,
				-2px -2px 4px #dcdc00;
	border-bottom: 1px solid #eee;
}

.footer {
	both: clear;
	width: 100%;
}

.footer .copyright {
	text-align: center;
}

/* NEWS */

.newsList {
	width: 100%;
}

.newsDate {
	width: 6em;
	float: left;
	clear: both;
	margin: 0;
	padding-top: 8px;
	padding-bottom: 8px;
}

.newsText {
	width: calc(100% - 6em);
	width: -webkit-calc(100% - 6em);
	float: left;
	margin: 0;
	padding: 8px 16px;
}

/* MAIL */

.mailContent {
	width: 100%;
	float: left;
	padding: 8px 16px;
	margin-right: 8px;
	margin-left: auto;
	margin-bottom: 8px;
	background-color: rgba(255,255,255,0.23);
}

.mailForm {
	width: 100%;
}

.mailLabel input,
.mailLabel textarea {
	width: 100%;
}

.mailLabel textarea {
	height: 7em;
}

.mailForm .mailSubmit {
	display: block;
	padding: 4px 12px;
	margin-top: 8px;
	margin-right: auto;
	margin-left: auto;
	background-color: #696969;
	color: #fff;
	border-bottom: ridge 4px #808080;
	border-radius: 3px;
	text-shadow: 2px 2px 4px #b0e0e6,
				-2px 2px 4px #b0e0e6,
				2px -2px 4px #b0e0e6,
				-2px -2px 4px #b0e0e6;
}

.mailForm .mailSubmit:active {
	transform: translateY(4px);
	-ms-transform: translateY(4px);
	-webkit-transform: translateY(4px);
	border-right: none;
	border-bottom: none;
	overflow: hidden;
	margin-bottom: 4px;
	text-shadow: none;
}


