@charset "UTF-8";

/* =================================================================
 * 鶏 新すみ
 *
 * 参考3サイトの系統（墨地・明朝・余白を大きく取る）に合わせる。
 * フォントはシステムの明朝スタックで賄い、Webフォントを読み込まない。
 * 日本語Webフォントは字形数が多く重いのに対し、この genre は
 * ヒラギノ明朝／游明朝で十分に表情が出る。
 * ================================================================= */

:root {
	--tn-ink:      #14110f;   /* 墨 */
	--tn-ink-soft: #1e1a17;
	--tn-paper:    #f4efe6;   /* 生成り */
	--tn-muted:    rgba(244, 239, 230, .60);
	--tn-line:     rgba(168, 135, 79, .34);
	--tn-gold:     #a8874f;
	--tn-ember:    #b5462e;   /* 炭火 */

	--tn-serif: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "Noto Serif JP", "MS PMincho", serif;
	--tn-sans:  "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, system-ui, sans-serif;

	--tn-gutter: 24px;
	--tn-measure: 720px;
}

/* ---------- 土台 ---------- */

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

body {
	margin: 0;
	background: var(--tn-ink);
	color: var(--tn-paper);
	font-family: var(--tn-sans);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: .04em;
	/* 横スクロールの保険。375px で必ず確認すること。 */
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.tn-skip {
	position: absolute;
	left: -9999px;
	top: 0;
}
.tn-skip:focus {
	left: 0;
	z-index: 100;
	padding: 12px 20px;
	background: var(--tn-paper);
	color: var(--tn-ink);
}

/* ---------- ヘッダー ---------- */

.tn-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(20, 17, 15, .86);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--tn-line);
}

.tn-header__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px var(--tn-gutter);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.tn-header__brand {
	font-family: var(--tn-serif);
	font-size: 18px;
	letter-spacing: .22em;
	text-decoration: none;
}

.tn-header__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 18px;
}

.tn-header__nav a {
	font-size: 12px;
	letter-spacing: .14em;
	color: var(--tn-muted);
	text-decoration: none;
	padding: 2px 0;
}

.tn-header__nav a:hover,
.tn-header__nav a:focus { color: var(--tn-paper); }

/* ---------- ファーストビュー ---------- */

.tn-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tn-ink);
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 96px var(--tn-gutter);
}

.tn-hero__veil {
	position: absolute;
	inset: 0;
	/* ★背景写真は今後差し替わる。「今の写真で足りる濃さ」ではなく
	   「どんな写真でも文字が読める濃さ」にしておく。 */
	background:
		linear-gradient(180deg,
			rgba(20,17,15,.88) 0%,
			rgba(20,17,15,.62) 38%,
			rgba(20,17,15,.70) 70%,
			rgba(20,17,15,.95) 100%);
}

.tn-hero__inner { position: relative; }

/* 明るい写真に載っても読めるよう、文字側にも保険をかける */
.tn-hero__eyebrow,
.tn-hero__title,
.tn-hero__lead {
	text-shadow: 0 2px 20px rgba(0, 0, 0, .78);
}

.tn-hero__eyebrow {
	margin: 0 0 28px;
	font-size: 12px;
	letter-spacing: .3em;
	color: var(--tn-gold);
}

.tn-hero__title {
	margin: 0;
	font-family: var(--tn-serif);
	font-weight: normal;
	font-size: clamp(34px, 11vw, 64px);
	letter-spacing: .3em;
	/* letter-spacing の分だけ右にずれるのを戻す */
	text-indent: .3em;
	line-height: 1.4;
}

.tn-hero__lead {
	margin: 28px 0 0;
	font-family: var(--tn-serif);
	font-size: clamp(14px, 3.6vw, 17px);
	line-height: 2.2;
	color: var(--tn-muted);
}

/* ---------- セクション共通 ---------- */

.tn-section {
	padding: 80px var(--tn-gutter);
	border-top: 1px solid var(--tn-line);
}

.tn-section:nth-of-type(even) { background: var(--tn-ink-soft); }

.tn-section__inner {
	max-width: var(--tn-measure);
	margin: 0 auto;
}

.tn-section__title {
	margin: 0 0 40px;
	font-family: var(--tn-serif);
	font-weight: normal;
	font-size: 22px;
	letter-spacing: .28em;
	text-indent: .28em;
	text-align: center;
}

.tn-section__title::after {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	margin: 20px auto 0;
	background: var(--tn-gold);
}

/* ---------- ごあいさつ ---------- */

.tn-greeting__body p {
	margin: 0;
	font-family: var(--tn-serif);
	line-height: 2.3;
}

.tn-greeting__figure { margin: 40px 0 0; }

/* ---------- お知らせ ---------- */

.tn-news__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tn-news__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 18px 0;
	border-bottom: 1px solid var(--tn-line);
}

.tn-news__date {
	font-size: 12px;
	letter-spacing: .12em;
	color: var(--tn-gold);
}

.tn-news__link {
	font-family: var(--tn-serif);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.tn-news__link:hover,
.tn-news__link:focus { border-bottom-color: var(--tn-gold); }

/* ---------- 店舗情報 ---------- */

.tn-info__list { margin: 0; }

.tn-info__row {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 18px 0;
	border-bottom: 1px solid var(--tn-line);
}

.tn-info__row dt {
	font-size: 12px;
	letter-spacing: .18em;
	color: var(--tn-gold);
}

.tn-info__row dd {
	margin: 0;
	font-family: var(--tn-serif);
}

.tn-info__row dd a { text-decoration: none; border-bottom: 1px solid var(--tn-line); }

.tn-info__figure { margin: 40px 0 0; }

/* ---------- ご予約 ---------- */

.tn-reserve__note {
	margin: 0;
	font-family: var(--tn-serif);
	line-height: 2.2;
	text-align: center;
}

.tn-reserve__actions {
	margin: 36px 0 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.tn-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	width: 100%;
	max-width: 340px;
	padding: 16px 24px;
	text-align: center;
	text-decoration: none;
	letter-spacing: .16em;
	border: 1px solid var(--tn-gold);
}

.tn-btn--primary {
	background: var(--tn-ember);
	border-color: var(--tn-ember);
}

.tn-btn--primary:hover,
.tn-btn--primary:focus { background: #9c3a25; border-color: #9c3a25; }

.tn-btn--tel:hover,
.tn-btn--tel:focus { background: rgba(168, 135, 79, .14); }

.tn-btn__label { font-size: 12px; color: var(--tn-muted); }

.tn-btn__tel {
	font-family: var(--tn-serif);
	font-size: 22px;
	letter-spacing: .08em;
}

/* ---------- アクセス ---------- */

.tn-access__address {
	margin: 0 0 28px;
	font-family: var(--tn-serif);
	text-align: center;
}

/* 地図は自分の中で比率を保つ。はみ出させない。 */
.tn-access__map {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--tn-line);
}

.tn-access__map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ---------- フッター ---------- */

.tn-footer {
	padding: 56px var(--tn-gutter);
	border-top: 1px solid var(--tn-line);
	text-align: center;
}

.tn-footer__brand {
	margin: 0 0 14px;
	font-family: var(--tn-serif);
	font-size: 17px;
	letter-spacing: .24em;
	text-indent: .24em;
}

.tn-footer__address {
	margin: 0 0 20px;
	font-size: 13px;
	color: var(--tn-muted);
}

.tn-footer__copy {
	margin: 0;
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--tn-muted);
}

/* ---------- 画面が広いとき ---------- */

@media (min-width: 768px) {
	:root { --tn-gutter: 40px; }

	.tn-header__inner {
		flex-direction: row;
		justify-content: space-between;
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.tn-header__nav { gap: 26px; }

	.tn-section { padding: 112px var(--tn-gutter); }

	.tn-section__title { font-size: 24px; }

	.tn-info__row {
		flex-direction: row;
		gap: 32px;
		align-items: baseline;
	}

	.tn-info__row dt {
		flex: 0 0 96px;
		padding-top: 2px;
	}

	.tn-reserve__actions { flex-direction: row; justify-content: center; }

	.tn-btn { width: auto; min-width: 260px; }

	.tn-access__map { aspect-ratio: 16 / 9; }
}

/* ---------- 動きを減らす設定を尊重する ---------- */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

/* ---------- 画像の注記（完成予想図） ---------- */

.tn-hero__note {
	position: absolute;
	right: var(--tn-gutter);
	bottom: 16px;
	margin: 0;
	font-size: 10px;
	line-height: 1.6;
	letter-spacing: .04em;
	color: rgba(244, 239, 230, .48);
	text-align: right;
}

.tn-figcaption {
	margin: 8px 0 0;
	font-size: 11px;
	line-height: 1.7;
	color: var(--tn-muted);
	text-align: right;
}

/* ---------- フッター 追加分 ---------- */

.tn-footer__tel {
	margin: 0 0 18px;
	font-family: var(--tn-serif);
	font-size: 19px;
	letter-spacing: .08em;
}

.tn-footer__tel a { text-decoration: none; }

.tn-footer__company {
	margin: 0 0 18px;
	font-size: 12px;
	letter-spacing: .1em;
	color: var(--tn-muted);
}

.tn-footer__company a {
	color: var(--tn-paper);
	text-decoration: none;
	border-bottom: 1px solid var(--tn-line);
}
