@charset "UTF-8";

/* ----- FMT ----- */
.info_wrap,
.footer_container {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
}
img {
	display: block;
	width: 100%;
}
a:hover img {
	opacity: 1;
}
.content_wrap {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	margin-top: 66px;
	width: 100%;
	position: relative;
	z-index: 0;
	overflow-x: hidden;
	*,*::before,*::after {
		box-sizing: border-box;
	}
}
.content-inner {
	width: 92%;
	max-width: 600px;
	margin-inline: auto;
}
figure {
	margin: 0 auto;
    width: 100%;
}
:root {
	--primary-color: #F66430;
	--yellow-color: #FFD62C;
	--font-outfit: Outfit,"Noto Sans JP",sans-serif
}
.txt-link{
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: 700;
	transition: .3s;
	&:active {
		opacity: .5;
	}
}
.txt-color--yellow {
	color: var(--yellow-color);
}
.note-list {
	display: grid;
	gap: 4px;
}
.note-list__items {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: .025em;
	padding-left: 1em;
	text-indent: -1em;
}

/* ----- 汎用 ----- */
/* cta */
.cta-wrapper {
	max-width: 600px;
	margin-inline: auto;
}
.cta-btn {
	display: block;
	width: 90.72%;
	margin: 0 auto 41px;
}
/* acc */
.acc__btn {
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: 4px 37px 6px 22px;
	background: #fff;
	color: #222;
	font-size: 14px;
	font-weight: 700;
	list-style: none;
	border: 2px solid #222;
	border-radius: 10vh;
	position: relative;
	cursor: pointer;
}
.acc__btn::-webkit-details-marker {
	display:none;
}
.acc__ico {
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 6px;
	right: 13px;
	background: #fff;
	border-radius: 50%;
	&::before,&::after {
		content: "";
		display: block;
		width: 8px;
		height: 2px;
		background: #222;
		border-radius: 10vh;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
	&::after {
		rotate: 90deg;
		transition: rotate .3s;
	}
}
.acc[open] .acc__ico::after {
	rotate: 0deg;
}
.acc__content {
	background: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	margin-top: 16px;
    transition: .6s ease-in-out;
	height: 0;
	overflow: hidden;
}
.acc__content__inner {
	padding: 15px;
}
/* date */
.date {
	display: grid;
	grid-template-columns: 74px 1fr;
	background: var(--yellow-color);
	border: 2px solid #000;
	border-radius: 8px;
	align-items: center;
	text-align: center;
}
.date__ttl {
	font-weight: 700;
}
.date__dtl {
	font-size: 23px;
	font-weight: 700;
	font-family: var(--font-outfit);
	letter-spacing: .05em;
	border-left: 2px solid #000;
	padding-block: 1px;
}
.date__small-txt {
	font-size: 15px;
	letter-spacing: .05em;
}
/* common-btn */
.common-btn {
	display: block;
	width: 90.72%;
	margin: 0 auto 10px;
	background: #fff;
	border: 2px solid #222;
	border-radius: 10vh;
	padding-block: 14px;
	box-shadow: 0 5px 0 #222;
	color: #222;
	font-weight: 700;
	line-height: 1.3125;
	letter-spacing: .05em;
	text-align: center;
	transition: .3s;
	&:active {
		translate: 0 5px;
		box-shadow: none;
	}
}
.common-btn-note {
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}
/* common-marquee */
.common-marquee {
	display: flex;
	gap: 13px;
	overflow: hidden;
}
.common-marquee__list {
	display: flex;
	gap: 12px;
	animation: marquee 30s linear infinite;
	img {
		max-width: none;
	}
}
@keyframes marquee {
	0% {
		translate: 0;
	}
	100% {
		translate: -100%;
	}
}
/* splide */
.splide--howto-ttl {
	border-block: 2px solid #222;
	padding-block: 11px;
	background: #0F3FE7;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.44;
	letter-spacing: .05em;
	text-align: center;
	margin-bottom: 20px;
}
.splide--howto {
	margin-bottom: 40px;
}
.splide--howto__track {
	padding-top: 23px;
}
.splide--howto__box {
	padding: 0 10px 28px;
	background: #fff;
	border-radius: 16px;
	border: 1px solid #222;
	position: relative;
	&:not(:last-child)::after {
		content: "";
		display: block;
		width: 17px;
		height: 60px;
		position: absolute;
		top: 50%;
		right: -25px;
		translate: 0 -50%;
		background: var(--yellow-color);
		clip-path: polygon(0 0,100% 50%,0 100%);
	}
}
.splide--howto__box__ttl-wrapper {
	margin-bottom: 16px;
}
.splide--howto__box__ttl--step {
	width: 106px;
	height: 51px;
	background: url(../img/bg_stand.png) no-repeat center/cover;
	display: grid;
	place-content: center;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .05em;
	text-align: center;
	translate: 0 -23px;
	margin: 0 auto -3px;
}
.splide--howto__box__ttl {
	font-weight: 700;
	line-height: 1.3125;
	text-align: center;
}
.splide--howto__box__txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.64;
	word-break: break-word;
}
.splide--howto__box__txt--note {
	font-size: 12px;
	line-height: 1.33;
	margin-top: 6px;
}
.splide--howto__box__txt--color {
	color: #F63030;
	font-weight: 700;
	margin-bottom: 16px;
}
.splide--howto__box__img {
	margin-top: 20px;
}
.splide__pagination {
	gap: 10px;
	margin-top: 16px;
}
.splide__pagination__page {
	display: block;
	width: 10px;
	height: 10px;
	background: #d2d2d2;
	border: 0;
	border-radius: 50%;
	padding: 0;
}
.splide__pagination__page.is-active {
	background: #0F3FE7;
}
/* comingsoon & finish */
.comingsoon,.finish {
	position: relative;
	pointer-events: none;
	&::after {
		content: "Coming Soon";
		display: grid;
		place-content: center;
		background: rgb(15 63 231/.7);
		color: #fff;
		font-size: 8vw;
		font-weight: 700;
		text-align: center;
		line-height: 1.2;
		position: absolute;
		inset: 0;
	}
}
/* finish */
.finish-txt {
	border: 2px solid #ff0000;
	background: #fff;
	padding-block: 8px;
	color: #ff0000;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin-block: 16px;
}
.finish::after {
	content: "終了しました";
	border: 2px solid #ff0000;
	color: #ff0000;
	font-size: 18px;
	width: 90%;
	height: 90%;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
/* animation */
.js-animate[data-animate="pop-up"] {
	scale: 0;
}
.js-animate--active[data-animate="pop-up"] {
	animation: pop-up 1s linear forwards,vibration .5s linear 1.2s forwards;
}
.js-animate[data-animate="fade-up"] {
	translate: 0 20px;
	opacity: 0;
	transition: translate 1.2s ease,opacity 1.2s ease;
}
.js-animate--active[data-animate="fade-up"] {
	opacity: 1;
	translate: 0;
}
.js-animate [data-animate="clip"] {
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1s ease;
}
.js-animate--active [data-animate="clip"] {
	clip-path: inset(0);
}
@keyframes pop-up {
	0% {
		scale: 0;
	}
	40% {
		scale: 1.2;
	}
	60% {
		scale: 1;
	}
	80% {
		scale: 1.1;
	}
	100% {
		scale: 1;
	}
}
@keyframes vibration {
	0%,100% {
		rotate: 0deg;
	}
	25% {
		rotate: 4deg;
	}
	50% {
		rotate: 0deg;
	}
	75% {
		rotate: 4deg;
	}
}

/* ----- sec--lead ----- */
.sec--lead {
	background: #0F3FE7;
	padding-block: 30px;
}
.sec--lead__date {
	margin-bottom: 24px;
}
.sec--lead__ttl {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.56;
	text-align: center;
	margin-bottom: 9px;
}
.sec--lead__img {
	width: 74.78%;
	margin: 0 auto 16px;
}
.sec--lead__txt {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.71;
	letter-spacing: .05em;
	margin-bottom: 24px;
}
.sec--lead__btn-note {
	color: #fff;
}

/* ----- sec--toc ----- */
.sec--toc {
	background: var(--yellow-color);
	padding-block: 22px 40px;
}
.sec--toc__marquee {
	margin-bottom: 11px;
}
.sec--toc__marquee__list img {
	width: 523px;
}
.sec--toc__list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px 15px;
}
.sec--toc__list__items {
	&:first-child {
		grid-area: 1/1/2/3;
	}
	&:nth-child(2) {
		grid-area: 2/1/3/2;
	}
	&:nth-child(3) {
		grid-area: 2/2/3/3;
	}
	&:last-child {
		grid-area: 3/1/4/3;
	}
}
.sec--toc__list__btn {
	display: block;
	transition: .3s;
	&:active {
		scale: .9;
	}
}

/* ----- sec--talk ----- */
.sec--talk {
	background: url(../img/bg_common.png) repeat 0 0/15px 15px,
				#0F3FE7;
	padding-block: 20px 60px;
}
.sec--talk__ttl {
	margin-bottom: 11px;
}
.sec--talk__date {
	margin-bottom: 32px;
}
.sec--talk__marquee {
	margin-bottom: -8px;
}
.sec--talk__marquee__list img {
	width: 524px;
}
.sec--talk__box {
	padding: 12px 14px 14px;
	border: 2px solid #222;
	border-radius: 6px;
	background: #fff;
	margin-bottom: 30px;
}
.sec--talk__box__items:not(:last-child) {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #000;
}
.sec--talk__box__col {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-family: var(--font-outfit);
	line-height: 1;
	margin-bottom: 8px;
}
.sec--talk__box__num {
	background: #000;
	border-radius: 10vh;
	color: #fff;
	font-size: 13px;
	padding: 2px 8px;
}
.sec--talk__box__date {
	color: #f66430;
	font-size: 18px;
	letter-spacing: .05em;
}
.sec--talk__box__date__ttl {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}
.sec--talk__note-list {
	color: #fff;
	margin-bottom: 20px;
}

/* ----- sec--sticker ----- */
.sec--sticker {
	background: url(../img/bg_sticker.png) no-repeat center/cover,
				var(--yellow-color);
	padding-block: 0 60px;
}
.sec--sticker__ttl {
	translate: 0 -34px;
	margin-bottom: 5px;
}
.sec--sticker__date {
	background: #fff;
	margin-bottom: 40px;
}
.sec--sticker__note-list {
	margin-bottom: 19px;
	.note-list__items {
		line-height: 1.5;
	}
	.txt-link {
		color: #0F3FE7;
	}
}
.sec--sticker__img {
	margin-bottom: 47px;
}
.sec--sticker__img-note {
	margin-top: 20px;
	font-size: 12px;
}

/* ----- sec--stand ----- */
.sec--stand {
	background: url(../img/bg_common.png) repeat 0 0/15px 15px,
				#F66430;
	padding-block: 0 60px;
}
.sec--stand__ttl {
	translate: 0 -15px;
	margin-bottom: -39px;
}
.sec--stand__date {
	margin-bottom: 40px;
	position: relative;
}
.sec--stand__txt {
	font-weight: 700;
	line-height: 1.625;
	letter-spacing: .05em;
	text-align: center;
	margin-bottom: 40px;
}
.sec--stand__img {
	margin-bottom: 47px;
}
.sec--stand__img-note {
	margin-top: 11px;
	font-size: 12px;
}
.sec--stand-howto {
	margin-bottom: 75px;
}
.sec--stand-place {
	background: #fff;
	border: 2px solid #222;
	border-radius: 10px;
	padding: 0 14px 14px;
}
.sec--stand-place__ttl {
	width: fit-content;
	background: #222;
	border-radius: 8px;
	padding: 8px 22px 8px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	translate: 0 -35px;
	rotate: -4deg;
	margin: 0 auto -13px;
}
.sec--stand-place-area__ttl {
	color: #0F3FE7;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}
.sec--stand-place-area__list__row {
	display: flex;
}
.sec--stand-place-area__list__ttl,
.sec--stand-place-area__list__dtl {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.5;
}
.sec--stand-place-area__list__dtl {
	flex: 1;
}

/* ----- sec--profile ----- */
.sec--profile {
	background: #F0F1F4;
	padding-block: 43px 52px;
}
.sec--profile__marquee {
	margin-bottom: 20px;
}
.sec--profile__marquee__list img {
	width: 403px;
}
.sec--profile__ttl {
	width: 83.48%;
	margin: 0 auto 32px;
}
.sec--profile__txt {
	color: #222;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-bottom: 24px;
}
.sec--profile__list {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 16px 20px;
	margin: 0 16px 40px 13px;
}
.sec--profile__list__img {
	border: 2px solid #222;
	border-radius: 8px;
	margin-bottom: 4px;
}
.sec--profile__list__img-wrapper__name {
	font-weight: 700;
	text-align: center;
}

/* ----- sec--program ----- */
.sec--program {
	background: url(../img/bg_common.png) repeat 0 0/15px 15px,
				var(--yellow-color);
	padding-block: 30px 50px;
}
.sec--program__ttl {
	width: 78.26%;
	margin: 0 auto 32px 6.38% ;
}
.sec--program__txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .05em;
	margin-bottom: 24px;
}
.sec--profile__btn {
	width: 100%;
}

/* ----- footer ----- */
/* info_wrap */
.info_wrap {
	margin: 0 auto;
	padding: 8px 40px 20px;
	position: relative;
	background-color: #FFF;
}
.oshitabi_btn {
	display: block;
	border: 4px solid #000;
	background: #FFF;
	max-width: 740px;
	margin: 32px auto 0;
	font-size: 18px;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: center;
	border-radius: 10px;
	padding: 10px 30px 10px 5px;
	position: relative;
	transition: all .3s;
	&::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 30px;
		height: 12px;
		width: 12px;
		border-top: 3px solid #000;
		border-right: 3px solid #000;
		translate: 0 -50%;
		rotate: 45deg;
		transition: all .3s;
	}
	&:active {
		background: var(--primary-color);
		border-color: var(--primary-color);
		&::after {
			border-color: #fff;
		}
	}
}
.credit {
	text-align: center;
	margin-top: 16px;
	font-size: 12px;
}
.footer_container {
	position: relative;
	z-index: 100;
	background-color: #FFF;
	padding-top: 1px;
}

/* ----- mediaquery ----- */
@media(min-width:751px){
	.sp {
		display: none;
	}
	.pc {
		display: block;
	}

	/* ----- FMT ----- */
	.content_wrap {
		margin-top: 90px;
	}
	.txt-link:hover {
		opacity: .5;
	}

	/* ----- 汎用 ----- */
	/* cta */
	.qr-wrapper {
		display: grid;
		grid-template-columns: 1fr 112px;
		align-items: center;
		gap: 19px;
		background: #F66430;
		border: 2px solid #222;
		border-radius: 10px;
		box-shadow: 0 5px 0 #222;
		padding: 12px 13px 12px 20px;
		margin-bottom: 16px;
	}
	.qr-ttl {
		background: var(--yellow-color);
		text-align: center;
		font-size: 20px;
		font-weight: 900;
		padding-block: 4px 5px;
		border-radius: 10vh;
		margin-bottom: 10px;
	}
	.qr-txt {
		font-weight: 500;
		line-height: 1.5;
		letter-spacing: .05em;
	}
	.qr-img {
		border-radius: 6px;
		overflow: hidden;
	}
	/* acc */
	.acc__btn {
		display: block;
		width: fit-content;
		margin: 0 auto;
		padding: 4px 37px 6px 22px;
		background: #fff;
		color: #222;
		font-size: 14px;
		font-weight: 700;
		list-style: none;
		border: 2px solid #222;
		border-radius: 10vh;
		position: relative;
		cursor: pointer;
	}
	.acc__btn::-webkit-details-marker {
		display:none;
	}
	.acc__ico {
		display: block;
		width: 16px;
		height: 16px;
		position: absolute;
		top: 6px;
		right: 13px;
		background: #fff;
		border-radius: 50%;
		&::before,&::after {
			content: "";
			display: block;
			width: 8px;
			height: 2px;
			background: #222;
			border-radius: 10vh;
			position: absolute;
			top: 50%;
			left: 50%;
			translate: -50% -50%;
		}
		&::after {
			rotate: 90deg;
			transition: rotate .3s;
		}
	}
	.acc[open] .acc__ico::after {
		rotate: 0deg;
	}
	.acc__content {
		background: #fff;
		border: 1px solid #000;
		border-radius: 10px;
		margin-top: 16px;
		transition: .6s ease-in-out;
		height: 0;
		overflow: hidden;
	}
	.acc__content__inner {
		padding: 15px;
	}
	/* date */
	.date {
		max-width: 458px;
		margin-inline: auto;
		grid-template-columns: 98px 1fr;
	}
	.date__ttl {
		font-size: 21px;
	}
	.date__dtl {
		font-size: 30px;
	}
	.date__small-txt {
		font-size: 20px;
		letter-spacing: .05em;
	}
	/* common-btn */
	.common-btn {
		max-width: 313px;
		&:hover {
			translate: 0 5px;
			box-shadow: none;
		}
	}
	/* splide */
	.splide--howto-ttl {
		padding-block: 9px;
		font-size: 22px;
		line-height: 1.36;
		margin-bottom: 30px;
	}
	.splide--howto {
		max-width: 956px;
		margin-inline: auto;
	}
	.splide-howto::after {
		display: none;
	}
	/* comingsoon */
	.comingsoon::after {
		font-size: 18px;
	}
	.finish::after {
		white-space: pre;
		content: "終了\Aしました";
	}

	/* ----- sec--lead ----- */
	.sec--lead {
		padding-block: 40px 60px;
		.content-inner {
			max-width: 552px;
		}
	}
	.sec--lead__date {
		margin-bottom: 40px;
	}
	.sec--lead__ttl {
		font-size: 24px;
		line-height: 1.33;
		margin-bottom: 15px;
	}
	.sec--lead__img {
		width: 46.74%;
		margin: 0 auto 20px;
	}
	.sec--lead__txt {
		font-size: 16px;
		line-height: 1.75;
		margin-bottom: 40px;
	}

	/* ----- sec--toc ----- */
	.sec--toc__marquee {
		margin-bottom: 20px;
	}
	.sec--toc__marquee__list img {
		width: 635px;
	}
	.sec--toc__list {
		max-width: 710px;
		grid-template-columns: 48.59% 23.24% 23.24%;
		justify-content: space-between;
		gap: 20px 0;
	}
	.sec--toc__list__items {
		&:first-child {
			grid-area: 1/1/2/2;
		}
		&:nth-child(2) {
			grid-area: 1/2/2/3;
		}
		&:nth-child(3) {
			grid-area: 1/3/2/4;
		}
		&:last-child {
			grid-area: 2/1/3/4;
			.sec--toc__list__btn {
				max-width: 345px;
				margin-inline: auto;
			}
		}
	}
	.sec--toc__list__btn:hover {
		scale: .9;
	}

	/* ----- sec--talk ----- */
	.sec--talk {
		padding-block: 40px 60px;
	}
	.sec--talk__ttl {
		max-width: 525px;
		margin: 0 auto 10px;
	}
	.sec--talk__date {
		margin-bottom: 20px;
	}
	.sec--talk__marquee {
		margin-bottom: 0;
	}
	.sec--talk__marquee__list img {
		width: 636px;
	}
	.sec--talk__box__num {
		font-size: 18px;
	}
	.sec--talk__box__date {
		font-size: 24px;
	}
	.sec--talk__box__date__ttl {
		font-size: 20px;
	}

	/* ----- sec--sticker ----- */
	.sec--sticker {
		background: url(../img/bg_sticker_pc.png) no-repeat center/auto 100%,
					var(--yellow-color);
	}
	.sec--sticker__ttl {
		max-width: 483px;
		translate: 0 -46px;
		margin: 0 auto -36px;
	}
	.sec--sticker__note-list {
		width: fit-content;
		margin-inline: auto;
	}
	.sec--sticker__img {
		max-width: 500px;
		margin-inline: auto;
	}

	/* ----- sec--stand ----- */
	.sec--stand__ttl {
		max-width: 480px;
		translate: 0 -27px;
		margin: 0 auto -42px;
	}
	.sec--stand__txt {
		font-size: 20px;
		line-height: 1.5;
	}
	.sec--stand__img {
		max-width: 500px;
		margin-inline: auto;
	}
	.sec--stand-place {
		background: #fff;
		border: 2px solid #222;
		padding: 0 28px 28px;
	}
	.sec--stand-place__ttl {
		translate: 0 -24px;
		margin-bottom: -6px;
	}

	/* ----- sec--profile ----- */
	.sec--profile {
		padding-block: 21px 60px;
	}
	.sec--profile__marquee__list img {
		width: 616px;
	}
	.sec--profile__ttl {
		max-width: 320px;
		margin-bottom: 20px;
	}
	.sec--profile__txt {
		font-size: 15px;
		margin-bottom: 24px;
	}
	.sec--profile__list {
		grid-template-columns: repeat(4,1fr);
		gap: 16px;
		margin: 0 0 40px;
	}

	/* ----- sec--program ----- */
	.sec--program {
		padding-block: 40px 60px;
	}
	.sec--program__ttl {
		width: 78.26%;
		max-width: 320px;
		margin: 0 auto 32px;
	}
	.sec--program__txt {
		font-size: 15px;
	}
	.sec--profile__btn {
		max-width: 336px;
	}

	/* ----- footer ----- */
	.info_wrap {
		margin: 0 auto;
		padding: 8px 20px 100px;
	}
	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
		&:hover {
			background: var(--primary-color);
			border-color: var(--primary-color);
			&::after {
				border-color: #fff;
			}
		}
	}
}
@media(max-width:750px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}