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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #FFF;
	--sub-text-color:#000;
	--text-link: #F0CD69;
	--primary-color: #86BA8F;
	--secondary-color: #F7EFC3;
	--accent-color: #F0CD69;
	--accent-color02: #7f0000;
	--red-color: #DE0921;
	--bg-color: #3F3F3F;
	--cont-bg-color: #111;
	--info-bg-color: #F0F0F0;
	--border-color: #DCE1E9;
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #86BA8F; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
	--font-abril: "Abril Fatface", serif;
	--font-gsf: "Google Sans Flex", 'Noto Sans JP', sans-serif;
	--font-oswald: Oswald, 'Noto Sans JP', sans-serif;
}
/* 背景固定 */
/* body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(../img/bg.png) no-repeat center center;
	background-size: cover;
} */

.main__wrap{
	padding-top: 66px;
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family:'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	position: relative;
}
.main__inner {
	background: url(../img/main_bg.png) center top / 200px repeat var(--bg-color);
	border-radius: 32px 32px 0 0;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: calc(100vw - 40px);
	margin: 0 auto;
	max-width: 498px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-white{color: #FFF;}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight:bold;
}
.fc-primary{color: var(--primary-color);}

.txt-note{font-size: 12px; line-height: 1.4;}
.txt-note.fz-s {font-size: 10px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
	line-height: 1.4;
}
.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;}
.fw500 {font-weight: 500;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.credit{
	font-size: 10px;
	padding-top: 8px;
	text-align: center;
	background-color: #FFF;
}

.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}

/* PC用設定 */
@media screen and (min-width:751px) {
	:root {
    --scale-factor: 1.15; /* 1.15倍に */
	}
	a img{transition: all 0.5s;}
	.main__wrap{padding-top: 90px;
	background-color: #313A33;}
	.pc_center {text-align: center;}
	.main__inner {
	border-radius: 32px 32px 0 0;
}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.js__fadeIn{
	opacity: 0; /* 最初は非表示 */
	transition: opacity .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/* フェードアップ */
.js__fadeUp{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
	transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}


/* animationフェードダウン */
.js__fadeDown{
	opacity: 0; /* 最初は非表示 */
	transition: opacity 1s, transform 1s; /* 透過率と縦方向の移動を0.8秒 */
}
.js__fadeDown.is-inview {
	animation-name:fadeInDown;
	animation-duration: 1.3s;
	animation-fill-mode: both;
	opacity: 1;
}

@keyframes fadeInDown {
	from {
			opacity:0;
			transform:translate3d(0, -8%, 0);
	}
	to {
			opacity:1;
			transform:none;
	}
}

/* ブラー*/
.js__blurAnime{opacity: 0; /* 最初は非表示 */}
.js__blurAnime.is-inview{
	animation-name: blurAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes blurAnime{
	from {
		filter: blur(10px);
		opacity: 0;
	}

	to {
		filter: blur(0);
		opacity: 1;
	}
}

/* flipLeft */
.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;
	}
}

/* スライド（左から右） */
.js__slide{
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: all .8s;
}
.js__slide.is-inview{
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_left_to_right {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}
	100% {
			clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/* スライド（左上から右下） */
.js__diagonal {
  /* 初期状態：左上の1点に集約 */
	clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	transition: all .8s;
}

.js__diagonal.is-inview {
	animation-name: anime_diagonal_wipe;
	animation-fill-mode: forwards;
	animation-duration: 1.2s;
	animation-timing-function: ease;
}

@keyframes anime_diagonal_wipe {
	0% {
    /* 左上の外側に隠れている状態（三角形） */
    clip-path: polygon(0% 0%, 0% 0%, 0% 0%, 0% 0%);
	}
/* 50% {
    clip-path: polygon(0% 0%, 60% 0%, 0% 100%, 0% 0%);
  } */
	100% {
    /* 右下の外側まで突き抜けることで、角が埋まる違和感を消す */
    /* 200%まで飛ばすのがポイントです */
    clip-path: polygon(0% 0%, 160% 0%, 0% 300%, 0% 0%);
	}
}

/* box */
.js__box {
	transform: rotateY(90deg);
	opacity: 0;
	transition: all .8s;
}
.js__box.is-inview {
	opacity: 1;
	transform: rotateY(0);
}

/* アンカーリンク */
.menu__list li{
	opacity: 0; /* 最初は非表示 */
	transform: translateY(15px); /* 下にXXpxの位置から */
}
.menu__list li:nth-child(1) {transition: opacity .8s 0s, transform .8s 0s;}
.menu__list li:nth-child(2) {transition: opacity .8s .2s, transform .8s .2s;}
.menu__list li:nth-child(3) {transition: opacity .8s .4s, transform .8s .4s;}
.menu__list li:nth-child(4) {transition: opacity .8s .6s, transform .8s .6s;}
.menu__list li:nth-child(5) {transition: opacity .8s .8s, transform .8s .8s;}
.menu__list.is-inview li {
	opacity: 1;
	transform: translateY(0);
}

/* 見出し */
.head__dots li {transform: scale(0);}
.head__dots li:nth-child(1) {transition: transform .4s 0s;}
.head__dots li:nth-child(2) {transition: transform .4s .2s;}
.head__dots li:nth-child(3) {transition: transform .4s .4s;}
.box01 .head__dots li:nth-child(1) {transition: transform .4s .2s;}
.box01 .head__dots li:nth-child(2) {transition: transform .4s .0s;}
.box01 .head__dots li:nth-child(3) {transition: transform .4s .2s;}

.menu__head__text {
	transform: scaleX(0);
	transition: transform .4s .4s;
}
.sec__head__subtext {
	transform: scaleX(0);
	transition: transform .4s .4s;
}
.sec__head__title {
	transform: scaleX(0);
	transition: transform .4s .6s;
}
.menu__head.is-inview .head__dots li {transform: scale(1);}
.menu__head.is-inview .menu__head__text {transform: scale(1);}
.sec__head.is-inview .head__dots li {transform: scale(1);}
.sec__head.is-inview .sec__head__subtext {transform: scale(1);}
.sec__head.is-inview .sec__head__title {transform: scale(1);}



.is-transition-delayed01{transition-delay: .4s;}
.is-transition-delayed02 {transition-delay: .6s;}
.is-transition-delayed03 {transition-delay: .8s;}
.is-animation-delayed {animation-delay: .4s;}


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__body {
	margin-top: 12px;
	color: var(--text-color);
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	padding: 6px 24px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__btn_text {
	font-weight: bold;
	color: var(--btn-text-color);
}
.acc__btn_plus {
	background-color: var(--btn-text-color);
	height: 16px;
	width: 16px;
	border-radius: 100%;
	position: relative;
}
.acc__btn_plus::before,
.acc__btn_plus::after {
	content: "";
	background-color: var(--btn-base-color);
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc__btn_plus::after {	transform: translate(-50%,-50%);}
.acc__btn_plus::before {transform: translate(-50%,-50%) rotate(90deg);}
.acc__btn.open .acc__btn_plus::before {transform: translate(-50%,-50%);}

.acc__btn02 {
	width: 100%;
	border-radius: 0;
	position: relative;
}
.acc__btn02 .acc__btn_plus {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
}
.acc__btn02 + .acc__body {
	margin-top: 10px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
}


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{
	display: flex;
	max-width: 295px;
	margin: 0 auto;
	position: relative;
	background-color: var(--accent-color);
	border-radius: 64px;
	padding: 8px 0;
	height: 74px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 0 0 var(--red-color);
	transition: all .3s;
}
.voice-btn .voice-btn__text {
	font-weight: 900;
	color: var(--sub-text-color);
	text-align: center;
}
.voice-btn::after {
	content: "";
	position: absolute;
	top: 25px;
	right: 16px;
	width: 24px;
	height: 24px;
	border: 1px solid #000;
	border-radius: 100%;
	background: url(../img/btn_arrow.svg) center / contain no-repeat;
	transition: all .5s;
	z-index: 1;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		background-color: var(--accent-color);
		box-shadow: 0 4px 0 0 var(--red-color);
		border-radius: 16px;
		padding: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.voice-btn__txt{
		color: var(--sub-text-color);
		padding-right: 16px;
	}
	.voice-btn__txt .txt01{
		font-weight: bold;
		font-size: 16px;
		margin-bottom: 8px;
	}
	.voice-btn__txt .txt02{
		font-weight: 500;
		font-size: 12px;
	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
	a.voice-btn:hover{
	box-shadow: 0 0 0 0 var(--red-color);
	transform: translateY(4px);
}
}

/* サイズをかえる書き方 */
.SD01 {
	width: calc(81px * var(--scale-factor));
}

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
h1 {
	width: 78.67%;
    margin: 0 auto;
	padding-top: 16px;
	padding-bottom: 10px;
	max-width: 350px;
}
.mv__date__wrap {
	border-top: 1px solid var(--text-color);
	border-bottom: 1px solid var(--text-color);
	padding: 12px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 24px auto 0;
}
.mv__date__wrap p {
	font-family: var(--font-abril);
	letter-spacing: .05em;
	font-size: 16px;
	line-height: 16px;
}
.mv__date__wrap p span {
	font-size: 24px;
	line-height: 16px;
}
.mv__img {
	width: 100%;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	h1 {
		padding: 16px 0;
	}
.mv__date__wrap {
	padding: 14px 0 16px;
}
.mv__date__wrap p {
	font-size: 18px;
	line-height: 18px;
}
.mv__date__wrap p span {
	font-size: 26px;
	line-height: 18px;
}

}

/* ------------------------------------------------------------
#intro
------------------------------------------------------------ */
/* PC用設定 */
@media screen and (min-width:751px) { 
	
}
/* ------------------------------------------------------------
box
head
------------------------------------------------------------ */
.box01 {
	border: 2px solid var(--secondary-color);
	background: var(--cont-bg-color);
	border-radius: 32px;
	padding: 32px 5.1vw 40px;
}
.box01r,
.box02r {
	border-radius: 300px;
	padding: 9vw 5.1vw 28.5vw;
}
.box01r {
	border: 2px solid var(--secondary-color);
	background: var(--cont-bg-color);
}
.box02r {
	border: 2px solid var(--primary-color);
	background: var(--info-bg-color);
}
.head__dots {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
}
.box01 .head__dots {
	flex-direction: row;
	padding-bottom: 16px;
}
.box01r .head__dots,
.box02r .head__dots {
	flex-direction: column;
	padding-bottom: 12px;
}
.head__dots li {
	border-radius: 100%;
	width: 6px;
	height: 6px;
}
.head__dots li:nth-child(2) {
	width: 10px;
	height: 10px;
}
.head__dots li {
	background-color: var(--primary-color);
}
.sec__wrap {
	padding-top: 24px;
	padding-bottom: 24px;
}
.sec__head {
	color: var(--primary-color);
}
.sec__head__subtext {
	font-size: 15px;
	font-weight: 700;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.05em;
}
.sec__head__title {
	font-size: 38px;
	line-height: 1;
	text-align: center;
	font-family: var(--font-abril);
}
.sec__head__subtext + .sec__head__title {
	margin-top: 6px;
}
.sec__date {
	background-color: var(--border-color);
	border-radius: 40px;
	padding: 8px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	color: var(--sub-text-color);
	margin: 24px auto 0;
}
.sec__date__title {
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.05em;
	line-height: 16px;
}
.sec__date__date {
	font-family: var(--font-gsf);
	font-weight: 700;
	line-height: 16px;
}
.sec__date__date span {
	font-size: 18px;
	line-height: 16px;
}
.sec__date__cs {
	font-family: var(--font-abril);
	font-size: 20px;
	line-height: 16px;
}
.sec__intro__text {
	font-weight: 500;
	text-align: center;
	line-height: 1.7;
}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.box01 {
	border-radius: 48px;
	padding: 50px 56px 56px;
}
	.box01r,
	.box02r {
	border-radius: 300px;
	padding: 50px 56px 160px;
}
	.box01 .head__dots {
	padding-bottom: 20px;
}
.box01r .head__dots,
.box02r .head__dots {
	padding-bottom: 16px;
}
	.sec__wrap {
	padding-top: 32px;
	padding-bottom: 32px;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding-top: 24px;
	padding-bottom: 24px;
}
#Menu .head__dots li {
	background-color: var(--secondary-color);
}
.menu__head__text {
	font-family: var(--font-abril);
	color: var(--secondary-color);
	text-align: center;
	font-size: 24px;
	line-height: 16px;
}
.menu__list{
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	width: 100%;
    margin: 32px auto 0;
	max-width: 287px;
}
.menu__list li{
	width: 100%;
}
.menu__list li a {
	background-color: var(--secondary-color);
	border-radius: 8px;
	height: 55px;
	display: flex;
	flex-direction: column;
	align-self: stretch;
	align-items: center;
	justify-content: center;
	position: relative;
}
.menu__list li a::after {
	content: "";
	position: absolute;
	top: 15px;
	right: 8px;
	width: 24px;
	height: 24px;
	border: 1px solid #000;
	border-radius: 100%;
	background: url(../img/anc_arrow01.svg) center / contain no-repeat;
	transition: all .5s;
}
.anc__subtext {
	font-size: 13px;
	font-weight: 700;
}
.anc__title {
	font-family: var(--font-gsf);
	font-weight: 700;
	font-size: 18px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__wrap {
	padding-top: 40px;
	padding-bottom: 40px;
}
.menu__head__text {
	font-size: 28px;
	line-height: 1;
}
.menu__list {
	gap: 12px;
}
	.menu__list li a{
		transition: all .5s;
	}
	.menu__list li a:hover {
		color: var(--secondary-color);
		background-color: var(--bg-color);
}
	.menu__list li a:hover::after {
	border: 1px solid var(--secondary-color);
	background: url(../img/anc_arrow02.svg) center / contain no-repeat;
}
}

/* ------------------------------------------------------------
#movie
------------------------------------------------------------ */
.schedule__box {
	background-color: #FFF;
	padding: 16px;
}
.schedule__head {
	font-size: 18px;
	font-family: var(--font-abril);
	text-align: center;
	color: var(--primary-color);
	line-height: 24px;
	padding-bottom: 10px;
}
.schedule__dl {
	display: flex;
	justify-content: flex-start;
	align-items: baseline;
	gap: 2px;
	padding-bottom: 2px;
}
.schedule__dl + .schedule__dl {
	border-top: 1px solid var(--border-color);
	padding-top: 2px;
}
.schedule__dl dt {
	color: var(--primary-color);
	font-family: var(--font-abril);
	width: 24px;
	font-size: 18px;
}
.schedule__dl dd {
	font-family: var(--font-gsf);
	font-weight: 500;
	line-height: 1;
	color: var(--sub-text-color);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.schedule__head {
		font-size: 20px;
	}
	.schedule__dl + .schedule__dl {
	padding-top: 4px;
}
	.schedule__dl dt {
		font-size: 20px;
		width: 30px;
	}
	.schedule__dl dd {
	font-size: 16px;
}
}

/* ------------------------------------------------------------
step__list
------------------------------------------------------------ */
.step__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}
.step__list__item {
	display: flex;
}
.step__list__num {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 0 0 8px;
	background-color: var(--border-color);
	font-weight: 700;
	font-size: 16px;
	font-family: var(--font-gsf);
	color: var(--sub-text-color);
	width: 30px;
}
.step__list__body {
	padding: 4px 8px;
	border-radius: 0 8px 8px 0;
	background-color: #FFF;
	font-weight: 500;
	width: calc(100% - 30px);
	color: var(--sub-text-color);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
#present
------------------------------------------------------------ */
.js__tab01-panel {display: none;}
.js__tab01-panel.active {display: block;}
.js__tab02-panel {display: none;}
.js__tab02-panel.active {display: block;}
.tab__panel {
	margin-top: 40px;
}

.tab__btn__list {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-self: stretch;
	border-bottom: 1px solid var(--primary-color);
	padding: 0 8px;
	height: 48px;
}
.tab__btn {
	width: 50%;
	border-radius: 4px 4px 0 0;
	border: 1px solid var(--primary-color);
	border-width: 1px 1px 0 1px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-weight: 700;
	transition: all .3s;
	cursor: pointer;
}
.tab__btn.active {
	color: #FFF;
	background-color: var(--primary-color);
}
.cont__head__wrap {
	text-align: center;
	position: relative;
	padding-bottom: 8px;
	max-width: 290px;
    margin: 0 auto;
}
.cont__wrap {
	padding-top: 16px;
}
.cont__wrap + .cont__wrap {
	margin-top: 24px;
}
.cont__head__wrap::after {
	position: absolute;
	left: calc(50% - 40px);
	bottom: 0;
	content: "";
	width: 80px;
	height: 1px;
	background-color: var(--secondary-color);
}
.cont__head__dash path {
	stroke: var(--secondary-color);
}
.cont__head__title {
	color: var(--secondary-color, #D7E1BD);
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	position: relative;
	letter-spacing: 0.05em;
}
.cont__head__title.mgt-12 {
	margin-top: -12px;
}
.cont__head__wpn {
	background-color: var(--accent-color02);
	color: var(--text-color);
	font-weight: bold;
	padding: 3px 4px;
	line-height: 14px;
	font-size: 12px;
	width: fit-content;
	position: absolute;
	top: 8px;
    right: 24px;
	transform: rotate(10deg);
}
.cont__head__wpn span {
	font-size: 15px;
	line-height: 14px;
}
.cont__head__sub_title {
	position: relative;
    width: fit-content;
    padding: 2px 8px;
    margin: 0 auto 8px;
}
.cont__head__sub_title::after {
	background-color: var(--accent-color02);
    transform: skewX(-15deg);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.cont__head__sub_title p {
	font-size: 14px;
    font-weight: 900;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}
.cont__head__num {
	font-family: var(--font-abril);
	font-size: 24px;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.05em;
	color: var(--secondary-color);
	background: url(../img/cont_head_clb.svg) 49% top / 90px no-repeat;
	padding: 25px 25px 0;
}
.cont__head__num span {
	font-size: 28px;
	line-height: 24px;
}
.cont__date {
	padding: 8px 0 7px;
    border-bottom: 1px solid var(--text-color);
    border-top: 1px solid var(--text-color);
    font-weight: 700;
    font-family: var(--font-gsf);
    line-height: 1;
    text-align: center;
    margin-top: 24px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.cont__date__text {
	line-height: 1;
	font-size: .8em;
}
.img01__wrap {
	max-width: 330px;
	margin: 24px auto 0;
}
.img02__wrap {
	margin: 24px auto 0;
	position: relative;
}
.img02__wpn {
	border-radius: 100%;
	width: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: 0;
	right: 0;
}
.img02__wpn p {
	line-height: 1;
}
.img02__wpn span {
	font-size: 18px;
	font-weight: 700;
}
.img02__wrap img {
	width: 90%;
	margin: 0 auto;
}
.present__coming_soon {
	font-size: 32px;
    color: rgba(255,255,255,.9);
    font-family: var(--font-gsf);
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
	gap: 8px;
    font-weight: bold;
}
.present__coming_soon::before,
.present__coming_soon::after {
	content: "";
	width: .5em;
	height: 2px;
	background-color: rgba(255,255,255,.9);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cont__date {
		font-size: 16px;
	}
	.tab__btn:hover {
		margin-top: -6px;
	}
}

/* ------------------------------------------------------------
#collaboration
------------------------------------------------------------ */
#collaboration .tab__btn__list {
	height: 60px;
	margin-top: 40px;
	gap: 8px;
}
#collaboration .tab__btn {
	padding-top: 18px;
	position: relative;
}
.clb__anc__num {
	font-family: var(--font-abril);
	font-size: 14px;
	width: 42px;
	text-align: center;
	position: absolute;
	top: 4%;
	font-weight: 400;
}
.clb__anc__text {
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	line-height: 1.25;
}

/*-------- No.2 ボイスラリー --------*/
.map__head {
	border: 1px solid var(--border-color, #DCE1E9);
	padding: 4px 16px;
	width: fit-content;
	margin: 0 auto;
	font-weight: 700;
	line-height: 1.2;
}
.map_img__wrap {
	margin-top: 8px;
	overflow-x: scroll;
}
.map_img__inner {
	width: 632px;
}
.rally__intro__box {
	background-color: var(--secondary-color);
	border-radius: 16px;
	padding: 12px;
	position: relative;
}
.rally__intro__text {
	color: var(--sub-text-color);
	text-align: center;
	font-weight: 900;
	font-size: 14px;
	line-height: 1.7;
}
.rally__intro__box span {
	font-size: 16px;
	color: var(--red-color);
}
.rally__intro__wpn {
	position: absolute;
	background-color: var(--accent-color02);
	color: #FFF;
	font-weight: bold;
	width: fit-content;
	transform: rotate(-10deg);
	top: -12px;
	left: 0;
	padding: 2px 8px;
}
.rally__intro__dl {
	display: flex;
    flex-wrap: wrap;
    color: var(--sub-text-color);
    align-items: center;
    justify-content: center;
    gap: 6px 6px;
    margin: 8px auto 0;
    width: 180px;
}
.rally__intro__dl dt {
	width: calc(18px + 2em);
    border: 1px solid var(--sub-text-color);
    border-radius: 30px;
    padding: 2px 8px 3px;
    font-size: 11px;
    line-height: 1;
    background-color: var(--sub-text-color);
    color: var(--secondary-color);
    font-weight: 500;
}
.rally__intro__dl dd {
	width: calc(100% - (18px + 2em) - 6px);
    font-size: 12px;
    font-weight: 500;
}
.rally_present__wrap {
	background: rgba(220, 224, 231, 0.30);
	border-radius: 8px;
	display: flex;
	padding: 24px 16px;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	align-items: stretch;
}
.rally_present__head {
	font-size: 18px;
	font-weight: 900;
	text-align: center;
	color: var(--text-color);
}
.rally_item__box {
	padding: 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	gap: 12px;
	color: var(--sub-text-color);
}
.rally_item__head {
	background-color: var(--primary-color);
	overflow: hidden;
	height: 21px;
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.rally_item__head p {
	color: var(--text-color);
	font-family: var(--font-gsf);
	transform: skewX(-10deg);
	font-weight: 700;
	line-height: 21px;
	font-size: 30px;
	margin-top: 5px;
}
.rally_item__head p span {
	font-size: 16px;
	font-weight: 400;
}
.rally_item__head_plus {
	font-weight: 900;
	color: var(--text-color);
}
.rally_item__flex {
	display: flex;
	gap: 10px;
	width: 100%;
}
.rally_item__img {
	display: flex;
	align-items: center;
    justify-content: center;
}
.rally_item__img.img01 {
	width: 64px;
}
.rally_item__img.img02 {
	width: 80px;
}
.rally_item__img.img03 {
	width: 80px;
}
.rally_item__img.img01 img {
	width: 46px;
	transform: rotate(-10deg);
}
.rally_item__img.img03 img {
	width: 64px;
}
.rally_item__body {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: center;
	flex: 1;
	justify-content: center;
}
.rally_item__wpn {
	color: var(--text-color);
	font-weight: 700;
	width: fit-content;
	background-color: var(--accent-color02);
	border-radius: 30px;
	font-size: 12px;
	padding: 0 12px 1px;
}
.rally_item__sub_text {
	font-weight: 500;
	font-size: 12px;
}
.rally_item__title {
	font-weight: 700;
}
.rally_item__title span {
	font-size: 12px;
}
.rally_item__title_L {
	font-size: 16px;
}
.rally_item__text {
	font-weight: 900;
	color: var(--primary-color);
	font-size: 12px;
}
.rally_item__border {
	height: 1px;
	background-color: var(--border-color);
	width: 100%;
}
.rally_item__inner_box {
	border: 1px solid var(--border-color);
	padding: 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	background-color: var(--text-color);
}
.rally_item__inner_box__head{
	font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}
.rally_item__inner_box .txt-link{
	color: var(--accent-color02);
}
.rally_item__more {
	background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--sub-text-color);
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    line-height: 21px;
    padding: 4px 10px;
    border-radius: 28px;
    width: fit-content;
    margin: 0 auto 12px;
	position: relative;
}
.rally_item__more::after {
	content: "";
    height: 0;
    width: 0;
    border-top: 7px solid var(--secondary-color);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    bottom: -6px;
    left: calc(50% - 7px);
}
.rally_item__more__line line {
	stroke: var(--sub-text-color);
}
.rally_item__box .note__list {
	width: 100%;
}
.mgt-8 {
	margin-top: -8px;
}
/*-------- No.3 お買い物キャンペーン --------*/
.shop_cp__more {
	font-weight: 700;
	text-align: center;
	line-height: 1;
	width: fit-content;
	padding: 0 20px;
	margin: 16px auto 4px;
	position: relative;
}
.shop_cp__more::before{
	content: "";
	background: url(../img/shop_cp_more_l.svg) center / contain no-repeat;
	width: 13px;
    height: 15px;
    position: absolute;
    left: 0;
}
.shop_cp__more::after {
	content: "";
	background: url(../img/shop_cp_more_r.svg) center / contain no-repeat;
	width: 13px;
    height: 15px;
    position: absolute;
    right: 0;
}
.shop_cp__item + .shop_cp__item {
	margin-top: 32px;
}
.shop_cp__head {
	padding: 8px 0;
	border-radius: 8px 8px 0 0;
	background-color: var(--secondary-color);
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	text-align: center;
	color: var(--sub-text-color);
}
.shop_cp__text01 {
	margin-top: 8px;
	font-weight: 500;
	line-height: 21px;
}
.shop_cp__text01 span {
	font-weight: 700;
	color: var(--accent-color);
	font-size: 16px;
	line-height: 21px;
}

.receipt__box {
	padding: 16px;
	border-radius: 8px;
	border: 1px solid var(--text-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	align-self: stretch;
}
.receipt__head__sub_title {
	position: relative;
    width: fit-content;
    padding: 2px 12px;
    margin: 0 auto;
}
.receipt__head__sub_title::after {
	background-color: var(--accent-color02);
    transform: skewX(-15deg);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
}
.receipt__head__sub_title p {
	font-size: 14px;
    font-weight: 900;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}
.receipt__head__title {
	font-size: 18px;
	font-weight: 900;
	text-align: center;
	margin-top: 4px;
}
.receipt__text01 {
	color: var(--primary-color);
	font-weight: 700;
	text-align: center;
	margin-top: 4px;
}
.img06__wrap,
.img07__wrap,
.img08__wrap {
	position: relative;
}
.receipt__img__wpn {
	position: absolute;
	border-radius: 100%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	width: 48px;
	right: 0;
}
.img07__wrap .receipt__img__wpn,
.img08__wrap .receipt__img__wpn {
	top: 0;
}
.img06__wrap .receipt__img__wpn {
	top: -44px;
}
.receipt__img__wpn p {
	color: var(--text-color);
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
}
.receipt__img__wpn p span {
	font-size: 14px;
	line-height: 24px;
}
.receipt__title {
	font-weight: bold;
	color: var(--accent-color);
	font-size: 15px;
}
.receipt__shop__box {
	/* border: 1px solid var(--border-color); */
	padding: 12px 16px 16px;
	background-color: rgba(220, 224, 231, 0.30);
	border-radius: 8px;
}
.receipt__shop__head {
	font-weight: bold;
	text-align: center;
}
.receipt__shop__list {
	font-size: 12px;
}
.receipt__shop__list li + li {
	margin-top: 4px;
}

/*-------- 東京駅一番街公式サイト --------*/
.shop_cp__link {
	display: block;
	padding: 12px 32px;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	transition: all .3s;
	text-align: center;
	font-weight: 700;
	margin: 40px auto 0;
	width: calc(100% - 40px);
}
.shop_cp__contact {
	padding: 16px;
	border: 1px solid var(--border-color);
	width: calc(100% - 40px);
	margin: 24px auto 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-self: stretch;
}
.shop_cp__btn {
	display: block;
	padding: 12px 32px;
	border: 1px solid var(--accent-color);
	color: var(--accent-color);
	transition: all .3s;
	text-align: center;
	font-weight: 700;
	margin: 0 auto;
	width: 100%;
	max-width: 240px;
	border-radius: 40px;
}

/* PC用設定 */
@media screen and (min-width:751px) {
	.clb__list li a{
		transition: all .5s;
	}
	.clb__list li a:hover {
		color: var(--secondary-color);
		background-color: var(--bg-color);
}
	.clb__list li a:hover::after {
	border: 1px solid var(--secondary-color);
	background: url(../img/anc_arrow02.svg) center / contain no-repeat;
}
.img05__wrap {
	width: 90%;
    margin: 16px auto 0;
}
.rally_present__wrap {
	padding: 24px;
}
.rally_item__box {
	padding: 20px;
}
.receipt__box {
	padding: 24px;
}
.shop_cp__link:hover {
	background-color: var(--accent-color);
	color: var(--sub-text-color);
}
.shop_cp__btn:hover {
	background-color: var(--accent-color);
	color: var(--sub-text-color);
}
.img07__wrap .receipt__img__wpn,
.img08__wrap .receipt__img__wpn {
	top: -20px;
}
}


/* ------------------------------------------------------------
#promotion
------------------------------------------------------------ */
#promotion {
	padding-bottom: 48px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	#promotion {
	padding-bottom: 64px;
}
}


/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info__inner {
	border-radius: 32px 32px 0 0;
	background: url(../img/info_bg.png)  center top / 200px repeat, #020202;
	padding: 48px 0;
	color: var(--sub-text-color);
	transform: translateY(50px);
	opacity: 0;
	transition: all .3s;
}
.info__inner.is-inview {
	transform: translateY(0);
	opacity: 1;
}
.info__live__head {
	margin-top: 32px;
}
.info__live__list {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.info__live__place {
	font-family: var(--font-gsf);
	font-style: italic;
	font-weight: 900;
	font-size: 36px;
	text-align: center;
	line-height: 1;
	background: url(../img/info_bg.png) center top / 200px repeat;
  background-clip: text;/*画像を切り抜く指定*/
  -webkit-background-clip: text;/*画像の位置を決める　ベンダープレフィックスもいれておきます*/
  color: transparent;/*テキスト透過*/
  padding: 0 16px;
}
.info__live__date {
	font-family: var(--font-oswald);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	color: var(--bg-color);
}
.info__live__link {
	display: block;
	padding: 12px 32px;
	border: 1px solid var(--sub-text-color);
	background-color: var(--sub-text-color);
	transition: all .3s;
	margin: 24px auto 0;
	width: calc(100% - 40px);
	max-width: 232px;
}
.info__live__link p {
	color: var(--btn-text-color);
	transition: all .3s;
	text-align: center;
	font-weight: 900;
}
.info__link {
	display: block;
	padding: 12px 32px;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	transition: all .3s;
	margin: 0 auto;
	width: calc(100% - 40px);
	max-width: 232px;
}
.info__link p {
	color: var(--text-color);
	transition: all .3s;
	text-align: center;
	font-weight: 900;

}
p.info__link__gsf {
	font-family: var(--font-gsf);
	font-size: 20px;
	font-weight: 700;
	
}
.sec__head__title.profile__head {
	/* font-family: var(--font-abril);
	color: var(--primary-color);
	text-align: center; */
	font-size: 30px;
}
.profile__text__wrap {
	margin-top: 8px;
}
.profile__text__wrap p {
	font-weight: 500;
    font-size: 12px;
    line-height: 1.7;
}
.profile__acc_btn {
	color: var(--primary-color);
	font-family: var(--font-abril);
	border: 1px solid var(--primary-color);
	padding: 4px 12px 11px;
	text-align: center;
	width: fit-content;
	margin: 8px auto 0;
	cursor: pointer;
	position: relative;
}
.profile__acc_btn::after {
	position: absolute;
	bottom: 4px;
	left: calc(50% - 4px);
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid var(--primary-color);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
.profile__acc_btn.open {
	display: none;
}
.profile__acc_close {
	color: var(--primary-color);
	font-family: var(--font-abril);
	border: 1px solid var(--primary-color);
	padding: 10px 12px 4px;
	text-align: center;
	width: fit-content;
	margin: 8px auto 0;
	cursor: pointer;
	position: relative;
}
.profile__acc_close::after {
	position: absolute;
	top: 5px;
	left: calc(50% - 4px);
	content: "";
	width: 0;
	height: 0;
	border-bottom: 5px solid var(--primary-color);
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
}
/* PC用設定 */
@media screen and (min-width:751px) {

.info__inner {
	padding: 64px 0;
}
.info__live__link:hover {
	background-color: var(--bg-color);
}
.info__link:hover {
	background-color: var(--text-color);
}
.info__link:hover p {
	color: var(--primary-color);
}
}




/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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>
------------------------------------------------------------ */
a.inactive{pointer-events: none;
box-shadow: none;}
.cs{
	/* background-color: rgba(0, 0, 0, 0.7); */
	background-color: rgb(240, 205, 105, .9);
	border-radius: 40px;
	color: var(--text-color);
	font-family: var(--font-gsf);
	font-size: 18px;
	font-weight: 900;
	text-align: center;
	padding: 6px;
}
.voice-btn__pc .cs{
	background-color: rgba(255, 255, 255, 0.5);
}
.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: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
	color: var(--primary-color);
}
.voice-btn .cs.event-end-block{
	border-radius: 40px;
}
	/* .event-end.event-end-block{
		width: 75%;
		height: 75%;
	} */
}




/* ------------------------------------------------------------
アキ調整
------------------------------------------------------------ */


.mgbS{margin-bottom: 8px;}/* PC:8px */
.mgbM{margin-bottom: 16px;}/* PC:24px */
.mgbL{margin-bottom: 24px;}/* PC:32px */
.mgbLL{margin-bottom: 32px;}/* PC:40px */

.mgtSS{margin-top: 4px;}
.mgtS{margin-top: 8px;}/* PC:8px */
.mgtM{margin-top: 16px;}/* PC:24px */
.mgtL{margin-top: 24px;}/* PC:32px */
.mgtLL{margin-top: 32px;}/* PC:40px */

.pdtS{padding-top: 8px;}/* PC:8px */
.pdtM{padding-top: 16px;}/* PC:24px */
.pdtL{padding-top: 24px;}/* PC:32px */

.pdbS{padding-bottom: 8px;}/* PC:8px */
.pdbM{padding-bottom: 16px;}/* PC:24px */
.pdbL{padding-bottom: 24px;}/* PC:32px */

/* PC用設定 */
@media screen and (min-width:751px) {
	.mgbM{margin-bottom: 24px;}
	.mgbL{margin-bottom: 32px;}
	.mgbLL{margin-bottom: 40px;}

	.mgtM{margin-top: 24px;}
	.mgtL{margin-top: 32px;}
	.mgtLL{margin-top: 40px;}

	.pdtM{padding-top: 24px;}
	.pdtL{padding-top: 32px;}

	.pdbM{padding-bottom: 24px;}
	.pdbL{padding-bottom: 32px;}
}
