﻿@charset "UTF-8";
/*
	Description: Common Style
	Update: 2015/04/17
*/

/*==========================================================
Reset
==========================================================*/
@charset "utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
	overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

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

input, textarea,{
	margin: 0;
	padding: 0;
}

ol, ul{
	list-style:none;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
}

caption, th{
	text-align: left;
}

a {
	text-decoration: none;
}
a:focus {
	outline:none;
}



/*==========================================================
Common
==========================================================*/
html, body {
	-webkit-text-size-adjust: 100%;
}

body {
	min-width: 1110px;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}


/*----------------------------------------------------------
#header
----------------------------------------------------------*/
#header {
	position: relative;
	width: 100%;
	background-color: #003399;
}
#header .headerInner {
	position: relative;
	width: 1280px;
	margin: 0 auto;
	overflow: hidden;
}
#header .headerInner:after {
	clear: both;
	display: block;
	content: "";
}

#header .logoArea {
	float: left;
	display: block;
	width: 192px;
	vertical-align: top;
}
#header .logoArea .logo {
	display: block;
	width: 100%;
}
#header .logoArea .logo img {
	display: block;
	width: 100%;
	height: auto;
}

#header .headerRight {
	float: right;
}

@media only screen and ( max-width: 1299px ) {
	#header .headerInner {
		width: 100%;
		min-width: 1110px;
	}
}

/*----------------------------------------------------------
evtHeadNav
----------------------------------------------------------*/
.evtHeadNav {
	float: right;
	padding: 15px 0;
}
.evtHeadNav ul {
	overflow: hidden;
	font-size: 12px;
	line-height: 1.2;
}
.evtHeadNav ul:after {
	clear: both;
	display: block;
	content: "";
}
.evtHeadNav ul li {
	float: left;
	width: 180px;
	margin-left: 2px;
}
.evtHeadNav ul li:first-child {
	margin-left: 0;
}
.evtHeadNav a {
	position: relative;
	display: block;
	padding: 8px 28px 8px 8px;
	background-color: #2157AC;
	color: #fff;
}
.evtHeadNav a:hover {
	background-color: #3E74C9;
}
.evtHeadNav a:after {
	position: absolute;
	right: 8px;
	top: 50%;
	display: block;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background: url("../img/ico_link_top.png") no-repeat;
	content: "";
}
.evtHeadNav a .thumb_wrap {
	display: table;
}
.evtHeadNav a .thumb_wrap span {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}
.evtHeadNav a .thumb_wrap .thumb {
}
.evtHeadNav a .thumb_wrap .title {
	padding: 0 0 0 6px;
	font-weight: bold;
}


/*----------------------------------------------------------
#footer
----------------------------------------------------------*/
#footer {
	width: 100%;
	min-width: 1110px;
	padding: 20px 0;
	background-color: #000;
}

/* pagetop */
#pagetop {
	position: fixed;
	right: 20px;
	bottom: 40px;
	z-index: 3;
}
#pagetop a {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 8px;
	text-indent: -9999px;
}
#pagetop a:after {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 18px;
	height: 12px;
	margin: -6px 0 0 -9px;
	content: "../img/ico_pagetop.png";
}

/* logo */
#footer .logo {
	text-align: center;
}

/* footerNav */
#footerNav {
	margin-top: 24px;
}
#footerNav ul {
	font-size: 16px;
	line-height: 1;
	text-align: center;
}
#footerNav ul li {
	display: inline-block;
}
#footerNav ul li:before {
	content: " | ";
	color: #fff;
}
#footerNav ul li:first-child:before {
	content: "";
}
#footerNav ul li a {
	color: #fff;
}


/*----------------------------------------------------------
#copyright
----------------------------------------------------------*/
#copyright {
	width: 100%;
	min-width: 1110px;
	padding: 20px 0 40px 0;
	background-color: #000;
}
#copyright ul {
	font-size: 12px;
	line-height: 2;
	text-align: center;
}
#copyright ul li {
	color: #fff;
}
#copyright p {
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}


/*----------------------------------------------------------
content
----------------------------------------------------------*/
#content {
}

.contInner {
	width: 1280px;
	margin: 0 auto;
}
.contInner:after {
	clear: both;
	display: block;
	content: "";
}
.contInnerSide {
	float: left;
	width: 308px;
	padding-top: 40px;
}
.contInnerMain {
	margin-left: 350px;
	padding-top: 40px;
}

.contBottom {
	margin-top: 60px;
}

@media only screen and ( max-width: 1299px ) {
	.contInner {
		width: auto;
		min-width: 940px;
		padding: 0 20px;
	}
}


/*==========================================================
Element
==========================================================*/

/*----------------------------------------------------------
img
----------------------------------------------------------*/
.imgFillWidth {
	display: block;
	width: 100%;
	height: auto;
}

/*----------------------------------------------------------
button
----------------------------------------------------------*/
.btn {
	position: relative;
	display: block;
	padding: 16px 46px 16px 14px;
	overflow: hidden;
	border-width: 2px;
	border-style: solid;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}
.btn:after {
	position: absolute;
	right: 16px;
	top: 50%;
	display: block;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
}
.btn small {
	font-size: 24px;
}

@media only screen and ( max-width: 1299px ) {
	.btn {
		padding: 16px 32px 16px 14px;
		border-width: 3px;
		border-radius: 6px;
		font-size: 14px;
		line-height: 1;
	}
	.btn:after {
		right: 8px;
		width: 16px;
		height: 16px;
		margin-top: -8px;
	}
	.btn small {
		font-size: 12px;
	}
}

/*----------------------------------------------------------
btnTop
----------------------------------------------------------*/
.btnTop {
	float: left;
	display: block;
	padding: 8px 38px 8px 16px;
	margin-left: 4px;
	overflow: hidden;
	border-width: 0;
	border-radius: 6px;
	background-color: #2157AC;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
}
.btnTop:hover {
	background-color: #3E74C9;
}
.btnTop:after {
	width: 16px;
	height: 16px;
	right: 14px;
	margin-top: -8px;
	background-image: url("../img/ico_link_top.png");
}

/*----------------------------------------------------------
btnModal
----------------------------------------------------------*/
.btnModal {
	display: block;
	padding: 16px;
	overflow: hidden;
	border-radius: 6px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

/*----------------------------------------------------------
btnBack
----------------------------------------------------------*/
.btnBack {
	display: block;
	padding: 26px;
	overflow: hidden;
	border-radius: 12px;
	font-size: 24px;
	line-height: 1;
}
.btnBack:before {
	display: inline-block;
	width: 12px;
	height: 18px;
	margin-right: 32px;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
	vertical-align: middle;
}
.btnBack span {
	vertical-align: middle;
}

@media only screen and ( max-width: 1299px ) {
	.btnBack {
		padding: 13px;
		border-radius: 6px;
		font-size: 12px;
		line-height: 1;
	}
	.btnBack:before {
		width: 6px;
		height: 9px;
		margin-right: 16px;
	}
}


/*----------------------------------------------------------
linksList
----------------------------------------------------------*/
.linksList {
	font-size: 16px;
	line-height: 1.4;
}
.linksList li {
	border-top-width: 1px;
	border-top-style: solid;
}
.linksList li a {
	position: relative;
	display: block;
	padding: 24px 48px 24px 16px;
}
.linksList li a:after {
	position: absolute;
	right: 16px;
	top: 50%;
	display: block;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
}

/*----------------------------------------------------------
thumbLinksList
----------------------------------------------------------*/

.thumbLinksList {
	font-size: 16px;
	line-height: 1.4;
}
.thumbLinksList li {
	border-top-width: 1px;
	border-top-style: solid;
}
.thumbLinksList li a {
	position: relative;
	display: block;
	padding: 0 48px 0 0;
}
.thumbLinksList li a:after {
	position: absolute;
	right: 16px;
	top: 50%;
	display: block;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	background-repeat: no-repeat;
	background-position: center center;
	content: "";
}
.thumbLinksList li a .thumb_wrap {
	display: table;
}
.thumbLinksList li a .thumb {
	display: table-cell;
	width: 80px;
}
.thumbLinksList li a .title {
	display: table-cell;
	min-height: 80px;
	padding-left: 16px;
	vertical-align: middle;
}

/*----------------------------------------------------------
evtHead
----------------------------------------------------------*/
.evtHead {
	/*
	margin-bottom: 26px;
	*/
}

.evtHeadMainWrap {
	max-width: 1400px;
	overflow: hidden;
	margin: 0 auto;
}
.evtHeadMainWrap:after {
	clear: both;
	display: block;
	content: "";
}
.evtHeadMain {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}
.evtHeadMainTitle {
	padding: 1% 0;
	text-align: center;
}
.evtHeadMainWrap .evtHeadMain {
	float: left;
}
.evtHeadMainColumn2 .evtHeadMain {
	width: 50%;
}
.evtHeadMainColumn3 {
	max-width: 1280px;
}
.evtHeadMainColumn3 .evtHeadMain {
	width: 33.333%;
}
.evtHeadMainColumn4 {
	max-width: 1280px;
}
.evtHeadMainColumn4 .evtHeadMain {
	width: 25%;
}
.evtHeadMain img {
	display: block;
	width: 100%;
	height: auto;
}
.evtHeadMain .evtHeadMainSchedule {
	position: absolute;
	left: 10%;
	bottom: 25px;
	width: 80%;
}
.evtHeadMain .evtHeadMainLink {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-indent: -9999px;
}

/*----------------------------------------------------------
evtHeadAtrNav
----------------------------------------------------------*/
.evtHeadAtrNav {
}
.evtHeadAtrNavInner {
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}
.evtHeadAtrNavContainer {
	position: relative;
	width: auto;
	height: 76px;
	margin: 0 60px;
	overflow: hidden;
}
.evtHeadAtrNavScroller {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}
.evtHeadAtrNavChild {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
	border-left-width: 1px;
	border-left-style: solid;
}
.evtHeadAtrNavChild ul {
	width: 100%;
	overflow: hidden;
}
.evtHeadAtrNavChild ul:after {
	clear: both;
	display: block;
	content: "";
}
.evtHeadAtrNavChild li {
	float: left;
	display: block;
	width: 25%;
}
.evtHeadAtrNavChild li a {
	display: block;
	width: auto;
	height: auto;
	border-right-width: 1px;
	border-right-style: solid;
}
.evtHeadAtrNavChild a img {
	display: block;
	width: 100%;
	height: auto;
}
.evtHeadAtrNavChild a:hover img {
	opacity: 0.7;
}

.evtHeadAtrNav .navPrev,
.evtHeadAtrNav .navNext {
	position: absolute;
	top: 0;
	display: block;
	width: 60px;
	height: 100%;
	text-indent: -9999px;
}
.evtHeadAtrNav .navPrev {
	left: 0;
	border-right-width: 1px;
	border-right-style: solid;
}
.evtHeadAtrNav .navNext {
	right: 0;
	border-left-width: 1px;
	border-left-style: solid;
}
.evtHeadAtrNav .navPrev:after,
.evtHeadAtrNav .navNext:after {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 10px;
	height: 16px;
	margin: -8px 0 0 -5px;
	content: "";
}


/*----------------------------------------------------------
evtSchedule
----------------------------------------------------------*/

.evtSchedule {
	padding: 14px;
	overflow: hidden;
	border-width: 4px;
	border-style: solid;
	border-radius: 6px;
}
.evtSchedule .evtIcon {
	float: left;
	display: inline-block;
	padding: 8px 10px;
	margin-right: 10px;
	font-size: 16px;
	line-height: 1;
}
.evtSchedule p {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}
.evtSchedule small {
	display: block;
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	.evtSchedule {
		padding: 10px;
	}
	.evtSchedule .evtIcon {
		padding: 5px 6px;
		font-size: 12px;
		line-height: 1;
	}
	.evtSchedule p {
		font-size: 15px;
		line-height: 1.4;
	}
	.evtSchedule small {
		margin-top: 8px;
		font-size: 11px;
		line-height: 1.4;
	}
}

/*----------------------------------------------------------
evtHeadContent
----------------------------------------------------------*/
.evtHeadContent {
	padding: 20px 0;
}
.evtHeadContentInner {
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
}
.evtHeadContentInner:after {
	clear: both;
	display: block;
	content: "";
}
.evtHeadContent .evtSchedule {
	float: left;
	width: 480px;
}
.evtHeadContent .evtCalendar {
	float: left;
	width: 320px;
	padding-top: 16px;
	margin-left: 30px;
}
.evtHeadContent .evtNotes {
	float: left;
	width: 360px;
	padding-top: 18px;
	margin-left: 24px;
}
.evtHeadContent .evtNotes p {
}

@media only screen and ( max-width: 1299px ) {
	.evtHeadContentInner {
		padding: 0 20px;
	}
	.evtHeadContent .evtSchedule {
		width: 378px;
	}
	.evtHeadContent .evtCalendar {
		width: 220px;
		padding-top: 12px;
		margin-left: 16px;
	}
	.evtHeadContent .evtNotes {
		width: 286px;
		padding-top: 14px;
		margin-left: 12px;
	}
	.evtHeadContent .evtNotes small {
		font-size: 13px;
	}
}

/*----------------------------------------------------------
contElement
----------------------------------------------------------*/
.contElement {
	margin-top: 60px;
}
.contElement:first-child {
	margin-top: 0;
}
.contInnerMain .contElement { /* 2カラム表示時 */
	margin-top: 36px;
}
.contInnerMain .contElement:first-child { /* 2カラム表示時 */
	margin-top: 0;
}
.contInnerSide .contElement { /* サイド表示時 */
	margin-top: 20px;
}
.contInnerSide .contElement:first-child { /* サイド表示時 */
	margin-top: 0;
}
.contElement .contElementTitle {
	padding: 16px 20px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}
.contInnerSide .contElement .contElementTitle { /* サイド表示時 */
	padding: 14px;
	font-size: 17px;
	font-weight: normal;
	text-align: center;
}

.contElementInner {
	margin-top: 30px;
}
.contElementInner:first-child {
	margin-top: 0;
}

/*----------------------------------------------------------
contChild
----------------------------------------------------------*/
.contChild {
	overflow: hidden;
	border-radius: 10px;
	margin-top: 20px;
}
.contChild:first-child {
	margin-top: 0;
}
.contChildWrap .contChild { /* カラム表示時 */
	margin-top: 0;
}
.contChild .thumb img {
	display: block;
}
.contChild .inner {
	padding: 28px;
}
.contChild .inner .contChildTitle {
	margin-bottom: 18px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
}
.contChild .inner .contChildTitle small {
	font-size: 18px;
}
.contChild .inner h5 {
	margin-top: 32px;
	margin-bottom: 16px;
	font-size: 18px;
	line-height: 1.4;
}
.contChild .inner h5:first-child {
	margin-top: 0;
}
.contChild .inner p {
	font-size: 18px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	.contInnerMain .contChild .inner { /* 2カラム表示時 */
		padding: 20px;
	}
	.contChild .inner .contChildTitle {
		font-size: 22px;
	}
	.contInnerMain .contChild .inner .contChildTitle { /* 2カラム表示時 */
		font-size: 19px;
	}
	.contChild .inner .contChildTitle small {
		font-size: 16px;
	}
	.contChild .inner h5 {
		font-size: 16px;
	}
	.contChild .inner p {
		font-size: 16px;
	}
	.contInnerMain .contChild .inner p { /* 2カラム表示時 */
		font-size: 14px;
	}
}

.contChild .inner .contDetail {
	max-width: 354px;
	margin-top: 36px;
}
.contInnerMain .contChildWrap .contChild .inner .contDetail { /* 2カラム&カラム表示時 */
	max-width: 100%;
}
.contChild .inner .contDetail:first-child {
	margin-top: 0;
}
.contChild .inner .contDetailCenter {
	margin-left: auto;
	margin-right: auto;
}
.contChild .inner .contDetailWide {
	max-width: 728px;
}

.contChild .inner .contDetailCol {
	width: 100%;
	margin: 36px auto 0 auto;
}
.contInnerMain .contChild .inner .contDetailCol { /* 2カラム表示時 */
	width: 100%;
}
.contChild .inner .contDetailCol ul {
	width: 100%;
	overflow: hidden;
}
.contChild .inner .contDetailCol ul:after {
	clear: both;
	display: block;
	content: "";
}
.contChild .inner .contDetailCol li {
	float: left;
	width: 48%;
	margin-left: 4%;
}
.contChild .inner .contDetailCol li:first-child {
	margin-left: 0;
}
.contChild .inner .contDetailCol li .btn {
}

/* contChildHorizonal */
.contChild.contChildHorizonal {
	margin-top: 30px;
}
.contChild.contChildHorizonal:first-child {
	margin-top: 0;
}
.contChild.contChildHorizonal:after {
	clear: both;
	display: block;
	content: "";
}
.contChild.contChildHorizonal .thumb {
	float: left;
	width: 57.5%;
}
.contInnerMain .contChild.contChildHorizonal .thumb { /* 2カラム表示時 */
	width: 53.765%;
}
.contChild.contChildHorizonal .thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.contChild.contChildHorizonal .inner {
	margin-left: 57.5%;
}
.contInnerMain .contChild.contChildHorizonal .inner { /* 2カラム表示時 */
	margin-left: 54%;
}

/* contChildHorizonalApp */
.contChild.contChildHorizonalApp .thumb {
	width: 46.1%;
	padding: 30px 0 30px 2.344%;
}
.contChild.contChildHorizonalApp .inner {
	margin-left: 48.5%;
}

/* contChildVertical */
.contChild.contChildVertical .thumb {
	position: relative;
}
.contChild.contChildVertical .thumb img {
	width: 100%;
	height: auto;
}
.contChild.contChildVertical .thumb small {
	position: absolute;
	right: 14px;
	bottom: -22px;
	font-size: 14px;
	line-height: 1.2;
}


/* contChildWrap */
.contChildWrap {
	margin-top: 30px;
}
.contChildWrap:first-child {
	margin-top: 0;
}
.contChildWrap:after {
	clear: both;
	display: block;
	content: "";
}

/* contChildCols2 - contChid */
.contChildCols2 .contChild {
	float: left;
	width: 48.8%;
	margin-left: 2.4%;
}
.contChildCols2 .contChild:first-child {
	margin-left: 0;
}

/* contChildCols3 - contChid */
.contChildCols3 .contChild {
	float: left;
	width: 31.85%;
	margin-left: 2.225%;
}
.contChildCols3 .contChild:first-child {
	margin-left: 0;
}

/*----------------------------------------------------------
contTicket / contTicketChild
----------------------------------------------------------*/
.contTicket {
	padding: 40px 30px;
	margin-top: 0;
}

.contTicketChild {
	padding: 5px;
}
.contTicketChild .ticketHead {
	padding: 16px 18px 18px 18px;
}
.contTicketChild .ticketHead small {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	line-height: 1.4;
}
.contTicketChild .ticketHead .contChildTitle {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
}
.contTicket .contTicketChild .ticketHead .contChildTitle { /* ボックス内表示時 */
	font-size: 22px;
}
.contChildCols3 .contTicketChild .ticketHead .contChildTitle {
	font-size: 21px;
}
.contTicketChild .ticketInner {
	padding: 26px 26px 40px 26px;
	overflow: hidden;
	border-radius: 0 0 8px 8px;
}
.contTicketChild .ticketInner .thumb {
	overflow: hidden;
	border-radius: 12px;
}
.contTicketChild .ticketInner .thumb img {
	display: block;
	width: 100%;
	height: auto;
}
.contTicketChild .ticketInner .inner {
	padding: 26px 0 0 0;
}
.contTicketChild .ticketInner .inner p {
	font-size: 18px;
	line-height: 1.4;
}
.contTicketChild .ticketInner .inner .ticketPrice {
	margin-top: 26px;
}
.contTicketChild .ticketInner .inner .ticketPrice em {
	font-size: 28px;
	font-weight: bold;
	font-style: normal;
}
.contTicketChild .ticketInner .inner .ticketDetail {
	max-width: 354px;
	margin-top: 26px;
}

@media only screen and ( max-width: 1299px ) {
	.contTicketChild .ticketHead small {
		font-size: 16px;
	}
	.contChildCols3 .contTicketChild .ticketHead small { /* 3カラム表示時 */
		font-size: 14px;
	}
	.contTicket .contTicketChild .ticketHead small { /* ボックス内表示時 */
		font-size: 14px;
	}
	.contTicketChild .ticketHead .contChildTitle {
		font-size: 21px;
	}
	.contChildCols3 .contTicketChild .ticketHead .contChildTitle { /* 3カラム表示時 */
		font-size: 18px;
	}
	.contTicket .contTicketChild .ticketHead .contChildTitle { /* ボックス内表示時 */
		font-size: 18px;
	}
	.contTicket .contTicketChild .ticketInner { /* ボックス内表示時 */
		padding: 14px 14px 24px 14px;
	}
	.contTicket .contTicketChild .ticketInner .thumb { /* ボックス内表示時 */
		border-radius: 6px;
	}
	.contTicketChild .ticketInner .inner p {
		font-size: 14px;
	}
	.contTicket .contTicketChild .ticketInner .inner .ticketPrice { /* ボックス内表示時 */
		margin-top: 14px;
	}
	.contTicketChild .ticketInner .inner .ticketPrice em {
		font-size: 18px;
	}
}

/* contChildHorizonal */
.contChildHorizonal .contTicketChild .ticketInner:after {
	clear: both;
	display: block;
	content: "";
}
.contChildHorizonal .contTicketChild .ticketInner .thumb {
	float: left;
	width: 46%;
}
.contChildHorizonal .contTicketChild .ticketInner .inner {
	padding-top: 12px;
	margin-left: 48.6%;
}

/* contChildVertical */
.contTicketChild.contChildVertical {
}


/*----------------------------------------------------------
contMovie
----------------------------------------------------------*/
.contMovie {
	margin: 0 96px;
}
.contInnerMain .contMovie { /* 2カラム表示時 */
	margin: 0;
}
.modalContent .contMovie { /* モーダル表示時 */
	margin: 0;
}
.contMovie .movie {
	position: relative;
	width: 100%;
	height: auto;
}
.contMovie .movie img {
	display: block;
	width: 100%;
	height: auto;
}
.contMovie .movie iframe,
.contMovie .movie object {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.contMovie .inner {
	padding-top: 30px;
}
.contMovie .inner .contChildTitle {
	margin-bottom: 18px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
}
.contMovie .inner p {
	font-size: 18px;
	line-height: 1.4;
}

/*----------------------------------------------------------
contMap / contMapChild
----------------------------------------------------------*/

/* contMap */
.contMap {
	margin: 0 117px;
}
.contInnerMain .contMap { /* 2カラム表示時 */
	margin: 0;
}
.contMap img {
	display: block;
	width: 100%;
	height: auto;
}

/* contMapChild */
.contMapChild .inner {
	overflow: hidden;
}
.contMapChild .inner:after {
	clear: both;
	display: block;
	content: "";
}
.contMapChild .mapThumb {
	float: left;
	width: 112px;
}
.contMapChild .mapThumbContent {
	margin-left: 128px;
}
.contMapChild .mapPic {
	float: left;
	width: 154px;
}
.contMapChild .mapPicContent {
	margin-left: 186px;
}
.contMapChild .mapThumbContent .contChildTitle,
.contMapChild .mapPicContent .contChildTitle {
	font-size: 22px;
	line-height: 1.4;
}
.contMapChild .mapThumbContent .contChildTitle small,
.contMapChild .mapPicContent .contChildTitle small {
	font-size: 18px;
}
.contMapChild .mapThumbContent p,
.contMapChild .mapPicContent p {
	font-size: 18px;
	line-height: 1.4;
}
.contMapChild .mapDetail {
	clear: both;
	padding-top: 8px;
}
.contMapChild .mapDetail p {
	font-size: 18px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	.contMapChild .mapThumbContent .contChildTitle,
	.contMapChild .mapPicContent .contChildTitle {
		font-size: 18px;
	}
	.contMapChild .mapThumbContent .contChildTitle small,
	.contMapChild .mapPicContent .contChildTitle small {
		font-size: 14px;
	}
	.contMapChild .mapThumbContent p,
	.contMapChild .mapPicContent p {
		font-size: 14px;
	}
	.contMapChild .mapDetail p {
		font-size: 14px;
	}
}

/*----------------------------------------------------------
contCalendar
----------------------------------------------------------*/
.contCalendar {
	margin-top: 40px;
}
.contCalendar:first-child {
	margin-top: 0;
}
.contCalendar img {
	display: block;
	width: 100%;
	height: auto;
}

/*----------------------------------------------------------
contPresentBlock
----------------------------------------------------------*/
.contPresentBlock {
	padding: 14px;
	margin: 20px 0;
	overflow: hidden;
	border-width: 3px;
	border-style: solid;
	border-radius: 10px;
}
.contPresentBlock p {
	font-size: 18px;
	line-height: 1.4;
}
.contPresentBlock p small {
	font-size: 14px;
}
.contPresentBlock .presentContent {
	display: table;
	width: 100%;
}
.contPresentBlock .presentContent .presentThumb {
	display: table-cell;
	width: 150px;
	vertical-align: middle;
}
.contPresentBlock .presentContent .presentThumb img {
	display: inline-block;
}
.contPresentBlock .presentContent .presentThumb .corner {
	display: block;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
}
.contPresentBlock .presentContent .presentInner {
	display: table-cell;
	padding-left: 14px;
	vertical-align: middle;
	text-align: left;
}
.contPresentBlock .presentContent .presentInner strong {
	display: block;
	margin: 16px 0;
	font-size: 24px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	.contPresentBlock {
		padding: 13px;
		margin: 12px 0;
		border-width: 3px;
		border-radius: 6px;
	}
	.contPresentBlock p {
		font-size: 14px;
	}
	.contPresentBlock p small {
		font-size: 12px;
	}
	.contPresentBlock .presentContent {
		padding: 16px 0;
	}
	.contPresentBlock .presentContent .presentThumb {
		width: 105px;
	}
	.contPresentBlock .presentContent .presentThumb .corner {
		border-radius: 6px;
	}
	.contPresentBlock .presentContent .presentTitle {
		padding-left: 14px;
	}
	.contPresentBlock .presentContent .presentTitle strong {
		font-size: 19px;
	}
}


/*----------------------------------------------------------
contTextBlock
----------------------------------------------------------*/
.contTextBlock {
	margin-bottom: 24px;
}
.contTextBlock p {
	font-size: 18px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	/* ブロック内表示時 */
	.contTicket .contTextBlock p {
		font-size: 14px;
	}
}

/*----------------------------------------------------------
contLinkBlock
----------------------------------------------------------*/
.contLinkBlock {
	width: 464px;
	margin: 30px auto;
}
.contLinkBlock .bnr,
.contLinkBlock .btn {
	margin-top: 20px;
}
.contLinkBlock .bnr:first-child,
.contLinkBlock .btn:first-child {
	margin-top: 0;
}

/*----------------------------------------------------------
contMsgBlock
----------------------------------------------------------*/
.contMsgBlock {
	padding: 30px;
	margin: 24px 0;
	border-width: 2px;
	border-style: solid;
	text-align: center;
}
.contMsgBlock p,
.contMsgBlock strong {
	font-size: 22px;
	line-height: 1.4;
}
.contMsgBlock strong {
	font-weight: bold;
}

@media only screen and ( max-width: 1299px ) {
	 /* ボックス内表示時 */
	.contTicket .contMsgBlock p,
	.contTicket .contMsgBlock strong {
		font-size: 18px;
	}
}

/*----------------------------------------------------------
notesTitle
----------------------------------------------------------*/
.contChild .inner .notesTitle {
	font-size: 18px;
	font-weight: normal;
	line-height: 1;
}
.contChild .inner .notesTitle:before {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	background-repeat: no-repeat;
	content: "";
	vertical-align: middle;
}
.contChild .inner .notesTitle span {
	vertical-align: middle;
}

/*----------------------------------------------------------
thumbSlider
----------------------------------------------------------*/
.thumbSlider {
	position: relative;
	padding: 0 40.157% 0 0;
}
.contInnerMain .thumbSlider { /* 2カラム表示時 */
	padding: 0;
}
.thumbSliderImages {
	position: relative;
	padding: 30px 0 0 30px;
}
.contInnerMain .thumbSliderImages { /* 2カラム表示時 */
	padding: 30px 29px 0 29px;
}
.thumbSliderImages .thumbSliderContainer {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.thumbSliderImages .thumbSliderContainer .thumbSliderScroller {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}
.thumbSliderImages .thumbSliderContainer .thumbSliderScroller img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: auto;
	visibility: hidden;
}
.thumbSliderImages .thumbSliderPrev,
.thumbSliderImages .thumbSliderNext {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 110px;
	margin-top: -55px;
	overflow: hidden;
	text-indent: -9999px;
}
.thumbSliderImages .thumbSliderPrev {
	left: 30px;
	border-radius: 0 12px 12px 0;
}
.thumbSliderImages .thumbSliderNext {
	right: 0;
	border-radius: 12px 0 0 12px;
}
.contInnerMain .thumbSliderImages .thumbSliderPrev { /* 2カラム表示時 */
	left: 0;
}
.contInnerMain .thumbSliderImages .thumbSliderNext { /* 2カラム表示時 */
	right: 0;
}
.thumbSliderImages .thumbSliderPrev:after,
.thumbSliderImages .thumbSliderNext:after {
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 16px;
	height: 24px;
	margin-left: -8px;
	margin-top: -12px;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
}
.thumbSliderNav {
	/*
	width: 100%;
	*/
	margin-top: 18px;
	margin-bottom: 24px;
	text-align: center;
}
.contInnerMain .thumbSliderNav { /* 2カラム表示時 */
	margin-bottom: 0;
}
.thumbSliderNav span {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	overflow: hidden;
	border-radius: 6px;
	text-indent: -9999px;
}
.thumbSliderContents {
	position: absolute;
	right: 0;
	top: 0;
	width: 40%;
}
.contInnerMain .thumbSliderContents { /* 2カラム表示時 */
	position: relative;
	width: 100%;
}

/*----------------------------------------------------------
outlineTable
----------------------------------------------------------*/
.outlineTable {
	width: 100%;
}
.outlineTable th,
.outlineTable td {
	padding: 24px 20px;
	border-top-width: 1px;
	border-top-style: solid;
	vertical-align: middle;
	text-align: center;
}
.outlineTable th {
	border-left-width: 1px;
	border-left-style: solid;
	font-size: 18px;
	font-weight: normal;
	line-height: 1.4;
	white-space: nowrap;
}
.outlineTable th:first-child {
	border-left-style: none;
}
.outlineTable td {
	font-size: 18px;
	line-height: 1.4;
}

@media only screen and ( max-width: 1299px ) {
	.outlineTable th,
	.outlineTable td {
		padding: 14px 10px;
	}
	.outlineTable th {
		font-size: 16px;
	}
	.outlineTable td {
		font-size: 16px;
	}
}

/*----------------------------------------------------------
notesList
----------------------------------------------------------*/
ul.notesList {
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.4;
}
ul.notesList:first-child {
	margin-top: 0;
}
ul.notesList li {
	margin-top: 10px;
	padding: 0 0 0 1.2em;
	text-indent: -1.2em;
}
ul.notesList li:first-child {
	margin-top: 0;
}
ul.notesList li:before {
	content: "・ ";
}
ul.notesListCircle li:before {
	content: "● ";
}
ul.notesListAst li:before {
	content: "※ ";
}

@media only screen and ( max-width: 1299px ) {
	ul.notesList {
		font-size: 16px;
	}
}

/*----------------------------------------------------------
newsList
----------------------------------------------------------*/
dl.newsList:after {
	clear: both;
	display: block;
	content: "";
}
dl.newsList dt {
	clear: left;
	float: left;
	padding: 20px 20px 20px 24px;
	font-size: 15px;
	font-weight: bold;
}
dl.newsList dd {
	padding: 20px 20px 20px 180px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	font-size: 18px;
	line-height: 1.2;
}
dl.newsList dd:last-child {
	border-bottom-style: none;
}
dl.newsList dd a {
	text-decoration: underline;
}

@media only screen and ( max-width: 1299px ) {
	dl.newsList dt {
		font-size: 12px;
	}
	dl.newsList dd {
		font-size: 14px;
	}
}

/*----------------------------------------------------------
links
----------------------------------------------------------*/
.titLinks {
	padding: 16px 20px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
}

/*----------------------------------------------------------
contBottom
----------------------------------------------------------*/
.contBottom {
}

.contBottom .contElement .contElementTitle {
	text-align: center;
}

/* contBottomBanners */
.contBottomBanners {
	padding: 45px 0;
}
.contBottomBanners ul {
	max-width: 1140px;
	margin: 0 auto;
	overflow: hidden;
}
.contBottomBanners ul:after {
	clear: both;
	display: block;
	content: "";
}
.contBottomBanners ul li {
	float: left;
	width: 47.5%;
	margin-left: 5%;
}
.contBottomBanners ul li:first-child {
	margin-left: 0;
}
.contBottomBanners ul li a,
.contBottomBanners ul li a img {
	display: block;
	width: 100%;
	height: auto;
}

@media only screen and ( max-width: 1299px ) {
	.contBottomBanners {
		padding: 45px 20px;
	}
}

/* contBottomLinks */
.contBottomLinks {
	padding: 30px 0;
}
.contBottomLinks ul {
	max-width: 1280px;
	margin: 0 auto;
}

.horizonalLinkList {
	display: table;
	border-collapse: separate;
	border-spacing: 10px 0;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.horizonalLinkList a {
	position: relative;
	display: table-cell;
	min-width: 100px;
	padding: 20px 40px 20px 20px;
	overflow: hidden;
	border-radius: 6px;
	text-align: left;
	vertical-align: middle;
	font-size: 18px;
	line-height: 1.4;
}
.horizonalLinkList a:after {
	position: absolute;
	right: 10px;
	top: 50%;
	width: 10px;
	height: 16px;
	margin-top: -8px;
	background-repeat: no-repeat;
	content: "";
}

@media only screen and ( max-width: 1299px ) {
	.contBottomLinks {
		padding: 30px 10px;
	}
	
	.horizonalLinkList a {
		min-width: 0;
		font-size: 16px;
	}
}


/*----------------------------------------------------------
sns
----------------------------------------------------------*/
#snsBlock {
	position: fixed;
	left: 0;
	bottom: 4px;
}
#snsBlock ul {
	display: block;
}
#snsBlock ul li {
	display: block;
	width: 50px;
	height: 50px;
	margin-top: 4px;
}
#snsBlock ul li:first-child {
	margin-top: 0;
}


/*----------------------------------------------------------
modal
----------------------------------------------------------*/

.remodal {
	max-width: 90% !important;
	position: relative !important;
	padding: 8px !important;
	overflow: none !important;
	border-radius: 12px !important;
	margin: 20px 0 !important;
}
.remodal .modalContent {
	padding: 32px 24px 48px 24px;
	border-width: 6px;
	border-style: solid;
	border-radius: 6px;
	text-align: left;
}
.remodal .modalContentInner {
	padding: 48px 0 72px 0;
	margin-top: 36px;
	border-top: 2px solid #d4d4d4;
	border-bottom: 2px solid #d4d4d4;
}
.remodal .modalContent .modalTitle {
	font-size: 24px;
	line-height: 1.4;
	text-align: center;
}
.remodal .modalContMain p {
	font-size: 18px;
	line-height: 1.4;
}

.remodal .modalContElement {
	margin-top: 48px;
}
.remodal .modalContElement .modalSubTitle {
	padding: 20px;
	margin-bottom: 36px;
	font-size: 22px;
	line-height: 1.4;
	text-align: center;
}
.remodal .modalContElement p {
	font-size: 18px;
	line-height: 1.4;
}

.remodal .modalAttentionList {
	margin-top: 36px;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
}
.remodal .modalAttentionList li {
	margin-top: 28px;
	padding: 0 0 0 1.2em;
	text-indent: -1.2em;
}
.remodal .modalAttentionList li:first-child {
	margin-top: 0;
}
.remodal .modalAttentionList li:before {
	content: "● ";
	color: inherit;
}

.remodal .modalNotesList {
	margin-top: 36px;
	font-size: 18px;
	line-height: 1.4;
}
.remodal .modalNotesList li {
	margin-top: 28px;
	padding: 0 0 0 1.2em;
	text-indent: -1.2em;
}
.remodal .modalNotesList li:first-child {
	margin-top: 0;
}
.remodal .modalNotesList li:before {
	content: "※ ";
	color: inherit;
}

.remodal .modalCloseTop {
	position: absolute;
	right: -10px;
	top: -10px;
}
.remodal .modalCloseTop a {
	display: block;
	width: 60px;
	height: 60px;
	overflow: hidden;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 26px 26px;
	border-radius: 12px;
}

.remodal .modalCloseBottom {
	width: 160px;
	margin: 32px auto 0 auto;
}
.remodal .modalCloseBottom a {
	text-align: center;
}
.remodal .modalCloseBottom a:before {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 16px;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
	vertical-align: middle;
}
.remodal .modalCloseBottom a span {
	vertical-align: middle;
}

