/* ========== ベース ========== */

/* カラーパレット */
:root {
	--primary-color:   #2d5f3f;	/* 深緑（和の色） */
	--secondary-color: #7d9d88;	/* 若竹色 */
	--accent-color:    #c49a6c;	/* 土色・ベージュ */
	--text-dark:       #1a1a1a;
	--text-gray:       #666666;
	--text-light:      #999999;
	--bg-light:        #f8f9fa;
	--bg-green-light:  #e9f5ed;
	--border-color:    #e0e0e0;
	--white:           #ffffff;
	--red-alert:       #d32f2f;
	--text-body:       #333333;
	--accent-dark:     #b38a5d;
	--shadow:          rgba(0, 0, 0, 0.1);
	--shadow-primary:  rgba(45, 95, 63, 0.2);
}

/* リセット */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: var(--white);
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

ul {
	list-style: none;
}

/* タイポグラフィ */
.section-title {
	position: relative;
	margin-bottom: 16px;
	padding-bottom: 16px;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--primary-color);
	text-align: center;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 60px;
	height: 3px;
	background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
	transform: translateX(-50%);
}

.section-subtitle {
	margin-bottom: 48px;
	font-size: 1.1rem;
	color: var(--text-gray);
	text-align: center;
}

/* ベース レスポンシブ */
@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.section-title {
		font-size: 1.7rem;
	}
}


/* ========== レイアウト ========== */

/* コンテナ */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ヘッダー */
.header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 10px var(--shadow);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
}

/* ロゴ */
.logo h1 {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
}

.logo .subtitle {
	display: block;
	margin-top: 4px;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--text-gray);
}

/* グローバルナビ */
.nav-list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-list a {
	position: relative;
	font-weight: 500;
	color: var(--text-dark);
}

.nav-list a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
	width: 100%;
}

/* ヘッダーCTAエリア */
.header-cta {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* ハンバーガーボタン */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 28px;
	height: 3px;
	border-radius: 2px;
	background: var(--primary-color);
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* モバイルナビ */
.mobile-nav {
	position: fixed;
	top: 76px;
	left: 0;
	z-index: 999;
	display: none;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 4px 10px var(--shadow);
	transition: max-height 0.3s ease;
}

.mobile-nav.active {
	max-height: 500px;
}

.mobile-nav-list {
	padding: 20px;
}

.mobile-nav-list li {
	border-bottom: 1px solid var(--border-color);
}

.mobile-nav-list li:last-child {
	border-bottom: none;
}

.mobile-nav-list a {
	display: block;
	padding: 16px 0;
	font-weight: 500;
	color: var(--text-dark);
}

/* フッター */
.footer {
	padding: 60px 0 0;
	background: var(--text-dark);
	color: var(--white);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 24px 0;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--accent-color);
}

/* ページヘッダー（各内部ページ共通） */
.page-header {
	padding: 120px 0 80px;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(45, 95, 63, 0.9) 0%, rgba(125, 157, 136, 0.8) 100%),
		url('../image/sentei.jpg') center/cover;
	text-align: center;
}

.page-header__title {
	margin-bottom: 16px;
	font-family: 'Noto Serif JP', serif;
	font-size: 3rem;
	font-weight: 600;
}

.page-header__subtitle {
	font-size: 1.2rem;
	opacity: 0.95;
}

/* ページ内CTA（各ページ末尾の問い合わせ誘導） */
.page-cta {
	margin-top: 64px;
	padding: 60px 40px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-green-light) 100%);
	text-align: center;
}

.page-cta__title {
	margin-bottom: 16px;
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-color);
}

.page-cta__text {
	margin-bottom: 32px;
	font-size: 1.1rem;
	color: var(--text-gray);
}

.page-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

/* パンくずリスト */
.breadcrumb {
	padding: 20px 0;
	background: var(--bg-light);
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.breadcrumb-list li::after {
	content: '›';
	color: var(--text-light);
}

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

.breadcrumb-list a {
	color: var(--text-gray);
	transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
	color: var(--primary-color);
}

/* レイアウト レスポンシブ */
@media (max-width: 1024px) {
	/* ハンバーガーメニューに切り替え */
	.nav {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.mobile-nav {
		display: block;
	}
}

@media (max-width: 900px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	/* ページヘッダー */
	.page-header {
		padding: 80px 0 60px;
	}

	.page-header__title {
		font-size: 2rem;
	}

	/* ページ内CTA */
	.page-cta {
		padding: 40px 24px;
	}

	.page-cta__title {
		font-size: 1.6rem;
	}

	.page-cta__buttons {
		flex-direction: column;
		align-items: stretch;
	}

	/* フッター */
	.footer-content {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
}


/* ========== コンポーネント ========== */

/* 共通ボタン */
.btn-primary {
	display: inline-block;
	padding: 16px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 500;
	color: var(--white);
	background: var(--primary-color);
	box-shadow: 0 4px 12px var(--shadow-primary);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: var(--secondary-color);
	box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
	transform: translateY(-2px);
}

/* 電話ボタン（ヘッダー） */
.btn-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
}

.btn-phone i {
	font-size: 1.1rem;
}

.btn-phone:hover {
	color: var(--secondary-color);
}

/* お問い合わせボタン（ヘッダー） */
.btn-contact {
	padding: 10px 24px;
	border-radius: 50px;
	font-weight: 500;
	color: var(--white);
	background: var(--primary-color);
	transition: all 0.3s ease;
}

.btn-contact:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* モバイルメニュー内お問い合わせボタン */
.btn-mobile-contact {
	margin-top: 16px;
	padding: 16px !important;
	border-radius: 8px;
	color: var(--white) !important;
	background: var(--primary-color);
	text-align: center;
}

/* ヒーローボタン */
.btn-hero {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 40px;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-hero-primary {
	color: var(--primary-color);
	background: var(--white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
	color: var(--white);
	background: var(--accent-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

.btn-hero-secondary {
	color: var(--white);
	background: transparent;
	border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
	color: var(--primary-color);
	background: var(--white);
	transform: translateY(-3px);
}

/* CTAボタン */
.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 20px 48px;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-cta-primary {
	color: var(--primary-color);
	background: var(--white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
	color: var(--white);
	background: var(--accent-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

.btn-cta-secondary {
	color: var(--white);
	background: transparent;
	border: 2px solid var(--white);
}

.btn-cta-secondary:hover {
	color: var(--primary-color);
	background: var(--white);
	transform: translateY(-3px);
}

/* スティッキーCTA（モバイル） */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
	display: none;
	width: 100%;
	gap: 12px;
	padding: 12px;
	background: var(--white);
	box-shadow: 0 -2px 10px var(--shadow);
}

.sticky-btn {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 16px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.sticky-btn-phone {
	color: var(--white);
	background: var(--primary-color);
}

.sticky-btn-phone:hover {
	background: var(--secondary-color);
}

.sticky-btn-contact {
	color: var(--white);
	background: var(--accent-color);
}

.sticky-btn-contact:hover {
	background: var(--accent-dark);
}

/* フッターテキスト類 */
.footer-title {
	margin-bottom: 16px;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.5rem;
	color: var(--accent-color);
}

.footer-subtitle {
	margin-bottom: 16px;
	font-size: 1.2rem;
	color: var(--accent-color);
}

.footer-text {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

.footer-contact p {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
	color: var(--accent-color);
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent-color);
}

.footer-area {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

/* 料金・会社情報などの共通カード */
.info-card {
	margin-bottom: 48px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.info-card__header {
	padding: 24px 32px;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.info-card__header-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.8rem;
	font-weight: 600;
}

.info-card__body {
	padding: 32px;
}

/* 共通テーブル */
.common-table {
	width: 100%;
	border-collapse: collapse;
}

.common-table thead tr {
	background: var(--bg-light);
}

.common-table th {
	padding: 16px;
	border-bottom: 2px solid var(--border-color);
	text-align: left;
}

.common-table th:last-child {
	text-align: right;
}

.common-table td {
	padding: 16px;
	border-bottom: 1px solid var(--border-color);
}

.common-table td:last-child {
	font-weight: 600;
	color: var(--primary-color);
	text-align: right;
}

.common-table tr:last-child td {
	border-bottom: none;
}

.common-table__note {
	margin-top: 20px;
	font-size: 0.9rem;
	color: var(--text-gray);
}

/* 会社概要テーブル */
.company-table {
	width: 100%;
	border-collapse: collapse;
}

.company-table tr {
	border-bottom: 1px solid var(--border-color);
}

.company-table tr:last-child {
	border-bottom: none;
}

.company-table th {
	width: 200px;
	padding: 20px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: left;
}

.company-table td {
	padding: 20px;
	color: var(--text-body);
}

/* お知らせボックス（料金ページ上部） */
.notice-box {
	margin-bottom: 64px;
	padding: 32px;
	border-radius: 16px;
	background: var(--bg-light);
	text-align: center;
}

.notice-box__title {
	margin-bottom: 16px;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.notice-box__text {
	margin-bottom: 16px;
	color: var(--text-gray);
	line-height: 1.8;
}

.notice-box__alert {
	font-weight: 600;
	color: var(--red-alert);
}

/* 連絡先情報ボックス（プライバシーページ） */
.contact-box {
	margin-top: 20px;
	padding: 24px;
	border-radius: 8px;
	background: var(--bg-light);
}

.contact-box__name {
	margin-bottom: 12px;
	color: var(--text-body);
}

.contact-box__text {
	margin-bottom: 8px;
	color: var(--text-gray);
}

/* プライバシーポリシーの本文エリア */
.privacy-body {
	margin-bottom: 48px;
	padding: 48px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.privacy-body__lead {
	margin-bottom: 24px;
	color: var(--text-gray);
	line-height: 1.9;
}

.privacy-body__section-title {
	margin: 40px 0 20px;
	padding-bottom: 12px;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
	border-bottom: 2px solid var(--border-color);
}

.privacy-body__text {
	margin-bottom: 24px;
	color: var(--text-gray);
	line-height: 1.9;
}

.privacy-body__list {
	margin-bottom: 24px;
	padding-left: 24px;
	color: var(--text-gray);
	line-height: 1.9;
}

.privacy-body__list li {
	margin-bottom: 12px;
}

.privacy-body__date {
	margin-top: 40px;
	color: var(--text-gray);
	line-height: 1.9;
	text-align: right;
}

/* 会社概要カード */
.company-card {
	margin-bottom: 48px;
	padding: 48px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.company-card__title {
	margin-bottom: 32px;
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary-color);
	text-align: center;
}

/* オーナー写真 */
.company-card__image {
	float: left;
	width: 220px;
	margin: 0 32px 16px 0;
	flex-shrink: 0;
}

.company-card__image img {
	display: block;
	width: 100%;
	height: 200px;
	border-radius: 12px;
	object-fit: cover;
}

/* float解除 */
.company-card::after {
	content: '';
	display: table;
	clear: both;
}

.company-card__greeting {
	margin-bottom: 24px;
	color: var(--text-gray);
	line-height: 2;
	text-align: justify;
}

.company-card__sign {
	margin-top: 32px;
	font-weight: 600;
	color: var(--primary-color);
	text-align: right;
}

/* 下線マーカー */
.highlight {
	background: linear-gradient(
		transparent 70%,
		var(--secondary-color) 90%
	);
}

/* ページネーション */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	grid-column: 1 / -1;
	margin: 40px 0 0;
}

.pagination__list {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* 共通：ボタン・数字の見た目 */
.pagination__item a,
.pagination__item span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1.5px solid var(--border-color);
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-dark);
	background: var(--white);
	transition: all 0.25s ease;
}

/* ホバー */
.pagination__item a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: var(--bg-green-light);
}

/* 現在ページ */
.pagination__item a.is-active {
	border-color: var(--primary-color);
	color: var(--white);
	background: var(--primary-color);
	box-shadow: 0 3px 10px var(--shadow-primary);
}

/* 前へ・次へ */
.pagination__prev a,
.pagination__next a {
	padding: 0 16px;
	font-size: 0.85rem;
	color: var(--primary-color);
	letter-spacing: 0.02em;
}

.pagination__prev a:hover,
.pagination__next a:hover {
	border-color: var(--primary-color);
	color: var(--white);
	background: var(--primary-color);
}

/* 「…」 */
.pagination__ellipsis span {
	min-width: 28px;
	border: none;
	font-size: 1rem;
	color: var(--text-gray);
	background: transparent;
	cursor: default;
}

/* ページ番号グループ */
.pagination__numbers_inner {
	display: flex;
	align-items: center;
	gap: 4px;
}

/* SP用：「1 / 6」表示 */
.pagination__current span {
	border: none;
	font-size: 0.9rem;
	color: var(--text-gray);
	background: transparent;
	cursor: default;
}

/* PC/SP 出し分け */
.pc-only { display: flex; }
.sp-only { display: none; }

/* フォームパーツ */
.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--text-body);
}

.form-label-required {
	margin-left: 4px;
	font-size: 0.85rem;
	color: var(--red-alert);
}

.form-label-optional {
	margin-left: 4px;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary-color);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.form-file {
	display: none;
}

.form-file-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border: 2px dashed var(--border-color);
	border-radius: 8px;
	font-weight: 500;
	color: var(--text-gray);
	background: var(--bg-light);
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-file-label:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	background: var(--bg-green-light);
}

.form-file-name {
	margin-top: 8px;
	font-size: 0.9rem;
	color: var(--text-gray);
}

.form-checkbox-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
}

.form-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.form-checkbox {
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.form-note {
	margin-top: 8px;
	font-size: 0.9rem;
	color: var(--text-gray);
	line-height: 1.7;
}

.form-submit {
	width: 100%;
	padding: 18px 40px;
	border: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {
	box-shadow: 0 6px 20px rgba(45, 95, 63, 0.4);
	transform: translateY(-2px);
}

.form-submit:active {
	transform: translateY(0);
}

.form-privacy {
	margin-top: 24px;
	padding: 20px;
	border-radius: 8px;
	font-size: 0.9rem;
	color: var(--text-gray);
	background: var(--bg-light);
	line-height: 1.8;
}

.form-privacy a {
	color: var(--primary-color);
	text-decoration: underline;
}

/* コンポーネント レスポンシブ */
@media (max-width: 768px) {
	/* スティッキーCTA */
	.sticky-cta {
		display: flex;
	}

	body {
		padding-bottom: 72px;
	}

	/* ページネーション */
	.pc-only { display: none; }
	.sp-only { display: flex; }

	.pagination__prev a,
	.pagination__next a {
		padding: 0 12px;
		font-size: 0.8rem;
	}

	/* お問い合わせ */
	.contact-form-card {
		padding: 24px;
	}

	.form-checkbox-group {
		grid-template-columns: 1fr;
	}

	/* 会社概要 */
	.company-card {
		padding: 24px;
	}

	.company-card__image {
		float: none;
		margin: 0 auto 24px;
	}

	.company-table th {
		display: block;
		width: auto;
		padding-bottom: 4px;
	}

	.company-table td {
		display: block;
		padding-top: 0;
	}

	/* プライバシー */
	.privacy-body {
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.btn-hero,
	.btn-cta {
		padding: 14px 28px;
		font-size: 1rem;
	}
}


/* ========== プロジェクト ========== */

/* ---- index.html ---- */

/* ヒーローセクション */
.hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 600px;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(45, 95, 63, 0.85) 0%, rgba(125, 157, 136, 0.75) 100%),
		url('../image/mainvisual.jpg') center/cover;
	text-align: center;
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-title {
	margin-bottom: 24px;
	font-family: 'Noto Serif JP', serif;
	font-size: 3.5rem;
	font-weight: 600;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	margin-bottom: 40px;
	font-size: 1.3rem;
	line-height: 1.8;
	text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

/* 対応エリア帯 */
.area-info {
	padding: 20px 0;
	border-top: 3px solid var(--primary-color);
	background: var(--bg-light);
}

.area-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 500;
	color: var(--text-dark);
	text-align: center;
}

.area-text i {
	font-size: 1.2rem;
	color: var(--primary-color);
}

/* ごあいさつセクション */
.greeting {
	padding: 40px 0;
}

/* お悩みセクション */
.problems {
	padding: 80px 0;
	background: var(--bg-light);
}

.problems-title {
	margin-bottom: 16px;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
	text-align: center;
}

.problems-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.problems-list li {
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.8;
	text-align: center;
}

.problems-list i {
	color: var(--primary-color);
	line-height: 1.8;
}

.problems-text {
	margin-top: 16px;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.8;
	text-align: center;
}

/* 依頼の流れセクション */
.order-flows {
	padding: 80px 0;
}

.order-flows-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 28px;
}

.order-flow-card {
	padding: 40px 24px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 15px var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.order-flow-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.order-flow-icon i {
	font-size: 2.5rem;
	color: var(--white);
}

.order-flow-step {
	color: var(--primary-color);
	line-height: 1.8;
}

.order-flow-title {
	margin-bottom: 16px;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--primary-color);
}

.order-flow-text {
	color: var(--text-gray);
	line-height: 1.8;
}

/* サービス紹介セクション */
.services-intro {
	padding: 80px 0;
	background: var(--bg-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

.service-card {
	padding: 32px;
	border-top: 4px solid var(--primary-color);
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 15px var(--shadow);
	transition: all 0.3s ease;
}

.service-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-icon i {
	font-size: 2rem;
	color: var(--white);
}

.service-title {
	margin-bottom: 16px;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.service-text {
	color: var(--text-gray);
	line-height: 1.8;
}

.services-cta {
	text-align: center;
}

/* 施工事例プレビュー */
.portfolio-preview {
	padding: 80px 0;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

.portfolio-card {
	overflow: hidden;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 15px var(--shadow);
	transition: all 0.3s ease;
}

.portfolio-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-8px);
}

.portfolio-image {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	top: 16px;
	right: 16px;
}

.portfolio-category {
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white);
	background: var(--primary-color);
}

.portfolio-info {
	padding: 24px;
}

.portfolio-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
}

.portfolio-price {
	margin-bottom: 8px;
	color: var(--primary-color);
}

.portfolio-request {
	margin-bottom: 8px;
	color: var(--text-dark);
}

.portfolio-location {
	font-size: 0.95rem;
	color: var(--text-gray);
}

.portfolio-cta {
	text-align: center;
}

/* お客様の声 */
.testimonials {
	padding: 80px 0;
	background: var(--bg-light);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 32px;
}

.testimonial-card {
	position: relative;
	padding: 32px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 15px var(--shadow);
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 16px;
	left: 24px;
	font-family: Georgia, serif;
	font-size: 4rem;
	color: var(--secondary-color);
	opacity: 0.2;
}

.testimonial-text {
	position: relative;
	z-index: 1;
	margin-bottom: 24px;
	color: var(--text-gray);
	line-height: 1.9;
}

.testimonial-author {
	padding-top: 16px;
	border-top: 1px solid var(--border-color);
}

.author-name {
	margin-bottom: 4px;
	font-weight: 600;
	color: var(--text-dark);
}

.author-location {
	font-size: 0.9rem;
	color: var(--text-gray);
}

/* CTAセクション */
.cta {
	padding: 80px 0;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	text-align: center;
}

.cta-title {
	margin-bottom: 16px;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.5rem;
	font-weight: 600;
}

.cta-text {
	margin-bottom: 40px;
	font-size: 1.2rem;
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-bottom: 24px;
}

.cta-note {
	font-size: 1rem;
	opacity: 0.9;
}

/* ---- services.html ---- */

.service-detail {
	padding: 80px 0;
}

.service-detail-card {
	margin-bottom: 48px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 15px var(--shadow);
}

.service-detail-card__header {
	padding: 32px;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-detail-card__title {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
	font-size: 2rem;
	font-weight: 600;
}

.service-detail-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
}

.service-detail-card__icon i {
	font-size: 2rem;
}

.service-detail-card__body {
	padding: 40px;
}

.service-detail-card__section {
	margin-bottom: 32px;
}

.service-detail-card__section:last-child {
	margin-bottom: 0;
}

.service-detail-card__subtitle {
	margin-bottom: 16px;
	padding-bottom: 12px;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--primary-color);
	border-bottom: 2px solid var(--border-color);
}

.service-detail-card__text {
	margin-bottom: 16px;
	color: var(--text-gray);
	line-height: 1.9;
}

.service-detail-card__image {
	max-width: 600px;
	width: 100%;
}

.service-detail-card__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	border-radius: 12px;
	object-fit: cover;
}

.service-features-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.service-features-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 8px;
	background: var(--bg-light);
}

.service-features-item i {
	margin-top: 4px;
	font-size: 1.2rem;
	color: var(--primary-color);
}

.service-cases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-top: 24px;
}

.service-case-item {
	padding: 20px;
	border-left: 4px solid var(--primary-color);
	border-radius: 8px;
	background: var(--bg-light);
	text-align: center;
}

.service-case-item strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.1rem;
	color: var(--primary-color);
}

/* フロー */
.flow-steps {
	margin-top: 24px;
}

.flow-step {
	position: relative;
	display: flex;
	gap: 20px;
	margin-bottom: 32px;
}

.flow-step::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 19px;
	width: 2px;
	height: calc(100% - 20px);
	background: var(--border-color);
}

.flow-step:last-child::after {
	display: none;
}

.flow-number {
	position: relative;
	z-index: 1;
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-weight: 600;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.flow-content {
	flex: 1;
	padding-top: 6px;
}

.flow-title {
	margin-bottom: 8px;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
}

.flow-text {
	color: var(--text-gray);
	line-height: 1.8;
}

/* ---- portfolio-detail.html ---- */

.portfolio-section {
	padding: 80px 0;
}

.portfolio-detail-card {
	margin-bottom: 64px;
	overflow: hidden;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.portfolio-detail-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
	background: var(--border-color);
}

.portfolio-detail-images--single {
	grid-template-columns: 1fr;
}

.portfolio-detail-image {
	position: relative;
	padding-top: 75%;
	overflow: hidden;
}

.portfolio-detail-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.portfolio-detail-label {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white);
	background: rgba(45, 95, 63, 0.9);
}

.portfolio-detail-content {
	padding: 40px;
}

.portfolio-detail-header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--border-color);
}

.portfolio-detail-category {
	display: inline-block;
	margin-bottom: 16px;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white);
	background: var(--primary-color);
}

.portfolio-detail-title {
	margin-bottom: 12px;
	font-family: 'Noto Serif JP', serif;
	font-size: 2rem;
	font-weight: 600;
	color: var(--text-dark);
}

.portfolio-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	font-size: 0.95rem;
	color: var(--text-gray);
}

.portfolio-detail-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.portfolio-detail-meta-item i {
	color: var(--primary-color);
}

.portfolio-detail-section {
	margin-bottom: 32px;
}

.portfolio-detail-section:last-child {
	margin-bottom: 0;
}

.portfolio-detail-subtitle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary-color);
}

.portfolio-detail-subtitle i {
	font-size: 1.1rem;
}

.portfolio-detail-text {
	margin-bottom: 16px;
	color: var(--text-gray);
	line-height: 1.9;
}

.portfolio-detail-points {
	padding: 24px;
	border-left: 4px solid var(--primary-color);
	border-radius: 12px;
	background: var(--bg-light);
}

.portfolio-detail-points ul {
	padding: 0;
	list-style: none;
}

.portfolio-detail-points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--text-body);
}

.portfolio-detail-points li:last-child {
	margin-bottom: 0;
}

.portfolio-detail-points li i {
	margin-top: 4px;
	color: var(--primary-color);
}

.portfolio-detail-testimonial {
	position: relative;
	margin-top: 24px;
	padding: 32px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-green-light) 100%);
}

.portfolio-detail-testimonial::before {
	content: '"';
	position: absolute;
	top: 16px;
	left: 24px;
	font-family: Georgia, serif;
	font-size: 4rem;
	color: var(--primary-color);
	opacity: 0.2;
}

.portfolio-detail-testimonial-text {
	position: relative;
	z-index: 1;
	margin-bottom: 16px;
	font-size: 1.05rem;
	color: var(--text-body);
	line-height: 1.9;
}

.portfolio-detail-testimonial-author {
	font-weight: 500;
	color: var(--text-gray);
	text-align: right;
}

/* ---- contact.html ---- */

.contact-section {
	padding: 80px 0;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 48px;
	margin-bottom: 48px;
}

.contact-info-card {
	height: fit-content;
	padding: 40px;
	border-radius: 16px;
	color: var(--white);
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.contact-info-title {
	margin-bottom: 24px;
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.2);
}

.contact-info-icon i {
	font-size: 1.5rem;
}

.contact-info-content h3 {
	margin-bottom: 8px;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.9;
}

.contact-info-content p {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
}

.contact-info-content a {
	color: var(--white);
	transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
	opacity: 0.8;
}

.contact-hours {
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hours h3 {
	margin-bottom: 12px;
	font-size: 1.1rem;
	font-weight: 600;
}

.contact-hours p {
	opacity: 0.9;
	line-height: 1.8;
}

.contact-form-card {
	padding: 40px;
	border-radius: 16px;
	background: var(--white);
	box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-title {
	margin-bottom: 8px;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--primary-color);
}

.contact-form-subtitle {
	margin-bottom: 32px;
	color: var(--text-gray);
}

/* プロジェクト レスポンシブ */
@media (max-width: 768px) {
	/* ヒーロー */
	.hero {
		height: 500px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-hero {
		justify-content: center;
	}

	/* グリッド */
	.features-grid,
	.services-grid,
	.portfolio-grid,
	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	/* CTAセクション */
	.cta-title {
		font-size: 1.8rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-cta {
		justify-content: center;
	}

	/* サービス詳細 */
	.service-detail-card__body {
		padding: 24px;
	}

	.service-detail-card__image {
		width: 100%;
	}

	.service-features-list,
	.service-cases {
		grid-template-columns: 1fr;
	}

	/* 施工事例 */
	.portfolio-detail-images {
		grid-template-columns: 1fr;
	}

	.portfolio-detail-content {
		padding: 24px;
	}

	.portfolio-detail-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.feature-card,
	.service-card {
		padding: 24px 20px;
	}
}