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

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

}

/* ------------------------------------------------------------
共通
------------------------------------------------------------ */
:root {
	--text-color: #333333;
	--sub-text-color:#606060;
	--text-link: #2D88F1;
	--primary-color: #F20124;
	--secondary-color: #353C47;
	--accent-color: #FFDF3F;
	--red-color: #EE0000;
	--bg-color: #FFFFFF;
	--bg02-color: rgba(227, 228, 229, 0.5);
	--border-color01: #EDEDED;
	--border-color02: #D6D9DB;
	--font-serif: "Noto Serif JP", 游明朝, 游明朝体, 'Yu Mincho', YuMincho, serif;
	--font-russo: "Russo One", "Noto Serif JP" , serif;
	--scale-factor: 1; /* 通常時 */
	--btn-base-color: #333; /* アコーディオンボタンのベース色 */
	--btn-text-color: #FFF; /* アコーディオンボタンのテキスト色 */
}
/* 背景固定 */
/* 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;
	background-color: #fff;
	color: var(--text-color);
	line-height: 1.5;
	font-size: 14px;
	font-family: "M PLUS 1p",'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	background: url(../img/bg_01.png) center top / 100% repeat-y;
	overflow-x: clip;
}
.main__wrap *{box-sizing: border-box;}
img{
	display: block;
	width: 100%;
	height: auto;
}

a:hover img {opacity: 1;}

.container{
	width: 92%;
	margin: 0 auto;
	max-width: 640px;
}
.indent li,.txt-note.indent{
	padding-left: 1em;
	text-indent: -1em;
}
.fc-red{color: var(--red-color);}
.fc-accent{color: var(--red-color);}
.fc-white{color: #FFF;}

.txt-link{
	color: var(--text-link);
	text-decoration: underline;
	font-weight: bold;
}
.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;
}
.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;}
.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;}
	.pc_center {text-align: center;}
}

/* ------------------------------------------------------------
アニメーション
------------------------------------------------------------ */
/* フェードイン */
.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);
}

.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) .3s;
}
.js__popUp2.is-inview {
	opacity: 1;
	transform: scale(1);
}

/* 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__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%);
	}
}

.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);
	}
}


.js__listIris li a {
	display: block;
	clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
}
.js__listIris.is-inview li a {
	animation-name: listIris;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listIris li:nth-child(1) a {animation-delay: 0s;}
.js__listIris li:nth-child(2) a {animation-delay: .2s;}
.js__listIris li:nth-child(3) a {animation-delay: .4s;}
.js__listIris li:nth-child(4) a {animation-delay: .6s;}

@keyframes listIris {
	0% {
	clip-path: polygon(0% 50%, 100% 50%, 100% 50%, 0% 50%);
}
	50% {
		transform: scaleY(1.2);
		clip-path: polygon(0% 0%, 100% 0%, 100% 120%, 0% 120%);

	}
	100% {
		transform: scaleY(1);
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

	}
}

.js__iris {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
.js__iris.is-inview {
	animation-name: iris;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
@keyframes iris {
	0% {
	clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100% );
}
	100% {
		transform: scaleY(1);
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);

	}
}


.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);
	}
}


.js__listSlideR li {
	opacity: 0;
	transform: translateX(30px);
}
.js__listSlideR.is-inview li {
	animation-name: listSlideR;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listSlideR li:nth-child(1) {animation-delay: 0s;}
.js__listSlideR li:nth-child(2) {animation-delay: .2s;}
.js__listSlideR li:nth-child(3) {animation-delay: .4s;}
.js__listSlideR li:nth-child(4) {animation-delay: .6s;}

@keyframes listSlideR {
	from {
	opacity: 0;
	transform: translateX(30px);
	}
	to {
	opacity: 1;
	transform: rotateX(0);
	}
}

.js__listSlideL li {
	opacity: 0;
	transform: translateX(-30px);
}
.js__listSlideL.is-inview li {
	animation-name: listSlideL;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.js__listSlideL li:nth-child(1) {animation-delay: .6s;}
.js__listSlideL li:nth-child(2) {animation-delay: .4s;}
.js__listSlideL li:nth-child(3) {animation-delay: .2s;}
.js__listSlideL li:nth-child(4) {animation-delay: 0s;}

@keyframes listSlideL {
	from {
	opacity: 0;
	transform: translateX(-30px);
	}
	to {
	opacity: 1;
	transform: rotateX(0);
	}
}




.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__block01 .acc__body {
	margin-top: 10px;
	color: var(--text-color);
}
.acc__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--primary-color);
	padding: 4px 10px 4px 18px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc__block01 .acc__btn {
	width: fit-content;
	margin: 0 auto;
	background-color: var(--btn-base-color);
	border-radius: 20px;
}
.acc__btn_text {
	font-weight: bold;
	color: var(--btn-text-color);
	font-size: 13px;
}
.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: 8px;
	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%);}

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


/* ------------------------------------------------------------
voice-btn
------------------------------------------------------------ */
a.voice-btn{display: block;
	max-width: 400px;
	margin: 0 auto;
	}
.voice-btn{
	position: relative;
	filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.15));
}
.voice-btn.inactive {
	filter: none;
}
.voice-btn__block {
	max-width: 500px;
	margin: 0 auto;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.voice-btn__pc{
		background-color: var(--primary-color,#B3B3B3);
		clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0% calc(100% - 16px), 0% 16px);
		padding: 16px;
	}
	.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: 16px;
		margin-bottom: 8px;
	}
	.voice-btn__txt .txt02{
		font-size: 12px;
	}
	.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-color: var(--primary-color);
	position: relative;
}
.mv__block::after {
	width: 70%;
	height: 12px;
	background-color: #FFF;
	content: "";
	clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 100%, 0% 100%);
	position: absolute;
	bottom: -1px;
	left: 15%;
}
.mv__main {
	background: url(../img/bg_02.png) center / 300% 100% no-repeat;
	padding: 18px 0 36px;
	transition: all .5s;
}
.is-inview .mv__main  {
	background: url(../img/bg_02.png) center / 160% 100% no-repeat;
	}

.mv__logo {
	width: 48%;
	margin: 0 auto;
}
h1 {
	width: 93.335%;
	margin: 0 auto;
}

.mv__date {
	background: #FFF;
	padding: 11px 22px 6px;
	width: fit-content;
	margin: 18px auto 0;
	background-image :
    linear-gradient(to right, var(--primary-color), var(--primary-color) 7px, transparent 7px, transparent 7px),
    linear-gradient(to bottom, var(--primary-color), var(--primary-color) 7px, transparent 7px, transparent 7px),
    linear-gradient(to left, var(--primary-color), var(--primary-color) 7px, transparent 7px, transparent 7px),
    linear-gradient(to top, var(--primary-color), var(--primary-color) 7px, transparent 7px, transparent 7px);
	background-size:
    14px 3px,
    3px 14px,
    14px 3px,
    3px 14px;
	background-position:
    left top,
    right top,
    right bottom,
    left bottom;
	background-repeat:
    repeat-x,
    repeat-y,
    repeat-x,
    repeat-y;
}
.mv__date__inner {
	font-family: var(--font-russo);
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 4px;
	line-height: 1;
	letter-spacing: 0.05em;
}
.mv__date__hyphen {
	background-color: var(--primary-color);
	height: 2px;
	width: 9px;
}
.mv__date__year {
	font-size: 15px;
	margin-right: 3px;
}
.mv__date__date {
	font-size: 28px;
}
.mv__date__day {
	font-size: 16px;
	margin-left: 2px;
}
h1 {
	transform: translate(-100px, 15px);
	opacity: 0;
	transition: all .3s cubic-bezier(0, 1.04, 0.62, 1.21) .4s;
}
.mv__logo {
	transform: translate(-100px, 0);
	opacity: 0;
	transition: all .3s cubic-bezier(0, 1.04, 0.62, 1.21) .2s;
}
.mv__block.is-inview .mv__logo {
	transform: translate(0,0);
	opacity: 1;
}
.mv__block.is-inview h1 {
	transform: translate(0,0);
	opacity: 1;
}
.mv__date {
	transform: translateX(-100px);
	opacity: 0;
	transition: all .3s cubic-bezier(0, 1.04, 0.62, 1.21) .6s;
}
.mv__block.is-inview .mv__date {
	transform: translateX(0);
	opacity: 1;
}
.mv__img {
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	transition: all .5s;
}
.is-inview .mv__img{
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}



/* PC用設定 */
@media screen and (min-width:751px) { 
	.mv__flex {
		margin: 0 auto;
		max-width: 1000px;
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-direction: row-reverse;
	}
	.mv__img {
		width: 45%;
		transform: translateX(-100px);
		opacity: 0;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		transition: all .5s;
		/* transition: all .5s cubic-bezier(0, 1.04, 0.62, 1.21); */
	}
	.mv__block.is-inview .mv__img {
		transform: translateX(0);
		opacity: 1;
	}
		.mv__main {
		width: 45%;
		background: none;
		padding: 0;
	}
	.is-inview .mv__main {
		background: none;
	}
	.mv__block {
	background: url(../img/bg_02.png) center / 300% 100px repeat-y var(--primary-color);
	transition: all .3s;
}
.mv__block.is-inview {
	background: url(../img/bg_02.png) center / 150% 100px repeat-y var(--primary-color);
	}
	.mv__block::after {
	width: 400px;
	left: calc(50% - 200px);
}
}

/* ------------------------------------------------------------
border
------------------------------------------------------------ */
.border01 {
	height: 32px;
	width: 100%;
	background: url(../img/bar01.png) 0 0 / 658px 32px repeat-x;
	animation: borderSlide 20s linear 0s infinite;
}
.mgt_border {
	margin-top: 40px;
}
@keyframes borderSlide {
	0%{
		background: url(../img/bar01.png) 0 0 / 658px 32px repeat-x;
	}
	100%{
		background: url(../img/bar01.png) -658px 0 / 658px 32px repeat-x;
	}
	
}
.border02 {
	height: 14px;
	width: 100%;
	background: url(../img/bar02.svg) 0 0 / 15px 14px repeat-x;

}
/* PC用設定 */
@media screen and (min-width:751px) { 
	.border01.mgt_border {
	margin-top: 56px;
}
}

/* ------------------------------------------------------------
#menu
------------------------------------------------------------ */

.menu__list{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding: 56px 24px;
	max-width: 700px;
	margin: 0 auto;
}

.menu__list li{
	width: calc( ( 100% - 10px ) / 2 );
	max-width: 240px;
	filter: drop-shadow(4px 6px 10px rgba(0, 0, 0, 0.15));
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{gap: 30px;}
	.menu__list li{
		width: calc( ( 100% - 90px ) / 4 );
		transition: all .5s;
	}
	.menu__list li a{
		transition: all .5s;
		display: block;
	}
	.menu__list li:hover {
		transform: translateY(-5px);
	}
}

/* ------------------------------------------------------------
step
------------------------------------------------------------ */
.step__wrap {
	padding: 0 8px;
	max-width: 500px;
	margin: 0 auto;
}
.step__head {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.15em;
	background-color: var(--accent-color);
	padding: 12px 0 8px;
	clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%, 0 8px);
}
.step__head::before, .step__head::after {
	content: "";
	width: 14px;
	height: 8px;
}
.step__head::before {
	background: url(../img/deco_arrow_l.svg) center / contain no-repeat;
}
.step__head::after {
	background: url(../img/deco_arrow_r.svg) center / contain no-repeat;
}
.step__body {
	border: 1px solid var(--accent-color, #FFDF3F);
	padding: 12px 16px;
	background-color: #FFF;
}
.step__inner {
	margin: 0 auto;
}
.step__list {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: flex-start;
}
.step__list + .step__list {
	padding: 3px 0;
	border-top: 1px solid var(--border-color);
}
.step__list dt {
	background-color: var(--text-color);
	color: #FFF;
	font-family: var(--font-russo);
	line-height: 1;
	letter-spacing: 0.3px;
	font-size: 10px;
	width: 44px;
	border-radius: 40px;
	padding: 3px 0 2px;
	text-align: center;
	margin-top: 3px;
    align-self: flex-start;
}
.step__list dd {
	font-weight: 500;
	line-height: 1.4;
	flex: 1;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.menu__list{
		padding: 56px 0;
	}
	.step__inner {
			width: fit-content;

	}
}

/* ------------------------------------------------------------
basic
------------------------------------------------------------ */
.sec__wrap {
	padding-top: 40px;
}
.sec__head {
	max-width: 375px;
	margin: 0 auto;
}
.sec__date {
	border-top: 1px solid var(--border-color02);
	border-bottom: 1px solid var(--border-color02);
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
	justify-content: center;
	padding: 5px 8px 4px;
	width: fit-content;
	margin: 10px auto 0;
}
.sec__date p {
	font-family: var(--font-russo);
	letter-spacing: 0.03em;
	font-size: 18px;
	line-height: 18px;
}
.sec__date::before, .sec__date::after {
	content: "";
	background-color: var(--primary-color);
	width: 6px;
	height: 6px;
}
.sec__lead {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.05em;
}
.sec__lead span {
	font-size: 13px;
}
.box01 {
	background-color: var(--bg02-color);
	padding: 14px 10px;
}
.box01__head {
	background-color: #6E6E6E;
	padding: 2px 0;
	text-align: center;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.sec__wrap {
	padding-top: 56px;
}
	.sec__date {
		margin-top: 16px;
	}
	.sec__date p {
	font-size: 20px;
	line-height: 20px;
}
.sec__date::before, .sec__date::after {
	width: 8px;
	height: 8px;
}
	.sec__lead {
		font-size: 16px;
	}
}

/* ------------------------------------------------------------
#movie
------------------------------------------------------------ */
.cast__block dt {
	clip-path: polygon(8px 50%, calc(100% - 8px) 50%, 100% 50%, 100% 50%, calc(100% - 8px) 50%, 8px 50%, 0% 50%, 0% 50%);

}
.cast__head {
	clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0% calc(100% - 8px), 0% 8px);
	background-color: var(--primary-color);
	color: #FFF;
	text-align: center;
	font-weight: 800;
	line-height: 1.5;
	position: relative;
	padding: 4px 0;
	font-size: 15px;
	letter-spacing: 0.05em;

}
.cast__block dt.is-inview{
	animation-name: castBlockHead;
	animation-fill-mode: forwards;
	animation-duration: .5s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-direction: normal;
}
@keyframes castBlockHead {
	0% {
	clip-path: polygon(0 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 0 50%, 0% 50%, 0% 50%);
	}
	100% {
	clip-path: polygon(0 0%, 100% 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 100%, 0% 0);
	}
}

.cast__head::before, .cast__head::after {
	content: "";
	width: 10px;
	height: 10px;
	background: url(../img/deco_hbg.svg) center / contain no-repeat;
	position: absolute;
	top: calc(50% - 5px);
}
.cast__head::before {
	left: 12px;
}
.cast__head::after {
	right: 12px;
}
.cast__block dd {
	display: flex;
	padding: 0 8px;
	gap: 6px;
	align-items: center;
	justify-content: space-around;
	margin-top: 10px;
}
.cast__block.inbound dd {flex-direction: row;}
.cast__block.outbound dd {flex-direction: row-reverse;}

.cast__pic {
	display: flex;
	gap: 4px;
	width: 212px;
}
.cast__name {
	width: calc(100% - 212px - 6px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.cast__name li {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.cast__name li::before, .cast__name li::after {
    content: "";
    width: 8px;
    height: 27px;
    position: relative;
    z-index: 2;
}
.cast__name li::before {
	background: url(../img/bracket_l.svg) center / contain no-repeat;
}
.cast__name li::after {
	background: url(../img/bracket_r.svg) center / contain no-repeat;
}
.cast__name li p {
	border-bottom: 1px solid #ECECEC;
    border-top: 1px solid #ECECEC;
    font-size: 13px;
    line-height: 150%;
    padding: 2px 0;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
    align-self: center;
    margin: 0 -2px;
	width: 100%;
}
.item__head {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
}
.item__head p {
    font-size: 15px;
	color: var(--primary-color);
    line-height: 1.4;
    padding: 2px 0;
    letter-spacing: 0.05em;
    font-weight: 800;
    text-align: center;
    width: fit-content;
    align-self: center;
	padding: 0 16px 0 24px;
}
.item__head p span {
	font-size: 11px;
	font-weight: 700;
}
.img__wrap {
	margin: 0 auto;
}
.img__photo_frame {
	max-width: 640px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.cast__block {
		max-width: 500px;
		margin: 0 auto;
	}
	.cast__name li p {
		font-size: 15px;
	}
	.cast__head {
		font-size: 16px;
	}
	.cast__name li::before, .cast__name li::after {
		height: 30px;
	}
}

/* ------------------------------------------------------------
#wallpaper
------------------------------------------------------------ */
.img__wallpaper {
	max-width: 500px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	
}

/* ------------------------------------------------------------
#homeDoor
------------------------------------------------------------ */
.img__homeDoor {
	max-width: 500px;
}
.img__homeDoor img {
	clip-path: polygon(10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0% calc(100% - 10px), 0% 10px);

}
/* PC用設定 */
@media screen and (min-width:751px) {
	.img__homeDoor img {
	clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0% calc(100% - 16px), 0% 16px);

}

}

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

/* ------------------------------------------------------------
#information
------------------------------------------------------------ */
.info__wrap {
	margin-top: 40px;
	background: 
	linear-gradient(to bottom, rgba(242, 1, 36, 0.4), rgba(242, 1, 36, 0.4)),
	url(../img/bg_dot01.svg) 0% 0% / auto 40% no-repeat,
	url(../img/bg_dot02.svg) 100% 0% / auto 40% no-repeat,
	url(../img/bg_dot03.svg) 100% 100% / auto 40% no-repeat,
	url(../img/bg_dot04.svg) 0% 100% / auto 40% no-repeat var(--primary-color);
	padding: 40px 0;
}
.info__head {
	font-weight: 800;
	color: #FFF;
	text-align: center;
	font-size: 20px;
	letter-spacing: 0.05em;
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
}
.info__head::before, .info__head::after {
	content: "";
	background-color: #FFF;
	width: 3px;
	height: 20px;
}
.info__head::before {
	transform: rotate(-30deg);
}
.info__head::after {
	transform: rotate(30deg);
}
.live__link {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	background-color: #FFF;
	box-shadow: 4px 6px 8px 0 rgba(0, 0, 0, 0.10);
	max-width: 375px;
	margin: 24px auto 0;
	transition: all .5s;
}
.credit__logo {
	margin: 20px auto 0;
	max-width: 315px;
}
/* PC用設定 */
@media screen and (min-width:751px) {
	.info__wrap {
	margin-top: 56px;
	background: 
	linear-gradient(to bottom, rgba(242, 1, 36, 0.4), rgba(242, 1, 36, 0.4)),
	url(../img/bg_dot01.svg) 0% 0% / auto 60% no-repeat,
	url(../img/bg_dot02.svg) 100% 0% / auto 60% no-repeat,
	url(../img/bg_dot03.svg) 100% 100% / auto 60% no-repeat,
	url(../img/bg_dot04.svg) 0% 100% / auto 60% no-repeat var(--primary-color);

}

.live__link:hover {
	transform: translateY(-3px);
	box-shadow: 4px 8px 10px 0 rgba(0, 0, 0, 0.10);
}
}

/* ------------------------------------------------------------
#
------------------------------------------------------------ */
/* 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: 16px auto 0;
    color: var(--primary-color);
    text-align: center;
    font-weight: bold;
    transition: all .3s;
    background-color: #FFF;
    box-shadow: 1px 3px 0px;
}
.overview__icon {
	width: 13px;
	height: 16px;
	transition: all .3s;
	mask: url(../img/icon_pdf.svg) no-repeat center / contain;
	background-color: var(--primary-color);
}


/* ------------------------------------------------------------
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);
	text-align: center;
	padding: 6px;
	font-family: var(--font-russo);
	font-size: 20px;
}
.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;
}
	/* .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 */
.mgtLLL{margin-top: 40px;}/* PC:48px */

.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;}
	.mgtLLL{margin-top: 48px;}


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

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