/* =========================================================
   Access（アクセス）
   Figma node 113:31347。筆記体見出し＋サブ＋店舗情報（左）＋スタジオ写真（右・角丸TL+BR・影なし）。
   ※ 細部余白・レスポンシブは後でまとめて調整。まず構造優先。
   ========================================================= */

.access {
	width: 100%;
	background: var(--bg-white); /* 白背景（Figmaフレームfill未指定→白と判断） */
	padding: 56px 0 72px;
}

/* .access__inner の幅は共通クラス .l-narrow（740px） */

/* --- 見出し --- */
.access__header {
	text-align: center;
	margin-bottom: 40px;
}
.access__title {
	margin: 0;
	font-family: var(--font-script);
	font-weight: 400;
	font-size: 80px;
	line-height: 1;
	color: var(--color-script-ink); /* #231f20 */
}
.access__sub {
	margin: 6px 0 0;
	font-family: var(--font-gothic);
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: var(--color-subhead); /* #a3937c */
}

/* --- 本体：左 情報／右 写真 --- */
.access__body {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}
.access__info {
	flex: 1 1 auto;
	min-width: 0;
}

/* 店名 */
.access__shop {
	margin: 0 0 20px;
	font-family: var(--font-gothic);
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 0.4px;
	line-height: 30px;
	color: var(--color-text);
}

/* 住所・駐車場（ラベル＋値） */
.access__dl {
	margin: 0;
}
.access__row {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 18px;
}
.access__label {
	flex: 0 0 60px;
	margin: 0;
	font-family: var(--font-gothic);
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.32px;
	line-height: 30px;
	color: var(--color-text);
}
.access__value {
	margin: 0;
	font-family: var(--font-gothic);
	font-weight: 300;
	font-size: 16px;
	letter-spacing: 0.32px;
	line-height: 30px;
	color: var(--color-text);
}
.access__map-link {
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: opacity 0.2s ease;
}
.access__map-link:hover {
	opacity: 0.7;
}

/* 詳しく見るボタン（白地・枠・▶カレット。plans-dataと同系） */
.access__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 200px;
	height: 50px;
	margin-top: 16px;
	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;
}
.access__button:hover {
	opacity: 0.75;
}
/* ▶（右向き三角） */
.access__caret {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid currentColor;
}

/* --- 右：スタジオ写真（角丸TL+BR・影なし） --- */
.access__photo {
	flex: 0 0 370px;
	width: 370px;
	height: 247px;
	margin: 0;
	overflow: hidden;
	border-radius: 50px 0 50px 0; /* TL + BR を角丸 */
}
.access__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =========================================================
   スマホ（≤599px）：本体を縦積み＋写真を可変化して横はみ出しを根本解消。
   （overflow:hidden で蓋はしない。写真の固定370pxをやめて画面内に収める）。タブレット/PC不変。
   ========================================================= */
@media (max-width: 599px) {
	/* 左情報｜右写真 → 縦積み（情報が上・写真が下） */
	.access__body {
		flex-direction: column;
		gap: 28px;
	}
	/* 写真：固定370px→可変。元比率370:247を維持・上限370で中央寄せ */
	.access__photo {
		flex: 0 0 auto;
		width: 100%;
		max-width: 370px;
		height: auto;
		aspect-ratio: 370 / 247;
		margin-inline: auto;
	}
	/* 筆記体タイトル60px＋サブ詰め */
	.access__title { font-size: 60px; }
	.access__sub   { margin-top: 0; }
}
