@charset "utf-8";

/*　Mobile View 〜 480px */

/*------------------------------------------------------------
	ベースライン
------------------------------------------------------------*/

h1,h2,h3,h4 {
	line-height: 1;
}


h2 {
	font-size: 4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
}

h2 span {
	display: block;
	font-size: 1.4rem;
	text-align: center;
	margin-top: 5px;
}

h3 {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 12px;
}

h3 span {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 600;
	margin-top: 5px;
	position: relative;
}

h3 span:before,
h3 span:after {
	content: '';
	background: #000;
	width: 10px;
	height: 1px;
	position: absolute;
	top: 10px;
}

h3 span:before {
	right: -20px;
}

h3 span:after {
	left: -20px;
}


/*

h5 {
	font-size:1.4rem;
}
*/

h6 {
	font-size:1.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 28px;
	position: relative;
}

h6:after {
	content: '';
	background: #000;
	width: 50px;
	height: 3px;
	position: absolute;
	bottom: -8px;
	left: 50%;
	margin-left: -25px;
}



/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/

header {
	background: rgba(255,255,255,0.8);
	color: #000!important;
	width:100%;
	height:60px;
	margin-bottom:20px;
	position:fixed; /*またはabsoluteで非固定*/
	top:0;
	z-index:100;
	transition: .3s;
}

header div#innerHead {
	width:96%;
	margin:0 auto;
}

a.modalBtn {
	font-size: 3rem;
	color: #fff;
	position: absolute;
	top: 0;
	left: 20px;
}

a.menuBtn {
	font-size: 3rem;
	color: #fff;
	position: absolute;
	top: 0;
	right: 20px;
}

p#siteID a {
	display: block;
	background: url('../img/title_blk2.svg') left top no-repeat;
	background-size: contain;
	width: 123px;
	height: 84px;
	text-indent: -9999px;
	position: fixed;
	top: 10px;
	left: 2vw;
}


/*------------------------------------------------------------
	アイコンメニュー
------------------------------------------------------------*/

#icon-navi ul {
	position: absolute;
	top: 13px;
	right: 2vw;
}

#icon-navi ul li {
	display: inline-block;
	text-align: center;
	position: relative;
	padding: 0 0 20px;
	overflow: hidden;
}
/*

#icon-navi ul li:first-child {
	margin-right: 8px;
}
*/

#icon-navi ul li a {
	display: block;
	background: url(../img/icon_food.png) center top no-repeat;
	background-size: contain;
	width: 53px;
	height: 24px;
}

#icon-navi ul li:nth-child(2) a {
	background: url(../img/icon_event.png) center top no-repeat;
	background-size: contain;
}

#icon-navi ul li:nth-child(3) a {
	background: url(../img/icon_goods.png) center top no-repeat;
	background-size: contain;
}

#icon-navi ul li:nth-child(4) a {
	background: url(../img/icon_tickets.png) center top no-repeat;
	background-size: contain;
}

#icon-navi ul li a span {
	width: 100%;
	font-size: 0.9rem;
	font-weight: 600;
	position: absolute;
	bottom: 0;
	left: 0;
}



/*------------------------------------------------------------
	コンテンツ：レイアウト
------------------------------------------------------------*/

#wrapper {
	padding-top: 60px;
}

div.container {
	width:100%;
}

div.container div.contents {
	width:100%;
	margin:0 auto;
	padding: 0 4%;
	position:relative;
}

div.container div.contents p:not(:last-child) {
	margin-bottom: 5px;
}

/*仮設定*/
.grid {
	background:#ccc;
	min-height:100px;
}


/*------------------------------------------------------------
	GRID LAYOUT
------------------------------------------------------------*/

.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-1-2,
.col-2-1,
.col-3-2,
.col-2-3 {
	display: -ms-grid;
	display: grid;
	grid-gap: 2vw;
    grid-template-rows: auto;
	-ms-grid-gap: 2vw;
    -ms-grid-rows: auto;
/* 	margin-bottom: 2vw; *//*仮設定・自由に変更*/
}

.col-2 {
  grid-template-columns: 1fr;
  -ms-grid-columns: 1fr;
}

.col-3 {
  grid-template-columns: 1fr;
  -ms-grid-columns: 1fr;
}

.col-4 {
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
}

.col-5 {
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
}

.col-6 {
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr;
}

.col-1-2,
.col-2-1,
.col-3-2,
.col-2-3 {
  grid-template-columns: 1fr;
  -ms-grid-columns: 1fr;
}

/*------------------------------------------------------------
	2カラム（サイドナビ有り）
------------------------------------------------------------*/

div#sideLeft,
div#sideRight {
	display:none;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#3BC9B4;
}

div#mainLeft,
div#mainRight {
	width:100%;
	/*↓2行 テンプレ判別用 実際には不要*/
	background:#DBD2F0;
}




/*------------------------------------------------------------
	パンくず
------------------------------------------------------------*/

div.breadcrumbArea {
	width: 100%;
	font-size: 1rem;
	padding: 10px 3vw;
	color: #999;
	position: relative;
	border-top: 1px solid #ccc;
}

div.breadcrumbArea svg {
	margin: 0 5px;
}

@media only screen and (max-width: 812px) {
	div.breadcrumbArea span[property="name"] {
	    display: inline-block;
	    padding: 0;
	    margin-top: -3px;
	    vertical-align: middle;
	    max-width: 130px;
	    white-space: nowrap;
	    overflow: hidden;
	    text-overflow: ellipsis;
	}
}

div.breadcrumbArea a {
	text-decoration: none;
}

div.breadcrumbArea i {
	margin: 0 5px;
}

div.breadcrumbArea i:first-child {
	margin-left: 0;
}




/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/

footer {
	background: #005CA2;
	border-top: 3px solid #000;
	width:100%;
}

footer div#innerFoot {
	width:96%;
	margin:0 auto;
	padding: 30px 0;
}

footer div#innerFoot p#footID a {
	display: block;
	background: url(../img/logo_01.svg) left top no-repeat;
	background-size: contain;
	width: 137px;
	height: 41px;
	text-indent: -9999px;
	margin: 0 auto 10px;
}

address {
	font-size: 1rem;
	text-align: center;
	color: #fff;
}




/*------------------------------------------------------------
	横スクロールコンテンツ
------------------------------------------------------------*/

.scrollArea {
	  overflow-x: scroll;
	  overflow-y: hidden;
	  -webkit-overflow-scrolling: touch;
}

/*横スクロールするラップ全体の設定*/
.scrollArea .scrollWrap {
	 height:190px;
}

/*横スクロールするアイテム単体の設定*/
.scrollArea .scrollWrap .scrollItem {
	width: 230px;
	height: auto;
	margin-right: 10px;
	float: left;
}


/*------------------------------------------------------------
	ページトップへ
------------------------------------------------------------*/

p#pageTop a {
	background: #6AB630;
	width: 40px;
	height: 40px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	border-radius: 30px;
	position: fixed;
	bottom: 50px;
	right: 4vw;
	display: block;
	color: #fff;
	z-index: 10000;
}

/*------------------------------------------------------------
	ボタン
------------------------------------------------------------*/

a.button {
	display: block;
	width: 70%;
	font-size: 1.2rem;
	font-weight: 500;
	color: #000;
	text-align: center;
	text-decoration: none;
	border: 2px solid #000;
	border-radius: 30px;
	padding: 6px 10px;
	margin: 0 auto;
}



/*------------------------------------------------------------
	REVEALER
------------------------------------------------------------*/


.block-revealer__element {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	pointer-events: none;
	opacity: 0;
}


/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	text-align: center;
	background: #005CA2;
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 67px;
	height: 91px;
	margin: auto;
	pointer-events: none;
	background: url(../img/logo_02.svg) center top no-repeat;
	background-size: cover;
	animation: loaderAnim 0.8s ease-out infinite alternate forwards;
}


@keyframes loaderAnim {
	to {
		transform: translate3d(0,-30px,0);
	}
}
