
/* CSS Document */

*{
	margin:0;padding:0;
	font-feature-settings: "palt";
	box-sizing: border-box;
}



img {border:0;}
address {font-style:normal;}
a{text-decoration:none;}

.m0auto{margin: 0 auto;}
.mb1{margin-bottom: 1em!important;}
.mb1-5{margin-bottom: 1.5em!important;}
.mb2{margin-bottom: 2em!important;}
.mb2-5{margin-bottom: 2.5em!important;}
.mb3{margin-bottom: 3em!important;}
.red {color: red;}
.yelllow {color: yellow;}
.white{color:white;}
.blue{color:blue;}
.green{color:green;}
.DechauOrange{color:#FF4200;}
.clear {clear:both;}
.copyright {font-size: 0.5em;margin: 20px 0;text-align: center;}

body{
	background: #fff;
	overflow-x: hidden;
}
.body1 {
	width: calc(100% - 2em);
	max-width: 600px;
	margin: 0 auto;
	/*font-family: 'M PLUS 1p', sans-serif;*/
	font-family: "Helvetica Neue",Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

.img100per{
	width: 100%;
	display: flex;
	justify-content: center;
}
.img100per img{
	width: 100%;
}

.plazaStage {
	position: relative;
	display: flow-root;
	isolation: isolate;
}
.plazaHero {
	position: relative;
	width: 100%;
	aspect-ratio: 4677 / 6622;
	margin: 0 auto;
	background: url("../img/back.png") center top / 100% 100% no-repeat;
	overflow: hidden;
}
.plazaHero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	height: 18%;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.18) 35%,
		rgba(255, 255, 255, 0.72) 72%,
		#fff 100%
	);
	pointer-events: none;
}
.plazaTitle,
.plazaMain {
	position: absolute;
	z-index: 1;
	display: block;
	height: auto;
	will-change: transform;
}
.confettiCanvas {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.plazaTitle {
	top: 3.8%;
	left: 50%;
	width: min(96%, 1400px);
	transform: translateX(-50%);
}
.plazaTitle.fadeInUp {
	transform: translate(-50%, 20px);
	transition-delay: 0.1s;
}
.plazaMain {
	top: 22.5%;
	left: 50%;
	width: min(102%, 1520px);
	transform: translateX(-50%);
}
.plazaMain.fadeInUp {
	transform: translate(-50%, 20px);
	transition-delay: 0.65s;
}
.plazaTitle.fadeInUp[style],
.plazaMain.fadeInUp[style] {
	transform: translate3d(-50%, var(--parallax-y, 0), 0) !important;
	transition-property: opacity;
}
.plazaInfo {
	position: relative;
	z-index: 5;
	display: grid;
	gap: clamp(10px, 1.8vw, 22px);
	width: min(64%, 680px);
	margin: max(-250px, -22vw) auto clamp(32px, 6vw, 76px);
}
.plazaInfo img {
	display: block;
	width: 100%;
	height: auto;
}
.schedule {
    max-width: 800px;
	display: flex;
	justify-content: center;
	background: #fff;
	border: 2px solid #888;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 2em;
}
.embedded1{
	width: 100%;
	height: 85vh;
	min-height: 560px;
	border: 0;
}
.decharepoAnnai {
	max-width: 500px;
	margin: 0 auto 2em;
}
.decharepoAnnai img {
	display: block;
	width: 100%;
	border: 0;
}
.backToDechau {
	display: block;
	max-width: 560px;
	margin: 0 auto;
	padding: 10px;
	background: #ff4200;
	border-radius: 15px;
}
.backToDechau img {
	display: block;
	width: 100%;
}

.content {
  flex: 1;
}
footer {
	position: fixed;
  width: 100%;
  background: #44aa33;
}
/*
FlexBoxの設定
----------------------------------------------------------- */
/*コンテナ*/
.flexContainer{
	display:flex;
	justify-content: flex-start; /*水平方向の揃え設定*/
	align-items: stretch; /*垂直方向の揃え設定*/
}
/*アイテム*/
.flexItem{
	width: calc(100%/2 - 0.3em); /*分割数を指定*/
}
/*要素の真ん中に配置*/
.mannaka{
	display: flex;
	justify-content: center;
	align-items: center;
}
/*
 フェイドインクラス
----------------------------------------------------------- */
.fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
/*
 メディアクエリ 
----------------------------------------------------------- */
@media (max-width:600px){
	.plazaInfo {
		width: 92%;
	}
	.body1 {
		width: calc(100% - 1.25em);
	}
	.embedded1 {
		height: 72vh;
		min-height: 480px;
	}
}
