:root {
	--primary-color: #2D7A3E;
	--primary-dark: #1A5F2E;
	--secondary-color: #FDB913;
	--accent-cta: #E74C3C;
	--accent-info: #17A2B8;
	--background: #F5F5F5;
	--white: #FFFFFF;
	--text-dark: #333333;
	--text-gray: #666666;
	--text-light: #999999;
	--border-light: #EEEEEE;

	--font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-family-accent: Georgia, 'Times New Roman', serif;

	--shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
	--shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
	--shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.2);

	--transition-default: all 0.3s ease-in-out;
	--transition-fast: all 0.15s ease-in-out;
}

* {
	scroll-behavior: smooth;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--white);
	overflow-x: hidden;
}

/* ================================================ */
/* グローバルスタイル */
/* ================================================ */

main {
	position: relative;
}

section {
	position: relative;
	width: 100%;
}

h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: var(--text-dark);
}

h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-dark);
}

h3 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--text-dark);
}

h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
}

h5 {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
}

h6 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-dark);
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-gray);
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition-fast);
}

a:hover {
	opacity: 0.8;
}

/* ================================================ */
/* ボタンスタイル */
/* ================================================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	transition: var(--transition-default);
	text-decoration: none;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.btn:hover {
	transform: scale(1.05);
}

.btn:active {
	transform: scale(0.98);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.btn.btn-primary {
	background-color: var(--accent-cta);
	color: var(--white);
	box-shadow: var(--shadow-light);
}

.btn.btn-primary:hover {
	background-color: darken(#E74C3C, 5%);
	box-shadow: var(--shadow-medium);
}

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

.btn.btn-secondary:hover {
	background-color: var(--primary-dark);
}

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

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

.btn.btn-sm {
	padding: 12px 24px;
	font-size: 13px;
}

.btn.btn-lg {
	padding: 20px 50px;
	font-size: 18px;
	height: 60px;
}

/* ================================================ */
/* 共通セクションスタイル */
/* ================================================ */

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

@media (max-width: 767px) {

	.container {
		padding: 0 20px
	}
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	color: var(--text-dark);
}

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

.section-subtitle {
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	color: var(--text-gray);
	margin-bottom: 40px;
	line-height: 1.7;
}

/* ================================================ */
/* グリッドレイアウト */
/* ================================================ */

.grid {
	display: grid;
	gap: 24px;
}

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

@media (max-width: 1023px) {

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

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

@media (max-width: 1023px) {

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

@media (max-width: 767px) {

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

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

@media (max-width: 1023px) {

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

@media (max-width: 767px) {

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

.flex {
	display: flex;
	gap: 24px;
}

.flex.flex-column {
	flex-direction: column;
}

.flex.flex-center {
	align-items: center;
	justify-content: center;
}

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

/* ================================================ */
/* ヘッダーのスタイル基盤 */
/* ================================================ */

header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--white);
	box-shadow: var(--shadow-light);
	transition: var(--transition-default);
}

header.scrolled {
	box-shadow: var(--shadow-medium);
}

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

/* ================================================ */
/* フッターのスタイル基盤 */
/* ================================================ */

footer {
	background-color: #1A1A1A;
	color: var(--white);
	padding: 40px 0;
	text-align: center;
}

/* ================================================ */
/* レスポンシブ基盤 */
/* ================================================ */

@media (max-width: 767px) {
	h1 {
		font-size: 28px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 20px;
	}

	h4 {
		font-size: 18px;
	}

	h5 {
		font-size: 16px;
	}

	p {
		font-size: 14px;
	}

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

	.btn.btn-lg {
		height: 48px;
	}
}

/* ================================================ */
/* アクセシビリティ */
/* ================================================ */

:focus-visible {
	outline: 2px solid var(--accent-info);
	outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--accent-info);
	outline-offset: 2px;
}

/* ================================================ */
/* ユーティリティクラス */
/* ================================================ */

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

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.mt-0 {
	margin-top: 0;
}

.mt-xs {
	margin-top: 8px;
}

.mt-sm {
	margin-top: 16px;
}

.mt-md {
	margin-top: 24px;
}

.mt-lg {
	margin-top: 32px;
}

.mt-xl {
	margin-top: 40px;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-xs {
	margin-bottom: 8px;
}

.mb-sm {
	margin-bottom: 16px;
}

.mb-md {
	margin-bottom: 24px;
}

.mb-lg {
	margin-bottom: 32px;
}

.mb-xl {
	margin-bottom: 40px;
}

.pt-0 {
	padding-top: 0;
}

.pt-sm {
	padding-top: 16px;
}

.pt-md {
	padding-top: 24px;
}

.pt-lg {
	padding-top: 32px;
}

.pt-xl {
	padding-top: 40px;
}

.pb-0 {
	padding-bottom: 0;
}

.pb-sm {
	padding-bottom: 16px;
}

.pb-md {
	padding-bottom: 24px;
}

.pb-lg {
	padding-bottom: 32px;
}

.pb-xl {
	padding-bottom: 40px;
}

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

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

.text-accent {
	color: var(--accent-cta);
}

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

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

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

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

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

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

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

.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;
}

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

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 40px;
	background-color: var(--white);
	transition: all 0.3s ease;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {

	header {
		padding: 12px 20px
	}
}

header .logo-area {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
}

header .logo {
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 6px;
	width: 70%;
  	max-width: 250px;
}

header .logo:hover {
	opacity: 0.8;
}

header .logo-icon {
	width: 24px;
	height: 24px;
	background-color: var(--primary-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 12px;
	font-weight: 700;
}

/* ナビゲーション共通 */

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

header .nav a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 14px;
	transition: color 0.3s ease;
	position: relative;
	padding-bottom: 4px;
}

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

header .nav a.active {
	color: var(--primary-color);
}

header .nav a.active::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: var(--primary-color);
}

header .nav.desktop-nav {
	display: none;
}

@media (min-width: 768px) {

	header .nav.desktop-nav {
		display: flex
	}
}

header .nav.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100vh;
	z-index: 40;
	background-color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	transition: opacity 300ms ease-in-out;
	opacity: 0;
	pointer-events: none;
}

@media (min-width: 768px) {

	header .nav.mobile-nav {
		display: none
	}
}

header .nav.mobile-nav a {
	font-size: 18px;
	font-weight: 600;
	color: white;
}

header .nav.mobile-nav a::after {
	display: none;
}

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

/* CTA ボタン */

header .cta-button {
	background-color: var(--white);
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

header .cta-button:hover {
	background-color: var(--primary-color);
	color: var(--white);
}

@media (max-width: 767px) {

	header .cta-button {
		padding: 6px 12px;
		font-size: 11px
	}
}

/* ハンバーガーボタン */

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

@media (min-width: 768px) {

	header .menu-btn {
		display: none
	}
}

header .menu-btn .material-symbols-outlined {
	font-size: 24px;
	color: var(--text-dark);
	font-variation-settings: 'wght' 400, 'FILL' 0;
}

/* スクロール時のスタイル */

header.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

footer {
	background-color: #1A1A1A;
	color: var(--white);
	padding: 60px 40px;
	text-align: center;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 767px) {

	footer {
		padding: 40px 20px
	}
}

footer .footer-container {
	max-width: 900px;
	margin: 0 auto;
}

footer .company-info {
	margin-bottom: 30px;
}

footer .company-info h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--white);
}

footer .company-info p {
	margin-bottom: 8px;
	color: #CCCCCC;
}

footer .footer-links {
	margin-bottom: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {

	footer .footer-links {
		flex-direction: column;
		gap: 12px
	}
}

footer .footer-links a {
	color: #AAAAAA;
	text-decoration: underline;
	font-size: 13px;
	transition: color 0.3s ease;
}

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

footer .copyright {
	padding-top: 20px;
	border-top: 1px solid #333333;
	color: #888888;
	font-size: 12px;
}

/* ./parts/index-problem.html */

#problem-section {
	padding: 60px 40px;
	background-color: var(--background);
}

@media (max-width: 767px) {

	#problem-section {
		padding: 40px 20px
	}
}

#problem-section .problem-container {
	max-width: 1200px;
	margin: 0 auto;
}

#problem-section .problem-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 50px;
	position: relative;
}

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

@media (max-width: 767px) {

	#problem-section .problem-title {
		font-size: 24px;
		margin-bottom: 30px
	}
}

#problem-section .problem-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

@media (max-width: 1023px) {

	#problem-section .problem-items {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 767px) {

	#problem-section .problem-items {
		grid-template-columns: 1fr;
		gap: 24px
	}
}

#problem-section .problem-item {
	background-color: var(--white);
	padding: 30px;
	border-radius: 8px;
	box-shadow: var(--shadow-light);
	transition: var(--transition-default);
	text-align: center;
}

#problem-section .problem-item:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-4px);
}

@media (max-width: 767px) {

	#problem-section .problem-item {
		padding: 24px
	}
}

#problem-section .problem-icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;
	display: inline-block;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-8px);
	}
}

#problem-section .problem-item-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 12px;
	line-height: 1.4;
}

#problem-section .problem-item-text {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
	margin: 0;
}

#problem-section .problem-empathy {
	background: linear-gradient(135deg, #2D7A3E 0%, #1A5F2E 100%);
	color: var(--white);
	padding: 40px;
	border-radius: 8px;
	text-align: center;
	margin-top: 40px;
}

@media (max-width: 767px) {

	#problem-section .problem-empathy {
		padding: 30px 20px
	}
}

#problem-section .problem-empathy p {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.8;
	margin: 0;
	color: var(--white);
}

@media (max-width: 767px) {

	#problem-section .problem-empathy p {
		font-size: 16px
	}
}

#problem-section .problem-empathy::before {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	margin: 0 auto 16px;
}

/* ./parts/index-final-cta.html */

#final-cta {
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
	color: var(--white);
	padding: 80px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

@media (max-width: 767px) {

	#final-cta {
		padding: 60px 20px
	}
}

/* 背景装飾（浮遊アイコン） */

/* #final-cta::before {
	content: '☀️';
	position: absolute;
	font-size: 80px;
	opacity: 0.15;
	animation: float 6s ease-in-out infinite;
	top: 10%;
	left: 5%;
	z-index: 1;
}

#final-cta::after {
	content: '🔋';
	position: absolute;
	font-size: 80px;
	opacity: 0.15;
	animation: float 8s ease-in-out infinite reverse;
	bottom: 10%;
	right: 5%;
	z-index: 1;
} */

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-30px);
	}
}

#final-cta .final-cta-container {
	max-width: 700px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

#final-cta .final-message {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
}

@media (max-width: 767px) {

	#final-cta .final-message {
		font-size: 22px
	}
}

#final-cta .final-urgency {
	font-size: 20px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 30px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

@media (max-width: 767px) {

	#final-cta .final-urgency {
		font-size: 16px
	}
}

#final-cta .final-cta-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	padding: 24px 40px;
	background-color: var(--accent-cta);
	color: var(--white);
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
	margin-bottom: 20px;
}

#final-cta .final-cta-btn:hover {
	background-color: darken(#E74C3C, 8%);
	transform: scale(1.05);
	box-shadow: 0 12px 32px rgba(231, 76, 60, 0.4);
}

#final-cta .final-cta-btn:active {
	transform: scale(0.98);
}

#final-cta .final-cta-btn .btn-main-text {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 4px;
}

@media (max-width: 767px) {

	#final-cta .final-cta-btn .btn-main-text {
		font-size: 16px
	}
}

#final-cta .final-cta-btn .btn-sub-text {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.9;
}

@media (max-width: 767px) {

	#final-cta .final-cta-btn {
		max-width: 100%;
		padding: 20px 24px
	}
}

#final-cta .final-cta-subcopy {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.8;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 767px) {

	#final-cta .final-cta-subcopy {
		font-size: 13px
	}
}

#final-cta .final-assurance {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin-top: 30px;
}

@media (max-width: 767px) {

	#final-cta .final-assurance {
		font-size: 12px
	}
}

#final-cta .final-assurance .assurance-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

#final-cta .final-assurance .assurance-item::before {
	content: '✓';
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 16px;
}

/* ./parts/index-security.html */

#security {
	padding: 60px 40px;
	background-color: var(--white);
}

@media (max-width: 767px) {

	#security {
		padding: 40px 20px
	}
}

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

.security-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 15px;
}

@media (max-width: 767px) {

	.security-title {
		font-size: 24px
	}
}

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

.security-subtitle {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--text-gray);
	margin-bottom: 50px;
	line-height: 1.7;
}

@media (max-width: 767px) {

	.security-subtitle {
		font-size: 14px;
		margin-bottom: 35px
	}
}

.security-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

@media (max-width: 1023px) {

	.security-cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px
	}
}

@media (max-width: 767px) {

	.security-cards {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

.security-card {
	background-color: var(--white);
	border: 1px solid var(--border-light);
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.security-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
	border-color: var(--primary-color);
}

@media (max-width: 767px) {

	.security-card {
		padding: 24px 16px
	}
}

.security-card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: var(--white);
}

.security-card-icon .material-symbols-outlined {
	font-size: 32px;
	font-weight: 700;
}

@media (max-width: 767px) {

	.security-card-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 16px
	}
}

.security-card-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
}

@media (max-width: 767px) {

	.security-card-title {
		font-size: 16px
	}
}

.security-card-text {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-gray);
	line-height: 1.7;
}

@media (max-width: 767px) {

	.security-card-text {
		font-size: 13px
	}
}

.security-message {
	background-color: var(--background);
	border-left: 4px solid var(--primary-color);
	padding: 24px;
	border-radius: 4px;
	text-align: center;
}

@media (max-width: 767px) {

	.security-message {
		padding: 20px 16px
	}
}

.security-message p {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-dark);
	line-height: 1.8;
	margin: 0;
}

@media (max-width: 767px) {

	.security-message p {
		font-size: 14px
	}
}

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

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

.security-card {
	animation: fadeInUp 0.6s ease-out backwards;
}

.security-card:nth-child(1) {
	animation-delay: 0.1s;
}

.security-card:nth-child(2) {
	animation-delay: 0.2s;
}

.security-card:nth-child(3) {
	animation-delay: 0.3s;
}

/* ./parts/index-company.html */

#company-section {
	padding: 60px 40px;
	background-color: var(--background);
}

@media (max-width: 767px) {

	#company-section {
		padding: 40px 20px
	}
}

#company-section .section-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	color: var(--primary-color);
	position: relative;
}

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

@media (max-width: 767px) {

	#company-section .section-title {
		font-size: 26px;
		margin-bottom: 40px
	}
}

#company-section .company-content {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media (max-width: 1023px) {

	#company-section .company-content {
		grid-template-columns: 1fr;
		gap: 40px
	}
}

@media (max-width: 767px) {

	#company-section .company-content {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

#company-section .company-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

#company-section .company-text h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
}

#company-section .company-text .company-info-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#company-section .company-text .company-info-item .label {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 1px;
}

#company-section .company-text .company-info-item .value {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-gray);
	line-height: 1.6;
}

#company-section .company-text .divider {
	height: 1px;
	background-color: var(--border-light);
	margin: 12px 0;
}

#company-section .company-text .description {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: var(--text-gray);
	padding: 20px;
	background-color: var(--white);
	border-left: 4px solid var(--secondary-color);
	border-radius: 4px;
}

#company-section .company-text .contact-highlight {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: var(--white);
	padding: 24px;
	border-radius: 8px;
	text-align: center;
}

#company-section .company-text .contact-highlight h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--white);
}

#company-section .company-text .contact-highlight p {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.95);
}

#company-section .company-text .contact-highlight .btn {
	background-color: var(--secondary-color);
	color: var(--text-dark);
	font-weight: 700;
	padding: 14px 32px;
	border-radius: 4px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

#company-section .company-text .contact-highlight .btn:hover {
	background-color: darken(#FDB913, 5%);
	transform: scale(1.05);
}

#company-section .company-map {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#company-section .company-map .map-container {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--shadow-medium);
}

@media (max-width: 767px) {

	#company-section .company-map .map-container {
		height: 300px
	}
}

#company-section .company-map .map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

#company-section .company-map .map-info {
	background-color: var(--white);
	padding: 20px;
	border-radius: 8px;
	box-shadow: var(--shadow-light);
}

#company-section .company-map .map-info p {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 12px;
}

#company-section .company-map .map-info p:last-child {
	margin-bottom: 0;
}

#company-section .company-map .map-info p strong {
	color: var(--text-dark);
	font-weight: 700;
}

@media (max-width: 767px) {
	#company-section .section-title {
		font-size: 24px;
	}

	#company-section .section-title::after {
		width: 50px;
		height: 2px;
	}

	#company-section .company-text h3 {
		font-size: 20px;
	}

	#company-section .company-text .contact-highlight {
		padding: 20px;
	}

	#company-section .company-text .contact-highlight h4 {
		font-size: 16px;
	}

	#company-section .company-text .contact-highlight p {
		font-size: 14px;
	}

	#company-section .company-text .contact-highlight .btn {
		padding: 12px 28px;
		font-size: 14px;
	}
}

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

section#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
	padding: 60px 40px;
}

@media (max-width: 767px) {

	section#hero {
		min-height: auto;
		padding: 40px 20px
	}
}

section#hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: -100px;
	width: 500px;
	height: 500px;
	background-image: radial-gradient(circle, rgba(253, 185, 19, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
}

@media (max-width: 767px) {

	section#hero::before {
		width: 300px;
		height: 300px;
		right: -150px;
		top: -50px
	}
}

section#hero::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -50px;
	width: 400px;
	height: 400px;
	background-image: radial-gradient(circle, rgba(253, 185, 19, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite reverse;
}

@media (max-width: 767px) {

	section#hero::after {
		width: 250px;
		height: 250px
	}
}

section#hero .hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

@media (max-width: 1023px) {

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

@media (max-width: 767px) {

	section#hero .hero-container {
		gap: 30px
	}
}

section#hero .hero-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

section#hero .hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--white);
	letter-spacing: 0.5px;
}

@media (max-width: 1023px) {

	section#hero .hero-content h1 {
		font-size: 40px
	}
}

@media (max-width: 767px) {

	section#hero .hero-content h1 {
		font-size: 28px;
		line-height: 1.3
	}
}

section#hero .hero-content h1 .highlight {
	color: var(--secondary-color);
	display: inline;
}

section#hero .hero-content .hero-subtitle {
	font-size: 20px;
	font-weight: 400;
	color: #E0E0E0;
	line-height: 1.6;
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-subtitle {
		font-size: 16px
	}
}

section#hero .hero-content .hero-description {
	font-size: 16px;
	font-weight: 400;
	color: #D0D0D0;
	line-height: 1.8;
	max-width: 500px;
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-description {
		font-size: 14px
	}
}

section#hero .hero-content .hero-cta-group {
	display: flex;
	gap: 16px;
	margin-top: 16px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-cta-group {
		flex-direction: column
	}
}

section#hero .hero-content .hero-cta-group .btn {
	min-height: 48px;
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-cta-group .btn {
		width: 100%
	}
}

section#hero .hero-content .hero-cta-group .btn-primary {
	background-color: var(--accent-cta);
	color: var(--white);
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 700;
}

section#hero .hero-content .hero-cta-group .btn-primary:hover {
	background-color: #D64234;
	transform: scale(1.05);
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-cta-group .btn-primary {
		padding: 14px 24px;
		font-size: 14px
	}
}

section#hero .hero-content .hero-cta-group .btn-secondary {
	background-color: transparent;
	border: 2px solid var(--white);
	color: var(--white);
	padding: 14px 36px;
	font-size: 16px;
	font-weight: 600;
}

section#hero .hero-content .hero-cta-group .btn-secondary:hover {
	background-color: var(--white);
	color: var(--primary-color);
}

@media (max-width: 767px) {

	section#hero .hero-content .hero-cta-group .btn-secondary {
		padding: 12px 24px;
		font-size: 14px
	}
}

section#hero .hero-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1023px) {

	section#hero .hero-image {
		order: -1
	}
}

section#hero .hero-image img {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: imageZoom 3s ease-out forwards;
}

@media (max-width: 767px) {

	section#hero .hero-image img {
		max-width: 100%
	}
}

section#hero .hero-image .image-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background-color: var(--white);
	color: var(--primary-color);
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {

	section#hero .hero-image .image-badge {
		bottom: 10px;
		left: 10px;
		padding: 10px 14px;
		font-size: 12px
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(20px);
	}
}

@keyframes imageZoom {
	from {
		opacity: 0;
		transform: scale(0.95);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* ./parts/index-flow.html */

#flow-section {
	padding: 60px 40px;
	background-color: var(--background);
}

@media (max-width: 767px) {

	#flow-section {
		padding: 30px 20px
	}
}

#flow-section .flow-container {
	max-width: 1000px;
	margin: 0 auto;
}

#flow-section .flow-title {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	color: var(--primary-color);
	margin-bottom: 15px;
}

@media (max-width: 767px) {

	#flow-section .flow-title {
		font-size: 24px
	}
}

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

#flow-section .flow-subtitle {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--text-gray);
	margin-bottom: 50px;
}

@media (max-width: 767px) {

	#flow-section .flow-subtitle {
		margin-bottom: 30px;
		font-size: 14px
	}
}

/* ステップフロー */

#flow-section .flow-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 1023px) {

	#flow-section .flow-steps {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 767px) {

	#flow-section .flow-steps {
		grid-template-columns: 1fr;
		gap: 12px
	}
}

#flow-section .flow-step {
	background-color: var(--white);
	border-radius: 8px;
	padding: 30px 24px;
	text-align: center;
	box-shadow: var(--shadow-light);
	transition: var(--transition-default);
	position: relative;
}

#flow-section .flow-step:hover {
	box-shadow: var(--shadow-medium);
	transform: translateY(-4px);
}

@media (max-width: 767px) {

	#flow-section .flow-step {
		padding: 24px 20px
	}
}

/* ステップ番号 */

#flow-section .flow-step .step-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--secondary-color);
	margin-bottom: 12px;
	line-height: 1;
}

@media (max-width: 767px) {

	#flow-section .flow-step .step-number {
		font-size: 24px
	}
}

/* ステップタイトル */

#flow-section .flow-step .step-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
}

@media (max-width: 767px) {

	#flow-section .flow-step .step-title {
		font-size: 16px
	}
}

/* ステップ説明 */

#flow-section .flow-step .step-description {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-gray);
	line-height: 1.7;
	margin-bottom: 16px;
}

@media (max-width: 767px) {

	#flow-section .flow-step .step-description {
		font-size: 13px
	}
}

/* 所要時間 */

#flow-section .flow-step .step-time {
	font-size: 12px;
	font-weight: 500;
	color: var(--text-light);
	display: inline-block;
	background-color: var(--background);
	padding: 6px 12px;
	border-radius: 4px;
}

/* 矢印アイコン */

#flow-section .flow-step::after {
	content: "→";
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	color: var(--secondary-color);
	font-weight: 700;
}

@media (max-width: 1023px) {

	#flow-section .flow-step::after {
		right: -20px;
		font-size: 20px
	}
}

@media (max-width: 767px) {

	#flow-section .flow-step::after {
		position: absolute;
		right: 50%;
		top: -20px;
		transform: translateX(50%);
		content: "↓";
		font-size: 18px
	}
}

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

/* 完了後のフロー説明 */

#flow-section .flow-after-steps {
	background-color: var(--white);
	border-left: 4px solid var(--secondary-color);
	padding: 24px;
	border-radius: 4px;
	margin-top: 40px;
}

@media (max-width: 767px) {

	#flow-section .flow-after-steps {
		padding: 20px;
		margin-top: 30px
	}
}

#flow-section .flow-after-steps .after-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
}

@media (max-width: 767px) {

	#flow-section .flow-after-steps .after-title {
		font-size: 14px
	}
}

#flow-section .flow-after-steps .after-flow {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
}

@media (max-width: 767px) {

	#flow-section .flow-after-steps .after-flow {
		font-size: 13px;
		gap: 8px
	}
}

#flow-section .flow-after-steps .after-flow .flow-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

#flow-section .flow-after-steps .after-flow .arrow {
	color: var(--secondary-color);
	font-weight: 700;
	flex-shrink: 0;
}

#flow-section .flow-after-steps .after-flow strong {
	color: var(--primary-color);
	font-weight: 700;
}

/* 補足情報 */

#flow-section .flow-note {
	background-color: #FFF9E6;
	border: 1px solid var(--secondary-color);
	border-radius: 4px;
	padding: 16px;
	margin-top: 30px;
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.7;
}

@media (max-width: 767px) {

	#flow-section .flow-note {
		padding: 12px;
		margin-top: 20px;
		font-size: 12px
	}
}

#flow-section .flow-note strong {
	color: var(--primary-color);
}