:root {
	--primary-color: #129dd7;
	--secondary-color: #1E3A5F;
	--accent-color: #E67E22;
	--background-color: #FFFFFF;
	--background-alt-color: #F5F5F5;
	--text-color: #333333;
	--text-light-color: #666666;
	--border-color: #E0E0E0;
	--footer-bg-color: #2C2C2C;
	--overlay-color: rgba(30, 58, 95, 0.7);

	--font-family: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

	--shadow-card: 0 2px 10px rgba(0, 0, 0, 0.08);
	--shadow-card-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
	--shadow-header: 0 2px 10px rgba(0, 0, 0, 0.1);

	--transition-default: all 0.3s ease;
	--transition-slow: all 0.5s ease;

	--border-radius: 8px;
	--border-radius-small: 4px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	background-color: var(--background-color);
}

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

section {
	padding: 100px 0;
}

@media (max-width: 767px) {

	section {
		padding: 60px 0
	}
}

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

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

@media (max-width: 767px) {

	.section-title {
		font-size: 24px;
		margin-bottom: 40px
	}
}

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

.btn {
	display: inline-block;
	padding: 16px 40px;
	background-color: var(--accent-color);
	color: #fff;
	text-decoration: none;
	border-radius: var(--border-radius-small);
	font-weight: 700;
	text-align: center;
	transition: var(--transition-default);
	border: none;
	cursor: pointer;
	font-size: 16px;
	min-width: 200px;
}

.btn:hover {
	background-color: #D35400;
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

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

.btn.btn-outline:hover {
	background-color: var(--accent-color);
	color: #fff;
}

.btn.btn-large {
	padding: 20px 50px;
	font-size: 18px;
	min-width: 250px;
}

.btn.btn-phone {
	background-color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn.btn-phone:hover {
	background-color: #152942;
}

@media (max-width: 767px) {

	.btn {
		padding: 14px 30px;
		font-size: 14px;
		min-width: auto;
		width: 100%
	}

	.btn.btn-large {
		padding: 16px 30px;
		font-size: 16px;
	}
}

.card {
	background-color: #fff;
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
}

.card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}

.icon-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.icon-circle .material-symbols-outlined {
	font-size: 40px;
	color: #fff;
}

.phone-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 700;
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: var(--transition-default);
}

.phone-link:hover {
	color: var(--accent-color);
}

@media (max-width: 767px) {

	.phone-link {
		font-size: 20px
	}
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius-small);
	font-family: var(--font-family);
	font-size: 16px;
	transition: var(--transition-default);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

label .required {
	color: var(--accent-color);
	margin-left: 4px;
}

.form-group {
	margin-bottom: 24px;
}

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

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	background-color: white;
	transition: all 0.3s ease;
	position: sticky;
	top: 0;
	z-index: 30;
	font-family: var(--font-family);
}

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

header .logo {
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	gap: 8px;
}

header .logo .material-symbols-outlined {
	font-size: 28px;
}

@media (max-width: 767px) {

	header .logo {
		font-size: 0.9rem
	}

	header .logo .material-symbols-outlined {
		font-size: 24px;
	}
}

header .header-phone {
	display: none;
}

@media (min-width: 768px) {

	header .header-phone {
		display: flex;
		align-items: center;
		gap: 8px;
		color: var(--primary-color);
		text-decoration: none;
		font-weight: 700;
		font-size: 1.2rem;
		margin-left: auto;
		margin-right: 2rem
	}

	header .header-phone .material-symbols-outlined {
		font-size: 24px;
	}

	header .header-phone:hover {
		color: var(--accent-color);
	}
}

header .nav a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

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(--accent-color);
}

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

@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: var(--primary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	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: 1.5rem;
	font-weight: 500;
	color: #fff;
}

header .menu-btn {
	background: none;
	border: none;
	cursor: pointer;
	z-index: 50;
	padding: 0.5rem;
}

@media (min-width: 768px) {

	header .menu-btn {
		display: none
	}
}

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

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

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

header.open .menu-btn .material-symbols-outlined {
	color: #fff;
}

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

footer {
	background-color: var(--footer-bg-color);
	color: #fff;
	padding: 60px 0 0;
}

footer .footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
}

@media (max-width: 767px) {

	footer .footer-content {
		grid-template-columns: 1fr;
		gap: 40px
	}
}

footer .footer-info h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

footer .footer-info .info-item {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	line-height: 1.6;
}

footer .footer-info .info-item .material-symbols-outlined {
	font-size: 20px;
	color: var(--accent-color);
	flex-shrink: 0;
}

footer .footer-info .info-item a {
	color: #fff;
	text-decoration: none;
}

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

footer .footer-links h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

footer .footer-links ul {
	list-style: none;
}

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

footer .footer-links ul li a {
	color: #fff;
	text-decoration: none;
	transition: var(--transition-default);
	display: inline-block;
}

footer .footer-links ul li a:hover {
	color: var(--accent-color);
	transform: translateX(4px);
}

footer .footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	text-align: center;
}

footer .footer-bottom .copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

footer .footer-bottom .privacy-link {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	margin-left: 20px;
	font-size: 14px;
}

footer .footer-bottom .privacy-link:hover {
	color: #fff;
}

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

#features {
	background-color: var(--background-alt-color);
}

#features .features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 767px) {

	#features .features-grid {
		grid-template-columns: 1fr;
		gap: 30px
	}
}

#features .feature-card {
	background-color: #fff;
	border-radius: var(--border-radius);
	padding: 40px 30px;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
	text-align: center;
}

#features .feature-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-8px);
}

#features .feature-card .feature-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

#features .feature-card .feature-icon .material-symbols-outlined {
	font-size: 48px;
	color: #fff;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

#features .feature-card .feature-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 16px;
}

@media (max-width: 767px) {

	#features .feature-card .feature-title {
		font-size: 18px
	}
}

#features .feature-card .feature-description {
	color: var(--text-light-color);
	line-height: 1.8;
	font-size: 15px;
}

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

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

#services .services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 767px) {

	#services .services-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

#services .service-card {
	background-color: #fff;
	border-radius: var(--border-radius);
	padding: 40px 30px;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
	text-align: center;
}

#services .service-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-8px);
}

#services .service-card .feature-icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
}

#services .service-card .feature-icon .material-symbols-outlined {
	font-size: 48px;
	color: #fff;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

#services .service-card .service-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 16px;
}

@media (max-width: 767px) {

	#services .service-card .service-title {
		font-size: 18px
	}
}

#services .service-card .service-description {
	color: var(--text-light-color);
	line-height: 1.8;
	font-size: 15px;
}

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

#hero {
	position: relative;
	height: 70vh;
	min-height: 600px;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	padding: 0;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
}

@media (max-width: 767px) {

	#hero {
		min-height: 500px;
		height: auto;
		flex-direction: column
	}
}

#hero .hero-left {
	flex: 1.2;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	position: relative;
	z-index: 2;
	margin-right: -60px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 60px) 100%, 0 100%);
}

@media (max-width: 767px) {

	#hero .hero-left {
		margin-right: 0;
		padding: 40px 20px;
		min-height: auto;
		clip-path: none;
		flex: 1
	}
}

#hero .hero-right {
	flex: 1;
	position: relative;
	overflow: hidden;
}

@media (max-width: 767px) {

	#hero .hero-right {
		min-height: 300px
	}
}

#hero .hero-right img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#hero .hero-content {
	color: #fff;
	max-width: 100%;
	text-align: center;
}

#hero .hero-content .hero-main-copy {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 20px;
}

@media (max-width: 767px) {

	#hero .hero-content .hero-main-copy {
		font-size: 22px;
		margin-bottom: 16px
	}
}

#hero .hero-content .hero-sub-copy {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 40px;
}

@media (max-width: 767px) {

	#hero .hero-content .hero-sub-copy {
		font-size: 16px;
		margin-bottom: 32px
	}
}

#hero .hero-content .hero-description {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 50px;
	opacity: 0.95;
}

@media (max-width: 767px) {

	#hero .hero-content .hero-description {
		font-size: 14px;
		margin-bottom: 40px
	}
}

#hero .hero-content .hero-cta {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

@media (max-width: 767px) {

	#hero .hero-content .hero-cta {
		gap: 16px
	}
}

#hero .hero-content .hero-cta .btn {
	width: 100%;
	max-width: 350px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

@media (max-width: 767px) {

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

#hero .hero-content .hero-cta .btn.btn-outline {
	background-color: #E67E22;
	color: #ffffff;
	border: none;
}

#hero .hero-content .hero-cta .btn.btn-outline:hover {
	background-color: #D35400;
	color: #ffffff;
}

#hero .hero-content .hero-cta .btn.btn-phone {
	background-color: #ffffff;
	color: #129dd7;
}

#hero .hero-content .hero-cta .btn.btn-phone:hover {
	background-color: #F5F5F5;
	color: #129dd7;
}

#hero .hero-scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	text-align: center;
}

@media (max-width: 767px) {

	#hero .hero-scroll {
		bottom: 20px
	}
}

#hero .hero-scroll .scroll-text {
	color: #fff;
	font-size: 12px;
	margin-bottom: 8px;
	opacity: 0.8;
}

#hero .hero-scroll .scroll-icon {
	animation: scroll-bounce 2s infinite;
}

#hero .hero-scroll .scroll-icon .material-symbols-outlined {
	font-size: 32px;
	color: #fff;
	opacity: 0.8;
}

@keyframes scroll-bounce {

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

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

/* ./parts/index-contact.html */

#contact {
	background-color: var(--background-color);
}

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

@media (max-width: 767px) {

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

#contact .contact-form-area h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 30px;
}

#contact .form-group {
	margin-bottom: 24px;
}

#contact .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--text-color);
}

#contact .form-group label .required {
	color: var(--accent-color);
	margin-left: 4px;
}

#contact .form-group input[type="text"],
#contact .form-group input[type="email"],
#contact .form-group input[type="tel"],
#contact .form-group select,
#contact .form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius-small);
	font-family: var(--font-family);
	font-size: 16px;
	transition: var(--transition-default);
}

#contact .form-group input[type="text"]:focus,
#contact .form-group input[type="email"]:focus,
#contact .form-group input[type="tel"]:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

#contact .form-group select {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 24px;
	padding-right: 40px;
}

#contact .privacy-section {
	margin-bottom: 24px;
}

#contact .privacy-section label {
	display: block;
	margin-bottom: 12px;
	font-weight: 500;
	color: var(--text-color);
}

#contact .privacy-policy-box {
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius-small);
	height: 200px;
	overflow-y: auto;
	padding: 16px;
	background-color: #fafafa;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-color);
}

#contact .privacy-policy-box h4 {
	font-weight: 700;
	margin: 16px 0 8px 0;
}

#contact .privacy-policy-box h4:first-child {
	margin-top: 0;
}

#contact .privacy-policy-box p {
	margin-bottom: 12px;
}

#contact .privacy-policy-box ul {
	list-style-position: inside;
	margin-bottom: 12px;
}

#contact .privacy-policy-box ul li {
	margin-bottom: 8px;
}

#contact .privacy-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 24px;
}

#contact .privacy-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	min-width: 20px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--primary-color);
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}

#contact .privacy-checkbox label {
	margin: 0;
	font-size: 16px;
	cursor: pointer;
	font-weight: 500;
	line-height: 1.5;
	color: #000;
}

#contact .submit-btn {
	width: 100%;
	padding: 16px;
	background-color: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: var(--border-radius-small);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition-default);
}

#contact .submit-btn:hover {
	background-color: #D35400;
	transform: translateY(-2px);
	box-shadow: var(--shadow-card-hover);
}

#contact .submit-btn:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	transform: none;
}

#contact .contact-info-area .phone-contact {
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	padding: 40px;
	border-radius: var(--border-radius);
	color: #fff;
	margin-bottom: 40px;
}

#contact .contact-info-area .phone-contact h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}

#contact .contact-info-area .phone-contact h3 .material-symbols-outlined {
	font-size: 28px;
}

#contact .contact-info-area .phone-contact .phone-number {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 12px;
}

#contact .contact-info-area .phone-contact .phone-number a {
	color: #fff;
	text-decoration: none;
	transition: var(--transition-default);
}

#contact .contact-info-area .phone-contact .phone-number a:hover {
	color: var(--accent-color);
}

#contact .contact-info-area .phone-contact .phone-number .material-symbols-outlined {
	font-size: 36px;
}

@media (max-width: 767px) {

	#contact .contact-info-area .phone-contact .phone-number {
		font-size: 24px
	}

	#contact .contact-info-area .phone-contact .phone-number .material-symbols-outlined {
		font-size: 28px;
	}
}

#contact .contact-info-area .phone-contact .business-hours {
	font-size: 16px;
	margin-bottom: 8px;
	opacity: 0.9;
}

#contact .contact-info-area .phone-contact .note {
	font-size: 14px;
	opacity: 0.8;
}

#contact .contact-info-area .office-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 24px;
}

#contact .contact-info-area .office-info .info-item {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

#contact .contact-info-area .office-info .info-item .material-symbols-outlined {
	font-size: 24px;
	color: var(--primary-color);
	flex-shrink: 0;
}

#contact .contact-info-area .office-info .info-item .info-content {
	line-height: 1.8;
}

#contact .contact-info-area .office-info .info-item .info-content strong {
	display: block;
	margin-bottom: 4px;
	color: var(--text-color);
}

#contact .contact-info-area .office-info .info-item .info-content span {
	color: var(--text-light-color);
}

#contact .contact-info-area .office-info .map-container {
	margin-top: 30px;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

#contact .contact-info-area .office-info .map-container iframe {
	width: 100%;
	height: 300px;
	border: none;
}

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

#flow {
	background-color: var(--background-color);
}

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

#flow .flow-steps {
	position: relative;
}

#flow .flow-steps::before {
	content: '';
	position: absolute;
	left: 40px;
	top: 60px;
	bottom: 60px;
	width: 2px;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
}

@media (max-width: 767px) {

	#flow .flow-steps::before {
		left: 30px
	}
}

#flow .flow-step {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	position: relative;
}

@media (max-width: 767px) {

	#flow .flow-step {
		gap: 20px;
		margin-bottom: 40px
	}
}

#flow .flow-step:last-child {
	margin-bottom: 0;
}

#flow .step-number {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

@media (max-width: 767px) {

	#flow .step-number {
		width: 60px;
		height: 60px
	}
}

#flow .step-number .step-label {
	font-size: 12px;
	letter-spacing: 1px;
}

@media (max-width: 767px) {

	#flow .step-number .step-label {
		font-size: 10px
	}
}

#flow .step-number .step-num {
	font-size: 28px;
	line-height: 1;
}

@media (max-width: 767px) {

	#flow .step-number .step-num {
		font-size: 22px
	}
}

#flow .step-content {
	flex: 1;
	background-color: #fff;
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
}

@media (max-width: 767px) {

	#flow .step-content {
		padding: 20px
	}
}

#flow .step-content:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateX(8px);
}

#flow .step-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(to top right, #129dd7 0%, #2C9F6D 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

@media (max-width: 767px) {

	#flow .step-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 15px
	}
}

#flow .step-icon .material-symbols-outlined {
	font-size: 32px;
	color: #fff;
	font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

@media (max-width: 767px) {

	#flow .step-icon .material-symbols-outlined {
		font-size: 28px
	}
}

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

@media (max-width: 767px) {

	#flow .step-title {
		font-size: 18px;
		margin-bottom: 10px
	}
}

#flow .step-description {
	color: var(--text-color);
	line-height: 1.8;
}

@media (max-width: 767px) {

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

#flow .flow-cta {
	text-align: center;
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid var(--border-color);
}

@media (max-width: 767px) {

	#flow .flow-cta {
		margin-top: 40px;
		padding-top: 40px
	}
}

#flow .flow-cta p {
	font-size: 18px;
	color: var(--text-color);
	margin-bottom: 30px;
}

@media (max-width: 767px) {

	#flow .flow-cta p {
		font-size: 16px;
		margin-bottom: 20px
	}
}

/* ./parts/index-faq.html */

#faq {
	background-color: var(--background-alt-color);
}

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

#faq .faq-item {
	background-color: #fff;
	border-radius: var(--border-radius);
	margin-bottom: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
}

#faq .faq-item:hover {
	box-shadow: var(--shadow-card-hover);
}

#faq .faq-item details summary {
	padding: 24px 60px 24px 24px;
	cursor: pointer;
	list-style: none;
	position: relative;
	font-weight: 700;
	font-size: 18px;
	color: var(--primary-color);
	transition: var(--transition-default);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

#faq .faq-item details summary::-webkit-details-marker {
	display: none;
}

#faq .faq-item details summary::before {
	content: 'Q';
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background-color: var(--accent-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

#faq .faq-item details summary::after {
	content: 'expand_more';
	font-family: 'Material Symbols Outlined';
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

#faq .faq-item details summary .question-text {
	padding-left: 48px;
	display: block;
}

#faq .faq-item details summary:hover {
	background-color: var(--background-alt-color);
}

@media (max-width: 767px) {

	#faq .faq-item details summary {
		padding: 20px 50px 20px 20px;
		font-size: 16px
	}

	#faq .faq-item details summary::before {
		width: 28px;
		height: 28px;
		font-size: 14px;
		left: 20px;
	}

	#faq .faq-item details summary::after {
		right: 20px;
		font-size: 24px;
	}

	#faq .faq-item details summary .question-text {
		padding-left: 40px;
	}
}

#faq .faq-item details[open] summary {
	background-color: var(--background-alt-color);
}

#faq .faq-item details[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
}

#faq .faq-item details .answer {
	padding: 0 24px 24px 24px;
	position: relative;
}

#faq .faq-item details .answer::before {
	content: 'A';
	position: absolute;
	left: 24px;
	top: 0;
	width: 32px;
	height: 32px;
	background-color: var(--secondary-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

#faq .faq-item details .answer .answer-text {
	padding-left: 48px;
	color: var(--text-color);
	line-height: 1.8;
}

@media (max-width: 767px) {

	#faq .faq-item details .answer {
		padding: 0 20px 20px 20px
	}

	#faq .faq-item details .answer::before {
		width: 28px;
		height: 28px;
		font-size: 14px;
		left: 20px;
	}

	#faq .faq-item details .answer .answer-text {
		padding-left: 40px;
		font-size: 14px;
	}
}

#faq .faq-note {
	text-align: center;
	margin-top: 50px;
	padding: 30px;
	background-color: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
}

#faq .faq-note p {
	color: var(--text-color);
	margin-bottom: 20px;
	line-height: 1.8;
}

@media (max-width: 767px) {

	#faq .faq-note .btn {
		width: 100%;
		max-width: 300px
	}
}

/* ./parts/index-risks.html */

#risks .risks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 50px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {

	#risks .risks-grid {
		grid-template-columns: 1fr;
		gap: 20px
	}
}

#risks .risk-card {
	background-color: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: var(--transition-default);
}

#risks .risk-card:hover {
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-4px);
}

#risks .risk-card .risk-image {
	width: 100%;
	height: 220px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

@media (max-width: 767px) {

	#risks .risk-card .risk-image {
		height: 180px
	}
}

#risks .risk-card .risk-content {
	padding: 30px;
}

@media (max-width: 767px) {

	#risks .risk-card .risk-content {
		padding: 20px
	}
}

#risks .risk-card .risk-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 16px;
}

@media (max-width: 767px) {

	#risks .risk-card .risk-title {
		font-size: 18px
	}
}

#risks .risk-card .risk-description {
	font-size: 14px;
	line-height: 1.8;
	color: var(--text-light-color);
}

#risks .risks-conclusion {
	background: var(--accent-color);
	padding: 50px 40px;
	border-radius: var(--border-radius);
	margin-top: 80px;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 767px) {

	#risks .risks-conclusion {
		padding: 40px 25px;
		margin-top: 50px
	}
}

#risks .risks-conclusion .conclusion-text {
	font-size: 18px;
	line-height: 2;
	color: #fff;
	margin: 0;
}

#risks .risks-conclusion .conclusion-highlight {
	font-weight: 700;
	color: #fff;
	display: block;
	margin-bottom: 12px;
}

@media (max-width: 767px) {

	#risks .risks-conclusion .conclusion-highlight {
		font-size: 16px;
		margin-bottom: 8px
	}
}

/* ./parts/index-about.html */

section#about {
	padding: 100px 0;
	background-color: #fff;
	max-width: 1000px;
	margin: 0 auto;
}

@media (max-width: 767px) {

	section#about {
		padding: 60px 0
	}
}

.about-wrapper {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

@media (max-width: 767px) {

	.about-wrapper {
		gap: 40px
	}
}

.about-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

@media (max-width: 1023px) {

	.about-top {
		gap: 40px
	}
}

@media (max-width: 767px) {

	.about-top {
		grid-template-columns: 1fr;
		gap: 40px
	}
}

.about-content h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 24px;
}

@media (max-width: 767px) {

	.about-content h2 {
		font-size: 24px
	}
}

.about-content .about-profile {
	background-color: var(--background-alt-color);
	padding: 24px;
	border-radius: var(--border-radius);
	margin-bottom: 0;
}

.about-content .about-profile .profile-item {
	display: flex;
	margin-bottom: 16px;
}

.about-content .about-profile .profile-item:last-child {
	margin-bottom: 0;
}

.about-content .about-profile .profile-item .profile-label {
	font-weight: 700;
	color: var(--primary-color);
	min-width: 100px;
	margin-right: 16px;
}

.about-content .about-profile .profile-item .profile-value {
	color: var(--text-color);
}

.about-image {
	position: relative;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-card);
	display: block;
}

.about-text {
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
}

.about-text p {
	margin-bottom: 16px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-text strong {
	color: var(--primary-color);
	font-weight: 700;
}

@media (max-width: 767px) {

	.about-text {
		font-size: 14px
	}
}

.about-highlight {
	background-color: var(--accent-color);
	border-left: none;
	padding: 24px;
	border-radius: var(--border-radius-small);
	margin-top: 24px;
}

.about-highlight h3 {
	font-weight: 700;
	color: #fff;
	font-size: 18px;
	margin-bottom: 12px;
	margin: 0 0 12px 0;
}

.about-highlight p {
	font-weight: 500;
	color: #fff;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}