:root {
	--primary-color: #F8B862;
	/* 温かみのあるオレンジ */
	--secondary-color: #F5EFE0;
	/* やさしいベージュ */
	--accent-color: #4B89AC;
	/* 信頼感のある青 */
	--text-color: #333333;
	/* 読みやすいダークグレー */
	--background-color: #FFFFFF;
	/* 白 */
	--background-alt-color: #FAF7F2;
	/* ライトベージュ */
	--footer-color: #F9ECD9;
	/* フッター背景 */
	--box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	--transition: all 0.3s ease;
	/* スペーシング */
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 32px;
	--spacing-lg: 64px;
	--spacing-xl: 96px;
	/* ボーダー */
	--border-radius-sm: 4px;
	--border-radius-md: 8px;
	--border-radius-lg: 12px;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
}

body {
	font-family: '游ゴシック Regular', 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	color: var(--text-color);
	background-color: var(--background-color);
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'UD角ゴシック', '游ゴシック Medium', 'YuGothic', sans-serif;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-color);
}

/* レイアウト共通 */
.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

.section {
	padding: 80px 0;
	position: relative;
}

.section-alt {
	background-color: var(--background-alt-color);
}

.section-title {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 2.5rem;
	position: relative;
	color: var(--text-color);
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto 0;
}

.section-subtitle {
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--text-color);
	font-weight: 400;
}

/* ボタンスタイル */
.btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: var(--border-radius-md);
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--box-shadow);
}

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

.btn-primary:hover {
	background-color: #e6a550;
}

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

.btn-secondary:hover {
	background-color: #3f77a1;
}

.btn-call {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 1.1rem;
}

.btn-call .material-symbols-rounded {
	font-size: 1.4rem;
}

/* カード共通 */
.card {
	background-color: var(--background-color);
	border-radius: var(--border-radius-lg);
	box-shadow: var(--box-shadow);
	overflow: hidden;
	transition: var(--transition);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* グリッドレイアウト */
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

/* 写真ズームエフェクト */
.img-zoom-container {
	overflow: hidden;
	border-radius: var(--border-radius-lg);
}

.img-zoom {
	transition: transform 0.5s ease;
}

.img-zoom:hover {
	transform: scale(1.05);
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
	html {
		font-size: 14px;
	}

	.section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.grid {
		grid-template-columns: 1fr;
	}

	.btn {
		padding: 14px 24px;
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.section {
		padding: 70px 0;
	}

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

/* アクセシビリティ対応 */
:focus {
	outline: 3px solid var(--accent-color);
	outline-offset: 2px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* ページトップへ戻るボタン */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	opacity: 0;
	transition: var(--transition);
	z-index: 99;
}

.back-to-top.visible {
	opacity: 1;
}

.back-to-top:hover {
	background-color: #e6a550;
	transform: translateY(-5px);
}

/* 電話リンク */
.tel-link {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 700;
	transition: var(--transition);
}

.tel-link:hover {
	color: var(--primary-color);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(5px);
	transition: var(--transition);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
	padding: 1rem 0;
}

.site-header.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 0.75rem 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
}

.logo-img{
	width: 160px;
	min-width: 160px;
	margin-right: 1rem;
}

.logo-icon {
	font-size: 1.75rem;
	margin-right: 0.5rem;
}

.logo-text {
	font-family: 'UD角ゴシック', '游ゴシック Medium', 'YuGothic', 'sans-serif';
}

.main-nav ul {
	display: flex;
	gap: 1.5rem;
}

.main-nav a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
	transition: var(--transition);
}

.main-nav a:hover,
.main-nav li.active a {
	color: var(--primary-color);
}

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

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

.header-tel {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-color);
}

.header-tel .material-symbols-rounded {
	color: var(--primary-color);
}

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	cursor: pointer;
	z-index: 1010;
}

.mobile-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.mobile-toggle.open span {
	background-color: #fff;
}

.mobile-toggle.open span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--primary-color);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	visibility: hidden;
}

.mobile-menu.open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

.mobile-nav a {
	text-decoration: none;
	color: white;
	font-size: 1.25rem;
	font-weight: 700;
	transition: var(--transition);
	padding: 0.5rem;
}

.mobile-nav a:hover {
	transform: scale(1.05);
}

.mobile-contact {
	margin-top: 2rem;
}

@media (max-width: 767px) {

	.main-nav,
	.header-tel {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}

	.site-logo {
		font-size: 1.25rem;
	}

	.logo-icon {
		font-size: 1.5rem;
	}
}

@media (min-width: 768px) {
	.mobile-menu {
		display: none;
	}

	.mobile-menu.open {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.main-nav ul {
		gap: 1rem;
	}

	.main-nav a {
		font-size: 0.8rem;
		white-space: nowrap;
	}

	.header-tel {
		font-size: 0.9rem;
	}
}

.site-footer {
	background-color: var(--footer-color);
	padding-top: 70px;
	padding-bottom: 30px;
}

.cta-section {
	background-color: white;
	border-radius: var(--border-radius-lg);
	padding: 40px;
	margin-bottom: 50px;
	text-align: center;
	box-shadow: var(--box-shadow);
}

.cta-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.cta-text {
	margin-bottom: 1.5rem;
}

.cta-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #666;
}

.footer-main {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: 40px;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-info {
	flex: 2;
	min-width: 260px;
}

.footer-logo {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	margin-bottom: 1rem;
}

.footer-logo .logo-icon {
	font-size: 1.75rem;
	margin-right: 0.5rem;
}

.footer-address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: 1.6;
}

.footer-contacts {
	margin-bottom: 1rem;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.contact-label {
	font-weight: 700;
}

.footer-hours {
	color: #555;
}

.footer-hours p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.footer-hours .material-symbols-rounded {
	color: var(--primary-color);
	font-size: 1.25rem;
}

.footer-nav {
	flex: 1;
	min-width: 200px;
}

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

.footer-nav a {
	text-decoration: none;
	color: var(--text-color);
	transition: var(--transition);
}

.footer-nav a:hover {
	color: var(--primary-color);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: space-between;
	font-size: 0.9rem;
	color: #666;
}

@media (max-width: 767px) {
	.site-footer {
		padding-top: 50px;
	}

	.cta-section {
		padding: 30px 20px;
	}

	.footer-main {
		flex-direction: column;
		gap: 30px;
	}

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