@charset "utf-8";
/* CSS Document */

/*----------------------------------------------
　　リセット指定
----------------------------------------------*/
*{
	box-sizing: border-box;
	font-family: "Zen Old Mincho", serif;
	padding: 0;
	margin: 0;
	font-size: 100%;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
}

html{scroll-behavior: smooth;}

ul,li{
	padding: 0;
	margin: 0;
	list-style: none;
}
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
video{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a{
	text-decoration: none;
	color: #fff;
}
iframe{
	max-width: 100%;
}

/*----------------------------------------------
　　背景・全体共通指定
----------------------------------------------*/
.bg{
	background-attachment: fixed;
	background-image: url("img/main_bg_sub.jpg");
	background-size: cover;
	background-repeat: no-repeat;
}
.w-450{
	max-width: 450px;
	margin: 0 auto;
	background: #151515;
	padding: 0 5%;
}
.h2{
	font-weight: 900;
	font-size: 30px;
}
/*----------------------------------------------
　固定バナー
----------------------------------------------*/
.fix-btn{
	width: 30%;
	z-index: 999;
	position: fixed;
	bottom: 30px;
	right: 0;
}

@media (min-width:768px){
	.fix-btn{
		width: 18%;
		right: 100px;
}
}	
/*----------------------------------------------
　　ヘッダー
----------------------------------------------*/
.header{
	max-width: 450px;
	margin: 0 auto;
	text-align: center;
	background: #151515;
}

.header p img{
	margin-bottom: 40px;
}
.img-1{
	padding-bottom: 12px;
}
.mainimg{
	padding-top: 16px;
}
/*----------------------------------------------
　　マルシェコンセプト
----------------------------------------------*/
.concept{
}
.concept .h2{
	font-size: 28px;
	color: #dab158;
	padding-top: 60px;
	margin-bottom: 20px;
}
.concept .concept-p1{
	margin-bottom: 10px;
}
.concept .concept-p2{
	margin-bottom: 30px;
}
/*----------------------------------------------
　　出店店舗一覧
----------------------------------------------*/
.stagesc{
	padding-top: 50px;
}
.stagesc h3{
	text-align: center;
	margin-top: 40px;
}

.shoplist{
}
.shoplist .h2{
	padding: 60px 0 30px;
}
.shoplist-p{
	padding: 80px 0 150px;
	text-align: center;
}
.shoplist .scroll-box{
	max-width: 450px;
	overflow-x: scroll;
}
.shoplist .scroll-box img{
	max-width: 180%;
}
/*----------------------------------------------
　　実行委員長メッセージエリア
----------------------------------------------*/
.message{
	text-align: center;
	background: #fff;
	padding: 30px 3%;
}
.message img{
	width: 60%;
	border-radius: 50%;
}
p.message-1{
	margin-top: 20px;
	text-align: left;
	color: #000;
}
.message-2{
	margin-top: 20px;
	color: #000;
}
.sub-stage_img{
	padding-top: 50px;
}
/*----------------------------------------------
　　スタンプラリー
----------------------------------------------*/
.stamp .h2{
	margin-top: 80px;
	margin-bottom: 20px;
}
.stamp-img1{
	text-align: right;
	position: relative;
}
.stamp-img1 img{
	width: 60%;
	position: absolute;
	top:300px;
	right: 0;
}
.stamp-p{
	margin-bottom: 20px;
}
.stamp-img2{
	text-align: center;
}
.stamp-img2 img{
	width: 90%;
}
.stamp h3{
	margin-bottom: 10px;
}
/*----------------------------------------------
　　協力・協賛エリア
----------------------------------------------*/
.kyouryoku{
	padding: 30px 0;
	text-align: center;
}
.kyouryoku .h2, .kyouryoku .kyouryoku-h3{
	color: #dab158;
	font-weight: 900;
}
.kyouryoku .h2{
	padding-top: 30px;
}
.kyouryoku-h3{
	margin-bottom: 30px;
	padding-bottom: 5px;
	font-size: 22px;
	padding-top: 12px;
}
.sen{
	border-color: #dab158;
}
.kyouryoku .syusai{
	padding-top: 50px;
}
/*----------------------------------------------
　　メイン会場・サテライト会場
----------------------------------------------*/
.main_area{
	margin-bottom: 60px;
}
.main_area h3, .sub-area h3{
	margin-top: 10px;
	margin-bottom: 30px;
}
/*----------------------------------------------
　　シャトルバス情報
----------------------------------------------*/
.shuttlebus{
	margin: 30px 0 150px;
}
.shuttlebus p{
	margin-bottom: 10px;
}
/*----------------------------------------------
　　フッターエリア
----------------------------------------------*/
.footer{
	text-align: center;
	padding-bottom: 100px;
}
.footer .contact-box h2{
	font-size: 20px;
}
.contact-box h3, .contact-box p{
	font-size: 16px;
}
.credit small{
	font-size: 10px;
}
.footer-icon{
	width: 10%;
	margin: 20px 0;
}

/*==================================================
　PCレイアウト
=================================================*/
@media (min-width:600px){
	.w-450{
	padding: 0 2%;
}
}	
/*==================================================

　アニメーション動きの指定

=================================================*/

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeUpTrigger{
    opacity: 0;
}

/*==================================================
じわっ
===================================*/

.blur{
  animation-name:blurAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}