@charset "UTF-8";

/* =========================================================================
   Liora ブランドサイト
   白とグレーを基調に、写真と余白で落ち着きを出す。スマホ優先。
   薄すぎるグレーと小さすぎる文字は使わない。
   ========================================================================= */

:root {
	--ink: #2b2a28;
	--ink-2: #4f4c47;
	--ink-3: #6f6c66;
	--line: #e2e0dc;
	--line-strong: #c9c6c0;
	--bg: #ffffff;
	--bg-soft: #f7f6f4;
	--bg-deep: #edebe7;
	--accent: #9a8d80;
	--line-green: #06c755;

	--font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
	--font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;

	--wrap: 1080px;
	--gap: 20px;
	--radius: 2px;
	--cta-height: 68px;
}

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.04em;
	font-feature-settings: "palt";
}

/* スマホの固定ボタンが本文や操作を隠さないように余白を確保する */
body.has-cta-bar {
	padding-bottom: calc(var(--cta-height) + env(safe-area-inset-bottom, 0px));
}

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

a {
	color: inherit;
}

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.08em;
	margin: 0;
}

p {
	margin: 0 0 1.4em;
}

p:last-child {
	margin-bottom: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: #fff;
	padding: 10px 16px;
	z-index: 999;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
}

/* ------------------------------------------------------------------ 共通 */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: 22px;
}

.wrap--narrow {
	max-width: 760px;
}

.section {
	padding-block: 64px;
}

.section--soft {
	background: var(--bg-soft);
}

.section--deep {
	background: var(--bg-deep);
}

.section__head {
	margin-bottom: 32px;
}

.section__head--center {
	text-align: center;
}

.eyebrow {
	display: block;
	font-family: var(--font-serif);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.h2 {
	font-size: 22px;
}

.h3 {
	font-size: 18px;
}

.lead {
	color: var(--ink-2);
	font-size: 15px;
	line-height: 2;
}

.note {
	font-size: 13px;
	line-height: 1.9;
	color: var(--ink-3);
}

.center {
	text-align: center;
}

.stack > * + * {
	margin-top: 16px;
}

/* ----------------------------------------------------------------- ボタン */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 54px;
	padding: 14px 26px;
	border: 1px solid var(--ink);
	border-radius: var(--radius);
	background: var(--ink);
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.btn:hover {
	opacity: 0.82;
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
}

.btn--line {
	background: var(--line-green);
	border-color: var(--line-green);
	color: #fff;
}

.btn--block {
	width: 100%;
}

.btn-row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* 画面下の固定ボタン。予約とLINE相談の2つだけに絞る。 */

.cta-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 60;
	display: flex;
	gap: 1px;
	background: var(--line-strong);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
}

.cta-bar__item {
	flex: 1 1 0;
	min-height: var(--cta-height);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	background: var(--ink);
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-decoration: none;
	padding: 10px;
}

.cta-bar__item--line {
	background: var(--line-green);
}

.cta-bar__sub {
	font-size: 11px;
	letter-spacing: 0.06em;
	opacity: 0.85;
}

@media (min-width: 1024px) {
	.cta-bar {
		display: none;
	}

	body.has-cta-bar {
		padding-bottom: 0;
	}
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--line);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 62px;
}

.site-logo {
	font-family: var(--font-serif);
	font-size: 20px;
	letter-spacing: 0.24em;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.site-logo img {
	max-height: 42px;
	width: auto;
}

.nav-toggle {
	appearance: none;
	border: 1px solid var(--line-strong);
	background: transparent;
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 1px;
	background: var(--ink);
}

.site-nav {
	display: none;
}

.site-nav.is-open {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: 8px 22px 24px;
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav li {
	border-bottom: 1px solid var(--line);
}

.site-nav a {
	display: block;
	padding: 15px 4px;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 0.1em;
}

.site-header__cta {
	display: none;
}

@media (min-width: 1024px) {
	.nav-toggle {
		display: none;
	}

	.site-nav,
	.site-nav.is-open {
		display: block;
		position: static;
		border: 0;
		padding: 0;
	}

	.site-nav ul {
		display: flex;
		align-items: center;
		gap: 18px;
	}

	.site-nav li {
		border: 0;
	}

	.site-nav a {
		padding: 6px 0;
		font-size: 13px;
		letter-spacing: 0.06em;
		white-space: nowrap;
	}

	.site-header__cta {
		display: inline-flex;
		gap: 8px;
	}

	.site-header__cta .btn {
		min-height: 42px;
		padding: 9px 14px;
		font-size: 12px;
		letter-spacing: 0.04em;
		white-space: nowrap;
	}
}


/* ------------------------------------------------------------------ ヒーロー */

.hero {
	position: relative;
	background: var(--bg-soft);
}

/* スマホでは1枚目を大きく、2枚目以降を横並びにして、
   コピーまで延々とスクロールさせない。 */
.hero__media {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
}

.hero__media .liora-placeholder,
.hero__media img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.hero__media > *:first-child {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 10;
}

.hero__body {
	padding: 34px 22px 46px;
	text-align: center;
}

.hero__copy {
	font-family: var(--font-serif);
	font-size: 26px;
	line-height: 1.9;
	letter-spacing: 0.12em;
	margin: 0 0 18px;
}

.hero__text {
	color: var(--ink-2);
	font-size: 15px;
	line-height: 2.1;
	margin: 0 auto 26px;
	max-width: 36em;
	text-align: left;
}

@media (min-width: 720px) {
	.hero__media {
		grid-template-columns: 1.4fr 1fr;
	}

	.hero__media > *:first-child {
		grid-column: auto;
		grid-row: span 2;
		aspect-ratio: auto;
		height: 100%;
	}

	.hero__copy {
		font-size: 34px;
	}

	.hero__text {
		text-align: center;
	}
}

/* ------------------------------------------------------------------- カード */

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

.grid--2 {
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 720px) {
	.grid--2,
	.grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #fff;
}

.card__media {
	position: relative;
	overflow: hidden;
	background: var(--bg-deep);
	aspect-ratio: 1 / 1;
}

.card__media img,
.card__media .liora-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card__body {
	padding: 14px 2px 4px;
}

.card__title {
	font-family: var(--font-serif);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 6px;
}

.card__meta {
	font-size: 13px;
	color: var(--ink-3);
	letter-spacing: 0.06em;
}

/* 写真がまだ無いときの枠。実在しない写真を置かないための表示。 */
.liora-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: repeating-linear-gradient(
		135deg,
		var(--bg-deep),
		var(--bg-deep) 12px,
		var(--bg-soft) 12px,
		var(--bg-soft) 24px
	);
	color: var(--ink-3);
	font-size: 13px;
	letter-spacing: 0.16em;
	min-height: 120px;
}

/* ------------------------------------------------------------ 選ばれる理由 */

.reasons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	counter-reset: reason;
}

.reason {
	border-top: 1px solid var(--line);
	padding-top: 22px;
}

.reason__no {
	font-family: var(--font-serif);
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--accent);
	display: block;
	margin-bottom: 10px;
}

.reason__title {
	font-size: 18px;
	margin-bottom: 10px;
}

@media (min-width: 720px) {
	.reasons {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

/* ------------------------------------------------------------- 施術の入口 */

.treatments {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.treatment {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 148px;
	padding: 16px;
	border: 1px solid var(--line);
	text-decoration: none;
	background: #fff;
	transition: background 0.2s ease;
}

.treatment:hover {
	background: var(--bg-soft);
}

.treatment__en {
	font-family: var(--font-serif);
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--accent);
}

.treatment__ja {
	font-family: var(--font-serif);
	font-size: 17px;
	letter-spacing: 0.1em;
	margin-top: 4px;
}

@media (min-width: 720px) {
	.treatments {
		grid-template-columns: repeat(4, 1fr);
	}

	.treatment {
		min-height: 180px;
	}
}

/* --------------------------------------------------------------- 料金表 */

.price-group + .price-group {
	margin-top: 38px;
}

.price-group__title {
	font-size: 17px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ink);
	margin-bottom: 4px;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
}

.price-table th,
.price-table td {
	text-align: left;
	padding: 15px 2px;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	font-weight: 400;
}

.price-table td.price-table__price {
	text-align: right;
	white-space: nowrap;
	font-family: var(--font-serif);
	letter-spacing: 0.04em;
}

.price-table__name {
	font-size: 15px;
	line-height: 1.7;
}

.price-table__sub {
	display: block;
	font-size: 13px;
	color: var(--ink-3);
	margin-top: 4px;
}

.price-note {
	margin-top: 18px;
}

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

.salon-info {
	margin: 0;
	border-top: 1px solid var(--line);
}

.salon-info > div {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	padding: 16px 2px;
	border-bottom: 1px solid var(--line);
}

.salon-info dt {
	font-size: 13px;
	letter-spacing: 0.12em;
	color: var(--ink-3);
}

.salon-info dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
}

@media (min-width: 720px) {
	.salon-info > div {
		grid-template-columns: 160px 1fr;
		gap: 18px;
	}
}

.map-embed iframe {
	width: 100%;
	height: 320px;
	border: 0;
}

/* --------------------------------------------------------------- スタッフ */

.staff {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.staff__media {
	aspect-ratio: 3 / 4;
	background: var(--bg-deep);
	overflow: hidden;
}

.staff__media img,
.staff__media .liora-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.staff__name {
	font-family: var(--font-serif);
	font-size: 16px;
	margin: 12px 0 2px;
}

.staff__role {
	font-size: 13px;
	color: var(--ink-3);
}

@media (min-width: 720px) {
	.staff {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ------------------------------------------------------------------- FAQ */

.faq {
	border-top: 1px solid var(--line);
}

.faq details {
	border-bottom: 1px solid var(--line);
}

.faq summary {
	cursor: pointer;
	list-style: none;
	padding: 18px 34px 18px 2px;
	position: relative;
	font-size: 15px;
	line-height: 1.8;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::after {
	content: "＋";
	position: absolute;
	right: 4px;
	top: 18px;
	color: var(--ink-3);
}

.faq details[open] summary::after {
	content: "－";
}

.faq__answer {
	padding: 0 2px 20px;
	color: var(--ink-2);
	font-size: 15px;
}

/* ------------------------------------------------------------- 流れ（手順） */

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

.steps li {
	position: relative;
	padding: 0 0 26px 46px;
	counter-increment: step;
}

.steps li::before {
	content: counter(step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 2px;
	font-family: var(--font-serif);
	font-size: 13px;
	letter-spacing: 0.1em;
	color: var(--accent);
}

.steps li::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 26px;
	bottom: 4px;
	width: 1px;
	background: var(--line);
}

.steps li:last-child {
	padding-bottom: 0;
}

.steps li:last-child::after {
	display: none;
}

.steps__title {
	font-family: var(--font-serif);
	font-size: 17px;
	margin-bottom: 6px;
}

/* --------------------------------------------------------------- 記事一覧 */

.post-list {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
}

.post-list li {
	border-bottom: 1px solid var(--line);
}

.post-list a {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 18px 2px;
	text-decoration: none;
}

.post-list time {
	font-size: 13px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
}

.post-list__title {
	font-size: 15px;
	line-height: 1.8;
}

@media (min-width: 720px) {
	.post-list a {
		grid-template-columns: 130px 1fr;
		gap: 20px;
		align-items: baseline;
	}
}

/* ----------------------------------------------------------------- 記事本文 */

.entry {
	font-size: 16px;
	line-height: 2.05;
}

.entry h2 {
	font-size: 20px;
	margin: 48px 0 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

.entry h3 {
	font-size: 17px;
	margin: 36px 0 12px;
}

.entry img {
	margin: 24px auto;
}

.entry ul,
.entry ol {
	padding-left: 1.3em;
	margin: 0 0 1.4em;
}

.entry li {
	margin-bottom: 8px;
}

.page-head {
	padding: 40px 0 28px;
	border-bottom: 1px solid var(--line);
	text-align: center;
}

.page-head__title {
	font-size: 24px;
}

.page-head__lead {
	margin-top: 14px;
	color: var(--ink-2);
	font-size: 15px;
}

.breadcrumb {
	font-size: 12px;
	color: var(--ink-3);
	padding: 14px 0 0;
	letter-spacing: 0.08em;
}

.breadcrumb a {
	text-decoration: none;
}

/* ------------------------------------------------------------------ ガイド */

.guide {
	max-width: 640px;
	margin-inline: auto;
}

.guide__progress {
	font-size: 13px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
	margin-bottom: 14px;
}

.guide__question {
	font-family: var(--font-serif);
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 22px;
}

.guide__choices {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 26px;
}

.guide__choice {
	appearance: none;
	width: 100%;
	min-height: 58px;
	padding: 16px 20px;
	text-align: left;
	background: #fff;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.7;
	letter-spacing: 0.06em;
	color: var(--ink);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.guide__choice:hover {
	background: var(--bg-soft);
	border-color: var(--ink);
}

.guide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid var(--line);
}

.guide__action {
	appearance: none;
	background: none;
	border: 0;
	padding: 10px 2px;
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--ink-3);
	text-decoration: underline;
	cursor: pointer;
}

.guide__result-list {
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
	border-top: 1px solid var(--line);
}

.guide__result-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 2px;
	border-bottom: 1px solid var(--line);
}

.guide__result-name {
	font-size: 15px;
	line-height: 1.7;
}

.guide__result-price {
	font-family: var(--font-serif);
	white-space: nowrap;
}

.guide__caution {
	background: var(--bg-soft);
	padding: 18px 20px;
	font-size: 14px;
	line-height: 1.9;
	color: var(--ink-2);
	margin-bottom: 26px;
}

/* ------------------------------------------------------------------ 採用 */

.job {
	border: 1px solid var(--line);
	padding: 22px;
	background: #fff;
}

.job__title {
	font-size: 18px;
	margin-bottom: 4px;
}

.job__tag {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.12em;
	border: 1px solid var(--line-strong);
	padding: 3px 10px;
	color: var(--ink-2);
	margin-bottom: 14px;
}

.job dl {
	margin: 0;
	border-top: 1px solid var(--line);
}

.job dl > div {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line);
}

.job dt {
	font-size: 13px;
	color: var(--ink-3);
	letter-spacing: 0.1em;
}

.job dd {
	margin: 0;
	font-size: 15px;
	line-height: 1.85;
	white-space: pre-line;
}

@media (min-width: 720px) {
	.job dl > div {
		grid-template-columns: 130px 1fr;
		gap: 18px;
	}
}

/* -------------------------------------------------------------- お問い合わせ */

.contact-box {
	background: var(--bg-soft);
	padding: 32px 22px;
	text-align: center;
}

.contact-box__title {
	font-size: 19px;
	margin-bottom: 12px;
}

.contact-box .btn-row {
	max-width: 380px;
	margin: 22px auto 0;
}

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

.site-footer {
	margin-top: 72px;
	border-top: 1px solid var(--line);
	background: var(--bg-soft);
	padding: 46px 0 40px;
}

.site-footer__logo {
	font-family: var(--font-serif);
	font-size: 19px;
	letter-spacing: 0.24em;
	margin-bottom: 18px;
	display: inline-block;
	text-decoration: none;
}

.footer-nav {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 18px;
}

.footer-nav a {
	text-decoration: none;
	font-size: 14px;
}

.site-footer__sns {
	display: inline-flex;
	gap: 16px;
	margin-bottom: 22px;
	font-size: 14px;
	letter-spacing: 0.12em;
}

.copyright {
	font-size: 12px;
	color: var(--ink-3);
	letter-spacing: 0.08em;
}

@media (min-width: 720px) {
	.footer-nav {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* --------------------------------------------------------------- ページ送り */

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 40px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 12px;
	border: 1px solid var(--line-strong);
	text-decoration: none;
	font-size: 14px;
}

.pagination .current {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

/* ------------------------------------------------------------ 空のとき */

.empty {
	padding: 34px 22px;
	background: var(--bg-soft);
	text-align: center;
	color: var(--ink-2);
	font-size: 15px;
}
