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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #444444;
	--sub-text-color:#CDD5D6;
	--text-link: #3584EC;
	--primary-color: #22CDC3;
	--secondary-color: #F0555A;
	--accent-color: #F0555A;
	--primary02-color: #10D7C6;
	--secondary02-color: #FF655A;
	--red-color: #EE0000;
	--bg-color: #FAFAFA;
	--bg02-color: rgb(0 0 0 / 0.8);
	--border-color: #aaaaaa;
	--grad-color:linear-gradient(90deg,#E24D01 0%,#F57710 100% );
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #555; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
	--font-openSans: "Open Sans", sans-serif;
}
.ft-openSans_C {
	font-family: "Open Sans";
	font-style: italic;
	font-weight: 700;
	font-variation-settings: "wdth" 75;
}
.ft-openSans_C span {
	font-size: 1.6em;
	line-height: 1;
}
/* 背景固定 */
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	/* background: url(../img/bg_01.png) center top / 337px auto repeat; */
	background: url(../img/bg_01.png) 0 0 / 375px 376px repeat;
	animation: bgMove 10s linear infinite;/* 背景を右上に流す */
}
@keyframes bgMove {
	0%{background-position: 0 0;}
	100%{background-position: -375px -376px;}
}

.main__wrap{
	padding-top: 66px;
	color: var(--text-color);
	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;
}
.main__wrap *{
	box-sizing: border-box;
	line-height: 1.4;
}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 700px;
}

/*------------------ 文字色 ------------------*/
.fc-red{color: var(--red-color);}
.fc-accent{color: var(--accent-color);}
.fc-primary{color: var(--primary-color);}
.fc-white{color: #FFF;}
.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight: bold;
}

/*------------------ 文字サイズ・注意書き ------------------*/
.fz-smaller{font-size: 0.8em;}
.fz-larger{font-size: 1.2em;}
.txt-note{font-size: 12px;}
.txt-note.fz-s {font-size: 10px;}
.note__list{
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.note__list li{
	font-size: 12px;
}
.indent li, .txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}

/*------------------ 段落 ------------------*/
.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: 32px;
	text-align: center;
	padding-bottom: 8px;
}

/* 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;}
	.pc_center {text-align: center;}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/*------------------ フェードイン ------------------*/
.js__fadeIn{
	opacity: 0;
	transition: opacity .8s;
}
.js__fadeIn.is-inview {
	opacity: 1;
}

/*------------------ フェードアップ ------------------*/
.js__fadeUp{
	opacity: 0;
	transform: translateY(15px);
	transition: opacity .8s, transform .8s;
}
.js__fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
}

/*------------------ ポップアップ ------------------*/
.js__popUp {
	opacity: 0;
	transform: scale(0);
	transition: transform .5s;
}
.js__popUp.is-inview {
	opacity: 1;
	transform: scale(1);
}

.js__popUp2 {
	opacity: 0;
	transform: scale(0);
	transition: transform cubic-bezier(0.7, 0.2, 0.5, 1.5) .5s;
}
.js__popUp2.is-inview {
	opacity: 1;
	transform: scale(1);
}

/*------------------ フェードダウン ------------------*/
.js__fadeDown{
	opacity: 0;
	transition: opacity 1s, transform 1s;
}
.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;
	}
}

/*------------------ フリップ ------------------*/
.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__slideUp{
	clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	transition: all .8s;
}
.js__slideUp.is-inview{
	animation-name: anime_bottom_to_top;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes anime_bottom_to_top {
	0% {
			clip-path: polygon(0% 100%, 100% 100%, 100% 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%);
	}
}

/*------------------ liを順番にフェードアップ ------------------*/
.js__listFadeUp li {
	opacity: 0;
	transform: translateY(5px);
}
.js__listFadeUp.is-inview li {
	animation-name: listFadeUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFadeUp li:nth-child(1) {animation-delay: 0s;}
.js__listFadeUp li:nth-child(2) {animation-delay: .2s;}
.js__listFadeUp li:nth-child(3) {animation-delay: .4s;}
.js__listFadeUp li:nth-child(4) {animation-delay: .6s;}
.js__listFadeUp li:nth-child(5) {animation-delay: .8s;}
.js__listFadeUp li:nth-child(6) {animation-delay: 1s;}
.js__listFadeUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listFadeUp li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listFadeUp {
	from {
	opacity: 0;
	transform: translateY(5px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

/*------------------ liを順番にフリップ ------------------*/
.js__listFlip li {
	opacity: 0;
	transform: rotateY(360deg);
}
.js__listFlip.is-inview li {
	animation-name: listFlip;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listFlip li:nth-child(1) {animation-delay: 0s;}
.js__listFlip li:nth-child(2) {animation-delay: .2s;}
.js__listFlip li:nth-child(3) {animation-delay: .4s;}
.js__listFlip li:nth-child(4) {animation-delay: .6s;}
.js__listFlip li:nth-child(5) {animation-delay: .8s;}
.js__listFlip li:nth-child(6) {animation-delay: 1s;}
.js__listFlip li:nth-child(7) {animation-delay: 1.2s;}
.js__listFlip li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listFlip {
	from {
	opacity: 0;
	transform: rotateY(360deg);
	}
	to {
	opacity: 1;
	transform: rotateY(0);
	}
}

/*------------------ liを順番にポップアップ ------------------*/
.js__listPopUp li {
	opacity: 0;
	transform: scale(0);
}
.js__listPopUp.is-inview li {
	animation-name: listPopUp;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listPopUp li:nth-child(1) {animation-delay: 0s;}
.js__listPopUp li:nth-child(2) {animation-delay: .2s;}
.js__listPopUp li:nth-child(3) {animation-delay: .4s;}
.js__listPopUp li:nth-child(4) {animation-delay: .6s;}
.js__listPopUp li:nth-child(5) {animation-delay: .8s;}
.js__listPopUp li:nth-child(6) {animation-delay: 1s;}
.js__listPopUp li:nth-child(7) {animation-delay: 1.2s;}
.js__listPopUp li:nth-child(8) {animation-delay: 1.4s;}

@keyframes listPopUp {
	from {
	opacity: 0;
	transform: scale(0);
	}
	to {
	opacity: 1;
	transform: scale(1);
	}
}

/*------------------ delay用クラス ------------------*/

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


/* ------------------------------------------------------------
アコーディオン
------------------------------------------------------------ */
.js__acc-body {
	display: none;
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 16px;
	cursor: pointer;
	transition: all 0.3s;
	position: relative;
}
.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__block01） ---------------*/
.acc__block01 .acc__body {
	margin-top: 8px;
	color: var(--text-color);
}
.acc__block01 .acc__btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	border-radius: 20px;
}
/*--------------- 幅広ボタン（.acc__block02） ---------------*/
.acc__block02 .acc__btn {
	background-color: var(--btn-base-color);
}
.acc__block02 .acc__btn_plus {
	position: absolute;
	right: 8px;
}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
.voice-btn__block {
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.10));
	}
.voice-btn{position: relative;}

/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		/* background: url(../img/) center / cover no-repeat var(--primary-color); */
		background: linear-gradient(148deg, #DDFFFA 45%, #FFFFE1 95%);
		border: 1px solid var(--primary-color);
		border-radius: 16px;
		padding: 16px;
	}
	.voice-btn__flex{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
	}
	.voice-btn__txt01{
		font-weight: bold;
		font-size: 16px;
		margin-bottom: 8px;
		color: var(--text-color);
	}
	.voice-btn__txt02 {
		font-size: 13px;
		color: var(--text-color);

	}
	.voice-btn__img {
		background-color: #fff;
		width: 100px;
		height: 100px;
		box-sizing: border-box;
		flex-shrink: 0;
		position: relative;
	}
}

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

/* ------------------------------------------------------------
#mv
------------------------------------------------------------ */
.mv__block {
	background: url(../img/mv_bg.svg) center bottom / 165px 60px repeat-x,
	linear-gradient(148deg, #DDFFFA 45%, #FFFFE1 95%);
	padding: 0 0 32px;
	overflow-x: clip;
}
.mv__inner {
	max-width: 750px;
	margin: 0 auto;
}
.mv__date {
	padding: 4px 0;
	border-top: 1px solid var(--primary02-color);
	border-bottom:  1px solid var(--primary02-color);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 10%, #FFF 90%, rgba(255, 255, 255, 0) 100%);
	margin: 12px auto 0;
	width: 92%;
	max-width: 400px;
}
.mv__date p.ft-openSans_C {
	color: var(--primary-color);
	text-align: center;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.03em;
}
h1 {
	position: relative;
	z-index: 50;
	max-width: 460px;
	margin: 16px auto 0;
	/* margin: -15vw auto 0; */
}
	.mv__pic {
	background-color: #fff;
	padding: 1%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
	.mv__inner {
	padding-top: 8px;
	width: 98%;
}
.mv__pic {
	transform: rotate(4deg) translateY(-30px);
	opacity: 0;
	transition: all 1s;
}
.mv__block.is-inview .mv__pic {
	transform: rotate(1deg);
	opacity: 1;
}
h1 {
	transform: translateY(15px);
	opacity: 0;
	transition: all .8s ease .3s;
}
.mv__block.is-inview h1 {
	transform: translate(0,0);
	opacity: 1;
}
.mv__date {
	transform: translateY(15px);
	opacity: 0;
	transition: all .8s ease .5s;
}
.mv__block.is-inview .mv__date {
	transform: translate(0,0);
	opacity: 1;
}

/* .layer_splide {
	max-width: 640px;
	margin: 0 auto;
	width: 86%;
}
.layer_splide .splide__list {
	padding-top: 78% !important;
}
.layer_splide.splide--fade .splide__slide {
	opacity: 1 !important;
	transition: transform 1s cubic-bezier(0, 0, 0, 0.99), z-index 0s !important;
	position: absolute;
	top: 0;
	background-color: #fff;
	padding: 1.5%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.layer_splide .splide__slide:nth-child(1) { transform: rotate(-10deg) scale(0.95) translate(-10px, 10px) !important; }
.layer_splide .splide__slide:nth-child(2) { transform: rotate(8deg) scale(0.95) translate(13px, -5px) !important; }
.layer_splide .splide__slide:nth-child(3) { transform: rotate(-7deg) scale(0.95) translate(-8px, -8px) !important; }

.layer_splide.splide--fade .splide__slide.is-active {
	transform: rotate(0deg) scale(1) translate(0, 0) !important;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
	z-index: 10 !important;
}
.layer_splide .splide__track {
	overflow: initial;
}

.layer_splide .splide__arrows {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
}
.layer_splide .splide__arrow {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: all .3s;
} */

/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__date p.ft-openSans_C {
		font-size: 20px;
	}

	.mv__block {
		background: url(../img/mv_bg.svg) center bottom / 330px auto repeat-x,
		linear-gradient(148deg, #DDFFFA 45%, #FFFFE1 95%);
	}
	.mv__inner {
	padding-top: 16px;
}
h1 {
	margin-top: -80px;
}
}

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

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */
.menu__wrap {
	padding: 24px 0 32px;
}
.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	max-width: 400px;
	margin: 0 auto;
}
.menu__list li{
	width: calc( ( 100% - 10px ) / 2 );
}
.menu__list a {
	display: block;
	filter: drop-shadow(0 4px 6px rgba(99, 205, 240, 0.15));
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{
		gap: 20px;
		max-width: none;
	}
	.menu__list li{
		width: calc( ( 100% - 60px ) / 4 );
	}
	.menu__list li a{
		transition: all .5s;
	}
	.menu__list li a:hover{
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step　※使わないなら消す
------------------------------------------------------------ */
.step__wrap {
	border-radius: 8px;
	border: 1px solid var(--secondary02-color);
	background: #FFF;
	padding: 16px;
	margin: 0 auto;
	max-width: 520px;
}
.step__head {
	background: linear-gradient(90deg, rgba(255, 101, 90, 0.00) 0%, #FF655A 10%, #FF655A 90%, rgba(255, 101, 90, 0.00) 100%);
	padding: 5px 0;
	color: #FFF;
	text-align: center;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.15em;
	margin: 0 auto;
	max-width: 400px;
}
.step__body {
	display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: flex-start;
    margin: 16px auto 0;
    gap: 8px;
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	align-self: stretch;
}
.step__list + .step__list {
	/* padding-top: 8px; */
}
.step__list dt {
	background-color: #FFC5AC;
	color: #FFF;
	line-height: 1;
	width: 47px;
	border-radius: 40px;
	padding: 4px 0;
	text-align: center;
	font-size: 12px;
	align-self: flex-start;
	color: #FFF;
	font-family: "Open Sans";
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
}
.step__list dd {
	width: calc(100% - 47px - 8px);
}
.step__text02 {
	font-size: 12px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.step__head {
		font-size: 16px;
	}
}
/* ------------------------------------------------------------
place　※使わないなら消す
------------------------------------------------------------ */
.place__wrap {
	padding: 16px;
	margin: 0 auto;
	border-radius: 8px;
	border: 1px solid var(--primary02-color);
	background: #FFF;
	max-width: 520px;
}
.place__wrap dl {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-direction: column;
	padding: 0 16px;
	margin-top: 8px;
}
.place__wrap dl.mgt0 {
	margin-top: 0;
}
#event .place__wrap dl{
	padding: 0;
}
.place__wrap dl>div {
	align-self: stretch;
}
.place__wrap dt {
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.05em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
}
.place__wrap dt::before {
	content: "";
	background-color: var(--primary02-color);
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
}
.place__wrap dd {
	margin-top: 4px;
	padding-left: 4px;
}
.place__text01 {
	font-weight: 500;
	letter-spacing: 0.05em;
}
.place__head {
	background: linear-gradient(90deg, transparent 0%, var(--primary-color) 10%, var(--primary-color) 90%, transparent 100%);
	display: flex;
	color: #FFF;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 4px 0;
}
.place__head__num {
	font-weight: 700;
	border-right: 1px solid #FFF;
	padding-right: 8px;
}
.place__head .ft-openSans_C {
	font-size: 12px;
}


.place__wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.place__wrap>div {
	align-items: stretch;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}
/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
.note__box {
	padding: 16px 10px;
	border-radius: 8px;
	background: var(--bg-color);
}
.border {
	padding: 20px 0;
	overflow-x: clip;
	display: flex;
	align-items: center;
	justify-content: center;
}
.border.is-inview {
	animation-duration: 1.3s;
	animation-timing-function: linear;
}
.border img {
	min-width: 750px;
	max-height: 68px;
	object-fit: contain;
}
.sec__wrap {
	overflow-x: clip;
	padding-bottom: 32px;
}
.sec__top {
	position: relative;
	padding-top: 32px;
	padding-bottom: 40px;
	margin: 0 auto;
	max-width: 460px;
}
.sec__top h2 {
	position: relative;
	z-index: 3;
    transition: all .6s ease 0s;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.sec__top.is-inview h2 {
	animation: anime_left_to_right 1s ease forwards;
}
.sec__circle {
	position: absolute;
    width: 43.48%;
    top: 0;
    left: -27%;
    z-index: 0;
    transition: all .6s ease .2s;
	transform: scale(0);
}
#present .sec__circle {
	left: auto;
	right: -8%;
}
#goods .sec__circle {
	left: auto;
	right: -27%;
}
.sec__circle img {
	animation: circleRole 18s linear infinite;
}
@keyframes circleRole {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(-360deg);}
}
.sec__top.is-inview .sec__circle {
	transform:  scale(1);
}
.sec__lead {
	text-align: center;
	line-height: 1.5;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.date__wrap {
	border: solid var(--primary02-color);
	border-width: 1px 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 10%, #FFF 90%, rgba(255, 255, 255, 0) 100%);
	padding: 4px 0;
    max-width: 400px;
	margin: 0 auto;
}
.date__wrap p.ft-openSans_C {
	text-align: center;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.03em;
}
.date__list {
	display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: flex-start;
    gap: 6px;
	padding: 12px 0;
	margin: 0 auto;
}
.date__list li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.date__num {
	color: var(--primary-color);
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
	border-radius: 100px;
	border: 1px solid var(--primary02-color);
	padding: 1px 8px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.border {
	padding: 40px 0;
	}
	.sec__wrap {
		padding-bottom: 48px;
	}
}

/* ------------------------------------------------------------
#voice
------------------------------------------------------------ */
.cast__list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 6%;
	width: 80%;
	margin: 0 auto;
	max-width: 400px;
}
.cast__text01 {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-top: 4px;
}
.cast__text02 {
	text-align: center;
	font-size: 11px;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
/* PC用設定 */
@media screen and (min-width:751px) {
}

/* ------------------------------------------------------------
#present
------------------------------------------------------------ */
.img__present {
	max-width: 500px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}


/* ------------------------------------------------------------
#goods
------------------------------------------------------------ */
.goods__wrap {
	max-width: 500px;
	margin: 0 auto;
}
/* モーダル */
.modal__wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000;
}
.modal__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 0;
}
.modal_flex {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 1;
	flex-direction: column;
	gap: 16px;
}
.modal_container {
	pointer-events: initial;
	max-width: 1024px;
	width: calc(100% - 20px);
	padding: 40px 24px 16px;
}
.modal_close_btn {
	width: fit-content;
	margin: 16px auto 0;
	padding: 28px 2px 2px;
	color: #fff;
	position: relative;
	cursor: pointer;
}
.modal_close_btn::before,
.modal_close_btn::after {
	content: "";
	background-color: #fff;
	width: 2px;
	height: 30px;
	position: absolute;
	top: 14px;
	right: 50%;
}
.modal_close_btn::before {
	transform: translateY(-50%) rotate(-45deg);
}
.modal_close_btn::after {
	transform: translateY(-50%) rotate(45deg);
}
.modal-btn__img {
	position: relative;
}
.modal-btn__img:hover {
	cursor: pointer;
}
.modal-btn__img::after {
	position: absolute;
	content: "";
	display: block;
	background: url(../img/icon_zoom.svg) no-repeat center / cover;
	bottom: 8px;
	right: 8px;
	width: 50px;
	height: 50px;
	/* filter: drop-shadow(0 0 3px rgba(0,0,0,0.2)); */
}
body.fixed {
	position: fixed;
	width: 100%;
	left: 0;
	overflow-y: scroll;
}

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


/* ------------------------------------------------------------
#event
------------------------------------------------------------ */
.event__head {
	background: linear-gradient(90deg, transparent 0%, var(--primary-color) 10%, var(--primary-color) 90%, transparent 100%);
    display: flex;
    color: #FFF;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 0;
	font-weight: bold;
	max-width: 400px;
	margin: 0 auto;
	letter-spacing: 0.1em;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}


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


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

/* ------------------------------------------------------------
overview 応募要項ボタン ※使わないなら消す
------------------------------------------------------------ */
.overview__btn {
	display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    padding: 8px 0;
    max-width: 180px;
    margin: 0 auto;
    color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    transition: all .3s;
    background-color: #FFF;
    box-shadow: 0 2px 0 var(--primary-color);
}
.overview__icon {
	width: 13px;
	height: 16px;
	transition: all .3s;
	mask: url(../img/icon_pdf.svg) no-repeat center / contain;
	background-color: var(--primary-color);
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.overview__btn {
		transition: all .3s;
	}
	.overview__btn:hover {
		background-color: var(--primary-color);
		color: #FFF;
		box-shadow: 0 0 0 var(--primary-color);
		transform: translate(0,2px);
	}
	.overview__btn:hover .overview__icon {
		background-color: #FFF;
	}
	
}


/* ------------------------------------------------------------
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;}
.cs{
	background-color: rgba(255, 255, 255, 0.7);
	color: var(--primary-color);
	font-weight: bold;
	text-align: center;
	padding: 6px;
	font-size: 24px;
}
.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;
}
/* .cs.event-end-block{
	width: 100%;
	height: 100%;
} */
/* PC用設定 */
@media screen and (min-width:751px){
	.cs.event-end-block{
	width: 100%;
	height: 100%;
	border-radius: 0;
	font-size: 20px;
}
	/* .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;}
.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;}
}
