@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* =======================================

	structure CSS

========================================== */
html,body {
	height:100%;}

#container {
	position: relative;
	min-width: 1100px;
	width: 100%;
	min-height: 100%;

	@media screen and (max-width: 1150px) {
		min-width: auto;
	}
	
	& a {
		text-underline-offset: .5ex;
	}
}

#headerarea {
	overflow: hidden;
	position:relative;
	width:100%;
	z-index: 1;}


#info_container {
	overflow: hidden;
	position: relative;
	background: none;}

.information_box {
	position: relative;
	padding: 0 0 80px;
	width: 1100px;
	margin: 0 auto;

	@media screen and (max-width: 1150px) {
		width: 94%;
	}
	@media screen and (max-width: 835px) {
		width: 94%;
	}
	@media screen and (max-width: 599px) {
		width: 100%;
		padding-bottom: 50px;
	}
}

#footer {
	position: absolute;
	z-index: 2;
	font-size: 14px;
	text-align: center;
	padding: 10px 0;
	width: 100%;
	bottom: 0;
	background: #CFB2B6;
	color: #fff;
}

/*【SP】*/
@media screen and (max-width: 835px) {
	#container {
		background: none;
		min-width: auto;
	}
}
@media screen and (max-width: 599px) {
	#footer {
		padding-left: 3%;
		padding-right: 100px;
		text-align: left;
		line-height: 1.3em;
		padding-top: 22px;
		padding-bottom: 22px;
	}
	#footer::after {
		content: "";
	}
	.bg_bottom_sp { display: block;}
	.bg_bottom_sp img {
		width: 100%;
		height: auto;
	}
}

/* =======================================

	body

========================================== */

body {
	color: #453B47;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.8em;
	font-family: "Noto Sans JP", sans-serif;
	background: #fff;

	/*&::before {
		background:url("../images/bg_b.jpg") no-repeat center bottom #fff;
		background-size: 100% auto;
		content: "";
		height: 100vh;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: -1;
	}*/
}

/*【SP】*/
@media screen and (max-width: 835px) {
	body {
		position: relative;
		/*background: none;*/
	}
}
@media screen and (max-width: 420px) {
	body {
		font-size: 1.3rem;
		line-height: 1.6em;
	}
}

/* =======================================

	【01】#headerarea

========================================== */
#tw {
	position: relative;
	text-align: center;
	z-index: 999;
}
header#headerarea {
	display: grid;
	place-content: center;
	place-items: center;
	height: 100svh;
}
.stripe {
	background-size: 548px 548px;
	background: url("../images/bg.png");
	animation: anime_stripe 20s infinite linear;
}
@keyframes anime_stripe {
  0% {  background-position-x: 0;}
  100% {  background-position-x: -548px;}
}

.logo {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	text-align: center;
	z-index: 999;
	
	@media screen and (max-width: 1150px) {
		width: 90%;
	}
	& img {
		width: 100%;
		height: auto;
	}
}
.logo h1 {
	display: inline-block;
	vertical-align: middle;
	width: 55%;
	
	@media screen and (max-width: 835px) {
		display: block;
		width: 400px;
		margin: 0 auto;
	}
	@media screen and (max-width: 450px) {
		width: 90%;
	}
}
.logo picture {
	display: inline-block;
	vertical-align: middle;
	width: 42%;
	text-align: center;
	
	@media screen and (max-width: 835px) {
		display: block;
		width: 500px;
		margin: 0 auto;
	}
	@media screen and (max-width: 599px) {
		width: 90%;
	}
}

.scroll {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	background: rgba(255,255,255,1);
	z-index: 9999;

	& a {
		display: block;
		text-decoration: none;
		color: #CFB2B6;
		padding: 10px;
		font-size: 1.75em;
		
		&:hover {
			opacity: .7;
		}
		&::after {
			content: "▽";
			padding-left: 5px;
			text-align: center;
		}
	}
}


@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-150px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideInTop {
  animation-name: slideInTop;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

#headerarea {
  overflow: hidden;
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideInBottom {
  animation-name: slideInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

#headerarea {
  overflow: hidden
}


@keyframes fade {
  from {
    opacity: 0;
  }
  
  to {
    opacity: 1;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 3s;
  animation-timing-function: ease-out;
}
@keyframes fade2 {
  from {
    opacity: 0;
  }
  
  to {
    opacity: 1;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 5s;
  animation-timing-function: ease-out;
}
.fade2 {
  animation-name: fade;
  animation-duration: 6s;
  animation-timing-function: ease-out;
}

#info_container {
	padding-top: 40px;
	
}

/*【SP】*/
@media screen and (max-width: 835px) {
	.mv_sp_txt {
		text-align: center;
		color: #DE5451;
		font-size: 3rem;
		line-height: 1.5em
	}
	.logo {
		position: relative;
		width: 90%;
		padding: 0;
		margin-bottom: 80px;
		z-index: 999;
	}
	.logo h1 {
		padding: 100px 0 20px;
	}
	.logo h1 img, .slideInRight img, .slideInLeft img {
		width: 100%;
		height: auto;
	}

	.logo h1 {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	
}
@media screen and (max-width: 599px) {
	.logo h1 {
		width: 96%;
		height: auto;
	}
}


#info_container {
	& section {
		position: relative;
	}
	& h3.ttl {
		font-family: "Croissant One", serif;
		font-weight: 400;
		position: relative;
		font-size: 3rem;
		line-height: 1.5em;
		letter-spacing: 3px;
		text-align: center;
		padding: 40px 0 0 0;
		margin-bottom: 35px;
		color: #CFB2B6;
		
		@media screen and (max-width: 599px) {
			font-size: 4vw;
			margin-bottom: 35px;
		}
	}

	& h4.ttl2 {
		font-family: "Croissant One", serif;
		font-weight: 400;
		position: relative;
		font-size: 2.4rem;
		line-height: 1.5em;
		border-bottom: 1px solid #908273;
		padding-bottom: 5px;
		margin-bottom: 12px;
		
		@media screen and (max-width: 599px) {
			font-size: 4.5vw;
			line-height: 1.5em;
		}
	}
}
.ttl  {color: #544E55;}
.txt01 { color: #B96084!important;}
.txt02 { color: #7787C2!important;}

@media screen and (max-width: 599px) {
	#info_container section {
		padding: 1% 3%;
	}
}



/* ふわっと表示 */
.js-fadein {
	/* 最初は非表示 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform 1s;
}
/* フェードイン時に入るクラス */
.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}


/* =======================================

	【02】#info_container

========================================== */
#info_container {
	position: relative;
}
section { position: relative;}
section::before { content: ""; position: absolute; z-index: 2; top:-28px; left: 0; right: 0; text-align: center;}

#h_txt { background: #FFE2E3; &::before {content: url("../images/icon_01.png");}}
#outline { background: #FFE9E6; &::before {content: url("../images/icon_02.png");}}
#artist { background: #FFE9D8; &::before {content: url("../images/icon_03.png");}}
#ticket { background: #FFF3D5; &::before {content: url("../images/icon_04.png");}}
#goods { background: #EBF7DC; &::before {content: url("../images/icon_05.png");}}
#attention { background: #E3F1FF; &::before {content: url("../images/icon_06.png");}}
#staff { background: #F6EBF9; &::before {content: url("../images/icon_07.png");}}

#info_container section#h_txt {
	padding-top: 70px;
}

.col2 {
	display: flex;
	justify-content: space-between;
	
	@media screen and (max-width: 599px) {
		display: block;
	}
	
	& > li {
	width: 48%;
		
		@media screen and (max-width: 599px) {
			width: 100%;
			
			&:first-child {
				margin-bottom: 2em;
			}
		}
	}
}

.info_txt dt {
	font-size: .9em;
	line-height: 1.6em;
}
.info_txt dd {
	font-size: 1.1em;
}

.staff > li {
	margin-right: 1.5em;
	margin-bottom: 1em;
	
	& dt {
		color: #8D8897;
		line-height: 1.25em;
	}
}

.staff2 > li {
	display: inline-block;
	margin-right: .5em;
	margin-left: .5em;
}

.link li {
	text-align: center;
	margin: 15px 0;}
.link li p {
	font-size: 1.2rem;
}

.btn {
	margin-top: 10px;
	margin-bottom: 10px;
	
	& a {
		text-decoration: none;
		padding: 7px 12px;
		border: 1.5px solid #aaa;
		border-radius: 5px;
		transition: .3s;
		
		&:hover {
			border-color: #FF9497;
			background: #fff;
		}
	}
}

.inline_b span {display: inline-block;}

@media screen and (max-width: 740px) {
	.btn.sp_block {
		margin-top: 0;
		
		& a {
			display: block;
		}
	}
}
.grid_center {
	display: grid;
	place-content: center;
	
	@media screen and (max-width: 740px) {
		place-items: center;
	}
	@media screen and (max-width: 599px) {
		display: block;
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
}
.grid_center a {
	display: block;
}

@media screen and (max-width: 835px) {
	#info_container .information_box h3.ttl {
		font-size: 2.1rem;
		line-height: 1.5em;
	}
}
@media screen and (max-width: 599px) {
	.staff li {margin-bottom: 15px;}
	.staff .staff2 li { margin-bottom: 0;}
	.staff dl {
		width: 100%;
		padding-left: .5em;
		font-size: 1.2rem;
	}
	.staff dt {
		padding-right: 0;
		margin: 0 0 3px;
		border-right: none;}

	.staff dd {
		padding-left: 0;
		margin-bottom: 25px;}
	.staff dl:last-of-type dd {
		margin-bottom: 10px;
	}
	.link {
		padding: 0 3%;
	}
	#footer {
		font-size: 1rem;
	}
}

.list li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 10px;
	line-height: 1.4em;
	
	&::before {
		content: "・";
		position: absolute;
		top: 0;
		left: 0;
	}
}


/* =======================================

	【#pageTop】

========================================== */
#pageTop {
	position:fixed;
	background: #CFB2B6;
	/*opacity: .9;*/
	/* Firefox v1.0+ */
	-moz-border-radius: 50%;
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-border-radius: 50%;
	/* Firefox v4.0+ , Safari v5.0+ , Chrome v4.0+ , Opera v10.5+  and by IE v9.0+ */
	border-radius: 10px 10px 0 0;
	color:#fff;
	bottom:0;
	right:20px;
	text-align: center;
	padding:15px 20px;
	z-index: 9999;
	text-decoration: none;
	font-size: 1.1em;
}


#pageTop:hover{
	opacity: .5;}

@media screen and (max-width: 835px) {
	#pageTop {
		bottom:0;
		right:10px;
		padding: 15px 10px;}
}

.done { display: none;}






/* animation
========================================== */
.animation {
	animation: pyonpyon 3s infinite ease;
}
@keyframes pyonpyon {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0, -15px);
  }
  25% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -15px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.animation2 {
	animation: fuwafuwa 1.5s infinite ease;
}
@keyframes fuwafuwa {
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -7px); }
	/* -20pxを変えることで上下の動く幅を変えられる */
	100% { transform: translate(0, 0); }
}

.animation3 {
	animation: buruburu 0.5s infinite linear alternate;
}
@keyframes buruburu {
  0% {
    transform: translate(-3px, 0) rotate(-5deg);
  }
  50% {
    transform: translate(0, -2px) rotate(0deg);
  }
  100% {
    transform: translate(-3px, 0)　rotate(5deg);
  }
}


/*ローディング画面*/
#loading {
  transition: all 2s; /*ローディングにかかる時間*/
  background-color: #CFB2B6;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; 
}

.loading-text {
  font-weight: bold;
  text-align: center;
	color: #fff;
	margin-bottom: 10px;
}

.spin {
  width: 300px;
  height: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}




/*メニュー*/
#menu {
    width: 200px;
    height: 100vh; /* メニューの縦は画面一杯に伸ばす */
    display: flex;
    align-items: center;
	
    background-color: rgba(255,255,255,.90);

    position: fixed;
    top: 0;
    right: -200px; /* メニューが閉じているときは画面外に出す */
	z-index: 100;

    transition: 0.3s;
}

#menu.open {
    right: 0; /* メニューを開くと画面内に表示される */
    transition: 0.3s;
}


.menu-list {
	width: 100%;
	/*padding-top: 50px;
	
	@media screen and (max-width: 599px) {
		padding-top: 30px;
	}*/
}

.menu-list .menu-list-item {
	margin-bottom: 5px;

	@media screen and (max-width: 599px) {
		margin-bottom: 0;
	}
}


.menu-list .menu-list-item a {
	display: block;
	width: 100%;
	height: 70px;
	line-height: 70px;
	text-align: center;

	transition: 0.5s;
	text-decoration: none;
	font-size: 1.1em;
	color: #6871AC;
}

.menu-list .menu-list-item a:hover {
	background-color: #E0CBCA;
	transition: 0.5s;
	color: #fff;
}


button.menu-toggle {
	border: none;  /* 枠線を消す */
	outline: none; /* クリックしたときに表示される枠線を消す */

	width: 100px;
	height: 70px;
	background-color: #CFB2B6;
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;

	cursor: pointer;

	/* メニューボタンの配置 */
	position: absolute;
	bottom: 47px;
	right: 200px; /* メニューの幅 - メニューボタンの高さの半分 */
	
	@media screen and (max-width: 599px) {
		bottom: 0;
		width: 80px;
	}
}

button.menu-toggle::after {
	content : 'MENU';
	letter-spacing: .3em;
}

/*button.menu-toggle.open::after {
    content : 'CLOSE';
}*/


.goods_list_ {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 50px 5px;
	
	& li {
		width: 35%;
		
		& img {
			width: 100%;
			height: auto;
		}
		
		@media screen and (max-width: 599px) {
			width: 90%;
		}
	}
}

.tokuten li {
	width: 90%;
	margin: 0 auto 20px;
	
	& img {
		width: 100%;
		height: auto;
	}
}

.yt_box {
	width: 60%;
	margin: 0 auto 30px;
	background: #444;
	border: 1px solid #ccc;
	
	@media screen and (max-width: 835px) {
		width: 80%;
	}
	@media screen and (max-width: 599px) {
		width: 100%;
	}
}


.s_credit {
	text-align: center;
	width: 60%;
	margin: 0 auto;
	
	@media screen and (max-width: 835px) {
		width: 85%;
	}
	@media screen and (max-width: 599px) {
		width: 100%;
		text-align: left;
	}
	
	& .staff2:not(:last-of-type) {
		margin-bottom: 5px;
		
		@media screen and (max-width: 599px) {
			margin-bottom: 1em;
			
			& li {
				display: block;
			}
		}
	}
}

.artist_list {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	
	@media screen and (max-width: 599px) {
		display: block;
	}
}
.artist_list dd {
	background: rgba(255,255,255,.70);
	padding: 5px;
	border-radius: 10px;
}
.artist_list li {
	width: 45%;
	text-align: center;
	font-size: 1.1em;
	line-height: 1.6em;
	
	@media screen and (max-width: 835px) {
		font-size: 1em;
	}
	@media screen and (max-width: 599px) {
		width: 100%;
		
		&:first-child {
			margin-bottom: 30px;
		}
	}
}


span.x a {
	text-decoration: none;
	padding: 1px 8.5px;
	background: #000;
	color: #fff;
	border-radius: 50%;
	
	&:hover {
		opacity: .7;
	}
}
span.hp {
	position: relative;
	display: inline-block;
	bottom: -5px;
	@media screen and (max-width: 835px) {
		bottom: -4px;
	}
	@media screen and (max-width: 599px) {
		bottom: -2px;
	}
}
.greeting {
	font-size: 1.2em;
	line-height: 2em;
	
	@media screen and (max-width: 835px) {
		font-size: 2.2vw;
	}
	@media screen and (max-width: 599px) {
		font-size: 3.4vw;
	}
}
.ticket li { max-width: 90%; width: 500px; margin: 0 auto; font-size: 1.3em;}
.ticket li a { display: block; padding: 20px; background: rgba(255,255,255,.70); border-color: #CFB2B6;}
