/*
Theme Name: 織色 ORIIRO（見本）
Description: フォトスタジオ織色の見本サイト。Blancfleur風のやさしい色合い。土台はrin。
Version: 1.0.0
Author: Musubi Group
*/

/* ---------- 1. 色と書体 ---------- */
:root {
	--greige: #b4a59d;
	--pink: #cc9999;
	--pink-deep: #b27f7f;
	--cream: #f7f4ed;
	--white: #fffdf9;
	--text: #5a4e48;
	--text-light: #8b7f78;
	--line: #e6ddd3;
	--line-green: #06c755;
	--mincho: "Shippori Mincho", serif;
	--gothic: "Zen Kaku Gothic New", sans-serif;
	--en: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: var(--gothic);
	font-size: 15px;
	line-height: 2;
	letter-spacing: .05em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-deep); }
h1, h2, h3 { font-family: var(--mincho); font-weight: 500; line-height: 1.6; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 860px; }
.center { text-align: center; }
.note { font-size: 12px; color: var(--text-light); }

/* ---------- 2. 見出し ---------- */
.h-en {
	margin: 0 0 4px;
	font-family: var(--en);
	font-size: 15px;
	letter-spacing: .3em;
	color: var(--pink);
}
.h-en--center, .h2--center { text-align: center; }
.h2 { margin: 0 0 32px; font-size: 26px; letter-spacing: .12em; }

/* ---------- 3. ボタン ---------- */
.btn {
	display: inline-block;
	padding: 12px 36px;
	border: 1px solid var(--greige);
	border-radius: 999px;
	color: var(--text);
	text-decoration: none;
	font-size: 14px;
	letter-spacing: .12em;
	transition: background .3s, color .3s;
}
.btn:hover { background: var(--greige); color: #fff; }
.btn--line { background: var(--line-green); border-color: var(--line-green); color: #fff; }
.btn--line:hover { background: #05a847; }
.btn--tel { background: var(--pink); border-color: var(--pink); color: #fff; }
.btn--tel:hover { background: var(--pink-deep); }
.contact-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 28px 0 12px; }
.contact-btns .btn { min-width: 280px; text-align: center; padding: 16px 32px; }

/* ---------- 4. 見本のしるし・ヘッダー ---------- */
.mihon-bar {
	margin: 0;
	padding: 4px 12px;
	background: var(--greige);
	color: #fff;
	font-size: 12px;
	text-align: center;
	letter-spacing: .08em;
}
.hd {
	position: sticky; top: 0; z-index: 50;
	display: flex; align-items: center; justify-content: space-between;
	padding: 14px 32px;
	background: rgba(255, 253, 249, .94);
	border-bottom: 1px solid var(--line);
}
.hd__logo { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.hd__name { font-family: var(--mincho); font-size: 26px; letter-spacing: .2em; }
.hd__en { font-family: var(--en); font-size: 18px; letter-spacing: .3em; line-height: 1.2; }
.hd__en small { display: block; font-size: 10px; letter-spacing: .3em; color: var(--text-light); }
.hd__nav { display: flex; align-items: center; gap: 28px; }
.hd__nav a { color: var(--text); text-decoration: none; font-size: 13px; text-align: center; line-height: 1.5; }
.hd__nav a small { display: block; font-family: var(--en); font-size: 11px; letter-spacing: .25em; color: var(--pink); }
.hd__nav a:hover { color: var(--pink-deep); }
.hd__cta { padding: 8px 20px; border: 1px solid var(--pink); border-radius: 999px; }
.hd__burger { display: none; }

/* ---------- 5. ヒーロー（写真を全幅＋白がけ） ---------- */
.hero { position: relative; height: calc(100vh - 110px); min-height: 520px; max-height: 820px; overflow: hidden; }
.hero__slides, .hero__slide { position: absolute; inset: 0; }
.hero__slide {
	background-size: cover; background-position: center right;
	opacity: 0;
	animation: oriiro-slide 18s infinite;
}
.hero__slide--2 { animation-delay: 6s; }
.hero__slide--3 { animation-delay: 12s; }
@keyframes oriiro-slide {
	0%   { opacity: 0; transform: scale(1); }
	6%   { opacity: 1; }
	33%  { opacity: 1; }
	40%  { opacity: 0; transform: scale(1.06); }
	100% { opacity: 0; }
}
.hero::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(255, 253, 249, .88) 0%, rgba(255, 253, 249, .55) 38%, rgba(255, 253, 249, 0) 62%);
}
.hero__txt {
	position: absolute; z-index: 2; top: 50%; left: 8%;
	transform: translateY(-50%);
	max-width: 520px;
}
.hero__en { margin: 0; font-family: var(--en); font-size: 16px; letter-spacing: .4em; color: var(--pink-deep); }
.hero__catch { margin: 12px 0 20px; font-size: 38px; letter-spacing: .14em; line-height: 1.8; }
.hero__sub { margin: 0; font-size: 14px; }

/* ---------- 6. 段 ---------- */
.sec { padding: 100px 0; }
.sec--tint { background: var(--cream); }

.concept__in, .studio-top { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.concept__img img, .studio-top__img img { border-radius: 4px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.studio-top__img img { aspect-ratio: 16 / 11; }
.soon { margin: 20px 0 28px; padding: 12px 18px; border: 1px dashed var(--greige); font-size: 14px; }
.soon span { margin-left: 12px; font-family: var(--en); letter-spacing: .2em; color: var(--pink-deep); }

/* シーンのカード */
.scenes { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.scene-card { grid-column: span 2; background: #fff; color: var(--text); text-decoration: none; transition: transform .3s, box-shadow .3s; }
.scene-card:nth-child(4) { grid-column: 2 / span 2; }
.scene-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(90, 78, 72, .12); }
.scene-card__img img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.scene-card__body { padding: 20px 22px 24px; }
.scene-card__en { margin: 0; font-family: var(--en); font-size: 12px; letter-spacing: .25em; color: var(--pink); }
.scene-card h3 { margin: 2px 0 6px; font-size: 20px; }
.scene-card__lead { margin: 0 0 10px; font-size: 13px; line-height: 1.8; }
.scene-card__price { margin: 0; font-family: var(--mincho); font-size: 20px; color: var(--pink-deep); }
.scene-card__price small { font-size: 11px; color: var(--text-light); }

/* 料金表 */
.price-table { overflow-x: auto; margin: 24px 0 8px; }
.price-table table { width: 100%; border-collapse: collapse; background: #fff; }
.price-table th, .price-table td { padding: 16px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; line-height: 1.7; }
.price-table thead th { background: var(--greige); color: #fff; font-weight: 500; }
.price-table tbody th { font-family: var(--mincho); font-weight: 500; white-space: nowrap; }
.price-table__yen { font-family: var(--mincho); font-size: 18px; color: var(--pink-deep); white-space: nowrap; }

/* 撮影の流れ */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.flow li { background: #fff; padding: 24px 18px; text-align: center; }
.flow span { font-family: var(--en); font-size: 28px; color: var(--pink); }
.flow h3 { margin: 4px 0 8px; font-size: 17px; }
.flow p { margin: 0; font-size: 13px; line-height: 1.8; text-align: left; }

/* よくある質問 */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 18px 36px 18px 0; cursor: pointer; font-family: var(--mincho); font-size: 16px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; margin-right: 12px; font-family: var(--en); font-size: 20px; color: var(--pink); }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 16px; font-size: 20px; color: var(--greige); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 20px; padding: 0 0 0 28px; font-size: 14px; }

/* 予約の段 */
.cta { padding: 90px 0; background: linear-gradient(rgba(247, 244, 237, .92), rgba(247, 244, 237, .92)), var(--pink); text-align: center; }
.cta__note { font-size: 12px; color: var(--text-light); }

/* ---------- 7. 下層ページ ---------- */
.page-hero { padding: 90px 24px 70px; background: var(--cream); text-align: center; }
.page-hero h1 { margin: 0; font-size: 30px; letter-spacing: .16em; }
.page-hero__lead { margin: 12px 0 0; font-size: 14px; }

.scene-hero { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 560px; background: var(--cream); }
.scene-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.scene-hero__txt { align-self: center; padding: 48px 8%; }
.scene-hero__txt h1 { margin: 0 0 12px; font-size: 32px; letter-spacing: .14em; }
.scene-hero__lead { margin: 0 0 24px; }
.scene-hero__price { margin: 0; font-family: var(--mincho); }
.scene-hero__price strong { margin: 0 6px; font-size: 28px; font-weight: 500; color: var(--pink-deep); }
.scene-hero__price small { display: block; font-family: var(--gothic); font-size: 11px; color: var(--text-light); }

.entry h2 { margin: 56px 0 20px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 22px; letter-spacing: .1em; }
.entry h2:first-child { margin-top: 0; }
.entry h3 { margin: 32px 0 8px; font-size: 18px; }
.entry ul { padding-left: 1.4em; }
.entry .points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; padding: 0; list-style: none; }
.entry .points li { padding: 24px 20px; background: var(--cream); font-size: 14px; line-height: 1.8; }
.entry .points strong { display: block; margin-bottom: 6px; font-family: var(--mincho); font-size: 16px; font-weight: 500; color: var(--pink-deep); }
.entry table { width: 100%; border-collapse: collapse; }
.entry table th, .entry table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.entry table th { width: 30%; font-weight: 500; background: var(--cream); }
.map { width: 100%; height: 360px; border: 0; filter: saturate(.4); margin: 12px 0 24px; }
.ph { display: grid; place-items: center; min-height: 240px; border: 1px dashed var(--greige); color: var(--text-light); font-size: 13px; background: var(--cream); }

.scene-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.scene-mini__item { color: var(--text); text-decoration: none; text-align: center; font-family: var(--mincho); }
.scene-mini__item img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; margin-bottom: 8px; }

/* ---------- 8. フッター・固定ボタン ---------- */
.ft { padding: 64px 0 90px; background: var(--greige); color: #fff; }
.ft__in { display: flex; justify-content: space-between; gap: 40px; }
.ft__name { margin: 0 0 12px; font-family: var(--mincho); font-size: 26px; letter-spacing: .2em; }
.ft__name span { margin-left: 12px; font-family: var(--en); font-size: 16px; letter-spacing: .3em; }
.ft__info { margin: 0; font-size: 13px; }
.ft__nav { display: grid; grid-template-columns: repeat(2, auto); gap: 4px 36px; align-content: start; }
.ft__nav a { color: #fff; font-size: 13px; text-decoration: none; }
.ft__copy { margin: 40px 0 0; text-align: center; font-family: var(--en); font-size: 12px; letter-spacing: .2em; }
.fix-btns { display: none; }

/* ---------- 9. スマホ ---------- */
@media (max-width: 900px) {
	body { font-size: 14px; }
	.hd { padding: 10px 16px; }
	.hd__name { font-size: 22px; }
	.hd__en { font-size: 14px; }
	.hd__burger {
		display: block; position: relative; z-index: 60;
		width: 40px; height: 40px; border: 0; background: none; cursor: pointer;
	}
	.hd__burger span, .hd__burger span::before, .hd__burger span::after {
		position: absolute; left: 8px; width: 24px; height: 1px; background: var(--text); content: ""; transition: .3s;
	}
	.hd__burger span { top: 20px; }
	.hd__burger span::before { left: 0; top: -7px; }
	.hd__burger span::after { left: 0; top: 7px; }
	.is-menu .hd__burger span { background: transparent; }
	.is-menu .hd__burger span::before { top: 0; transform: rotate(45deg); }
	.is-menu .hd__burger span::after { top: 0; transform: rotate(-45deg); }
	.hd__nav {
		position: fixed; inset: 0; z-index: 55;
		flex-direction: column; justify-content: center; gap: 22px;
		background: var(--white);
		opacity: 0; pointer-events: none; transition: opacity .3s;
	}
	.is-menu .hd__nav { opacity: 1; pointer-events: auto; }
	.hd__nav a { font-size: 15px; }

	.hero { height: 78vh; min-height: 480px; }
	.hero__slide { background-position: 70% center; }
	.hero::after { background: linear-gradient(0deg, rgba(255, 253, 249, .92) 0%, rgba(255, 253, 249, .6) 40%, rgba(255, 253, 249, 0) 70%); }
	.hero__txt { top: auto; bottom: 32px; left: 20px; right: 20px; transform: none; }
	.hero__catch { font-size: 25px; margin: 6px 0 10px; }
	.hero__sub { font-size: 12px; }

	.sec { padding: 64px 0; }
	.h2 { font-size: 21px; margin-bottom: 24px; }
	.concept__in, .studio-top { grid-template-columns: 1fr; gap: 28px; }
	.scenes { grid-template-columns: 1fr 1fr; gap: 14px; }
	.scene-card, .scene-card:nth-child(4) { grid-column: auto; }
	.scene-card:last-child { grid-column: 1 / -1; }
	.scene-card:last-child .scene-card__img img { aspect-ratio: 16 / 10; }
	.scene-card__body { padding: 12px 12px 16px; }
	.scene-card h3 { font-size: 16px; }
	.scene-card__lead { display: none; }
	.scene-card__price { font-size: 16px; }
	.flow { grid-template-columns: 1fr; gap: 10px; }
	.flow li { display: grid; grid-template-columns: 48px 1fr; text-align: left; padding: 16px; column-gap: 8px; }
	.flow li span { grid-row: span 2; font-size: 24px; }
	.flow h3 { margin: 0; }
	.price-table th, .price-table td { padding: 12px 10px; font-size: 13px; }
	.price-table thead th:last-child, .price-table td:last-child { min-width: 180px; }
	.contact-btns .btn { min-width: 0; width: 100%; }

	.scene-hero { grid-template-columns: 1fr; min-height: 0; }
	.scene-hero__img img { aspect-ratio: 4 / 3; }
	.scene-hero__txt { padding: 32px 20px; }
	.scene-hero__txt h1 { font-size: 24px; }
	.entry .points { grid-template-columns: 1fr; }
	.scene-mini { grid-template-columns: 1fr 1fr; }
	.entry table th { width: 34%; }

	.ft { padding-bottom: 110px; }
	.ft__in { flex-direction: column; }
	.fix-btns {
		display: grid; grid-template-columns: 1fr 1fr;
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
	}
	.fix-btns a { padding: 14px 0; color: #fff; text-align: center; text-decoration: none; font-size: 14px; letter-spacing: .1em; }
	.fix-btns__line { background: var(--line-green); }
	.fix-btns__tel { background: var(--pink); }
}
