:root {
	--primary-color: #4B3621;
	/* ダークブラウン */
	--secondary-color: #C5A065;
	/* ゴールド/オレンジ */
	--text-color: #333333;
	/* ダークグレー */
	--bg-color: #FFFFFF;
	/* ホワイト */
	--surface-color: #F9F9F9;
	/* 薄いグレー */
	--font-heading: 'Noto Serif JP', serif;
	--font-body: 'Noto Sans JP', sans-serif;
}

body {
	font-family: var(--font-body);
	color: var(--text-color);
	line-height: 1.8;
	background-color: var(--bg-color);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	letter-spacing: 0.05em;
}

/* 共通セクションスタイル
   指示：各セクション同士はmarginで間隔を空けずに、paddingで間隔を空けてください */
section {
	padding: 80px 0;
	width: 100%;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* タイポグラフィ補助 */
.section-title {
	font-size: 2rem;
	color: var(--primary-color);
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background-color: var(--secondary-color);
	margin: 1rem auto 0;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 1.75rem
	}
}

/* ボタン */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 2rem;
	border-radius: 4px;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	cursor: pointer;
	font-family: var(--font-body);
}

.btn.btn-primary {
	background-color: var(--secondary-color);
	color: #FFFFFF;
}

.btn.btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(197, 160, 101, 0.3);
}

.btn.btn-outline {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	background-color: transparent;
}

.btn.btn-outline:hover {
	background-color: var(--primary-color);
	color: #FFFFFF;
}

/* ユーティリティ */
.text-primary {
	color: var(--primary-color);
}

.text-secondary {
	color: var(--secondary-color);
}

.bg-surface {
	background-color: var(--surface-color);
}

/* ./parts/common-header.html */

header {
	position: sticky;
	top: 0;
	z-index: 9999;
	background-color: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	font-family: var(--font-body);
}

header .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 20px;
	max-width: 1200px;
	margin: 0 auto;
}

header .logo {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

header .logo span {
	font-size: 0.8rem;
	font-weight: 400;
}

/* デスクトップナビ */

header .desktop-nav {
	display: none;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 1024px) {

	header .desktop-nav {
		display: flex
	}
}

header .desktop-nav a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.3s;
}

header .desktop-nav a:hover,
header .desktop-nav a.active {
	color: var(--secondary-color);
}

header .desktop-nav .header-tel {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 600;
	margin-left: 1rem;
}

/* モバイルメニューボタン */

header .menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 60;
	padding: 0.5rem;
}

@media (min-width: 1024px) {

	header .menu-btn {
		display: none
	}
}

header .menu-btn .material-symbols-outlined {
	font-size: 32px;
	color: var(--primary-color);
}

/* モバイルナビゲーション：最終調整版 */

header .mobile-nav {
    position: fixed !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    
    /* 修正：背景を白にしつつ、少しだけ（0.95）透過させる */
    background-color: rgba(255, 255, 255, 0.65) !important;
    
    /* 背後のボカシも少し入れると、透過しても文字が読みやすくなります */
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    
    z-index: 10000 !important; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

header .mobile-nav.open {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* 閉じるボタン（×）の明示 */
.menu-btn {
    position: relative;
    z-index: 10001; /* メニュー背景より上に配置 */
    /* メニューが開いている時、ボタンの色を茶色（primary-color）にする */
    color: var(--primary-color);
}

/* メニュー内のリンク */
header .mobile-nav a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    letter-spacing: 0.15em;
}

/* 電話ボタン */
header .mobile-nav .mobile-tel-btn {
    background-color: var(--secondary-color) !important;
    color: #FFFFFF !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
}

/* モバイル用 常設電話ボタン（ヘッダー内簡易版） */

@media (min-width: 1024px) {

	header .sp-header-cta {
		display: none
	}
}

header .sp-header-cta {
	margin-right: 1rem;
}

header .sp-header-cta .btn-call-sm {
	background: var(--secondary-color);
	color: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

header .sp-header-cta .btn-call-sm .material-symbols-outlined {
	font-size: 20px;
}

/* ./parts/common-footer.html */

footer {
	background-color: var(--primary-color);
	color: #FFFFFF;
	padding: 60px 0 100px;
	/* 下部はSPのスティッキーバー用に余白確保 */
	font-family: var(--font-body);
}

footer .footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 768px) {

	footer .footer-container {
		grid-template-columns: 1fr 1fr
	}
}

footer .footer-info h2 {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: none;
}

footer .footer-info h2 span {
	display: block;
	font-size: 0.9rem;
	opacity: 0.8;
	margin-top: 0.5rem;
	font-weight: 400;
}

footer .footer-info p {
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.95rem;
}

footer .footer-info p .material-symbols-outlined {
	font-size: 1.2rem;
	margin-top: 2px;
}

footer .footer-info .map-link {
	display: inline-block;
	color: var(--secondary-color);
	text-decoration: underline;
	margin-left: 1.7rem;
	margin-bottom: 1rem;
}

footer .footer-info .map-link:hover {
	opacity: 0.8;
}

footer .footer-links {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {

	footer .footer-links {
		align-items: flex-end
	}
}

footer .footer-links a {
	color: #FFFFFF;
	text-decoration: none;
	transition: opacity 0.3s;
}

footer .footer-links a:hover {
	opacity: 0.7;
	text-decoration: underline;
}

footer .copyright {
	text-align: center;
	margin-top: 60px;
	font-size: 0.8rem;
	opacity: 0.6;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* SP用スティッキーバー */

footer .sticky-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #FFFFFF;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 12px 20px;
	z-index: 40;
	display: flex;
	justify-content: center;
}

@media (min-width: 768px) {

	footer .sticky-footer {
		display: none
	}
}

footer .sticky-footer .btn-call-sticky {
	width: 100%;
	background-color: var(--secondary-color);
	color: #FFFFFF;
	text-decoration: none;
	padding: 12px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: bold;
	font-size: 1.1rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer .sticky-footer .btn-call-sticky .material-symbols-outlined {
	font-size: 24px;
}

/* ./parts/index-lawyers.html */

.index-lawyers {
	background-color: var(--surface-color);
}

.index-lawyers .lawyers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
	/* 追加：グリッド内のアイテムの垂直方向の高さを揃える */
	align-items: stretch;
}

/* タブレットサイズ：2列 */
@media (min-width: 768px) {
	.index-lawyers .lawyers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* PCサイズ：4列 */
@media (min-width: 1024px) {
	.index-lawyers .lawyers-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.index-lawyers .lawyer-card {
	background-color: #FFFFFF;
	padding: 2rem 1rem;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	color: inherit;
	/* 修正：display: block から flex に変更し、高さを100%に強制する */
	display: flex;
	flex-direction: column;
	height: 100%;
}

.index-lawyers .lawyer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* 以下、既存のスタイルを維持 */
.index-lawyers .lawyer-card .lawyer-image {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	border: 2px solid var(--surface-color);
	/* flexの子要素としてサイズを維持するため追加 */
	flex-shrink: 0;
}

.index-lawyers .lawyer-card .lawyer-name {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

.index-lawyers .lawyer-card .lawyer-name-en {
	font-size: 0.8rem;
	color: var(--text-color);
	/* text-sub 相当 */
  white-space: nowrap;
	opacity: 0.7;
	display: block;
	margin-bottom: 1rem;
}

.index-lawyers .lawyer-card .lawyer-role {
	font-size: 0.9rem;
	color: var(--text-color);
}

.index-lawyers .section-cta {
	text-align: center;
}

/* ./parts/index-hero.html */

.hero-section {
	position: relative;
	height: 600px;
	/* PCでの高さ */
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
}

@media (max-width: 768px) {

	.hero-section {
		height: 500px
			/* SPでの高さ */
	}
}

/* 背景画像 */

.hero-section .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-section .hero-bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	/* 明るさを少し落として文字を読みやすく */
	filter: brightness(0.65);
}

/* コンテンツ */

.hero-section .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 0 20px;
	max-width: 800px;
	animation: fadeIn 1s ease-out;
}

.hero-section .hero-content h2 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.4;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	border-bottom: none;
	/* section共通スタイルのリセット */
	font-feature-settings: "palt";
}

@media (max-width: 768px) {

	.hero-section .hero-content h2 {
		font-size: 2rem
	}
}

.hero-section .hero-content p {
	font-size: 1.1rem;
	margin-bottom: 2.5rem;
	line-height: 1.8;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {

	.hero-section .hero-content p {
		font-size: 1rem;
		text-align: left
			/* スマホでは読みやすさ重視で左寄せも検討だが、中央揃え継続 */
	}

	.hero-section .hero-content p br {
		display: none;
	}
}

.hero-section .hero-content .hero-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.hero-section .hero-content .hero-cta .btn-call-hero {
	background-color: var(--secondary-color);
	color: #FFFFFF;
	padding: 1rem 3rem;
	border-radius: 4px;
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.8rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-content .hero-cta .btn-call-hero:hover {
	transform: translateY(-2px);
	opacity: 0.95;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-section .hero-content .hero-cta .btn-call-hero .material-symbols-outlined {
	font-size: 1.5rem;
}

@media (max-width: 768px) {

	.hero-section .hero-content .hero-cta .btn-call-hero {
		width: 100%;
		justify-content: center;
		padding: 1rem 1rem;
		font-size: 1.1rem
	}
}

.hero-section .hero-content .hero-cta .hero-opening-hours {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-top: 0.5rem;
}

/* フェードインアニメーション */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ./parts/index-access.html */

#access {
	background-color: var(--surface-color);
	padding: 80px 0;
	/* マージンではなくパディングで間隔を確保 */
}

#access .access-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 900px) {

	#access .access-container {
		grid-template-columns: 1fr 1fr;
		align-items: center
	}
}

#access .access-info h3 {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

#access .access-info dl {
	margin-bottom: 2rem;
}

#access .access-info .info-row {
	margin-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 1.5rem;
}

#access .access-info .info-row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#access .access-info dt {
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

#access .access-info dt .material-symbols-outlined {
	font-size: 1.2rem;
	color: var(--secondary-color);
}

#access .access-info dd {
	font-size: 1rem;
	line-height: 1.8;
	padding-left: 1.7rem;
}

#access .access-info .access-buttons {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 600px) {

	#access .access-info .access-buttons {
		flex-direction: row
	}
}

#access .map-container {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
}

#access .map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* ./parts/index-services.html */

section#services {
	background-color: var(--surface-color);
}

section#services .services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* スマホは2列 */
	gap: 20px;
	margin-bottom: 3rem;
}

@media (max-width: 480px) {

	section#services .services-grid {
		grid-template-columns: 1fr
			/* 小さいスマホは1列 */
	}
}

@media (min-width: 768px) {

	section#services .services-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (min-width: 1024px) {

	section#services .services-grid {
		grid-template-columns: repeat(4, 1fr)
	}
}

section#services .service-card {
	background-color: #FFFFFF;
	padding: 2rem 1.5rem;
	border-radius: 4px;
	/* 角丸は控えめに */
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	border: 1px solid transparent;
}

section#services .service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
	border-color: rgba(75, 54, 33, 0.1);
	/* primary with opacity */
}

section#services .service-card .icon-wrapper {
	width: 60px;
	height: 60px;
	background-color: #F5F0E6;
	/* primary colorの淡い色 */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: var(--primary-color);
}

section#services .service-card .icon-wrapper .material-symbols-outlined {
	font-size: 32px;
}

section#services .service-card h3 {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

section#services .service-card p {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

section#services .cta-wrapper {
	text-align: center;
	margin-top: 2rem;
}

/* ./parts/index-fees.html */

#fees {
	background-color: var(--surface-color);
	/* 薄いグレー背景 */
}

#fees .fees-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {

	#fees .fees-container {
		grid-template-columns: 1fr 1fr;
		gap: 5rem
	}
}

#fees .fees-content h2 {
	margin-bottom: 2rem;
	text-align: left;
	/* 左寄せ上書き */
}

#fees .fees-content h2::after {
	margin: 1rem 0 0;
	/* 左寄せ用 */
}

#fees .fees-content p {
	margin-bottom: 1.5rem;
	text-align: justify;
}

#fees .fees-content .price-highlight {
	background-color: #FFFFFF;
	border-left: 4px solid var(--secondary-color);
	padding: 1.5rem;
	margin: 2rem 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#fees .fees-content .price-highlight .label {
	font-size: 0.9rem;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	display: block;
	font-weight: 700;
}

#fees .fees-content .price-highlight .value {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--primary-color);
	font-weight: 700;
}

#fees .fees-content .price-highlight .value span {
	font-size: 1rem;
	font-weight: 400;
}

#fees .fees-content .price-highlight .note {
	font-size: 0.8rem;
	color: #666;
	margin-top: 0.5rem;
	display: block;
}

#fees .fees-image {
	position: relative;
}

#fees .fees-image::before {
	content: '';
	position: absolute;
	top: -20px;
	right: -20px;
	width: 100%;
	height: 100%;
	border: 2px solid var(--secondary-color);
	z-index: 0;
	display: none;
}

@media (min-width: 768px) {

	#fees .fees-image::before {
		display: block
	}
}

#fees .fees-image img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	position: relative;
	z-index: 1;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ./parts/index-features.html */

#features {
	/* 背景色にsurface-color(薄いグレー)を使用し、白背景の他セクションと区別 */
	background-color: var(--surface-color);
}

#features .features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {

	#features .features-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

#features .feature-item {
	background-color: #ffffff;
	padding: 3rem 2rem;
	text-align: center;
	border-radius: 4px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#features .feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#features .feature-item .icon-wrapper {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background-color: rgba(197, 160, 101, 0.1);
	/* secondaryの薄い色 */
	border-radius: 50%;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

#features .feature-item .icon-wrapper .material-symbols-outlined {
	font-size: 40px;
}

#features .feature-item h3 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

#features .feature-item p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--text-color);
}

/* ./parts/lawyers-main.html */

/* ページタイトルエリア */
.page-header {
	background-color: var(--surface-color);
	padding: 60px 0;
	text-align: center;
	margin-bottom: 0;
	/* paddingで間隔調整するためmarginは0 */
}

.page-header h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-family: var(--font-heading);
}

.page-header p {
	color: var(--text-color);
	opacity: 0.8;
}

/* 弁護士紹介セクション全体 */
.lawyers-container {
	padding: 80px 0;
	background-color: #fff;
}

/* 個別の弁護士カード */
.lawyer-card {
	margin-bottom: 100px;
	scroll-margin-top: 100px;
}

/* アンカーリンク時の位置調整 */
.lawyer-card:last-child {
	margin-bottom: 0;
}

.lawyer-card .lawyer-card-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 900px) {
	.lawyer-card .lawyer-card-inner {
		grid-template-columns: 300px 1fr;
		gap: 60px
	}
}

/* 左側：写真 */
.lawyer-card .lawyer-photo {
	width: 100%;
}

.lawyer-card .lawyer-photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/4;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	background-color: #eee;
}

/* 右側：情報 */
.lawyer-card .lawyer-info .name-area {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
}

.lawyer-card .lawyer-info .name-area h2 {
	font-size: 1.8rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-weight: 700;
	border: none;
}

.lawyer-card .lawyer-info .name-area .kana {
	font-size: 0.9rem;
	color: #666;
	display: block;
	margin-bottom: 0.5rem;
}

.lawyer-card .lawyer-info .name-area .affiliation {
	font-size: 0.9rem;
	display: inline-block;
	background-color: var(--surface-color);
	padding: 4px 12px;
	border-radius: 20px;
	color: var(--text-color);
}

.lawyer-card .lawyer-info .career-table {
	width: 100%;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.lawyer-card .lawyer-info .career-table tr {
	vertical-align: top;
}

.lawyer-card .lawyer-info .career-table th {
	text-align: left;
	width: 120px;
	padding-bottom: 0.8rem;
	font-weight: 600;
	color: var(--primary-color);
	white-space: nowrap;
}

@media (max-width: 600px) {
	.lawyer-card .lawyer-info .career-table th {
		width: 100px
	}
}

.lawyer-card .lawyer-info .career-table td {
	padding-bottom: 0.8rem;
	line-height: 1.6;
}

.lawyer-card .lawyer-info .message-box {
	background-color: var(--surface-color);
	padding: 2rem;
	border-left: 4px solid var(--secondary-color);
	border-radius: 0 4px 4px 0;
	position: relative;
}

.lawyer-card .lawyer-info .message-box::before {
	content: 'format_quote';
	font-family: 'Material Symbols Outlined';
	font-size: 2rem;
	color: var(--secondary-color);
	opacity: 0.3;
	position: absolute;
	top: 10px;
	left: 10px;
}

.lawyer-card .lawyer-info .message-box p {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	line-height: 1.8;
	font-weight: 600;
	color: var(--primary-color);
}

/* ./parts/service-main.html */

.service-section {
	padding-top: 40px;
	padding-bottom: 80px;
}

.service-section .page-header {
	text-align: center;
	margin-bottom: 60px;
}

.service-section .page-header h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-weight: 700;
}

.service-section .page-header p {
	max-width: 600px;
	margin: 0 auto;
	color: #666;
}

/* 目次グリッド */

.service-section .service-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	max-width: 1000px;
	margin: 0 auto 80px;
}

@media (min-width: 768px) {

	.service-section .service-nav {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px
	}
}

.service-section .service-nav button {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 20px 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	height: 100%;
	width: 100%;
}

.service-section .service-nav button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-color: var(--secondary-color);
}

.service-section .service-nav button:hover .icon-box {
	color: var(--secondary-color);
	background-color: rgba(197, 160, 101, 0.1);
}

.service-section .service-nav button:hover .label {
	color: var(--primary-color);
}

.service-section .service-nav button .icon-box {
	width: 50px;
	height: 50px;
	background-color: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.service-section .service-nav button .icon-box .material-symbols-outlined {
	font-size: 28px;
}

.service-section .service-nav button .label {
	font-size: 0.95rem;
	font-weight: 700;
	color: #444;
	font-family: var(--font-heading);
	text-align: center;
	transition: color 0.3s ease;
}

/* アコーディオンリスト */

.service-section .service-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.service-section .accordion-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}

.service-section .accordion-item.is-active {
	border-color: var(--secondary-color);
	box-shadow: 0 4px 12px rgba(197, 160, 101, 0.15);
}

.service-section .accordion-item .accordion-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	background: #fff;
	border: none;
	cursor: pointer;
	text-align: left;
}

.service-section .accordion-item .accordion-header:hover {
	background-color: #fafafa;
}

.service-section .accordion-item .accordion-header .header-title {
	display: flex;
	align-items: center;
	gap: 15px;
}

.service-section .accordion-item .accordion-header .header-title .icon {
	color: var(--secondary-color);
}

.service-section .accordion-item .accordion-header .header-title .icon .material-symbols-outlined {
	font-size: 28px;
}

.service-section .accordion-item .accordion-header .header-title h2 {
	font-size: 1.25rem;
	color: var(--primary-color);
	font-family: var(--font-heading);
	font-weight: 600;
	border-bottom: none;
	margin: 0;
}

.service-section .accordion-item .accordion-header .header-title h2 span {
	font-size: 0.9rem;
	color: #888;
	margin-left: 10px;
	font-weight: 400;
	display: none;
}

@media (min-width: 768px) {

	.service-section .accordion-item .accordion-header .header-title h2 span {
		display: inline
	}
}

.service-section .accordion-item .accordion-header .toggle-icon {
	transition: transform 0.3s ease;
	color: #aaa;
}

.service-section .accordion-item .accordion-header .toggle-icon.rotate {
	transform: rotate(180deg);
}

.service-section .accordion-item .accordion-content {
	padding: 0 24px 24px;
	color: var(--text-color);
	line-height: 1.8;
	font-size: 1rem;
	display: none;
	border-top: 1px solid #f0f0f0;
	padding-top: 20px;
}

.service-section .accordion-item .accordion-content.show {
	display: block;
	animation: fadeIn 0.4s ease;
}

.service-section .accordion-item .accordion-content p {
	margin-bottom: 1rem;
}

.service-section .accordion-item .accordion-content p:last-child {
	margin-bottom: 0;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ./parts/price-main.html */

.price-main {
	padding: 40px 0 80px;
	background-color: #fff;
}

.price-main .page-header {
	text-align: center;
	margin-bottom: 60px;
}

.price-main .page-header h1 {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.price-main .page-header p {
	color: var(--text-color);
	max-width: 800px;
	margin: 0 auto;
}

/* 費用の種類（定義リスト） */

.price-main .terms-list {
	margin-bottom: 80px;
	border-top: 1px solid #eee;
}

@media (min-width: 768px) {

	.price-main .terms-list {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 0 40px;
		border-top: none
	}
}

.price-main .terms-list dt {
	font-weight: 700;
	color: var(--primary-color);
	padding: 15px 0 5px;
	border-bottom: 1px solid #eee;
	font-family: var(--font-heading);
}

@media (min-width: 768px) {

	.price-main .terms-list dt {
		padding: 20px 0;
		width: 120px
	}
}

.price-main .terms-list dd {
	padding: 5px 0 15px;
	border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {

	.price-main .terms-list dd {
		padding: 20px 0
	}
}

/* セクション見出し */

.price-main .category-title {
	font-size: 1.75rem;
	color: var(--primary-color);
	border-bottom: 2px solid var(--secondary-color);
	padding-bottom: 10px;
	margin: 60px 0 30px;
	font-family: var(--font-heading);
}

.price-main .subcategory-title {
	font-size: 1.4rem;
	color: var(--text-color);
	margin: 40px 0 20px;
	font-weight: 600;
	border-left: 4px solid var(--secondary-color);
	padding-left: 15px;
}

/* 料金カード（相談料など） */

.price-main .fee-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {

	.price-main .fee-card-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

.price-main .fee-card {
	background-color: var(--surface-color);
	padding: 30px;
	border-radius: 8px;
	border: 1px solid #eee;
}

.price-main .fee-card h3 {
	font-size: 1.25rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-main .fee-card h3::before {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background-color: var(--secondary-color);
}

.price-main .fee-card .fee-item {
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-main .fee-card .fee-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.price-main .fee-card .fee-item .label {
	font-weight: 700;
	display: block;
	margin-bottom: 0.25rem;
}

.price-main .fee-card .fee-item .value {
	display: block;
	font-size: 1.1rem;
	color: var(--text-color);
}

/* テーブル */

.price-main .price-table-wrapper {
	width: 100%;
	overflow-x: auto;
	margin-bottom: 20px;
	-webkit-overflow-scrolling: touch;
	border: 1px solid #eee;
	border-radius: 4px;
}

.price-main .price-table {
	width: 100%;
	min-width: 600px;
	/* モバイルでの横スクロール強制 */
	border-collapse: collapse;
	font-size: 0.95rem;
}

.price-main .price-table th,
.price-main .price-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #eee;
}

.price-main .price-table th {
	background-color: var(--surface-color);
	font-weight: 700;
	color: var(--primary-color);
	white-space: nowrap;
	width: 40%;
}

.price-main .price-table td {
	background-color: #fff;
}

/* 計算式テーブル用のスタイル */

.price-main .price-table.calc-table th {
	width: 50%;
}

.price-main .price-table.calc-table td {
	width: 50%;
	text-align: right;
}

.price-main .annotation {
	font-size: 0.85rem;
	color: #666;
	margin-top: 10px;
	line-height: 1.6;
	padding-left: 1em;
	text-indent: -1em;
}

.price-main .intro-text {
	margin-bottom: 40px;
	line-height: 1.8;
}
