body {
	background-color: var(--ast-global-color-2);
}

.hero {
	height: 100dvh;
	display: grid;
}

/* SP — Pattern A
   ヘッダーを除いた表示領域 = 100、16:9動画の高さ = x、残り = y
   動画の上に 0.2y、下に 0.8y の余白。
   #about の見出しは 0.8y 領域の上から25%（動画下端 + 0.2y）から開始。
   0.8y 領域の最下部から 1em 上に「SCROLL」表示。 */
@media (max-width: 768px) {
	:root {
		--sp-header-h: 60px;
		--sp-video-h: 56.25vw;
		--sp-hero-spare: max(0px, calc(100svh - var(--sp-header-h) - var(--sp-video-h)));
	}

	.hero--a {
		position: relative;
		height: 100svh;
		padding-top: var(--sp-header-h);
		grid-template-rows:
			calc(var(--sp-hero-spare) * 0.2) var(--sp-video-h) calc(var(--sp-hero-spare) * 0.8);
	}

	.hero--a .hero__top,
	.hero--a .hero__btm {
		display: none;
	}

	.hero--a .hero__vid {
		grid-row: 2;
	}

	.hero--a .hero__scroll {
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 1em;
		z-index: 3;
		font-size: 13px;
		line-height: 1;
		letter-spacing: 0.1em;
		text-align: center;
		color: var(--ast-global-color-3);
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	.hero--a .hero__scroll span {
		display: inline-block;
		animation: hero-scroll-fade 2.8s ease-in-out infinite;
	}

	/* 少しでもスクロールしたら消す（home.js で付与） */
	.hero--a .hero__scroll.is-hidden {
		opacity: 0;
	}
}

/* SCROLL 表示：上から下へゆっくり移動しながらフェードをループ（スマホのみ表示） */
.hero__scroll {
	display: none;
}

@keyframes hero-scroll-fade {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	40% {
		opacity: 1;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateY(10px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero--a .hero__scroll span {
		animation: none;
	}
}

/* SP — Pattern B */
@media (max-width: 768px) {
	.hero--b {
		--r-top: 0.258;
		--r-mid: 0.516;
		--r-bot: 0.226;
		grid-template-rows:
			calc(100dvh * var(--r-top)) calc(100dvh * var(--r-mid)) calc(100dvh * var(--r-bot));
	}
}


@media (max-width: 769px) {
	.hero__top {
		padding: 2.5% 1% 5%;
	}

	.hero__top h1 {
		display: flex;
		height: 100%;
		align-items: flex-end;
		justify-content: center;
		width: 75%;
		margin: 0 auto;

	}

	.hero__top h1 img {
		filter: brightness(0.25);
		width: 100%;
	}
}

.hero__vid {
	overflow: hidden;
	position: relative;
}
	.hero__vid:after {
		display: block;
		content: "";
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 50%);
		position: absolute;
		top: 0;
		z-index: 1;
	}

.hero__vid h1 {
    position: absolute;
    height: 50%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    bottom: 0;
		z-index: 2;
}

.hero__vid video {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero__vid .hero__catchcopy {
	position: absolute;
    height: 50%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    top: 0;
		z-index: 2;
}
@media (max-width: 769px) {
	.hero__vid h1 {
		height: 40%;
	}
		.hero__vid h1 img{
			    height: 10vw;
		}
		.hero__vid .hero__catchcopy  {
			height: 60%;
		}		
		/* キャッチコピー画像は要素幅の80%で表示 */
		.hero__vid .hero__catchcopy img {
			width: 80%;
			height: auto;
		}
}
.hero__btm {
	display: flex;
	height: 100%;
	align-items: flex-start;
	justify-content: center;
	width: 75%;
	margin: 0 auto;
	padding: 5% 1% 2.5%;
}

.hero__btm img {
	filter: brightness(0.25);
	width: 100%;
}

/* PC — cover全画面 */
@media (min-width: 769px) {
	.hero {
		grid-template-rows: 1fr;
		position: relative;
	}

	.hero__top {
		width: 100%;
		height: 50%;
		position: absolute;
		display: flex;
		align-items: flex-start;
		justify-content: center;
		bottom: 0;
	}

	.hero__vid:after {
		display: block;
		content: "";
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 50%);
		position: absolute;
		top: 0;
		z-index: 1;
	}

	.hero__btm {
		width: 100%;
		height: 50%;
		position: absolute;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		top: 0;
	}

	.hero__top h1 img,
	.hero__btm img {
		filter: unset;
		width: auto;
	}
}

.hero__vid {
	overflow: hidden;
}

.hero__vid video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-break {
	display: none;
}

.ta-c {
	text-align: center;
}

.ast-container {
	padding: 0;
}

ul.notes {
	margin: 1em 0;
	padding-left: 0;
	list-style-type: none;
}

ul.notes li {
	padding-left: 1em;
}

ul.notes li::before {
	content: "※";
	display: inline;
	margin-left: -1em;
}

.announce_wrap {
	max-width: 1200px;
	margin: 4em auto 0;
	padding: 2em;
	border: 2px solid var(--ast-global-color-1);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.announce_heading {
	margin-top: -3.5em;
	margin-bottom: 0;
}

.announce_heading span {
	display: inline-block;
	padding: .5em 1em;
	background: var(--ast-global-color-1);
}

/* トップ ACCESS：ラベル（アクセス方法）が枠内に食い込む分、下に余白を足して詰まって見えないようにする */
#access .announce_heading {
	margin-bottom: 1.5em;
}

.announce_block {
	display: inline-block;
	text-align: left;
	border-bottom: 1px solid var(--ast-global-color-1);
	padding-bottom: 1em;
	margin-bottom: 1em;
	width: auto;
}

.announce_block:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.announce_block p:last-of-type {
	margin-bottom: 0;
}

.announce_block_subheading {
	font-size: 1em;
	border: 1px solid var(--ast-global-color-3);
	border-radius: 9999px;
	display: inline-block;
	margin: .75em 0 .5em !important;
	padding: .25em 1em;
	font-weight: 500;
}

.heading.sub-head {
	font-size: clamp(1.25em, 1.5vw, 1.5em);
	line-height: 2;
}

.heading.sub-head .line-lock {
	display: block;
}

/* HOME */
#content-header {
	width: 100%;
	height: calc(100vh - 90px);
	padding: 90px;
	background: url('/assets/images/biju-77.webp') no-repeat center right;
	background-size: cover;
	position: relative;
}

#content-header:after {
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(184 174 168 / 50%);
	z-index: 0;
}

#content-header .wrap-header-content {
	position: relative;
	height: 100%;
	display: flex;
	z-index: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.main_copy {
	text-align: center;
	margin-bottom: 90px;
}

.pre_open {
	border: 1px solid var(--ast-global-color-4);
	padding: 10px 20px;
	border-radius: 4px;
}

#pre_open_cp {
	margin-top: 9.375vw;
	padding: 9.375vw 4.688vw;
}

#pre_open_cp:before {
	display: block;
	content: "";
	width: 100%;
	height: 4.688vw;
	background: url('/assets/images/icon-campaign.svg') no-repeat center bottom;
	background-size: contain;
}

#pre_open_cp .sp-spacer {
	display: none;
}

#pre_open_cp .wrap-content {
	padding: 0 4.688vw;
	background: url('/assets/images/back-studio.webp') no-repeat center bottom;
	background-size: cover;
}

#pre_open_cp .block-content {
	max-width: 48.438vw;
	margin: 0 auto;
	padding: 1.563vw;
	gap: 1.563vw;
	background: var(--ast-global-color-4);
	display: flex;
	flex-direction: column;
	align-items: center;
}

#pre_open_cp .block-content h2 {
	text-align: center;
}

#pre_open_cp .block-flex {
	width: 100%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
}

#pre_open_cp .block-flex li {

	font-size: 1.25vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	counter-reset: number 0;
}

#pre_open_cp .block-flex span {
	position: relative;
}

#pre_open_cp .block-flex span.has-notice:after {
	position: absolute;
	font-size: 0.625vw;
	top: -0.625vw;
	right: -0.625vw;
	counter-increment: number 1;
	content: '※' counter(number);
}

#pre_open_cp .block-flex li .icon {
	height: 4.688vw;
	margin-bottom: .5em;
}

#pre_open_cp .block-flex li .icon img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

#pre_open_cp .block-sp_plan {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 3.125vw;
	gap: 1.563vw;
}

#pre_open_cp .block-sp_plan h3 {
	font-size: 1.25vw;
	font-weight: 300;
	padding: .5em 1em;
	margin: 0;
	border-radius: 0.208vw;
	border: 1px solid var(--ast-global-color-3);
}

#pre_open_cp .block-sp_plan h4 {
	font-size: 1.25vw;
	margin: 0;
}

#pre_open_cp .block-sp_plan .sp_price {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4.688vw;
}

#pre_open_cp .block-sp_plan .sp_price .private {
	text-align: right;
	width: calc((100% - 4.688vw) / 2);
}

#pre_open_cp .block-sp_plan .sp_price .group {
	text-align: left;
	width: calc((100% - 4.688vw) / 2);
}

#pre_open_cp .block-sp_plan .sp_price p {
	font-size: 1.25vw;
	margin-bottom: 0;
}

#pre_open_cp .block-sp_plan .sp_price p s {
	font-size: 0.729vw;
	color: var(--ast-global-color-2);
}

#pre_open_cp .sp_order button {
	font-size: 1.042vw;
	padding: 1em 2em;
}

#pre_open_cp ul.notice {
	list-style-type: none;
	margin: 0;
	padding: 0;
	font-size: .75em;
	text-align: right;
	counter-reset: number 0;
}

#pre_open_cp ul.notice li:before {
	margin-left: -2em;
	margin-right: .5em;
	counter-increment: number 1;
	content: '※' counter(number);
}

#main #about {
	padding: 14.063vw 4.688vw;
}

#about .block-video {
	max-width: 768px;
}

#main #about .wrap-content {
	text-align: center;
}

#main #about .block-text {
	display: inline-block;
	margin: 0 auto;
}

/* about */
#about h2 {
	font-size: 2em;
	line-height: 2;
	margin-bottom: 2em;
}

#about .block-video {
	width: 100%;
	margin-bottom: 2em;
}

#about .block-video video {
	width: 100%;
	object-fit: cover;
	border-radius: .5em;
}

@media screen and (max-width: 768px) {
	#main #about .block-text {
		display: block;
	}

	/* 見出しをヒーロー下余白(0.8y)の上から25%の位置から開始させる（-0.8y + 0.25×0.8y） */
	#main #about {
		margin-top: calc(var(--sp-hero-spare) * -0.6);
		padding-top: 0;
		/* 子要素(h2)のマイナスmarginと相殺されないようにする */
		display: flow-root;
	}

	#about h2 {

		font-size: 3.8vw;
	}

	#about h2 .about-lead {
		display: block;
	}

	/* 「本物の質を、もっと身近に。」 */
	#about h2 .about-lead--left {
		text-align: center;
		font-size: 7vw;
		white-space: nowrap;
		/* 7vw × 13文字 ≒ 91vw で #about の左右 padding(4.688vw) 内に収まらないため、
		   この行だけ padding 分を広げて1行で中央に置く */
		margin-inline: -4.688vw;
		/* 行の上側余白（line-height:2 のハーフレディング分 ≒ 0.53em）を相殺し、
		   文字の上端を基準線に合わせる */
		margin-top: -0.53em;
	}

	/* 「理想の自分に変わるための プライベート空間。」 */
	#about h2 .about-lead--center {
		text-align: center;
		font-size: 5vw;
		margin-top: 1em;
	}

	#about h2 .pc-break {
		display: none;
	}

	#about .wrapper-text {
		padding: 1em 2em;
	}

	#about .wrapper-text p {
		text-align: left;
	}

	#about .wrapper-text p br {
		display: none;
	}
}

/* plan */
#plan {
	overflow: visible;
}

#plan .wrap-content {
	position: relative;
	display: flex;
	z-index: 0;
}

#plan .block-text {
	width: calc(50% + 4.688vw);
	padding: 9.375vw 4.688vw 9.375vw 9.375vw;
	background: var(--ast-global-color-4);
	text-align: left;
}

#plan .wrap-content:after {
	position: absolute;
	bottom: 0;
	display: block;
	content: "";
	background: url('/assets/images/spacer-wave.svg') top center;
	width: 100%;
	height: 4.688vw;
	background-size: cover;
}

#plan .block-text .wrapper-plan {
	max-width: 36.458vw;
	margin: 2em auto 0;
	display: flex;
	flex-direction: column;
	gap: 2em;
}

#plan .block-bg {
	background: url(/assets/images/background-plan.webp) no-repeat center right;
	background-size: cover;
	background-attachment: scroll, local;
	width: calc(50% - 4.688vw);
	height: 100lvh;
	position: sticky;
	top: 0;
	z-index: -1;
	overflow: hidden;
	content: "";
}

#plan h2 {
	margin-bottom: 3.125vw;
}

#plan h3 {
	display: flex;
}

#plan h3 img {
	padding: .5em 0;
}

#plan h2 .heading-tag {
	font-size: .5em;
}

#plan .private,
#plan .group {
	margin-top: 3.125vw;
}

/*
#plan .private h3 {
	background: url('/assets/images/campaign-private-bgtext.svg') no-repeat center left;
	background-size: contain;
}

#plan .group h3 {
	background: url('/assets/images/campaign-group-bgtext.svg') no-repeat center left;
	background-size: contain;
}
*/

#plan .block-plan {
	padding: 2em;
	border: 1px solid var(--ast-global-color-1);
	border-radius: .25em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

/* プランカード → /plan/ の料金一覧へリンク */
#plan a.block-plan {
	position: relative;
	color: inherit;
	text-decoration: none;
	transition: border-color .3s, box-shadow .3s;
}

#plan a.block-plan::after {
	content: "料金を見る ›";
	align-self: flex-end;
	font-size: .8em;
	letter-spacing: .05em;
	color: var(--ast-global-color-3);
	border-bottom: 1px solid var(--ast-global-color-1);
}

#plan a.block-plan:hover {
	border-color: var(--ast-global-color-3);
	box-shadow: 2px 2px 0 var(--ast-global-color-1);
}

#single-plan .wrap-plan[id] {
	scroll-margin-top: 90px;
}

@media screen and (max-width: 768px) {
	#single-plan .wrap-plan[id] {
		scroll-margin-top: 60px;
	}
}

#plan .block-plan h3 {
	font-weight: 300;
	font-size: 1.5em;
	line-height: 1;
	padding: 0 .5em;
}

#plan .block-plan-header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1em;
	border-bottom: 1px solid var(--ast-global-color-1);
	flex-direction: row;
	padding-bottom: 1em;
	flex-flow: row-reverse;
}

#plan .block-plan-tag {
	background-color: var(--ast-border-color);
	color: var(--ast-code-block-background);
	padding: .5em .75em;
	border-radius: .25em;
	line-height: 1;
}

#plan .block-plan.limited {
	border: unset;
	background: var(--ast-global-color-3);
	border-radius: .25em;
	color: #fff;
}

#plan .block-plan.limited .block-plan-header {
	font-size: 2em;
	border-bottom: 2px double var(--ast-global-color-1);
	text-align: center;
	display: block;
	padding-bottom: .5em;
	line-height: 1;
}

#plan .block-plan.limited .limited-banner {
	display: block;
	border-radius: .25em;
	overflow: hidden;
	box-shadow: 2px 2px 2px var(--ast-global-color-2);

}

#plan .block-plan-detail {
	padding: 0 1.563vw;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 3.125vw;
}

#plan .block-plan p:last-of-type {
	margin-bottom: 0;
}

#plan .block-plan-detail dl {
	text-align: center;
	font-size: 1.042vw;
}

#plan .block-plan-detail dl dt {
	text-align: center;
}

#plan .block-plan-detail dl dt .icon-ticket {
	display: block;
	width: 7.813vw;
	height: 4.688vw;
	margin-bottom: 1em;
}

#plan .block-plan-detail dl dt .icon-ticket img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

#plan .block-plan-detail dl dt .text {
	display: inline-block;
	padding: .25em 1em;
	border-radius: 0.208vw;
	font-weight: 300;
	background: var(--ast-global-color-1);
	color: var(--ast-global-color-3);
	margin-bottom: .5em;
}

#plan .block-plan-detail dl dd {
	margin: 0;
}


#plan .block-plan.group dl,
#plan .block-plan.group dt {
	display: flex;
	flex-direction: row;
	align-items: center;

}

#plan .block-plan.group dt {
	gap: 1.563vw;
}

#plan .block-plan.group dt .icon-ticket,
#plan .block-plan.group dl dt .text {
	margin: 0;
	padding: 0;
}

#plan .block-plan.group dl dt .text {
	background: none;
}

#plan .block-plan.group dl dt .text:after {
	content: "窶ｦ";
	padding: 0 .25em;
}

@media screen and (max-width: 768px) {
	/* SP: [タグ] の下にプラン名を表示 */
	#plan .block-plan-header {
		display: flex;
		flex-flow: column-reverse;
		align-items: flex-start;
		justify-content: flex-end;
		gap: .75em;
	}

	#plan .block-plan h3 {
		font-size: 1.5em;
		padding: 0;
	}

	#plan .block-plan p.block-plan-tag {
		font-size: 1em;
	}
}


/* Howto */
#howto {
	padding: 14.063vw 4.688vw;
	display: flex;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 4.688vw;
}

#howto .wrap-content {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

#howto h2 {
	height: 3em;
	margin-bottom: 1.5em;
	width: 100%;
}

#howto h2 img {
	height: 100%;
	object-fit: cover;
}

#howto .sub-head {
	font-size: 1.5em;
	width: 100%;
}

#howto .block-video {
	position: relative;
	width: 100%;
	z-index: 0;
	/* 動画の読み込み前でも白文字・ボタンが読めるように暗色を敷く */
	background-color: var(--ast-global-color-3);
}

#howto .block-video:after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 50%);
	top: 0;
	z-index: 1;
}

#howto .block-video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 2.618/1;
	z-index: 0;
}

#howto .block-text {
	position: absolute;
	bottom: 0;
	padding: 2em;
	color: #fff;
	z-index: 2;
	text-shadow: 0px 0px 4px var(--ast-global-color-3);
	line-height: 2;
	letter-spacing: .1em;
}

#howto .block-text a.button {
	border-radius: 0;
	background: unset;
	color: #fff;
	border: 1px solid;
	box-shadow: 3px 3px #fff;
}

@media screen and (max-width: 768px) {
	#howto h2 {
		height: auto;
		width: 100%;
	}

	#howto h2 img {
		height: auto;
		width: 50%;
	}

	#howto .sub-head {
		font-size: 3.5vw;
	}

	#howto .sub-head span {
		font-size: 1.25em;
		display: block;
	}

	#howto .block-text {
		position: relative;
		text-shadow: unset;
		color: var(--ast-global-color-3);
	}

	#howto .block-text p br {
		display: none;
	}

	#howto .block-video:after {
		display: none;
	}

	/* SP は本文が動画の下（ベージュ背景）に来るため暗色を敷かない */
	#howto .block-video {
		background-color: transparent;
	}

	/* SP: 要素幅いっぱいのボタンにする */
	#howto .block-text a.button {
		display: block;
		width: 100%;
		background: var(--ast-border-color);
		color: var(--ast-comment-inputs-background);
		box-shadow: inset 1px 1px 0px var(--ast-comment-inputs-background), 4px 4px 1px var(--ast-global-color-1);
	}

	#howto .block-text a.button:hover,
	#howto .block-text a.button:focus-visible {
		color: #fff;
	}

	/* SP: 「マシンの使い方」「レッスン内容はこちら」の2行にする */
	#howto .block-text a.button {
		text-align: center;
	}

	#howto .block-text a.button .button-slash {
		display: none;
	}
}

.hover-fill {
	position: relative;
	display: inline-block;
	padding: 0.75em 1.5em;
	overflow: hidden;
	z-index: 0;
}

.hover-fill::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--ast-global-color-3);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.75s ease;
	z-index: -1;
}

.hover-fill:hover::before {
	transform: scaleX(1);
}

.hover-fill:hover {
	color: #FAFAFA;
}

/* contact */

#contact {
	padding: 14.063vw 4.688vw;
	display: flex;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 4.688vw;
}

#contact h2,
#contact p {
	margin: 0;
}

#contact p {
	font-size: 1.25vw;
	text-align: center;
}

#contact .block-button {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	gap: 4.688vw;
}

#access {
	padding: 14.063vw 4.688vw;
	display: flex;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 4.688vw;
	background: var(--ast-global-color-4);
}

#access h2,
#access p {
	margin: 0;
}

#access h3 {
	margin-bottom: .5em;
}

#access .block-text {
	text-align: center;
}

#access .block-map {
	width: 100%;
	height: 22.656vw;
}

#access .block-map iframe {
	width: 100%;
	height: 100%;
}

footer {
	min-height: 90px;
}

footer #biju-footer {
	padding: 30px;
	background-color: var(--ast-global-color-3);
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

footer .copyright {
	color: var(--ast-global-color-1);
}

footer .sns-link {
	display: flex;
	margin: 0;
	gap: 30px;
}

footer .sns-link li a {
	display: inline-block;
	height: 40px;
}

footer .sns-link li a img {
	height: 100%;
	object-fit: contain;
}

@media screen and (max-width: 920px) {
	#content-header {
		height: 100vh;
		padding: 11.719vw;
		background: url('/assets/images/biju-77.webp') no-repeat center top;
		background-size: cover;
	}
}

@media screen and (max-width: 768px) {
	.sp-break {
		display: inline;
	}

	#site-header .nav-toggle {
		position: fixed;
		top: 0;
		right: 0;
	}

	#site-header .nav-toggle button:active {
		border: none;
	}

	.nav-toggle:focus {
		border: none;
	}

	#plan h2,
	#contact h2,
	#access h2 {
		height: 6.25vw;
		margin-bottom: 3.906vw;
	}

	#plan h2 img,
	#contact h2 img,
	#access h2 img {
		width: auto;
		height: 100%;
		object-fit: contain;
	}

	#content-header {
		height: 100vh;
		padding: 11.719vw;
		background: url('/assets/images/biju-77.webp') no-repeat center top;
		background-size: cover;
	}

	#content-header .pre_open {
		max-width: 60%;
		padding: 2% 4%;
	}

	#content-header .main_copy {
		margin-bottom: 11.719vw;
	}

	#pre_open_cp {
		padding: 35.156vw 0;
	}

	#pre_open_cp:before {
		height: 11.719vw;
		margin-bottom: 3.906vw;
	}

	#pre_open_cp .block-content h2 {
		padding: 0 11.719vw;
	}

	#pre_open_cp .sp-spacer {
		display: flex;
		height: 38.411vw;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		background: url(/assets/images/back-studio.webp) no-repeat center;
		width: 100%;
		background-size: cover;
		padding: 0 11.719vw;
		margin-bottom: 3.906vw;
	}

	#pre_open_cp .sp-spacer>div {
		width: 3.906vw;
		height: 38.411vw;
		background: var(--ast-global-color-4);
	}

	#pre_open_cp .wrap-content {
		width: 100%;
		padding: 0;
		background: none;
	}

	#pre_open_cp .block-content {
		width: 100%;
		max-width: 100%;
		padding: 0;
		gap: 3.906vw;
	}

	#pre_open_cp .block-flex {
		padding: 0 11.719vw;
		justify-content: space-between;
		gap: 3.906vw;
	}

	#pre_open_cp .block-flex li {
		font-size: 5.208vw;
	}

	#pre_open_cp .block-flex li .icon {
		height: 7.813vw;
	}

	#pre_open_cp .block-flex span.has-notice:after {
		font-size: 1.823vw;
		top: -1.823vw;
		right: -1.823vw;
	}

	#pre_open_cp .block-flex li:nth-child(1) {
		order: 1;
	}

	#pre_open_cp .block-flex li:nth-child(2) {
		order: 3;
		width: 100%;
	}

	#pre_open_cp .block-flex li:nth-child(3) {
		order: 2;
	}

	#pre_open_cp .block-sp_plan {
		padding: 0 11.719vw;
		margin-top: 7.813vw;
		gap: 3.906vw;
	}

	#pre_open_cp .block-sp_plan h3 {
		padding: .25em .5em;
		border-radius: 0.521vw;
		font-size: 5.208vw;
	}

	#pre_open_cp .block-sp_plan .sp_price {
		flex-direction: column;
		gap: 3.906vw;
		align-items: center;
	}

	#pre_open_cp .block-sp_plan .sp_price .private,
	#pre_open_cp .block-sp_plan .sp_price .group {
		width: 100%;
		text-align: center;
	}

	#pre_open_cp .block-sp_plan h4 {
		font-size: 4.167vw;
		font-weight: 300;
	}

	#pre_open_cp .block-sp_plan .sp_price p {
		font-size: 3.125vw;
	}

	#pre_open_cp .block-sp_plan .sp_price p s {
		font-size: 2.083vw;
	}

	#pre_open_cp .sp_order {
		width: 100%;
		padding: 0 11.719vw;
	}

	#pre_open_cp .sp_order button {
		font-size: 2.604vw;
		padding: 1em;
		margin-bottom: .5em;
	}

	#plan .wrap-content {
		flex-direction: column-reverse;
	}

	#plan .block-text,
	#plan .block-bg {
		width: 100%;
	}

	#plan .block-bg {
		position: relative;
		height: 45.573vw;
		vertical-align: bottom;
	}

	#plan .block-bg:after {
		position: absolute;
		bottom: -1px;
		display: block;
		content: "";
		background: url('/assets/images/spacer-spwave.svg') no-repeat bottom center;
		width: 100%;
		height: 11.719vw;
		background-size: cover;
		vertical-align: bottom;
	}

	#plan .wrap-content:after {
		display: none;
	}

	#plan .block-text {
		padding: 0 11.719vw 35.156vw;
		text-align: left;
	}

	#plan .block-text .wrapper-plan {
		max-width: 100%;
	}

	#plan .block-text p {
		font-size: 3.125vw;
	}

	#plan .block-text p br {
		display: none;
	}

	#plan h3 img {
		height: 6.25vw;
		padding: 1% 0;
	}

	#plan .private,
	#plan .group {
		margin-top: 7.813vw;
	}

	#plan .block-plan-detail {
		padding: 0;
		justify-content: space-evenly;
	}

	#plan .group .block-plan-detail {
		justify-content: flex-start;
	}

	#plan .block-plan-detail dl {
		font-size: 3.125vw;
	}

	#plan .block-plan-detail dl dt .icon-ticket {
		width: 19.531vw;
		height: 11.719vw;
	}

	#contact {
		padding: 35.156vw 11.719vw;
		gap: 7.813vw;
	}

	#contact p {
		font-size: 2.604vw;
	}

	#contact .block-button {
		gap: 3.906vw;
		flex-wrap: nowrap;
	}

	#access {
		padding: 35.156vw 0 0;
		gap: 11.719vw;
	}

	#access h2,
	#access p {
		font-size: 3.125vw;
	}

	#access .block-text {
		padding: 0 11.719vw;
	}

	#access .block-map {
		height: calc(35.156vw * 2);
	}
}

/* edit single-page */

.biju-page-header {
	--spacer-px: 90px;
	position: relative;
	margin: var(--spacer-px);
	width: calc(100% - var(--spacer-px) * 2);
	height: calc(100svh - var(--spacer-px) * 2 - 90px);
	padding: 0;
	background: var(--bg-url) no-repeat center;
	background-size: cover;
	min-height: calc(var(--spacer-px) * 4)
}

.biju-page-header.header_half,
.biju-page-header.half {
	background-position: center;
	height: calc((100svh - var(--spacer-px) * 2 - 90px) / 2);
}

.biju-page-header-subhead {
	margin-left: calc(var(--spacer-px) / 2);
	background: var(--ast-global-color-3);
	position: absolute;
	bottom: var(--spacer-px);
	left: calc(var(--spacer-px) * -1);
}

.biju-page-header-subhead .biju-page-header-text {
	padding: 24px calc(var(--spacer-px) /2) 38px var(--spacer-px);
}

.biju-page-header-subhead .biju-page-header-text img {
	height: 100%;
}

.biju-page-header-border {
	background: var(--ast-global-color-2);
	width: 100%;
	height: 2px;
	position: absolute;
	left: calc(var(--spacer-px) / 2 * -1);
	bottom: 24px;
}

@media screen and (max-width: 768px) {
	br.sp-visible {
		display: inline !important;
	}

	.biju-page-header {
		--sp-spacer-px: 11.71875vw;
		margin: 90px calc(var(--sp-spacer-px) / 2);
		width: calc(100% - var(--sp-spacer-px));
		height: calc(100svh - var(--sp-spacer-px)* 2 - 90px);
	}

	.biju-page-header-subhead {
		margin-left: calc(var(--sp-spacer-px) / 4);
		left: calc(var(--sp-spacer-px) / 2 * -1);
		font-size: 2.08333vw;
	}

	.biju-page-header-subhead h1 {
		font-size: 1em;
		height: 17vw;
		padding: 2em calc(var(--sp-spacer-px) / 2) 3em var(--sp-spacer-px);
	}

	.biju-page-header-border {
		left: calc(var(--sp-spacer-px) / 2* -1);
		bottom: 1.5em;
	}

	.biju-page-header-subhead {
		max-width: 80%;
	}

	.biju-page-header-subhead .biju-page-header-text {
		padding: 3.125vw calc(var(--sp-spacer-px) /2) 4.948vw var(--sp-spacer-px);
	}
}

#single-plan h2 {
	width: 100%;
	border-bottom: 1px solid #b8aea8;
	margin-bottom: 1.5em;
	position: relative;
	line-height: 2;
}

#single-plan h2:after {
	content: "PRIVATE SESSION";
	display: block;
	position: absolute;
	right: 0;
	font-size: .5em;
	padding-right: 60px;
	line-height: 2;
	margin: 0;
	color: #b8aea8;
	font-weight: 500;
}

#single-plan .block-plan-detail {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
}

#single-plan .block-plan-detail dl {
	font-size: 16px;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

#single-plan .block-plan-detail dl dt {
	text-align: center;
}

#single-plan .block-plan-detail dl dt .icon-ticket {
	display: block;
	width: 90px;
	height: 60px;
	margin-bottom: 1em;
}

#single-plan .block-plan-detail dl dt .icon-ticket img {
	height: 100%;
	width: auto;
	object-fit: contain;
}

#single-plan .block-plan-detail dl dt .text {
	display: inline-block;
	padding: .25em 1em;
	border-radius: 0.208vw;
	font-weight: 300;
	background: var(--ast-global-color-1);
	color: var(--ast-global-color-3);
	margin-bottom: .5em;
}

#single-plan .block-plan-detail dl dd {
	margin: 0;
}

#single-plan .block-plan-detail dl.detail-text>div {
	display: grid;
	align-items: start;
	gap: 1em;
	border-bottom: 1px dashed var(--ast-global-color-2);
	padding-bottom: 1em;
}

#single-plan .block-plan-detail dl.detail-text>div dt {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	padding: .25em 1em;
	border-radius: 0.208vw;
	font-weight: 300;
	background: var(--ast-global-color-1);
	color: var(--ast-global-color-3);
}

#single-plan .block-plan-detail dl.detail-text>div dd {
	display: grid;
	grid-column: 2 / 3;
	grid-row: 1 span;
	gap: .1em;
}

#single-plan .block-plan-detail dl.detail-text>div dd span {
	padding: .25em 15px 0;
	font-size: .75em;
}

#single-plan .block-plan-detail dl.detail-text>div dd span:first-child {
	padding: 0 15px;
	font-size: 1.25em;
}

#single-plan .wrap-plan.group.continuation {
	margin: 90px 0 90px auto;
}

#single-plan .wrap-plan.group.continuation h2:after {
	content: "CONTINUOUS PLAN";
}

#single-plan .goal h2:after {
	content: "GOAL ACHIEVEMENT COURSES";
}

#single-plan .goal .block-plan-detail dl.detail-text>div {
	gap: .5em;
}

#single-plan .goal .block-plan-detail dl.detail-text>div dt {
	grid-column: 1 / 2;
	grid-row: 1 / 2;
	font-size: 1.25em;
	text-align: left;
	background: none;
	border-radius: unset;
	border-bottom: 2px double #000;
	padding-left: 0;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 1em;
}

#single-plan .goal .block-plan-detail dl.detail-text>div dt span {
	font-size: .75em;
	padding: .25em .5em;
	background: var(--ast-global-color-1);
	border-radius: .25em;
}

#single-plan .goal .block-plan-detail dl.detail-text>div dd {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	padding: .5em;
}

#single-plan .goal .block-plan-detail dl.detail-text>div dd span {
	font-size: 1em;
	text-align: right;
}

#single-plan .goal .block-plan-detail dl.detail-text>div dd span:first-child {
	text-align: left;
}

#single-plan .goal .content-image img {
	object-position: center;
	object-position: 60% 0;
}

#single-plan .continuation .content-image img {
	object-position: right;
}

#single-plan .block-plan.group dl,
#single-plan .block-plan.group dt {
	display: flex;
	flex-direction: row;
	align-items: center;

}

#single-plan .block-plan.group dt {
	gap: 1.563vw;
}

#single-plan .block-plan.group dt .icon-ticket,
#single-plan .block-plan.group dl dt .text {
	margin: 0;
	padding: 0;
}

#single-plan .block-plan.group dl dt .text {
	background: none;
}

#single-plan .block-plan.group dl dt .text:after {
	content: "窶ｦ";
	padding: 0 .25em;
}

#single-plan .wrap-plan {
	width: 100%;
	margin-bottom: 90px;
	display: flex;
	flex-wrap: nowrap;
	max-width: 1400px;
}

#single-plan .content-image {
	width: calc(100% - 180px);
	border-radius: 16px;
}

#single-plan .content-image img {
	height: 100%;
	object-fit: cover;
	object-position: left;
	border-radius: 0 16px 16px 0;
}

#single-plan .content-plan {
	width: 780px;
	padding: 60px 60px 60px 60px;
	margin: 90px 30px 90px -180px;
	background: #fff;
	border-radius: 24px;
}

#single-plan .wrap-plan.group {
	margin: 90px 0 0 auto;
}

#single-plan .wrap-plan.group h2:after {
	content: "GROUP SESSION";

}

#single-plan .group .content-plan {
	z-index: 1;
	padding: 60px 60px 60px 60px;
	margin: 90px -180px 90px 90px;
}

#single-plan .group .content-image img {
	border-radius: 16px 0 0 16px;
}

#single-plan ul.plans {
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin-left: 1em;
}

#single-plan ul.plans li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .5em;
}

#single-plan ul.plans li .plan-label {
	background-color: var(--ast-global-color-1);
	padding: .15em .75em;
	border-radius: .25em;
}

#single-plan .plan-card__recommend {
	padding: 1em;
}

#single-plan .plan-card__recommend h3 {
	padding: .5em 1em;
	text-align: center;
	border-top: 1px solid var(--ast-global-color-2);
	border-bottom: 5px double var(--ast-global-color-2);
}

#single-plan .plan-card__recommend dl {
	padding: 1em;
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	gap: .5em;
}

#single-plan .plan-card__recommend dl dt {
	font-size: 1.25em;
	background-color: var(--ast-global-color-0);
	padding: .25em 1em;
	display: inline-block;
	border-radius: .25em;
	font-weight: normal;
}

#single-plan .plan-card__recommend dl dd {
	border-left: 1px solid var(--ast-global-color-1);
	padding: .25em 0 .25em 1em;
}

/* ==============================
   Trial Section
   ============================== */
#single-plan section.trial {
	max-width: 798px;
	margin-inline: auto;
	padding: 2em;
	background-color: var(--ast-global-color-4);
	color: var(--ast-global-color-3);
	text-align: center;
	margin: 90px auto 120px;
	border: 2px solid var(--ast-global-color-2);
	border-radius: .25em;
}

@media screen and (max-width: 798px) {
	#single-plan section.trial {
		padding: .5em;
		margin: 1em;
		border: 1px solid var(--ast-global-color-2);
	}
}

#single-plan section.trial .trial__inner {
	border-radius: .25em;
	background: var(--ast-comment-inputs-background);
	padding: 2em;
}

@media screen and (max-width: 798px) {
	#single-plan section.trial .trial__inner {
		padding: 1.5em;
	}
}

#single-plan section.trial h2 {
	font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
	line-height: 1.6;
	font-weight: 700;
	display: inline-block;
	width: auto;
}

#single-plan section.trial h2::after {
	display: none;
}

#single-plan section .trial__catch {
	display: inline-block;
	margin-top: 8px;
	font-size: clamp(1.4rem, 1.2rem + 1vw, 1.75rem);
	color: var(--ast-global-color-1);
	background-color: var(--ast-border-color);
	padding: .25em 2em;
	color: var(--ast-code-block-background);
	font-weight: normal;
	border-radius: .25em;
	/* display: block; */
	width: 100%;
}

@media screen and (max-width: 798px) {
	#single-plan section .trial__catch {
		font-size: 5.1vw;
	}
}

#single-plan section .trial__card {
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--ast-global-color-5);
	text-align: left;
	display: grid;
	grid-template-columns: 1fr auto;
	box-shadow: 3px 2px 6px #dccfc187;
}

@media screen and (max-width: 798px) {
	#single-plan section .trial__card {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
}

#single-plan section .trial__card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#single-plan section .trial__card figcaption {
	padding: 2em 4em;
	display: flex;
	flex-direction: column;
	gap: .75em;
}
@media screen and (max-width: 798px) {
	#single-plan section .trial__card figcaption {
		padding: 1.5em 1.5em;
	}
}

#single-plan section .trial__card figcaption p {

	margin: 0;
}

#single-plan section .trial__title {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 4px;
	font-size: 1.5em;
	border: 1px solid var(--ast-global-color-1);
	border-left: none;
	border-right: none;
	padding: .25em .5em;
	text-align: center;
}

@media screen and (max-width: 798px) {
	#single-plan section .trial__title {
		    padding: .25em 0;
    font-size: 5vw;
	}	
}

#single-plan section .trial__price {
	font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.25rem);
	font-weight: 700;
	color: var(--ast-global-color-3);
	line-height: 1.3;
	text-align: right;
	letter-spacing: .05em;
}
@media screen and (max-width: 798px) {
	#single-plan section .trial__price {
		    text-align: center;
    font-size: 6vw;
	}
}

#single-plan section .trial__note {
	font-size: 0.8rem;
	color: var(--ast-global-color-2);
	line-height: 1.6;
}

@media screen and (max-width: 798px) {
#single-plan section .trial__note {
	    font-size: 3.5vw;
}
}

#single-plan section .trial__coupon {
	margin-top: 40px;
}

#single-plan section .trial__coupon h3 {
	font-size: 1.5em;
	line-height: 1.5;
	margin-bottom: 16px;
}
@media screen and (max-width: 798px) {
	#single-plan section .trial__coupon h3 {
		font-size: 3.25vw;
	}
}

#single-plan section .trial__coupon h3 span {
	font-size: 1.5em;
}

#single-plan section .trial__coupon h3:after {
	content: "";
	display: block;
	width: 32px;
	height: 16px;
	background-color: var(--ast-global-color-3);
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	margin: .5em auto;
}

#single-plan section .trial__coupon .trial__coupon-image {
	width: 75%;
	margin: 0 auto;
}
@media screen and (max-width: 798px) {
	#single-plan section .trial__coupon .trial__coupon-image {
		width: 100%;
	}
}
#single-plan section .trial__coupon img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

#single-plan section .trial__coupon-note {
	margin-top: 2em;
	margin-bottom: 1em;
	font-size: 1em;
	line-height: 1.8;
	color: var(--ast-global-color-3);
}
@media screen and (max-width: 798px) {
	#single-plan section .trial__coupon-note br {
		display: none;
	}
}

#single-plan section .trial__cta,
#single-plan section .results__cta {
	margin-top: 1em;
	display: inline-block;
	padding: 6px;
	border: 1px solid var(--ast-global-color-3);
	border-radius: .25em;
	box-shadow: 4px 4px 1px #b8aea88f;
}

#single-plan section .btn--line {
	display: inline-block;
	padding: 1em 4em;
	border-radius: .25em;
	background-color: var(--ast-global-color-3);
	color: var(--ast-global-color-5);
	font-weight: 700;
	text-decoration: none;
	line-height: 1.6;
	transition: opacity 0.2s ease;
	font-weight: normal;
}
@media screen and (max-width: 798px) {
	#single-plan section .btn--line {
		    padding: 1em;
    font-size: 3.75vw;
	}
}


#single-plan section.trial .btn--line:hover,
#single-plan section.trial .btn--line:focus-visible {
	opacity: 0.85;
}

/* ==============================
   Results Section
   ============================== */
#single-plan section.results {
	margin-inline: auto;
	margin-bottom: 180px;
	padding: 40px 20px;
	text-align: center;
}

#single-plan section.results .results__inner {
	max-width: 798px;
	margin: 6em auto 0;
	background: hsl(31deg 28% 81% / 50%);
	padding: 2em;
	border-radius: .25em;
	position: relative;
}

@media screen and (max-width: 798px) {
	#single-plan section.results .results__inner {
		    margin-top: 28vw;
	}
}

#single-plan section.results h2 {
	position: absolute;
	z-index: 2;
	border: unset;
	top: -6.5em;
	left: 0;
	width: 100%;
	text-align: center;
}
@media screen and (max-width: 798px) {
	#single-plan section.results h2 {
		  top: -28vw;
	}
}

#single-plan section.results h2::after {
	display: none;
}

#single-plan section.results h2 img {
	height: 7em;
	object-fit: contain;
}
@media screen and (max-width: 798px) {
	#single-plan section.results h2 img {
		    height: 28vw;
	}
}
#single-plan section.results__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

#single-plan section.results__item {
	display: flex;
	gap: 4px;
}

#single-plan section.results__item img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 5;
	object-fit: cover;
	border-radius: 4px;
}

#single-plan section.results__item--pair img {
	width: 50%;
}

#single-plan section.results__instagram {
	margin-top: 24px;
}

#single-plan section.results__instagram a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid var(--ast-global-color-2);
	color: var(--ast-global-color-3);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
	transition: background-color 0.2s ease;
}

#single-plan section.results__instagram a:hover,
#single-plan section.results__instagram a:focus-visible {
	background-color: var(--ast-global-color-5);
}

#single-plan section.results__instagram img {
	flex-shrink: 0;
}

#single-plan section .results__carousel {}

#single-plan section .results__carousel .splide__slide {
	display: flex;
	justify-content: center;
}

/* Instagram公式blockquoteの最大幅を強制的に揃える */
#single-plan section .results__carousel .instagram-media {
	width: 100% !important;
	max-width: 400px !important;
	min-width: 0 !important;
}

.membership_fee {
	display: inline-block;
	margin: 0 auto;
	border: 2px solid var(--ast-global-color-1);
	padding: 1em;
	border-radius: .5em;
	margin-bottom: 90px;
}

.membership_fee .inner {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	padding: 2em 4em;
	background: #fff;
	border-radius: .25em;
	gap: 2em;
}

.membership_fee h2 {
	display: inline-block;
	width: 100%;
	padding: 0 1em;
	margin-bottom: 0;
	border-bottom: 4px double #b8aea8;
}

.membership_fee h2:after {
	display: none;
}

.membership_fee .image {
	width: 100%;
	aspect-ratio: 2.618 / 1;
	background: url('/assets/images/image-plan-membership_fee.webp') no-repeat center;
	background-size: cover;
}

.membership_fee .inner p {
	margin-bottom: 0;
}

.membership_fee .inner p span {
	display: block;
}

.membership_fee .inner p span.price {
	display: inline-flex;
	flex-direction: row;
	align-items: flex-end;
	font-size: 1.5em;
	line-height: 1;
	gap: .25em;
	margin-bottom: 2rem;
}

.membership_fee .inner p span.sp-price {
	font-size: 1.75em;
}

.membership_fee .inner p span.sp-price:before {
	content: "\021c0";
	display: inline-block;
	line-height: 2rem;
	vertical-align: bottom;
	padding-right: .1em;
}

.membership_fee .inner p span.sp-price sup {
	font-size: .35em;
	vertical-align: top;
	line-height: 2.65;
}

.membership_fee .inner p span.note {
	padding: .25em .25em .25em 1.25em;
	text-align: left;
}

.membership_fee .inner p span.note:before {
	content: "※";
	margin-left: -1.25em;
	padding-right: .25em;
}


/* profile */
.biju-page-header.profile {
	width: 100%;
	height: auto;
	margin: 0;
}

.biju-page-header.profile:before {
	position: absolute;
	z-index: 0;
	background: var(--ast-global-color-2);
	top: calc(var(--outer-margin-px) * -1);
	;
	left: calc(var(--outer-margin-px) * -1);
	width: 100vw;
	height: 100svh;
	display: block;
	content: "";
}

.biju-page-header.profile .biju-page-header-inner {
	position: relative;
	z-index: 1;
	--outer-margin-px: 60px;
	max-width: 1200px;
	width: calc(100% - var(--outer-margin-px) * 2);
	margin: var(--outer-margin-px) auto;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	height: auto;
	min-height: 100svh;
}

.biju-page-header.profile .profile-content-wrapper {
	padding: 30px;
	background: var(--ast-global-color-4);
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.biju-page-header.profile .biju-page-header-subhead {
	margin-left: calc(var(--outer-margin-px) / 2 * -1);
	position: relative;
	bottom: 0;
	margin-bottom: 30px;
}

.biju-page-header.profile .biju-page-header-border {
	background: var(--ast-global-color-4);
}

.biju-page-header.profile .profile-text-wrapper {
	width: 520px;
	padding: 30px;
}

.biju-page-header.profile .profile-text h2 {
	position: relative;
	font-size: 40px;
	font-weight: 300;
	left: -.5em;
	margin-bottom: 1em;
	border-bottom: 1px solid #000;
	padding: 0 .5em .25em;
}

.biju-page-header.profile .profile-text h2:after {
	position: absolute;
	display: block;
	width: 100%;
	content: "SHUN SEYA";
	text-align: right;
	font-size: .5em;
	line-height: 1;
	bottom: -1.25em;
	right: 0;
}

.biju-page-header.profile .profile-image-wrapper {
	width: calc(100% - 520px);
	max-height: 100svh;

}

.biju-page-header.profile .profile-image-wrapper img {
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.biju-page-header.profile .sp-profile-image-wrapper {
	display: none;
}


.profile-image-grid .profile-image-wrapper-inner .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1200px) {
	.biju-page-header.profile .biju-page-header-inner {
		width: 100%;
		margin: 0;
	}

	.biju-page-header.profile .profile-text-wrapper {
		width: 100%;
	}

	.biju-page-header.profile .profile-image-wrapper {
		display: none;
	}

	.biju-page-header.profile .profile-text p br {
		display: none;
	}

	.biju-page-header.profile .sp-profile-image-wrapper {
		display: inline;
	}
}

@media screen and (max-width: 1200px) {
	#single-plan .content-image {
		width: 50%;
	}

	#single-plan .content-image img {
		object-position: 25% 0;
	}

	#single-plan .private .block-plan-detail {
		justify-content: center;
	}

	#single-plan .content-plan {
		width: 60%;
		padding: 30px;
		margin: 90px 30px 90px -30px;
	}

	#single-plan .content-plan p br {
		display: none;
	}

	#single-plan h2 {
		width: 100%;
	}

	#single-plan h2:after {
		padding: 0;
		margin: 0;
	}

	#single-plan .group .content-plan {
		padding: 30px;
		margin: 90px -30px 90px 30px;
	}

	#single-plan .wrap-plan.group h2 {
		margin-left: 0;
		padding: 0;
	}

	#single-plan .wrap-plan.group h2:after {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	.sp-no-break br {
		display: none;
	}

	.sp-align-left p {
		text-align: left;
	}

	#single-plan .wrap-plan {
		flex-direction: column;
		margin-bottom: 10%;
	}

	#single-plan h2 {
		font-size: 5.208vw;
	}

	#single-plan .content-image {
		width: 90%;
		height: 50vw;
	}

	#single-plan .content-image img {
		width: 100%;
		object-fit: cover;
	}

	#single-plan .content-plan {
		width: 90%;
		padding: 5%;
		margin: -10% 0 10% auto;
		border-radius: 16px 0 0 16px;
	}

	#single-plan .wrap-plan.group {
		flex-direction: column-reverse;
		margin: 10% 0 0 auto;
	}

	#single-plan .group .content-plan {
		margin: -10% auto 10% 0;
		border-radius: 0 16px 16px 0;
	}

	#single-plan .group .content-image {
		margin-left: 10%;
	}

	#single-plan .block-plan-detail {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1em;
	}

	#single-plan .block-plan-detail dl {
		display: flex;
		align-items: center;
		flex-direction: row;
		font-size: 16px;

	}

	#single-plan .block-plan-detail dl dt {
		display: flex;
		align-items: center;
		gap: 1em;
	}

	#single-plan .block-plan-detail dl dt .icon-ticket {
		margin: 0;
		width: 19.531vw;
		height: auto;
	}

	#single-plan .block-plan-detail dl dt>span {
		margin: 0;
		padding: 0;
		background: none;
	}

	#single-plan .block-plan-detail dl dt span.text {
		margin: 0;
		padding: 0;
		background: none;
	}

	#single-plan .block-plan-detail dl dt span.text:after {
		content: "窶ｦ";
		margin: 0 .5em;
	}

	#single-plan .continuation .block-plan-detail dl,
	#single-plan .goal .block-plan-detail dl {
		flex-direction: column;
		width: 100%;
	}

	#single-plan .block-plan-detail dl.detail-text>div {
		width: 100%;
	}

	#single-plan .block-plan-detail dl.detail-text>div dt {
		grid-column: 1 / 2;
		grid-row: 1/2;
	}

	#single-plan .block-plan-detail dl.detail-text>div dd {
		grid-column: 1 / 2;
		grid-row: 2 span;
	}

	#single-plan .goal .block-plan-detail dl.detail-text>div dt {
		flex-direction: column;
		gap: 0;
	}

	#single-plan .goal .block-plan-detail dl.detail-text>div dt span {
		background: none;
		color: var(--ast-global-color-3);
	}

	#single-plan .goal .block-plan-detail dl.detail-text>div dt span:before {
		content: "\0226A";
		display: inline;
	}

	#single-plan .goal .block-plan-detail dl.detail-text>div dt span:after {
		content: "\0226B";
		display: inline;
	}

	#single-plan .goal .block-plan-detail dl.detail-text>div dd span:first-child br {
		display: none;
	}

	.membership_fee .inner {
		padding: 2em;
	}

	.membership_fee .inner p {
		text-align: left;
		padding: 0 1em;
	}

	.membership_fee .inner p span.price {
		flex-direction: column;
		align-items: flex-start;
		gap: .5em;
	}

	.membership_fee .inner p span.sp-price:before {
		line-height: 1;
		vertical-align: top;
	}

	.membership_fee .inner p span.note br {
		display: none;
	}
}

/* machines */
#machines {
	display: flex;
	flex-direction: column;
	gap: 90px;
	padding: 90px 0 120px;
	--machine-image-reformer: url('/assets/images/machine_reformer.webp');
	--machine-image-cadillac: url('/assets/images/machine_cadillac.webp');
	--machine-image-ladderBarrel: url('/assets/images/machine_ladderBarrel.webp');
	--machine-image-chair: url('/assets/images/machine_chair.webp');
}

#machines .block {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

#machines .subhead {
	height: 100px;
}
@media screen and (max-width: 798px) {
	#machines .announce_wrap {
		margin: 4em 1em 0;
    padding: 2em 1em;
	}
}
#machines .announce_wrap h2 {
	font-size: 1.5em;
}

#machines .announce_heading {
	margin-top: -4em;
	margin-bottom: 1em;
}

#machines .announce_block p {
	display: inline-block;
	width: auto;
}

#machines .block h2 {
	display: inline-block;
	font-size: 40px;
	position: relative;
	margin-bottom: 54px;
	padding: 0 16px;
	border-bottom: 1px solid var(--ast-global-color-3);
}

#machines .block h2 span {
	display: block;
	position: absolute;
	font-size: 16px;
	line-height: 1.5;
	right: 0;
}

#machines .block:nth-child(odd) h2 {
	margin-left: 50%;
}

#machines .content {
	display: grid;
	padding: 30px;
	gap: 30px;
	background-color: #f6eee7;
	border-radius: .5em;
	grid-template-rows: auto;
	grid-template-columns: 50% 1fr;
}

#machines .subhead {
	padding: 0 30px;
}

#machines .content .detail .sp-image {
	display: none;
}

#machines .content .image {
	margin: -130px -60px 0 0;
	background-size: cover;
}

#machines .reformer .content .image {
	background: var(--machine-image-reformer) no-repeat center;
	background-size: contain;
}

#machines .cadillac .content .image {
	background: var(--machine-image-cadillac) no-repeat center;
	background-size: contain;
}

#machines .ladderBarrel .content .image {
	background: var(--machine-image-ladderBarrel) no-repeat center;
	background-size: contain;
}

#machines .chair .content .image {
	background: var(--machine-image-chair) no-repeat center;
	background-size: contain;
}

#machines .block:nth-child(odd) .image {
	margin: -130px 0 0 -60px;
}

#machines .media-wrap {
	display: grid;
	grid-template-columns: 50% 1fr;
	grid-column: 1 / span 2;
	gap: 2em;
	padding: 2em;
	background: var(--ast-border-color);
}

#machines .media-wrap .viewer {
	aspect-ratio: 16 / 9;
	grid-row: 1 / 3;
	grid-column: 1 / 2;
	width: 100%;
	height: 100%;
}

#machines .media-wrap .viewer video {
	width: 100%;
	object-fit: contain;
}

#machines .media-wrap .thumbnails {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column: 2 / 4;
	grid-template-rows: auto auto;
	grid-row: 1 / 3;
	margin: 0;
	list-style-type: none;
	align-content: space-between;
	gap: 1em;
}

#machines .media-wrap .thumbnail {
	filter: brightness(0.5);
}

#machines .media-wrap .thumbnail.is-active {
	filter: brightness(1);
}

#machines .media-wrap .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#machines .media-wrap video,
#machines .media-wrap img {
	aspect-ratio: 16/9;
}

@media screen and (max-width: 798px) {
	#machines .media-wrap {
    padding: 1em;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
	}
	#machines .media-wrap .viewer {
		    grid-row: 1 / 2;
    grid-column: 1 / 3;
	}
	#machines .media-wrap .thumbnails {
		grid-row: 2 / 4;
    grid-column: 1 / 3;
	}
}

/*
#machines .content .photo ul {
	display: flex;
	gap: 30px;
	margin: 0;
	list-style-type: none;
}

#machines .content .photo ul li {
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
}

#machines .content .photo ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
	*/

@media screen and (max-width: 980px) {
	#machines .block {
		padding: 0;
	}

	#machines .block .subhead {
		height: auto;
		padding: 0;
	}

	#machines .block h2 {
		font-size: 5.082vw;
		position: relative;
		padding: 0 1.633vw;
		margin-bottom: 5.51vw;
	}

	#machines .block h2 span {
		font-size: 2.041vw;
	}

	#machines .block:nth-child(odd) h2 {
		margin-left: 0;
	}

	#machines .content {
		display: flex;
		flex-direction: column;
		padding: 30px 30px;
		gap: 0;
	}

	#machines .content .image {
		display: none;
	}

	#machines .content .detail .sp-image {
		display: inline;
		width: calc(30% + 60px);
		float: right;
		margin: calc(-15.245vw - 1em) -40px 0 1em;
		max-height: 45vw;
		object-fit: contain;
				margin-right: -15px;
	}

	#machines .reformer .content .detail .sp-image {
		width: calc(50% + 60px);
		margin-top: -31.245vw;

	}

	#machines .cadillac .content .detail .sp-image {
		width: calc(40% + 60px);
		margin-top: -32.245vw;
	}

	#machines .ladderBarrel .content .detail .sp-image {
		width: calc(35% + 60px);
		margin-top: -27.245vw;
	}

	#machines .chair .content .detail .sp-image {
		margin-top: -35.245vw;
		max-height: 60vw;
		width: auto;
	}

	#machines .content .photo ul {
		flex-direction: column;
	}

	/*
	#machines .content .detail {
		position: relative;
		margin-bottom: 60px;
	}
	#machines .content .detail .sp-image {
		display: block;
		width: 50%;
		float: right;
		margin: -120px 0 1em 1em;
	}
	#machines .content .image {
		background: none;
	}
		*/
}

#beginner {
	max-width: 1200px;
	margin: 0 auto 180px;
}

#beginner main {
	display: flex;
	flex-direction: column;
	gap: 60px;
	border-radius: 15px;
}

#beginner h1 {
	margin-bottom: 45px;
	font-size: 2.25rem;
}

#beginner h2 {
	border-bottom: 1px solid var(--ast-global-color-3);
	line-height: 2;
	font-size: 2rem;
	margin-bottom: 1em;
}

#beginner h3 {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 1em;
	margin-top: 2em;
}

#beginner h4 {
	font-size: 1.25rem;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	margin-bottom: 1em;
}

#beginner h4:before {
	display: inline-block;
	content: "";
	width: .75em;
	height: .75em;
	background-color: var(--ast-global-color-1);
	margin-right: .5em;
}

#beginner h4:after {
	display: inline-block;
	content: "";
	width: 4em;
	height: 1px;
	background-color: var(--ast-global-color-1);
	margin-left: .5em;
}

#beginner h3:before {
	content: "[";
	margin-right: .25em;
}

#beginner h3:after {
	content: "]";
	margin-left: .25em;
}

#beginner main {
	padding: 90px;
	background-color: #fff;
}

#beginner .visual-image {
	width: 100%;
	aspect-ratio: 1/0.382;
	margin-bottom: 2em;
}

#beginner .visual-image img {
	border-radius: .5em;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#beginner ul {
	margin: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: max-content;
	gap: 1em;
}

#beginner ul li {
	padding: 1em 2em 1em 3.5em;
	border: 1.25px solid var(--ast-global-color-1);
	border-radius: .25em;
}

#beginner ul li:before {
	content: "";
	display: inline-block;
	width: .5em;
	height: 1em;
	border-bottom: 1px solid var(--ast-global-color-3);
	border-right: 1px solid var(--ast-global-color-3);
	margin-left: -2em;
	margin-right: 1em;
	transform: rotate(45deg);
}

#beginner ol {
	display: grid;
	gap: 1em;
	margin: 0;
	padding: 2em;
}

#beginner ol li {
	background: linear-gradient(90deg, var(--ast-global-color-1) .5em, var(--ast-global-color-4) .5em);
	padding: .75em 1em;
	margin-left: 1em;
	border-radius: .1em;
}

#beginner ol li::marker {
	margin-right: .5em;
}

#beginner #features ul {
	margin: 0;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

#beginner #features ul li {
	display: grid;
	grid-template-columns: 38.2% 1fr;
	gap: 1em 2em;
	padding: 2em;
}

#beginner #features ul li .image {
	grid-column: 1/2;
	grid-row: 1/3;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: .25em;
}

#beginner #features ul li .subhead {
	display: block;
	margin-top: 2em;
	grid-column: 2/3;
	grid-row: 1/2;
}

#beginner #features ul li .text {
	margin-bottom: 2em;
	display: block;
	grid-column: 2/3;
	grid-row: 2/3;
}

#beginner #features ul li:before {
	display: none;
}

#beginner #features ul li strong {
	width: 10em;
	display: inline-block;
	text-align: center;
	background: var(--ast-global-color-0);
	border-radius: .25em;
	padding: .2em 1em;
	margin-right: 1em;
}

#beginner #benefits-overview ul {
	grid-template-columns: auto auto auto;
}

#beginner #studio-features .visual-image {
	width: 100%;
	aspect-ratio: 1 / 0.382;
	margin-bottom: 2em;
	border-bottom: 6px double var(--ast-global-color-1);
	padding-bottom: 2em;
}

#beginner #studio-features .block {
	display: grid;
	grid-template-columns: 25% 1fr;
	gap: 2em;
	margin-bottom: 2em;
	align-items: start;
	padding-bottom: 2em;
	border-bottom: 1px solid var(--ast-global-color-1);
}

#beginner #studio-features .block:last-of-type {
	border-bottom: 6px double var(--ast-global-color-1);
}

#beginner #studio-features .block .image {
	aspect-ratio: 1/1;
	border-radius: .25em;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#beginner #studio-features .block h3 {
	margin: 0 0 1em;
}

#beginner #studio-features .block .text {
	padding: 2em 0;
}

@media screen and (max-width: 1200px) {
	#beginner {
		padding: 0 7.5vw;
		margin: 0 auto 15vw;
	}

	#beginner main {
		padding: calc(7.5vw / 2);
	}

	#beginner #benefits-overview ul {
		grid-template-columns: auto auto;
	}
}

@media screen and (max-width: 768px) {
	#beginner {
		padding: 0 calc(11.71875vw / 2);
	}

	#beginner main {
		padding: calc(11.719vw / 2);
	}

	#beginner h1 {
		font-size: 2rem;
		margin-bottom: calc(11.719vw / 2);
	}

	#beginner h2 {
		font-size: 1.75rem;
		line-height: 1.25;
		padding-bottom: .25em;
	}

	#beginner #features ul li {
		padding: 1em;
	}

	#beginner #benefits-overview ul {
		grid-template-columns: 1fr;
	}
}

/* is_single */
.single-posts {
	max-width: 1200px;
	margin: 0 auto 180px;
	width: 100%;
}

.single-posts main {
	display: flex;
	flex-direction: column;
	border-radius: 15px;
}

.single-posts main article {
	background-color: #fff !important;
	padding: 0 !important;
}

/*.single-posts main article section {
	padding-top: 2em;
	margin-bottom: 4em;
}*/
.single-posts main article p {
	line-height: 2;
	margin-bottom: 2em;
}

.single-posts h1 {
	margin-bottom: 45px;
	font-size: 2.25rem;
}

.single-posts h2 {
	border-bottom: 1px solid var(--ast-global-color-3);
	line-height: 2;
	font-size: 2rem;
	margin-bottom: 1em;
}

.single-posts h3 {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 1em;
	margin-top: 2em;
}

.single-posts h4 {
	font-size: 1.25rem;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	margin-bottom: 1em;
}

.single-posts h4:before {
	display: inline-block;
	content: "";
	width: .75em;
	height: .75em;
	background-color: var(--ast-global-color-1);
	margin-right: .5em;
}

.single-posts h4:after {
	display: inline-block;
	content: "";
	width: 4em;
	height: 1px;
	background-color: var(--ast-global-color-1);
	margin-left: .5em;
}

.single-posts h3:before {
	content: "[";
	margin-right: .25em;
}

.single-posts h3:after {
	content: "]";
	margin-left: .25em;
}

.single-posts main {
	padding: 90px;
	background-color: #fff;
}

.single-posts .visual-image {
	width: 100%;
	aspect-ratio: 1/0.382;
	margin-bottom: 4em;
}

.single-posts .visual-image img {
	border-radius: .5em;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-posts ul {
	margin: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: max-content;
	gap: 1em;
}

.single-posts ul li {
	padding: 1em 2em 1em 3.5em;
	border: 1.25px solid var(--ast-global-color-1);
	border-radius: .25em;
}

.single-posts ul li:before {
	content: "";
	display: inline-block;
	width: .5em;
	height: 1em;
	border-bottom: 1px solid var(--ast-global-color-3);
	border-right: 1px solid var(--ast-global-color-3);
	margin-left: -2em;
	margin-right: 1em;
	transform: rotate(45deg);
}

.single-posts ol {
	display: grid;
	gap: 1em;
	margin: 0;
	padding: 2em;
}

.single-posts ol li {
	background: linear-gradient(90deg, var(--ast-global-color-1) .5em, var(--ast-global-color-4) .5em);
	padding: .75em 1em;
	margin-left: 1em;
	border-radius: .1em;
}

.single-posts ol li::marker {
	margin-right: .5em;
}

.single-posts .wp-block-media-text__content h2,
.single-posts .wp-block-media-text__content h3,
.single-posts .wp-block-media-text__content h4 {
	margin-top: 0;
}

.single-posts .biju-grid-media-text__content {
	display: grid;
	justify-items: center;
}

@media screen and (max-width: 1200px) {
	.single-posts {
		padding: 0 7.5vw;
		margin: 0 auto 15vw;
	}

	.single-posts main {
		padding: calc(7.5vw / 2);
	}

	.single-posts #benefits-overview ul {
		grid-template-columns: auto auto;
	}
}

@media screen and (max-width: 768px) {
	.single-posts {
		padding: 0 calc(11.71875vw / 2);
	}

	.single-posts main {
		padding: calc(11.719vw / 2);
	}

	.single-posts h1 {
		font-size: 2rem;
		margin-bottom: calc(11.719vw / 2);
	}

	.single-posts h2 {
		font-size: 1.75rem;
		line-height: 1.25;
		padding-bottom: .25em;
	}
}

/* site-footer */
#site-footer {
	display: flex;
	background: var(--ast-global-color-3);
	color: var(--ast-global-color-3);
	align-items: center;
	justify-content: space-between;
	padding: 1em 90px;
}

#site-footer p:last-of-type {
	margin-bottom: 0;
}


/* splide-slider */
.splide__slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* ==============================
   トップ：Instagram カルーセル（SP のみ）
   ============================== */
.home-results {
	display: none;
}

@media screen and (max-width: 768px) {
	.home-results {
		display: block;
		padding: 0 4.688vw 14.063vw;
		text-align: center;
	}

	.home-results .home-results__inner {
		position: relative;
		margin-top: 28vw;
		padding: 2em 1em;
		background: hsl(31deg 28% 81% / 50%);
		border-radius: .25em;
	}

	.home-results h2 {
		position: absolute;
		top: -28vw;
		left: 0;
		width: 100%;
		margin: 0;
		z-index: 2;
	}

	.home-results h2 img {
		height: 28vw;
		object-fit: contain;
	}

	.home-results__carousel .splide__slide {
		display: flex;
		justify-content: center;
	}

	/* Instagram公式blockquoteの最大幅を揃える */
	.home-results__carousel .instagram-media {
		width: 100% !important;
		max-width: 400px !important;
		min-width: 0 !important;
	}

	/* 期間限定：3,000円で体験できる／特別レッスンも実施中!! */
	#plan .block-plan.limited > p {
		font-size: 4.5vw;
	}

	/* 「#plan .block-text p br { display:none }」を打ち消し、この改行だけ有効にする */
	#plan .block-plan.limited > p br.sp-break {
		display: inline;
	}

	/* フッター：SNS → 著作権表記 の順に縦並び・中央揃え */
	#site-footer {
		flex-direction: column-reverse;
		justify-content: center;
		gap: 1em;
		padding: 1.5em 1em;
		text-align: center;
	}

	#site-footer .sns-link {
		justify-content: center;
		padding-left: 0;
	}
}
