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



/*========= 場内ガイドマップのモーダル ===============*/

.guide_map {
  
}

.guide_map_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.guide_map_inner img {
  width: 100%;
}

.floor_map {
  
}

.floor_map_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.floor_map_inner img {
  width: 100%;
}


/* 開くボタン */
.modal__trigger {
  cursor: pointer;
}

.modal__trigger:nth-child(n + 2) {
  margin-top: 60px;
}

/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
  padding: 0;
}

.modal__inner {
  position: relative;
  height: 100%;
  padding: 0;
}

/* 閉じるボタン */
.modal__close {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 44px;
	height: 44px;
	background-color: #e48000;
	cursor: pointer;
	transition: opacity .6s;
	border-radius: 50%;
}

.modal__close:hover {
  opacity: .6;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  content: '';
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーダル内のコンテンツ */
.modal__content {
}

.modal__text {
	margin-top: 5px;
	line-height: 1.4;
	color: #FFFFFF;
}

@media only screen and (max-width: 767px) {
	.modal__container {
		width: 80%;
		height: auto;
	}
}
	


/*========= フロアマップのモーダル ===============*/

/*モーダルを開くボタン*/
.modal-open{

}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/

.modal-close_map {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 44px;
	height: 44px;
	background-color: #e48000;
	cursor: pointer;
	transition: opacity .6s;
	border-radius: 50%;
}
.modal-close_map:before,
.modal-close_map:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
  content: '';
}
.modal-close_map:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close_map:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*モーダル内のコンテンツの指定*/
.modal-content{
position: relative;
  padding: 0;
}
.modal-content img{
width: 100%;
}

.works_pickup_rec {
	display: flex;
	justify-content :space-around;
	margin-bottom: 10px;
	font-size: 16px;
}
.works_pickup_rec img {
  width: 190px;
  height: 130px;
  object-fit: cover;
	margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
	.works_pickup_rec {
		flex-direction:column;
		justify-content :space-around;
		font-size: 14px;
		margin-bottom: 20px;
	}
	.works_pickup_rec div {
		margin-bottom: 20px;
	}
	.works_pickup_rec img {
		width: 50%;
		height: auto;
		margin-bottom: 10px;
	}
}

.btn_event_entry {
	background-image: url(../images/bg_entrybtn.png);
	background-repeat: repeat-x;
	background-size: contain;
	border: 1px solid #ECE0DF;
	border-radius: 10px;
	width: 350px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	font-size: 22px;
	text-decoration: none;
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.btn_event_entry {
		width: 300px;
		height: 55px;
		font-size: 18px;
		margin-bottom: 30px;
		}
}</pre></body></html>