:root {
	--primary-color: #0047AB;
	--secondary-color: #FFD700;
	--accent-color: #E67E22;
	--bg-color: #F8F9FA;
	--text-color: #333333;
	--white: #FFFFFF;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	color: var(--text-color);
	overflow-x: hidden;
}

section {
	padding-top: 5rem;
	padding-bottom: 5rem;
	position: relative;
	background-color: var(--white);
}

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

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

.container {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 1.5rem;
	padding-left: 1.5rem;
	max-width: 1200px;
}

.section-title {
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3.5rem;
}

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

.btn-cta {
	background-color: var(--secondary-color);
	color: var(--text-color);
	padding: 1.25rem 2.5rem;
	border-radius: 9999px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
	background-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-2px);
}

/* Card Style */
.jc-card {
	background: var(--white);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0, 71, 171, 0.1);
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
	.section-title {
		font-size: 1.75rem;
	}
}

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

header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	background-color: rgba(255, 255, 255, 0.95);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .logo-area {
	flex: 0 0 auto;
}

header .logo-area .logo {
	font-size: 1.5rem;
	font-weight: 900;
	text-decoration: none;
	color: var(--primary-color);
	letter-spacing: -0.05em;
}

header .logo-area .logo span {
	color: var(--accent-color);
}

header .nav a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 700;
	font-size: 0.9rem;
	transition: color 0.3s ease;
	white-space: nowrap;
}

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

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

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

@media (min-width: 1024px) {

	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: 2.5rem;
	transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
	transform: translateX(100%);
}

header .nav.mobile-nav.open {
	transform: translateX(0);
}

@media (min-width: 1024px) {

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

header .nav.mobile-nav a {
	font-size: 1.5rem;
	color: var(--white);
}

header .header-cta {
	display: none;
}

@media (min-width: 768px) {

	header .header-cta {
		display: block
	}
}

header .header-cta .btn-nav-contact {
	background: var(--secondary-color);
	color: var(--text-main);
	padding: 0.6rem 1.2rem;
	border-radius: 5px;
	font-weight: 700;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}

header .header-cta .btn-nav-contact:hover {
	background: var(--accent-color);
	color: white;
}

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

@media (min-width: 1024px) {

	header .menu-btn {
		display: none
	}
}

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

header.open .menu-btn .material-symbols-rounded {
	color: var(--white);
}

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

footer {
	background-color: #333333;
	color: #ffffff;
	padding-top: 4rem;
	padding-bottom: 2rem;
}

footer .footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {

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

footer .footer-logo {
	font-size: 1.5rem;
	font-weight: 900;
	color: white;
}

footer .footer-logo span {
	color: var(--secondary-color);
}

footer .footer-logo {
	margin-bottom: 1rem;
	display: block;
}

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

footer .footer-links li {
	margin-bottom: 0.75rem;
}

footer .footer-links li a {
	color: #cccccc;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

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

footer .social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

footer .social-links img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
}

footer .copyright {
	text-align: center;
	border-top: 1px solid #444;
	padding-top: 2rem;
	font-size: 0.8rem;
	color: #888;
}

footer .scroll-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	transition: all 0.3s ease;
	z-index: 90;
}

footer .scroll-top:hover {
	transform: translateY(-3px);
	background: var(--accent-color);
}

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

#services-menu {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: var(--white);
}

#services-menu .menu-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {

	#services-menu .menu-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem
	}
}

#services-menu .menu-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1rem;
	background: var(--white);
	border: 2px solid var(--bg-color);
	border-radius: 1rem;
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--text-color);
}

#services-menu .menu-item .icon-box {
	width: 64px;
	height: 64px;
	background-color: var(--bg-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
}

#services-menu .menu-item .icon-box .material-symbols-rounded {
	font-size: 32px;
	color: var(--primary-color);
}

#services-menu .menu-item .menu-label {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.4;
}

@media (min-width: 768px) {

	#services-menu .menu-item .menu-label {
		font-size: 1.1rem
	}
}

#services-menu .menu-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 71, 171, 0.1);
}

#services-menu .menu-item:hover .icon-box {
	background-color: var(--primary-color);
}

#services-menu .menu-item:hover .icon-box .material-symbols-rounded {
	color: var(--white);
}

#services-menu .menu-item:hover .menu-label {
	color: var(--primary-color);
}

#services-menu .service-intro {
	max-width: 700px;
	margin: 0 auto 3rem;
	text-align: center;
	color: var(--text-sub);
}

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

section#contact {
	padding-top: 6rem;
	padding-bottom: 6rem;
	background-color: var(--primary-color);
	position: relative;
	overflow: hidden;
}

/* 背景の装飾装飾 */

section#contact::before {
	content: "JC";
	position: absolute;
	top: -20px;
	right: -20px;
	font-size: 15rem;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.03);
	line-height: 1;
	pointer-events: none;
}

section#contact .contact-card {
	background-color: var(--white);
	border-radius: 2rem;
	padding: 3rem 1.5rem;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

@media (min-width: 768px) {

	section#contact .contact-card {
		padding: 4rem 3rem
	}
}

section#contact .contact-tag {
	background-color: var(--secondary-color);
	color: var(--text-main);
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border-radius: 9999px;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

section#contact .contact-title {
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 1rem;
	line-height: 1.4;
}

@media (min-width: 768px) {

	section#contact .contact-title {
		font-size: 2.25rem
	}
}

section#contact .contact-desc {
	color: var(--text-sub);
	margin-bottom: 2.5rem;
	font-size: 1rem;
}

section#contact .contact-desc span {
	display: block;
	font-weight: 700;
	color: var(--text-main);
	margin-top: 0.5rem;
}

section#contact .btn-google-form {
	background-color: var(--secondary-color);
	color: var(--text-main);
	padding: 1.5rem 3rem;
	border-radius: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s ease;
	width: 100%;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

@media (min-width: 640px) {

	section#contact .btn-google-form {
		width: auto
	}
}

section#contact .btn-google-form:hover {
	background-color: var(--accent-color);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(230, 126, 34, 0.3);
}

section#contact .btn-google-form .material-symbols-rounded {
	font-size: 2rem;
}

section#contact .sub-contact {
	margin-top: 2rem;
	font-size: 0.875rem;
	color: var(--text-sub);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

section#contact .sub-contact::before,
section#contact .sub-contact::after {
	content: "";
	height: 1px;
	flex: 1;
	background-color: #eee;
	max-width: 50px;
}

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

section#faq {
	background-color: var(--bg-color);
	padding-top: 5rem;
	padding-bottom: 5rem;
}

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

section#faq .faq-item {
	margin-bottom: 1rem;
	background: var(--white);
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 71, 171, 0.05);
}

section#faq .faq-item summary {
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	list-style: none;
	/* Safari */
}

/* Chrome/Safari */

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

section#faq .faq-item summary {
	outline: none;
	transition: background-color 0.3s ease;
}

section#faq .faq-item summary .q-content {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-weight: 700;
	color: var(--primary-color);
	padding-right: 1rem;
}

section#faq .faq-item summary .q-content .q-badge {
	background: var(--primary-color);
	color: white;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-family: serif;
	flex-shrink: 0;
}

section#faq .faq-item summary .material-symbols-rounded {
	transition: transform 0.3s ease;
	color: var(--text_sub);
}

section#faq .faq-item summary:hover {
	background-color: rgba(0, 71, 171, 0.02);
}

section#faq .faq-item[open] summary .material-symbols-rounded {
	transform: rotate(180deg);
}

section#faq .faq-item[open] .a-content {
	animation: slideDown 0.3s ease-out;
}

section#faq .a-content {
	padding: 0 1.5rem 1.5rem 4rem;
	color: var(--text-color);
	line-height: 1.7;
	font-size: 0.95rem;
	position: relative;
}

section#faq .a-content::before {
	content: "A.";
	position: absolute;
	left: 1.5rem;
	top: 0;
	color: var(--secondary-color);
	font-size: 1.25rem;
	font-weight: 900;
	font-style: italic;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}

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

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

.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: var(--primary-color);
	overflow: hidden;
	padding-top: 80px;
	/* Header spacing */
	padding-bottom: 5rem;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 71, 171, 0.95) 0%, rgba(0, 36, 86, 0.8) 100%);
	z-index: 1;
}

.hero .hero-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
	opacity: 0.4;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero .hero-content {
	max-width: 800px;
}

.hero .hero-badge {
	display: inline-block;
	background-color: var(--secondary-color);
	color: var(--text-main);
	padding: 0.5rem 1.25rem;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	transform: skewX(-10deg);
}

.hero .hero-badge span {
	display: block;
	transform: skewX(10deg);
}

.hero .hero-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: white;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.hero .hero-title span {
	color: var(--secondary-color);
}

.hero .hero-description {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	border-left: 4px solid var(--secondary-color);
	padding-left: 1.5rem;
}

.hero .hero-visual {
	position: absolute;
	right: -10%;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
	height: auto;
	opacity: 0.15;
	pointer-events: none;
	display: none;
}

@media (min-width: 1024px) {

	.hero .hero-visual {
		display: block
	}
}

.hero .hero-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (min-width: 640px) {

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

.hero .hero-stats .stat-item {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 1rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .hero-stats .stat-item .stat-label {
	font-size: 0.75rem;
	color: var(--secondary-color);
	display: block;
}

.hero .hero-stats .stat-item .stat-value {
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
}

/* Floating Animation */
@keyframes float {

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

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

/* ./parts/index-profile.html */

section#profile {
	background-color: var(--white);
	overflow: hidden;
}

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

@media (min-width: 1024px) {

	section#profile .profile-container {
		grid-template-columns: 450px 1fr
	}
}

section#profile .profile-image-wrapper {
	position: relative;
}

section#profile .profile-image-wrapper .main-image {
	width: 100%;
	border-radius: 1.5rem;
	box-shadow: 0 20px 40px rgba(0, 71, 171, 0.15);
	border: 8px solid var(--white);
	z-index: 2;
	position: relative;
}

section#profile .profile-image-wrapper .decoration-box {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	border-radius: 1.5rem;
	z-index: 1;
}

section#profile .profile-content .name-label {
	display: inline-block;
	background-color: var(--primary-color);
	color: var(--white);
	padding: 0.25rem 1rem;
	border-radius: 4px;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

section#profile .profile-content .representative-name {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

section#profile .profile-content .representative-name span {
	font-size: 1.25rem;
	color: var(--text-color);
	margin-left: 1rem;
	font-weight: 500;
}

section#profile .profile-content .jc-career {
	font-weight: 700;
	color: var(--text-sub);
	margin-bottom: 1rem;
	font-size: 1.1rem;
	padding-left: 1rem;
	border-left: 4px solid var(--secondary-color);
}

section#profile .profile-content .career-history {
	font-size: 0.85rem;
	color: var(--text-sub);
	margin-bottom: 2rem;
	padding-left: 1.25rem;
	list-style: none;
}

section#profile .profile-content .career-history li {
	margin-bottom: 0.25rem;
	position: relative;
}

section#profile .profile-content .career-history li:before {
	content: "•";
	color: var(--secondary-color);
	position: absolute;
	left: -1rem;
}

section#profile .profile-content .biography {
	margin-bottom: 2.5rem;
}

section#profile .profile-content .biography p {
	margin-bottom: 1rem;
}

section#profile .achievements-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

section#profile .achievements-grid .achievement-item {
	background: var(--bg-color);
	padding: 1.25rem;
	border-radius: 1rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	transition: all 0.3s ease;
}

section#profile .achievements-grid .achievement-item:hover {
	background: var(--white);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transform: translateY(-3px);
}

section#profile .achievements-grid .achievement-item .icon-circle {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

section#profile .achievements-grid .achievement-item .icon-circle .material-symbols-rounded {
	color: var(--secondary-color);
	font-size: 20px;
}

section#profile .achievements-grid .achievement-item .text-box .title {
	display: block;
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--primary-color);
	margin-bottom: 0.15rem;
}

section#profile .achievements-grid .achievement-item .text-box .desc {
	font-size: 0.8rem;
	line-height: 1.4;
}

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

section#problem {
	padding-top: 5rem;
	padding-bottom: 5rem;
	background-color: var(--white);
	overflow: hidden;
}

section#problem .problem-intro {
	text-align: center;
	margin-bottom: 4rem;
}

section#problem .problem-intro .subtitle {
	color: var(--primary-color);
	font-weight: 700;
	display: block;
	margin-bottom: 0.5rem;
	letter-spacing: 0.1em;
}

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

@media (min-width: 768px) {

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

section#problem .problem-item {
	position: relative;
	padding: 2.5rem 1.5rem;
	background: #fff;
	border-radius: 1rem;
	border-bottom: 4px solid #eee;
	transition: all 0.3s ease;
}

section#problem .problem-item::before {
	content: "!";
	position: absolute;
	top: -10px;
	left: 20px;
	width: 30px;
	height: 30px;
	background: var(--accent-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 900;
	box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
}

section#problem .problem-item .problem-text {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-color);
	line-height: 1.5;
}

section#problem .problem-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

section#problem .solution-box {
	margin-top: 5rem;
	background-color: var(--primary-color);
	background-image: linear-gradient(135deg, var(--primary-color) 0%, #002d6b 100%);
	border-radius: 1.5rem;
	padding: 3rem 2rem;
	color: #fff;
	text-align: center;
	position: relative;
}

section#problem .solution-box .solution-badge {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--secondary-color);
	color: var(--text-color);
	padding: 0.5rem 2rem;
	border-radius: 999px;
	font-weight: 900;
	font-size: 0.9rem;
	box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

section#problem .solution-box h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2rem;
	line-height: 1.4;
}

@media (min-width: 768px) {

	section#problem .solution-box h3 {
		font-size: 2.25rem
	}
}

section#problem .solution-box .solution-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	text-align: left;
}

@media (min-width: 768px) {

	section#problem .solution-box .solution-features {
		grid-template-columns: repeat(2, 1fr);
		max-width: 900px;
		margin: 0 auto
	}
}

section#problem .solution-box .feature-card {
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	padding: 1.5rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

section#problem .solution-box .feature-card .material-symbols-rounded {
	color: var(--secondary-color);
	font-size: 2rem;
	flex-shrink: 0;
}

section#problem .solution-box .feature-card .feature-content strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	color: var(--secondary-color);
}

section#problem .solution-box .feature-card .feature-content p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

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

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

#services-detail .service-block {
	padding: 4rem 0;
	border-bottom: 1px solid #eee;
}

#services-detail .service-block:last-child {
	border-bottom: none;
}

@media (min-width: 1024px) {

	#services-detail .service-block {
		display: flex;
		align-items: center;
		gap: 4rem
	}

	#services-detail .service-block:nth-child(even) {
		flex-direction: row-reverse;
	}
}

#services-detail .service-visual {
	flex: 1;
	margin-bottom: 2rem;
}

@media (min-width: 1024px) {

	#services-detail .service-visual {
		margin-bottom: 0
	}
}

#services-detail .service-visual .swiper {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#services-detail .service-visual img {
	width: 100%;
	height: 300px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (min-width: 768px) {

	#services-detail .service-visual img {
		height: 400px
	}
}

#services-detail .service-info {
	flex: 1;
}

#services-detail .service-info .badge {
	display: inline-block;
	padding: 0.25rem 1rem;
	background: var(--primary-color);
	color: var(--white);
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

#services-detail .service-info h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

#services-detail .service-info .description {
	color: var(--text-color);
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

#services-detail .service-info .achievement {
	background: var(--bg-color);
	padding: 1.5rem;
	border-radius: 0.5rem;
	margin-bottom: 2rem;
}

#services-detail .service-info .achievement h4 {
	font-weight: 700;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color);
}

#services-detail .service-info .achievement ul {
	list-style: none;
}

#services-detail .service-info .achievement ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

#services-detail .service-info .achievement ul li::before {
	content: "check_circle";
	font-family: 'Material Symbols Rounded';
	position: absolute;
	left: 0;
	color: var(--primary-color);
	font-size: 1.1rem;
}

#services-detail .service-info .price-tag {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	padding: 1rem;
	border: 2px dashed var(--secondary-color);
	border-radius: 0.5rem;
	background: rgba(255, 215, 0, 0.05);
}

#services-detail .service-info .price-tag .label {
	font-weight: 700;
	font-size: 0.9rem;
}

#services-detail .service-info .price-tag .amount {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--accent-color);
}

#services-detail .service-info .price-tag .suffix {
	font-size: 0.8rem;
	color: var(--text-sub);
}

/* Swiper Arrows Customization */

#services-detail .swiper-button-next,
#services-detail .swiper-button-prev {
	color: var(--white);
	background: rgba(0, 71, 171, 0.5);
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

#services-detail .swiper-button-next::after,
#services-detail .swiper-button-prev::after {
	font-size: 1.2rem;
	font-weight: bold;
}