/* =========================================================
   スタジオ紹介帯（庭の全幅背景＋半透明白パネル）
   Figma node 113:1865。全幅の庭写真の上に、白70%パネル（TL+BRアーチ・幅860）＋テキスト＋ボタン。
   ※ 細部余白・レスポンシブは後でまとめて調整。まず構造優先。
   ========================================================= */

.studio-band {
	width: 100%;
	box-sizing: border-box; /* padding込みで100%に収める＝横はみ出し防止 */
	padding: 100px 20px; /* 庭写真を上下に見せる余白＋左右ガター */
	/* 背景：庭写真を全幅で cover（地色 cream は読み込み前/失敗時の保険） */
	background: var(--bg-cream) url("../img/studio-info/studio-info.jpg") no-repeat center center / cover;
}
/* スマホ（≤599px）：左右ガター30px＋上下余白60px
   ※ panel/text/button の ≤599 上書きは基底定義より後（ファイル末尾）に置く＝ソース順で後勝ちさせる */
@media (max-width: 599px) {
	.studio-band {
		padding-top: 60px;
		padding-bottom: 60px;
		padding-left: 30px;
		padding-right: 30px;
	}
}

/* 半透明白パネル（幅860＝l-base相当。クラスのガターと内側paddingが衝突するためトークンで指定） */
.studio-band__panel {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--width-base); /* 860 */
	margin: 0 auto;
	padding: 56px 40px;
	background: var(--panel-white-70); /* rgba(255,255,255,0.7) */
	border-radius: 100px 0 100px 0;    /* TL + BR アーチ（B系） */
	text-align: center;
}

/* パネル上部のロゴ（Figma：パネル内で水平中央・152×45・テキストの上） */
.studio-band__logo {
	display: block;
	width: 152px;
	height: auto;
	margin: 0 auto 14px; /* 中央寄せ＋下に余白（Figma：ロゴ下〜本文約14px） */
}

/* テキスト3行（明朝W6 / 16px / lh45）。色はFigma準拠 #000（白パネル上で可読） */
.studio-band__text {
	margin: 0;
	font-family: var(--font-mincho);
	font-weight: 600;
	font-size: 16px;
	line-height: 45px;
	color: #000;
}
.studio-band__link {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: opacity 0.2s ease;
}
.studio-band__link:hover {
	opacity: 0.7;
}

/* 詳しく見るボタン（白地・#533f21枠・▶カレット。access/plans-dataと同系） */
.studio-band__cta {
	margin-top: 24px;
	text-align: center;
}
.studio-band__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 200px;
	height: 50px;
	background: var(--bg-white);
	border: 1px solid var(--color-btn-outline); /* #533f21 */
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.32px;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.studio-band__button:hover {
	opacity: 0.75;
}
/* ▶（右向き三角） */
.studio-band__caret {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid currentColor;
}

/* =========================================================
   スマホ（≤599px）：パネル/テキスト/ボタンの上書き。
   ※ 基底定義の後に置いてソース順で確実に後勝ちさせる（先頭@mediaだと基底に負ける）。
   ========================================================= */
@media (max-width: 599px) {
	/* B2: 角丸 60px 0（TL+BR=60 / TR+BL=0）・内側padding 40px */
	.studio-band__panel {
		border-radius: 60px 0;
		padding: 40px;
	}
	/* B3: テキストサイズ・行間 */
	.studio-band__text {
		font-size: 15px;
		line-height: 1.8;
	}
	/* B4: ボタン全幅 */
	.studio-band__button {
		width: 100%;
	}
}
