/*--------------------------------------------------------------
# カスタムプロパティ
--------------------------------------------------------------*/
:root {
	/* 色 */
	--color-highlight: #FF420E;
	--color-danger: #ff2020;
	--color-light: #666;
	--color-light-grey: #ddd;
	--color-grey: #b0b0b0;
	--vw16: 4.2vw;
	--vw20: 5.1vw;
	--vw24: 6vw;
	--vw32: 8vw;
	--vw40: 10vw;
	--vw64: 17vw;
	--vw80: 21vw;
	/* コンテナーの幅 */
	--container-width: 90%;
	/* コンテナーの幅(上書き用) */
	--container-width-narrow: 90%;
	/* コンテナーの最大幅 */
	--container-max-width: 1260px;
	/* コンテナーの最大幅 */
	--container-max-width-narrow: 960px;
	/* グリッド余白 */
	--grid-gap: 2vw;
	/* 余白 */
	--footer-padding: 2.5rem;/* フッター */
	--main-area-padding: 6rem;/* メイン領域の上下 */
	--section-padding: 6rem;/* セクションの上下 */
	/* Fontawesome */
	--fontawesome: "Font Awesome 6 Pro";
	--fontawesome-sharp: "Font Awesome 6 sharp";
	--fontawesome-brands: "Font Awesome 6 Brands";
	/* font-family */
	--font-main: "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-accent: "kallisto", "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--font-number: "new-science-mono", "noto-sans-cjk-jp", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	/* フォントサイズ */
	--font-size-small: .75rem;
	/* ヘッダーの高さ */
	--header-height: 80px;
	/* アニメーション */
	--transition-default: .2s;
}

@media screen and (min-width: 768px) {
	:root {
		--vw16: 2vw;
		--vw20: 2.5vw;
		--vw24: 3vw;
		--vw32: 4vw;
		--vw40: 5vw;
		--vw64: 8vw;
		--vw80: 10vw;
	}
}

@media screen and (min-width: 992px) {
	:root {
		--vw16: 1.25vw;
		--vw20: 1.5625vw;
		--vw24: 1.875vw;
		--vw32: 2vw;
		--vw40: 3.125vw;
		--vw64: 5vw;
		--vw80: 6.25vw;
		/* ヘッダーの高さ */
		--header-height: 100px;
		/* コンテナーの幅(上書き用) */
		--container-width-narrow: 80%;
		/* コンテナーの最大幅 */
		--container-max-width-narrow: 960px;
		/* 余白 */
		--main-area-padding: 8rem;/* メイン領域の上下 */
		/* TOTOPボタンの直径 */
		--btn-totop-width: 5rem;
		/* グリッド余白 */
		--grid-gap: 1vw;
		/* 余白 */
		--footer-padding: 4rem;/* フッター */
		--section-padding: 8rem;/* セクションの上下 */
	}
}

/* 色の割り当て
--------------------------------------------- */
:root {
	/* 文字色 */
	--color-headline-primary: #fff;
	--color-text-primary: #fff;
	/* 背景色 */
	--color-background: #000;
	--color-background-sub: #1b1b1b;
	/* ボタン背景 */
	--btn-background-color: var(--gradient-primary-horizonal);
	/* テキストリンク文字色 */
	--btn-text-color: var(--color-primary);
	--btn-text-hover-color: var(--color-highlight);
	/* ボーダー */
	--border-color: var(--color-primary);
	/* グラデーション */
	--gradient-primary-horizonal: linear-gradient(to right,  rgba(159, 10, 132, 1) 0%, rgba(37, 114, 186, 1) 100%);
	--gradient-primary-vertical: linear-gradient(to bottom,  rgba(159, 10, 132, 1) 0%, rgba(37, 114, 186, 1) 100%);
}

/* normalize
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

a:hover, a:focus, a:active {
	color: inherit;
}

a {
	cursor: pointer;
}

a,
a:visited {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
}

.post,
.page {
	margin: 0;
}

summary {
	list-style: none;
}

/*--------------------------------------------------------------
# レイアウト崩れ防止
--------------------------------------------------------------*/
/* footerが常に画面最下部にいるように固定
--------------------------------------------- */
#page {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site_footer {
	margin-top: auto;
	padding: calc(var(--footer-padding) * 2) 0 var(--footer-padding);
}

.site_footer .container > *:not(:last-child) {
	margin-bottom: calc(var(--footer-padding) / 2);
}

/*--------------------------------------------------------------
# 汎用
--------------------------------------------------------------*/
html {
	font-family: var(--font-main);
	font-size: 16px;
}

body {
	font-family: var(--font-main);
	background: var(--color-background);
	color: var(--color-text-primary);
	line-height: 2em;
	overflow-y: scroll;
}

p {
	line-height: 2em;
}

p:not(:last-child) {
	margin-bottom: .75em;
}

img {
	display: block;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6,
.home h1,
.home h2,
.home h3,
.home h4,
.home h5,
.home h6,
.sub-header h1,
p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding-left: 1.25em;
}

/* 改行調整 */
span.br {
	display: inline-block;
}

/* flexbox */
.flex_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 575px) {
	[class*=table_data] span.br {
		display: block;
	}
}

/*--------------------------------------------------------------
# セクション
--------------------------------------------------------------*/
section.front_section:not(:last-child) {
	/* margin-bottom: var(--grid-gap); */
}

/*--------------------------------------------------------------
# 画像
--------------------------------------------------------------*/
[class*=img_wrapper] {
	max-width: 100%;
}

[class*=img_wrapper] > img {
	width: 100%;
	height: 100%;
}

.img_wrapper_cover {
	overflow: hidden;
}

.img_wrapper_cover > img {
	object-fit: cover;
}

.img_wrapper_contain > img {
	object-fit: contain;
}

/*--------------------------------------------------------------
# テキスト
--------------------------------------------------------------*/
.front_parag {
	font-size: var(--vw16);
}

.text_line-through {
	/* text-decoration: line-through; */
	margin-right: .5em;
}

/*--------------------------------------------------------------
# ボタン
--------------------------------------------------------------*/
a.btn_bordered {
	position: relative;
	font-size: var(--vw16);
	font-weight: 700;
	color: var(--color-text-primary);
	line-height: 1em;
	transition: color var(--transition-default);
}

a.btn_bordered > span {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--color-background);
	height: 100%;
	padding: var(--vw16) calc(var(--vw16) + var(--vw20)) var(--vw20);
	border: 1px solid var(--color-text-primary);
	transition: transform var(--transition-default);
	z-index: 2;
}

a.btn_bordered::before {
	content: '';
	position: absolute;
	display: block;
	/* background: var(--color-text-primary); */
	width: 100%;
	height: 100%;
	bottom: -4px;
	right: -4px;
	border: 1px solid var(--color-text-primary);
}

a.btn_bordered.btn_entry::before {
	background: url(../img/asset/bg_common.webp) center center / cover no-repeat;
}

a.btn_bordered.btn_entry::before {
	background: url(../img/asset/bg_common.webp) center center / cover no-repeat;
}

a.btn_bordered.btn_entry_close {
	pointer-events: none;
}

a.btn_bordered.btn_entry_close .link_next::after {
	content: none;
}

/* a.btn_bordered::after {
	content: '';
	position: absolute;
	display: block;
	background: var(--color-text-primary);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: top right;
	transition: transform .3s;
	z-index: 1;
} */

a.btn_bordered:hover > span {
	transform: translate(4px, 4px);
}

/* a.btn_bordered:hover::after {
	transform-origin: top left;
	transform: scale(1, 1);
} */

a.btn_icon_single {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #8d8d8d;
	transition: color var(--transition-default);
}

a.btn_bordered > span > span {
	display: flex;
	align-items: center;
	gap: calc(var(--vw16) / 2);
}

a.btn_backhome {
	display: block;
	font-size: 1rem;
	width: fit-content;
	margin: 5rem auto 2px;
}

a.btn_backhome > span {
	padding: 1rem calc(var(--vw16) + var(--vw20));
}

a.btn_backhome > span::before {
	content: '\f053';
	font-family: var(--fontawesome-sharp);
	font-weight: 400;
	padding-right: .75em;
}

@media screen and (min-width: 992px) {
	a.btn_bordered > span > span {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# リスト
--------------------------------------------------------------*/
.page_list li:not(:last-child) {
	margin-bottom: .5em;
}

.page_list li > ul,
.page_list li > ol {
	margin-left: 1em;
	margin-top: .5em;
}

/*--------------------------------------------------------------
# 見出し
--------------------------------------------------------------*/
h2.front_h2 {
	font-family: var(--font-accent);
	font-style: italic;
	margin-bottom: 1.25rem;
}

/*--------------------------------------------------------------
# リンク
--------------------------------------------------------------*/
/* 下線 */
a.link_underline {
	display: inline-block;
}

a.link_underline span {
	text-decoration: underline;
}

/* 外部リンクアイコン */
.link_other::after {
	content: '\f35d';
	display: inline-block;
	font-family: var(--fontawesome-sharp);
	margin-left: .5rem;
}

/* 右矢印アイコン */
.link_next::after {
	content: '\f054';
	display: inline-block;
	font-family: var(--fontawesome-sharp);
	margin-left: .5rem;
}

/* 非活性 */
a.link_disabled {
	color: #666;
	pointer-events: none;
	text-decoration: none !important;
}

/* NEWS */
.post_content a {
	text-decoration: underline;
}

.post_content a[target="_blank"]::after {
	content: '\f35d';
	display: inline-block;
	font-family: var(--fontawesome-sharp);
	margin-left: .5rem;
}

/*--------------------------------------------------------------
# コンテナー
--------------------------------------------------------------*/
/* コンテンツの幅
--------------------------------------------- */
[class*=container] {
	position: relative;
	margin-right: auto;
	margin-left: auto;
}

body:not(.home) .container {
	width: var(--container-width);
	max-width: var(--container-max-width);
}

body:not(.home) .container_narrow {
	width: var(--container-width-narrow);
	max-width: var(--container-max-width-narrow);
}

/*--------------------------------------------------------------
# グリッド
--------------------------------------------------------------*/
.area_grid {
	display: grid;
	gap: var(--grid-gap);
}

.area_grid_item {
	background: var(--color-background-sub);
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
.site_header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	margin-bottom: 2.5rem;
	z-index: 50;
}

.home .site_header {
	position: absolute;
	margin-bottom: 0;
	z-index: 50;
}

.header_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 1rem;
}

#link_front {
	max-width: 160px;
}

/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
.nav_footer {
	font-size: .75rem;
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}

.nav_footer li {
	display: inline;
}

.nav_footer li:not(:last-child)::after {
	content: '|';
	padding: 0 .25em 0 .5em;
}

.nav_footer a {
	text-decoration: underline;
}

.copyright {
	font-size: .75rem;
	width: 100%;
	text-align: center;
	line-height: 1.75em;
}

.link_archive {
	text-align: center;
}

#link_2023 {
	font-size: min(var(--vw16), 1rem);
	margin: 1rem auto;
}

#link_2023 > span{
	padding: 1rem calc(var(--vw16) + var(--vw20));
}

#link_2023 span::after {
	content: '\f054';
	font-family: var(--fontawesome-sharp);
	font-weight: 400;
	padding-left: .75em;
}

/*--------------------------------------------------------------
# SNS
--------------------------------------------------------------*/
.list_sns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	list-style: none;
	padding: 0;
}

.list_sns i {
	font-size: 1.5rem;
}

.btn_icon_single.instagram:hover {
	color: #CF2E92;
}

.btn_icon_single.facebook:hover {
	color: #1877f2;
}

.btn_icon_single.youtube:hover {
	color: #DA1725;
}

.btn_icon_single.twitch:hover {
	color: #9146FF;
}

.btn_icon_single.twitter-x:hover {
	color: #fff;
}

@media screen and (min-width: 768px) {
	.list_sns i {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------------
# タブ
--------------------------------------------------------------*/
.tab_area {
	display: none;
	opacity: 0;
}

.tab_area.is-active {
	animation: tabActive .4s .2s forwards;
	display: block;
}

@keyframes tabActive{
	0% {
		transform: translateY(1rem);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/*--------------------------------------------------------------
# クイックリンク
--------------------------------------------------------------*/
.quick-link_section {
	margin: var(--grid-gap);
}

.quick-link_grid {
	display: grid;
	gap: var(--grid-gap);
}

.quick-link_grid_item a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: calc(var(--vw16) * .75);
	font-weight: 500;
	gap: var(--vw16);
	width: 100%;
	height: 100%;
	padding: var(--vw16);
	text-align: center;
	line-height: 1em;
}

.quick-link_grid_item a > * {
	position: relative;
	z-index: 1;
}

.quick-link_grid_item a::after {
	content: '';
	position: absolute;
	display: block;
	background: linear-gradient(to right, rgba(159, 10, 132, 1) 0%, rgba(37,114,186, 1) 100%);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: opacity .25s;
	opacity: .6;
	z-index: 0;
}

.quick-link_grid_item .img_title_logo {
	width: 75%;
	height: auto;
}

@media screen and (max-width: 991px) {
	.quick-link_section.sp {
		display: block;
	}

	.quick-link_section.pc {
		display: none;
	}

	.quick-link_grid_item .img_title_logo {
		width: 80%;
		max-height: 12vw;
	}

	.quick-link_grid {
		display: flex;
	}

	.quick-link_section {
		margin: var(--grid-gap) 0;
	}

	.quick-link_grid_item {
		aspect-ratio: 5 / 2;
	}

	.splide__slide.is-active .quick-link_grid_item a::after {
		border: 1px solid var(--color-text-primary);
		opacity: .8;
	}
}

@media screen and (min-width: 992px) {
	.quick-link_section.pc {
		display: block;
	}

	.quick-link_section.sp {
		display: none;
	}

	.quick-link_grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: var(--grid-gap);
	}
	
	.quick-link_grid_item .img_title_logo img {
		max-height: 12vh;
	}

	.quick-link_grid_item br {
		content: '';
		padding-left: .5em;
	}

	.quick-link_grid_item:first-child a::after {
		background: linear-gradient(to right, rgba(159, 10, 132, 1) 0%, #7d3898 100%);
	}

	.quick-link_grid_item:nth-child(2) a::after {
		background: linear-gradient(to right, #7d3898 0%, #5757a9 100%);
	}

	.quick-link_grid_item:nth-child(3) a::after {
		background: linear-gradient(to right, #5757a9 0%, rgba(37,114,186, 1) 100%);
	}

	.quick-link_grid_item:nth-child(2)::before,
	.quick-link_grid_item:nth-child(2)::after {
		transform-origin: top left;
	}

	.quick-link_grid_item a:hover::after {
		border: 1px solid var(--color-text-primary);
		opacity: .8;
	}
}

/*--------------------------------------------------------------
# ハンバーガー
--------------------------------------------------------------*/
#drawer__button__checkbox {
	display: none !important;
}

.drawer__button__label {
	position: absolute;
	top: calc(var(--header-height) * .25);
	right: calc(var(--header-height) * .25);
	z-index: 11;
}

.home .drawer__button__label {
	position: fixed;
}


.drawer__button__bars {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.drawer__button__bars::before {
	content: '';
	display: block;
	background: var(--color-background);
	width: calc(var(--header-height) * .5);
	height: calc(var(--header-height) * .5);
	border: 2px solid var(--color-text-primary);
	border-radius: 1px;
	transform: rotate(45deg);
}

.drawer__button__bars::after {
	position: absolute;	
	content: '\f0c9';
	font-family: var(--fontawesome-sharp);
	font-size: min(var(--vw20), 1.5rem);
	font-weight: 700;
}

#drawer__button__checkbox:checked ~ .drawer__button__label .drawer__button__bars::after {
	position: absolute;	
	content: '\f00d';
	font-family: var(--fontawesome-sharp);
	font-size: min(var(--vw20), 1.5rem);
	font-weight: 700;
}

/*--------------------------------------------------------------
# ドロワー
--------------------------------------------------------------*/
/* ドロワー展開時のbodyスクロール禁止
--------------------------------------------- */
body.drawer__open {
	width: 100%;
	height: 100%;
	position: fixed;
}

.drawer__body {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	background: var(--color-background);
	color: var(--color-text-primary);
	width: 100%;
	max-width: 100%;
	height: 100vh;
	left: 0;
	padding: var(--header-height) var(--vw24) 0;
	overflow: hidden;
	z-index: 10;
}

.visibility-hidden {
	visibility: hidden;
}

#drawer__button__checkbox:checked ~ .drawer__body {
	animation: drawerWrapperOpen .4s forwards;
}

#drawer__button__checkbox:not(:checked) ~ .drawer__body {
	animation: drawerWrapperClose .8s forwards;
}

@keyframes drawerWrapperOpen {
	0% {
		top: -100%;
	}
	100% {
		top: 0;
	}
}

@keyframes drawerWrapperClose {
	0% {
		top: 0;
	}
	50% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}

.drawer__inner {
	overflow: scroll;
	width: 100%;
	padding: var(--vw16) var(--vw16) var(--vw80);
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.drawer__inner::-webkit-scrollbar{
	display: none;
}

.navigation__parent,
.navigation__child {
	font-family: var(--font-accent);
	font-weight: 700;
	font-style: italic;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navigation__child {
	margin-top: var(--vw16);
}

.navigation__parent__item {
	font-size: var(--vw20);
	margin-bottom: 1.5em;
	line-height: 1.5em;
}

.navigation__child__item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .5em;
	font-size: var(--vw16);
	line-height: 1.5em;
}

.navigation__child__item::before {
	flex: 1;
	content: '';
	display: flex;
	align-items: center;
	background: #777;
	width: 100%;
	height: 1px;
}

.drawer__inner .list_sns {
	margin-top: var(--vw64);
}

@media screen and (min-width: 768px) {
	.drawer__inner {
		padding: var(--vw40);
	}

	.global_grid_wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--vw64);
	}

	.drawer__inner .list_sns {
		justify-content: flex-end;
	}
}

/*--------------------------------------------------------------
# メディアクエリ
--------------------------------------------------------------*/
.pc {
	display: none;
}

@media (min-width: 768px) {
	.pc {
		display: block;
	}

	.sp {
		display: none;
	}
}

/*--------------------------------------------------------------
# Webフォントちらつき防止
--------------------------------------------------------------*/
html {
	visibility: hidden;
}

html.wf-active,
html.wfno-load {
	visibility: visible;
}

#splash,
#splash * {
	visibility: visible;
}

/*--------------------------------------------------------------
# アニメーション
--------------------------------------------------------------*/
/* fadeIn
--------------------------------------------- */
.fadeIn {
	opacity: 0;
	transition: opacity .4s .6s;
}

.fadeIn.animate__show {
	opacity: 1;
}

/* slideIn
--------------------------------------------- */
.slideIn {
	transform: translateY(1rem);
	opacity: 0;
	transition: opacity .4s .6s, transform .4s .6s;
}

.slideIn.animate__show {
	transform: translateY(0);
	opacity: 1;
}

/* popIn
--------------------------------------------- */
.popIn {
	transform: scale(0);
	transition: transform .4s .8s;
}

.popIn.animate__show {
	transform: scale(1);
}

/* blur
--------------------------------------------- */
.blur {
	filter: blur(2rem);
	transform: scale(1.1);
	opacity: 0;
	transition: opacity .4s .8s, transform .4s .8s, filter .4s .8s;
}

.blur.animate__show {
	filter: none;
	transform: scale(1);
	opacity: 1;
}

/* cover
--------------------------------------------- */
.removeCover {
	position: relative;
}

.removeCover::before,
.removeCover .tri_bg::before,
.drawer__body::before {
	content: '';
	position: absolute;
	display: block;
	background: #fff;
	object-fit: cover;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	transform: scale(1);
	transform-origin: bottom left;
	transition: transform .4s 1s;
	z-index: 5;
}

.removeCover.animate__show::before,
.removeCover.animate__show .tri_bg::before {
	transform: scale(1, 0);
}

.removeCover::after,
.removeCover .tri_bg::after {
	content: '';
	position: absolute;
	display: block;
	background: var(--color-background);
	object-fit: cover;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	transform: scale(1);
	transform-origin: bottom left;
	transition: transform .4s .6s;
	z-index: 6;
}

.removeCover.animate__show::after,
.removeCover.animate__show .tri_bg::after {
	transform: scale(1, 0);
}

.removeCover.area_grid_item_img::before,
.removeCover.area_grid_item_img .tri_bg::before,
.removeCover.cast_grid_spacer_inner_before::before,
.removeCover.cast_grid_spacer_inner_after::before {
	transform-origin: top left;
}

.removeCover.area_grid_item_img::after,
.removeCover.area_grid_item_img .tri_bg::after,
.removeCover.cast_grid_spacer_inner_before::after,
.removeCover.cast_grid_spacer_inner_after::after {
	transform-origin: top left;
}

#drawer__button__checkbox:checked ~ .drawer__body::before {
	height: 100vh;
	animation: drawerOpen .4s .4s forwards;
}

#drawer__button__checkbox:not(:checked) ~ .drawer__body::before {
	animation: drawerClose .4s forwards;
}

@keyframes drawerOpen {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1, 0);
	}
}

@keyframes drawerClose {
	0% {
		transform: scale(1, 0);
	}
	100% {
		transform: scale(1);
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.cast_grid_item:nth-child(2) .removeCover.cast_grid_image:before,
	.cast_grid_item:nth-child(3) .removeCover.cast_grid_text:before,
	.cast_grid_item:nth-child(4) .removeCover.cast_grid_image:before,
	.cast_grid_item:nth-child(5) .removeCover.cast_grid_text:before,
	.removeCover.cast_grid_spacer_outer_after::before {
		transform-origin: top left;
	}

	.cast_grid_item:nth-child(2) .removeCover.cast_grid_image::after,
	.cast_grid_item:nth-child(3) .removeCover.cast_grid_text::after,
	.cast_grid_item:nth-child(4) .removeCover.cast_grid_image::after,
	.cast_grid_item:nth-child(5) .removeCover.cast_grid_text::after,
	.removeCover.cast_grid_spacer_outer_after::after {
		transform-origin: top left;
	}
}

@media screen and (min-width: 992px) {
	.cast_grid_item:nth-child(2) .removeCover.cast_grid_image:before,
	.cast_grid_item:nth-child(3) .removeCover.cast_grid_image:before,
	.cast_grid_item:nth-child(4) .removeCover.cast_grid_text:before,
	.cast_grid_item:nth-child(5) .removeCover.cast_grid_text:before,
	.removeCover.cast_grid_spacer_outer_after::before {
		transform-origin: top left;
	}

	.cast_grid_item:nth-child(2) .removeCover.cast_grid_image::after,
	.cast_grid_item:nth-child(3) .removeCover.cast_grid_image::after,
	.cast_grid_item:nth-child(4) .removeCover.cast_grid_text::after,
	.cast_grid_item:nth-child(5) .removeCover.cast_grid_text::after,
	.removeCover.cast_grid_spacer_outer_after::after {
		transform-origin: top left;
	}
}

/* ディレイ
--------------------------------------------- */
@media screen and (min-width: 768px) {
	.popIn.delay {
		transition-delay: 1s;
	}
	
	.popIn.delay2 {
		transition-delay: 1.2s;
	}
	
	.popIn.delay3 {
		transition-delay: 1.4s;
	}
	
	.fadeIn.delay,
	.slideIn.delay {
		transition-delay: .8s;
	}

	.slideIn.delay2 {
		transition-delay: 1s;
	}

	.slideIn.delay3 {
		transition-delay: 1.2s;
	}

	.slideIn.delay4 {
		transition-delay: 1.4s;
	}

	.blur.delay {
		transition: opacity .4s 1s, transform .4s 1s, filter .4s 1s;
	}
}

/*--------------------------------------------------------------
# reCaptchaのバッジ非表示
--------------------------------------------------------------*/
body:not(.page-id-28) .grecaptcha-badge,
body:not(.page-id-30) .grecaptcha-badge {
	display: none;
}
