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

/* PC用設定 */
@media screen and (min-width:751px) { 
	
}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--primary-color: #F77061;
	--accent-color: #394C6E;
	--secondary-color:#897334;
	--info-color: #39BFC0;
	--red-color: #dd0000;
}
.main__wrap{
	padding-top: 66px;
	background-image: url(../img/bg01.png);
	background-size: 450px;
	color: var(--text-color);
	box-sizing: border-box;
	line-height: 1.5;
	font-size: 16px;
	font-family:"M PLUS 1p", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 500;
}
img{
	display: block;
	width: 100%;
	height: auto;
}
figure {
	margin: 0 auto;
  width: 100%;
}
figcaption .caption {
	margin-left: auto;
  margin-right: 0;
  width: fit-content;
	font-size: 12px;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 800px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
  text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.txt-link{
	color: var(--primary-color);
	text-decoration: underline;
	font-weight:bold;
}
.txt-note{
	font-size: 12px;
font-weight: 400;}
.note__list li{
	font-size: 12px;
	font-weight: 400;
}
.note__list li.fc-red{color: var(--red-color);}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}
.bold {font-weight: bold;}

.mgbS{margin-bottom: 8px;}
.mgbM{margin-bottom: 16px;}
.mgbL{margin-bottom: 24px;}
.pdtS{padding-top: 8px;}
.pdbM{padding-bottom: 16px;}

.credit{
	font-size: 12px;
	padding-top: 8px;
	text-align: center;
	font-weight: 400;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;}
	.txt-note{font-size: 14px;}
	.note__list li{font-size: 14px;}
	.pc_center {text-align: center;}

	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.pdbM{padding-bottom: 24px;}

}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.acc__body {display: none;}
.acc__btn {
	font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: #ffff;
	background-color: var(--accent-color);
  position: relative;
  padding: 6px 56px 6px 28px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn span {
	position: absolute;
	background-color: #fff;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.acc__btn span::before,
.acc__btn span::after {
	content: "";
	background-color: var(--accent-color);
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn span::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open span::before {transform: translate(-50%,-50%);}
.acc__body{
	margin-top: 16px;
	/* background-color: #fff; */
	/* color: #fff; */
	/* padding: 12px; */
}

/* PC用設定 */
@media screen and (min-width:751px) {
}

/* ------------------------------------------------------------
注意事項
------------------------------------------------------------ */
.caution__box{
	border: 1px solid var(--red-color);
}
.caution__box--head{
	background-color: var(--red-color);
	color: #fff;
	text-align: center;
	font-size: 14px;
	padding: 2px;
}
.caution__box .note__list{
	background-color: #fff;
	padding: 8px;
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__wrap h1{
		max-width: 750px;
		margin: 0px auto;
		padding: 24px 0 32px;
	}
	.mv__wrap h1 img{
		box-shadow: 0 2.5rem 2rem -2rem rgb(0 0 0 / 30%);
	}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap{
	background-color: #FFF8F8;
	padding: 40px 0 24px;
}
.menu__box{
	padding: 20px 10px 10px;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0px 3px 6px #00000029;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.menu-head{
	width: 200px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -16px;
}
.menu__list{
	display: flex;
	gap: 5px;
	justify-content: space-between;
}
.menu__list li{
	display: block;
	background-color: var(--primary-color);
	border: 2px solid #FDD3CE;
	border-radius: 10px;
	font-size: 15px;
	font-weight: bold;
	position: relative;
	text-align: center;
}
.menu__list li a{
	display: block;
	/* height: 100%; */
	padding: 8px 0 16px;
	color: #fff;
	line-height: 1.2;
}
.menu__list li::after{
	content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: translateX(-50%) rotate(135deg);
    position: absolute;
    left: 50%;
    bottom: 8px;
}
.menu01,.menu02{
	width: 50%;
}

.menu03,.menu04{
	width: 40%;
}
.menu05{
	width: 20%;
}
li.menu05{
	border: 2px solid #C1F8F7;
	background-color: var(--info-color);
}
.menu05 a img{
	width: 22px;
	margin: 0 auto;
}

/* 追従メニューのスタイル */
#fixedMenu {
	display: none;
	/* 初期状態では非表示 */
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.85);
	/* メニューの背景色 */
	z-index: 900;
	padding: 10px 0;
	text-align: center;
}
#fixedMenu .menu__box{
	padding: 0;
	background-color: transparent;
	box-shadow: none;
	gap: 1px;
}
#fixedMenu .menu__list{
	gap: 1px;
}
#fixedMenu .menu__list li{
	display: block;
	border: none;
	border-radius: 0;
}
#fixedMenu .menu__list li::after{
    display: none;
}
#fixedMenu .menu__list li a{
	padding: 8px 0;
}
#fixedMenu .menu__list .menu01 a,#fixedMenu .menu__list .menu02 a{
	padding: 4px 0;
}

/* 固定解除されたメニューのスタイル */
#fixedMenu.bottom-fixed {
	position: absolute;
	bottom: auto;
	/* bottomをautoに設定して、元の位置を基準にする */
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.menu__wrap{
		margin: 0 auto;
		padding: 56px 0 24px;
	}
	.menu__box {
		max-width: 600px;
    padding: 32px 20px 16px;
    gap: 8px;
		margin: 0 auto;
		box-sizing: border-box;
}
.menu-head {width: 260px;}
.menu__list {gap: 8px;}
	.menu__list li {
    border-radius: 10px;
    font-size: 16px;
		border: 4px solid #FDD3CE;
		transition: all .5s
}
.menu__list li::after {
	width: 8px;
	height: 8px;
	bottom: 9px;
	border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
.menu__list li:hover{
	transform: translateY(3px);
}
.menu__list li a{
	padding: 8px 0 20px;
}
li.menu05{border: 4px solid #C1F8F7;}

/* PCのときの追従メニュー */
#fixedMenu {background: none;}
#fixedMenu .menu__box{
	max-width: none;
	width: fit-content;
	background-color: #fff;
	padding: 12px 16px;
	border-radius: 16px;
	box-shadow: 0px 3px 6px #00000029;
	flex-direction: row;
	justify-content: center;
	gap: 4px;
}
#fixedMenu .menu__list{gap: 4px;}
#fixedMenu .menu__list li{
	border-radius: 10px;
	border: 2px solid #FDD3CE;
	width: fit-content;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#fixedMenu .menu__list li a{
	padding: 8px 24px;
}
#fixedMenu .menu__list .menu01 a,#fixedMenu .menu__list .menu02 a {
	padding: 4px 24px;
}
#fixedMenu li.menu05{	border: 2px solid #C1F8F7;}
}


/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
.intro__wrap{
	padding: 16px 0 0 0;
	background: transparent linear-gradient(180deg, #FFF8F8 0%, #FFFFFFCC 77%, #FFFFFF00 100%) 0% 0% no-repeat padding-box;
	margin-bottom: 32px;
}
.intro__lead--group{
	margin-bottom: 40px;
}
.intro__lead--txt{
	text-align: center;
	font-weight: bold;
	color: var(--accent-color);
	line-height: 1.7;
}
.next__box{
	width: 85%;
	max-width: 400px;
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid var(--primary-color);
	padding: 10px;
	text-align: center;
}
.next__head{
	color: #fff;
	background-color: var(--primary-color);
	font-weight: bold;
	font-size: 14px;
	border-radius: 16px;
	padding: 3px 12px;
	width: fit-content;
	margin: 0 auto 6px;
}
.next__txt{
	color: #748199;
	font-weight: bold;
}
.blink {
	animation: blinking 0.8s ease-in-out infinite alternate;
}

/* 点滅 */
@keyframes blinking {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

/* 要素にアニメーションを適用 */
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.intro__wrap{
		margin: 0 auto 56px ;
		padding: 32px 0 0 0;
	}
	.intro__lead--txt {font-size: 18px;}
	.intro__lead img{
		max-width: 420px;
		margin: 0 auto;
	}
	.intro__lead--group {margin-bottom: 56px;}
	.next__head {
    font-size: 16px;
    border-radius: 20px;
    padding: 3px 20px;
    margin: 0 auto 8px;
	}
	.next__txt {
    font-size: 24px;
}
}

/* ------------------------------------------------------------
#共通
------------------------------------------------------------ */
.sec__wrap{
	padding: 54px 0 32px;
}
.sec__wrap--inner{
	background-color: #fff;
	border-radius: 24px;
	padding: 64px 14px 24px;
	position: relative;
}
.sec__head--group{
	position: absolute;
	top: -54px;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
}
.sec__head--no{
	width: 168px;
	margin: 0 auto;
}
.sec__head--sub{
	margin: 0 auto;
	display: block;
}
.sec__head--ttl{
	margin-bottom: 16px;
}
.sec__period{
	display: flex;
	margin-bottom: 16px;
	text-align: center;
}
.sec__period dt{
	background-color: var(--primary-color);
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	padding: 6px 0;
	border-radius: 4px 0 0 4px;
	width: 50px;
}
.sec__period dd{
	background-color: #fff;
	border: 1px solid var(--primary-color);
	border-radius: 0 4px 4px 0;
	width: calc(100% - 50px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-weight: bold;
	font-size: 15px;
}
.howto__block{
	background-color: #FCF6E4;
	padding: 10px 16px 16px;
	margin-bottom: 24px;
}
.howto__block>img{
	margin: 0 auto 4px;
}
.howto__block h3{
	color: var(--secondary-color);
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
	text-align: center;
}
.howto__block--txt{
	font-size: 14px;
	text-align: center;
	margin-bottom: 24px;
}
.step__slide--box{
	margin-bottom: 24px;
}
.step__slide--box h4{
	font-size: 14px;
	width: fit-content;
	background-color: var(--secondary-color);
	color: #fff;
	font-weight: bold;
	padding: 2px 16px;
	border-radius: 12px;
	margin: 0 auto 12px;
}
.step__slide--item{
	background-color: #fff;
	border-radius: 8px;
	padding: 12px 16px;
	margin-bottom: 24px;
	position: relative;
}
.step__slide--item:not(:last-child):after{
	display: block;
	content: "";
	width: 12px;
	height: 40px;
	background-image: url(../img/slider-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -20px;
}
.step__slide--head{
	text-align: center;
	font-weight: bold;
	font-family: "Coiny", system-ui;
	color: var(--secondary-color);
	margin-bottom: 4px;
}
.step__slide--txt{font-size: 14px;}
.step__slide--txt span{
	color: var(--secondary-color);
	font-weight: bold;
}
.step__slide--item .red-box{
	color: var(--red-color);
	border: 1px solid var(--red-color);
	font-size: 14px;
	text-align: center;
	margin-top: 4px;
}
.splide__pagination.step-slide-pagination {
	bottom: 0;
}
.splide__pagination__page.step-slide-page {
	background: var(--secondary-color);
	opacity: .3;
}
.splide__pagination__page.step-slide-page.is-active {
	background: var(--secondary-color);
	transform: scale(1,1);
	opacity: 1;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.sec__wrap{
		padding: 80px 0 32px;
	}
	.sec__wrap--inner{
		padding: 80px 64px 48px 64px;
	}
	.sec__head--group {
    top: -70px;
}
	.sec__head--no {width: 200px;}
	.sec__head--ttl {
		width: 420px;
		margin: 0 auto 24px;
	}
	.sec__period{
		max-width: 450px;
		margin: 0 auto 32px;
	}
	.sec__period dt{
		font-size: 15px;
		width: 100px;
	}
	.sec__period dd{
		width: calc(100% - 100px);
		font-size: 17px;
	}
	.howto__block {
    padding: 20px 24px 24px;
}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */

#voice .sec__head--sub{
	width: 294px;
}
.ill-voice{width: 128px;}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#voice .sec__head--sub {width: 374px;}
}
/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
/* .voice-btn__block{
	margin-bottom: 16px;
} */
a.voice-btn{display: block;}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.voice-btn__pc--outer{
		background: linear-gradient(180deg,rgba(74, 201, 202, 1) 0%, rgba(131, 234, 234, 1) 100%);
		max-width: 580px;
		margin: 0 auto 8px;
		padding: 8px;
		border-radius: 16px;
		box-sizing: border-box;
	}
	.voice-btn__pc{
		background: linear-gradient(180deg,rgba(74, 201, 202, 1) 0%, rgba(131, 234, 234, 1) 100%);
		border: 2px solid #fff;
		padding: 16px 20px;
		border-radius: 14px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: #fff;
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 18px;
		margin-bottom: 8px;
	}
	.voice-btn__txt .txt02{
		font-size: 14px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 120px;
		height: 120px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	
}


/* ------------------------------------------------------------
#wallpaper
------------------------------------------------------------ */
#wallpaper .sec__head--sub{
	width: 178px;
}
.img-wallpaper{
	width: 66%;
	max-width: 240px;
	margin: 0 auto;
}
.ill-wallpaper{width: 86px;}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#wallpaper .sec__head--sub {width: 222px;}
	#wallpaper .sec__head--ttl {
		width: 485px;
	}
	#slider3 .splide__list{
		justify-content: center;
	}
	#slider3 .splide__slide.step__slide--item{
		margin-bottom: 0;
	}
	#slider3 .splide__slide.step__slide--item:last-child{
		margin-right: 0!important;
	}
	
}

/* ------------------------------------------------------------
#limited
------------------------------------------------------------ */
#limited .sec__head--sub{
	width: 179px;
}
.img-bromide{
	width: 664%;
	max-width: 300px;
	margin: 0 auto;
}
.bromaide__period{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
	text-align: center;
}
.bromaide__period dt{
	font-size: 12px;
	color: #fff;
	background-color: var(--accent-color);
	border-radius: 4px 4px 0 0;
	padding: 2px 0;
	font-weight: bold;
}
.bromaide__period dd{
	font-size: 14px;
	color: var(--accent-color);
	padding: 2px 0;
	border: 1px solid var(--accent-color);
	border-radius: 0 0 4px 4px;
	font-weight: bold;
}
.ill-bromaide{width: 134px;}
/* PC用設定 */
@media screen and (min-width:751px) { 
	#limited .sec__head--sub {width: 222px;}
	.bromaide__period {
    gap: 16px;
    width: fit-content;
		margin: 0 auto 24px;
}
.bromaide__period dt {
	font-size: 15px;
	padding: 4px;
}
.bromaide__period dd {
	font-size: 16px;
	padding: 4px 40px;
}
}


/* ------------------------------------------------------------
#ad
------------------------------------------------------------ */
#ad .sec__head--sub{
	width: 179px;
}
.ad__box:not(:last-child){
	margin-bottom: 24px;
}
.ad__box h3{
	background-color: var(--primary-color);
	color: #fff;
	padding: 4px;
	font-weight: bold;
	text-align: center;
}
.ad__box--inner{
	border: 1px solid var(--primary-color);
	padding: 15px;
}
.ad__period{
	color: var(--accent-color);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 16px;
}
.img-poster{
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}
.location__acc--body{
	background-color: #F5F6F8;
	padding: 10px;
}
.location__list{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.location__list li{
	border-bottom: 1px solid var(--accent-color);
	padding-bottom: 8px;
}
.station-name{
	font-weight: bold;
	color: var(--accent-color);
	margin-bottom: 4px;
}
.location{font-size: 14px;}
.signage__list{
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}
.signage__list li p{
	text-align: center;
	color: var(--accent-color);
	font-size: 14px;
	margin-bottom: 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#ad.sec__wrap{
		padding: 80px 0 48px;
	} 
	#ad .sec__head--sub {width: 222px;}
	.ad__box h3 {
    padding: 6px;
		font-size: 18px;
}
.ad__box--inner {
	padding: 24px 32px;
}
	.ad__period {
    font-size: 18px;
    margin-bottom: 16px;
}
.location__acc--body {
	padding: 32px;
	box-sizing: border-box;
	max-width: 500px;
	margin: 16px auto 0;
}
.signage__list {
	gap: 32px;
	margin: 0 auto 32px;
	flex-direction: row;
	flex-wrap: wrap;
}
.signage__list li{
	width: calc( ( 100% - 32px ) / 2 );
}
}


/* ------------------------------------------------------------
#info
------------------------------------------------------------ */
.info__warp{
	background-color: var(--info-color);
	background-image: url(../img/bg02.png);
	padding: 24px 0 112px;
}
.info__head--group{
	margin-bottom: 12px;
}
#info .sec__head--sub{
	width: 184px;
	margin-top: 8px;
}
.info__list{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
}
.info__list--item{
	background-color: #fff;
	border-radius: 16px;
	padding: 20px 14px;
}
.img-artist{margin-bottom: 10px;}
.profile__name{
	font-size: 18px;
	color: var(--primary-color);
	font-weight: bold;
	margin-bottom: 16px;
}
.profile__name span{
	font-size: 12px;
	margin-left: 8px;
}
.profile__head{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 12px;
	color: var(--accent-color);
}
.sns__list{
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}
.sns__list li{
	width: 40px;
	transition: all .5s;
}
.profile__txt{
	font-size: 14px;
	color: var(--accent-color);
	margin-bottom: 16px;
}
.profile__more{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.profile__more>div{
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.profile__more dt{
	font-size: 12px;
	color: var(--accent-color);
}
.profile__more dd{
	color: var(--primary-color);
	font-weight: bold;
}
.info__list--item h3{
	text-align: center;
	font-weight: bold;
	color: var(--accent-color);
	font-size: 18px;
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}
.img-liveKV{
	margin-bottom: 16px;
}
.concert__detail{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--accent-color);
	font-size: 14px;
}
.concert__detail .txt01{font-weight: bold;}
.link-btn{
	display: block;
	padding: 8px;
	font-size: 14px;
	font-weight: bold;
	color: var(--info-color);
	background-color: #EBF9F9;
	border: 3px solid var(--info-color);
	border-radius: 12px;
	text-align: center;
	width: 280px;
	margin: 0 auto;
}
.release__detail{
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--accent-color);
}
.img-CDJK{
	width: 64%;
	max-width: 300px;
	margin: 0 auto;
}
.release__title{margin-bottom: 16px;}
.release__name,.release__date{
	text-align: center;
	font-weight: bold;
}
.release__name{
	margin-bottom: 6px;
}
.release__date{
	font-size: 14px;
}
.release__txt{
	font-size: 14px;
}
.official-link-btn{
	width: 242px;
	margin: 0 auto;
	transition: all .5s;
}
.official-link-btn__block p{
	color: #fff;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.info__warp{
		padding: 40px 0 108px;
	}
	#info .sec__head--sub {width: 233px;}
	.info__list {
    gap: 32px;
    margin-bottom: 32px;
}
	.info__list--item {padding: 48px 100px;}
	.sns__list li:hover{
		transform: translateY(3px);
	}
	.profile__name {font-size: 22px;}
	.profile__more {
    flex-direction: row;
    gap: 40px;
	}
	.profile__more>div{
		flex-direction: row;
		gap: 12px;
		align-items: center;
	}
	.profile__more dt {font-size: 15px;}
	.profile__more dd {font-size: 18px;}
	
	.info__list--item h3 {font-size: 22px;}
	.concert__detail {
    margin-bottom: 24px;
    font-size: 16px;}
		.concert__detail .txt01{
			font-size: 17px;
		}
		.link-btn {
			font-size: 16px;
			width: 310px;
			transition: all .5s;
	}
	.link-btn:hover {
		background-color: var(--info-color);
		color: #fff;
}
	.release__detail{
		flex-direction: row;
		margin-bottom: 32px;
		gap: 24px;
	}
	.official-link-btn {width: 310px;}
	.official-link-btn:hover{
		transform: translateY(3px);
	}
}


/* ----------------------------------------------------------
#
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}


/* ------------------------------------------------------------
bottom
------------------------------------------------------------ */
.bottom__wrap{background-color: #fff;}
.oshitabi_btn--block{padding: 40px 30px;}
.oshitabi_btn{
	display: block;
	border: 3px solid #000000;
	color: #000000;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	position: relative;
}
.oshitabi_btn::after{
	content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 16px;
  top: 50%;
}

/* PC用設定 */
@media screen and (min-width:751px) { 
	.oshitabi_btn--block{
		max-width: 640px;
		margin: 0 auto;
	}
	.oshitabi_btn{
		transition: all .3s;
		width: 360px;
		margin: 32px auto;
	}
	.oshitabi_btn:hover{
		background-color: #000000;
		color: #fff;
	}
	.oshitabi_btn:hover:after{
		border-top: 2px solid #fff;
  	border-right: 2px solid #fff;
	}
}

/* ------------------------------------------------------------
topへ戻るボタン
------------------------------------------------------------ */
.pagetop-btn{
  position: fixed;
  bottom: 20px;
  right: 10px;
  transition: .3s;
	width: 56px;
  z-index: 99;
  opacity: 0;/*デフォルトで非表示にする*/
}

/*このクラスが付与されると表示する*/
.pagetop-btn.active{opacity: 1;}

/*このクラスが付与されると表示する*/
.pagetop-btn.absolute{
  position: absolute;
  top: -70px;
  bottom: auto;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.pagetop-btn{
		right: 24px;
	}
}

/* ------------------------------------------------------------
終了措置
SP
<a href="#" target="_blank" class="voice-btn inactive">
		<img src="img/btn_voice.png" alt="" width="345" height="">
		<p class="event-end event-end-block">終了しました</p>
</a>

PC
<div class="voice-btn__img">
		<img src="img/100x100.png" alt="二次元コード" width="100" height="100">
		<p class="event-end event-end-block">終了しました</p>
</div>
------------------------------------------------------------ */
.inactive{pointer-events: none;}
.event-end{
	color: var(--red-color);
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid var(--red-color);
	padding: 6px;
}
.event-end-block{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 70%;
	display: flex;
	align-items: center;
  justify-content: center;
}
.cs{
	color: #fff;
	background-color: rgb(57, 191, 192, 0.7);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border-radius: 40px;
}
.cs.event-end-block{
	width: 100%;
	height: 100%;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.event-end.event-end-block{
		width: 75%;
		height: 75%;
	}
}


/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードアップ(初期値) */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(5px); 
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードアップ(スクロールした後) */
.js__fadeUp.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); 
	/* transition-delay: .8s; */ /* フェード開始を0.3秒遅らせる */
}


/* ズームin(初期値) */
.js__zoomIn{
	opacity: 0; /* 最初は非表示 */
	transform: scale(0.85,0.85);
	transition: 1.2s ease;
}
/* ズームin(スクロールした後) */
.js__zoomIn.is-inview {
	opacity: 1;
	transform: scale(1,1);
}

/* スライドインレフト(初期値) */
.js__slideInLeft{
	opacity: 0; /* 最初は非表示 */
	transform: translateX(-30px); 
	transition: opacity .8s, transform 1s; /* 透過率と縦方向の移動を 秒 */
}
/* スライドインレフト(スクロールした後) */
.js__slideInLeft.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateX(0); 
	transition-delay: .3s; /* フェード開始を0.3秒遅らせる */
}

/* スライドインライト(初期値) */
.js__slideInRight{
	opacity: 0; /* 最初は非表示 */
	transform: translateX(30px); 
	transition: opacity .8s, transform 1s; /* 透過率と縦方向の移動を 秒 */
}
/* スライドインライト(スクロールした後) */
.js__slideInRight.is-inview {
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateX(0); 
	transition-delay: .3s; /* フェード開始を0.3秒遅らせる */
}


.js__flipLeft{
	opacity: 0;
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__flipLeft.is-inview {
	animation-name: flipLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	perspective-origin: left center;
	opacity: 0;
	transition-delay: 0.8s;
	animation-delay: 0.3s;
}
@keyframes flipLeftAnime{
	from {
	 transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
	opacity: 0;
	}

	to {
	transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
	opacity: 1;
	}
}

