/* ほぐしヨガページ ― シンプル・クリーン設計 */

/* ============================================
   基本リセット
   ============================================ */
.hogushi-main section {
	margin-bottom: 80px;
}
.hogushi-main .page_title {
	margin-bottom: 0;
}

/* ============================================
   メインエリアの余白リセット
   ============================================ */
.hogushi-main {
	margin-top: 0;
	padding-top: 0;
}

/* ============================================
   home.css の .lead .fig: width:630 が単位なしで無効なため補完
   ============================================ */
#about .lead .fig {
	float: left;
	width: 630px;
	height: 420px;
	object-fit: cover;
	object-position: center;
	display: block;
}
#about .lead {
	overflow: hidden;
}
/* cptn2 テキストを読みやすくするための薄い白背景 */
#about .lead .cptn2 {
	background-color: rgba(255, 255, 255, 0.55);
	padding: 20px 10px;
}

/* home.css のsection margin-bottom をAboutでは抑制 */
body.hogushi #about {
	text-align: center;
	margin-bottom: 0;
	padding-top: 60px;
}

/* 特徴カード画像：高さ固定でTOPページと同じ比率 */
#about .list-3cols figure img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* フローセクション画像も高さ固定 */
.hg-flow-section .list-3cols figure img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* heading-02 のフォントサイズをTOPに合わせて確認用 */
#about .heading-02 {
	font-size: 16px;
	font-size: 1.6rem;
}

/* ============================================
   ① HERO （page_title クラスを継承して余白を解決）
   ============================================ */
body.hogushi .page_title.hg-hero {
	background-image: url(/hogushi/img/page-title-bg.jpg);
	background-size: cover;
	background-position: 50% 35%;
	height: 500px;
	display: flex;
	align-items: center;
	min-width: unset;
}
.hg-hero {
	position: relative;
}
.hg-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 70%);
}
.hg-hero-text {
	position: relative;
	color: #fff;
	padding-left: 10%;
	max-width: 500px;
}
.hg-hero-en {
	font-family: 'Libre Baskerville', serif;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin: 0 0 12px;
	opacity: 0.9;
}
.hg-hero-title {
	font-family: '游明朝', 'Yu Mincho', 'Libre Baskerville', serif;
	font-size: 26px;
	font-weight: normal;
	line-height: 1.7;
	margin: 0 0 16px;
	text-shadow: 0 2px 8px rgba(0,0,0,0.3);
	white-space: nowrap;
}
.hg-hero-sub {
	font-size: 12px;
	opacity: 0.9;
	margin: 0 0 28px;
	letter-spacing: 0;
	white-space: nowrap;
}

/* ============================================
   ② ABOUT
   ============================================ */
.hg-about {
	display: flex;
	align-items: stretch;
	min-height: 480px;
}
.hg-about-img {
	flex: 0 0 50%;
	overflow: hidden;
}
.hg-about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.hg-about-text {
	flex: 1;
	padding: 70px 60px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hg-about-text p {
	font-size: 14px;
	line-height: 1.9;
	color: #444;
	margin: 0 0 16px;
}
.hg-about-text strong {
	color: #5a7e40;
}
.hg-accent {
	font-weight: bold;
	color: #5a7e40;
}

/* ============================================
   共通ラベル・見出し
   ============================================ */
.hg-label {
	font-family: 'Libre Baskerville', serif;
	font-size: 12px;
	letter-spacing: 0.2em;
	color: #7a9e5f;
	text-align: center;
	margin: 0 0 8px;
}
.hg-heading {
	font-size: 28px;
	font-weight: normal;
	text-align: center;
	margin: 0 0 40px;
	letter-spacing: 0.05em;
}
.hg-about-text .hg-label {
	text-align: left;
}
.hg-about-text .hg-heading {
	text-align: left;
	font-size: 24px;
	margin-bottom: 24px;
}
.hg-subheading {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 24px;
}
.hg-section-header {
	text-align: center;
	margin-bottom: 0;
}

/* ============================================
   リスト
   ============================================ */
.hg-list {
	list-style: none;
	padding: 0;
	margin: 16px 0 28px;
	border-top: 1px solid #e8e8e8;
}
.hg-list li {
	padding: 10px 0 10px 20px;
	border-bottom: 1px solid #e8e8e8;
	font-size: 14px;
	color: #444;
	position: relative;
}
.hg-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #7a9e5f;
	font-weight: bold;
}

/* ============================================
   ボタン
   ============================================ */
.hg-btn {
	display: inline-block;
	padding: 12px 32px;
	text-decoration: none;
	font-size: 13px;
	letter-spacing: 0.05em;
	border: 1px solid currentColor;
	transition: background 0.2s, color 0.2s;
}
.hg-btn-white {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.8);
}
.hg-btn-white:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}
.hg-btn-green {
	color: #fff;
	background: #7a9e5f;
	border-color: #7a9e5f;
	padding: 14px 48px;
	font-size: 14px;
}
.hg-btn-green:hover {
	background: #5e8247;
}

/* ============================================
   ③ FLOW
   ============================================ */
.hg-flow {
	background: #f8f7f4;
	padding: 80px 20px;
}
.hg-flow .hg-section-header {
	margin-bottom: 50px;
}
.hg-flow-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}
.hg-flow-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	margin-bottom: 16px;
}
.hg-flow-num {
	font-family: 'Libre Baskerville', serif;
	font-size: 28px;
	color: #7a9e5f;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
}
.hg-flow-item h3 {
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 10px;
}
.hg-flow-item p {
	font-size: 13px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

/* ============================================
   ④ VOICE
   ============================================ */
.hg-voice {
	padding: 80px 20px;
	background: #f8f7f4;
}
.hg-voice .hg-section-header {
	margin-bottom: 50px;
}
.hg-voice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	max-width: 1000px;
	margin: 0 auto;
}
.hg-voice-item {
	border-top: 2px solid #7a9e5f;
	padding-top: 20px;
}
.hg-voice-item p {
	font-size: 13px;
	line-height: 1.9;
	color: #555;
	margin: 0;
}

/* ============================================
   ⑤ PRICE
   ============================================ */
.hg-price {
	background: #fff;
	padding: 80px 20px;
	text-align: center;
}
.hg-price .hg-section-header {
	margin-bottom: 40px;
}
.hg-price-trial {
	margin-bottom: 16px;
}
.hg-price-label {
	font-size: 12px;
	color: #888;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
}
.hg-price-num {
	font-family: 'Libre Baskerville', serif;
	font-size: 56px;
	color: #333;
	margin: 0 0 6px;
	letter-spacing: -0.02em;
}
.hg-price-num span {
	font-size: 16px;
	font-family: sans-serif;
	margin-left: 6px;
	color: #555;
}
.hg-price-sub {
	font-size: 13px;
	color: #aaa;
	margin: 0 0 8px;
}
.hg-price-note {
	font-size: 12px;
	color: #999;
	margin: 0 auto;
	max-width: 600px;
}
.hg-table-wrap {
	max-width: 760px;
	margin: 24px auto 0;
}
.hg-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
	text-align: center;
}
.hg-table th {
	background: #eee;
	padding: 12px;
	border: 1px solid #ddd;
	font-size: 13px;
}
.hg-table th.hl {
	background: #7a9e5f;
	color: #fff;
}
.hg-table td {
	padding: 12px 14px;
	border: 1px solid #ddd;
	vertical-align: middle;
}
.hg-table td.hl {
	background: #f4f8f0;
}
.hg-table small {
	font-size: 11px;
	color: #888;
	display: block;
}
.hg-caution {
	font-size: 11px;
	color: #999;
	margin-top: 10px;
	text-align: left;
	line-height: 1.8;
}

/* ============================================
   ⑥ CTA
   ============================================ */
.hg-cta {
	padding: 80px 20px;
	text-align: center;
	background: #fff;
}
.hg-cta .hg-section-header {
	margin-bottom: 40px;
}
.hg-cta-text {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 50px;
}
.hg-studios {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1000px;
	margin: 0 auto 40px;
}
.hg-studio figure {
	margin: 0 0 10px;
	overflow: hidden;
}
.hg-studio figure img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}
.hg-studio figure img:hover {
	transform: scale(1.03);
}
.hg-studio-name {
	font-size: 13px;
	font-weight: bold;
	margin: 0 0 4px;
}
.hg-studio-tel a {
	font-size: 13px;
	color: #555;
	text-decoration: none;
}
.hg-tel-note {
	font-size: 14px;
	color: #666;
	line-height: 1.9;
	margin-top: 0;
}
.hg-cancel-note {
	font-size: 13px;
	color: #999;
	margin-top: 16px;
}
.hg-cancel-note a {
	color: #666;
	text-decoration: none;
}
.hg-cancel-note a:hover {
	text-decoration: underline;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media screen and (max-width: 736px) {
	/* 特定性を高めてデスクトップの height:500px を上書き */
	body.hogushi .page_title.hg-hero {
		height: auto;
		min-height: 460px;
	}
	/* タイトルはnowrapを解除して折り返し可に */
	.hg-hero-title {
		font-size: 20px;
		white-space: normal;
	}
	.hg-hero-en {
		font-size: 11px;
	}
	.hg-hero-sub {
		font-size: 11px;
		white-space: normal;
	}
	.hg-about {
		flex-direction: column;
	}
	.hg-about-img {
		flex: none;
		height: 280px;
	}
	.hg-about-text {
		padding: 40px 24px;
	}
	.hg-flow-grid,
	.hg-voice-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.hg-studios {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.hg-price-num {
		font-size: 40px;
	}
	.hg-table {
		font-size: 13px;
	}
	.hg-table th, .hg-table td {
		padding: 8px 6px;
	}
}

/* ============================================
   FAQナビ矢印非表示（common.cssから）
   ============================================ */
#gnav li.faq a::before {
	display: none;
}

/* ============================================
   WHY セクション（生理学的メカニズム）
   ============================================ */
.hg-why-section {
	background: #fff;
	padding: 80px 20px;
}
.hg-why-inner {
	max-width: 1000px;
	margin: 0 auto;
}
.hg-why-lead {
	font-size: 15px;
	line-height: 1.9;
	color: #555;
	text-align: center;
	margin-bottom: 50px;
}
.hg-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 40px;
}
.hg-why-item {
	border-top: 2px solid #7a9e5f;
	padding-top: 20px;
}
.hg-why-num {
	font-family: 'Libre Baskerville', serif;
	font-size: 28px;
	color: #7a9e5f;
	margin-bottom: 8px;
}
.hg-why-item h3 {
	font-size: 15px;
	font-weight: bold;
	margin: 0 0 12px;
}
.hg-why-item p {
	font-size: 13px;
	line-height: 1.9;
	color: #555;
	margin: 0;
}
.hg-why-summary {
	font-size: 14px;
	line-height: 1.9;
	color: #444;
	text-align: center;
	background: #f4f8f0;
	padding: 20px 24px;
	border-left: 4px solid #7a9e5f;
}
@media screen and (max-width: 736px) {
	.hg-why-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}
