/* Base Styles */
:root {
	--font-sans: 'Zen Kaku Gothic New', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--color-red-500: #c01e34;
	--color-red-600: #a61a2d;
	--color-gray-50: #f9fafb;
	--color-gray-100: #f3f4f6;
	--color-gray-300: #d1d5db;
	--color-gray-600: #4b5563;
	--color-gray-700: #374151;
	--color-gray-900: #333333;
	--color-white: #ffffff;
}

html {
	overflow-x: hidden;
	scroll-padding-top: 3.5rem; /* Adjust for fixed header */
}

@media (min-width: 1024px) {
	html {
		scroll-padding-top: 4rem;
	}
}

body {
	font-family: var(--font-sans);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'palt';
	margin: 0;
	padding: 0;
	color: var(--color-gray-900);
	line-height: 1.5;
	overflow-x: hidden; /* Prevent horizontal scroll from floating elements */
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Animations */
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translate3d(-50%, 0, 0);
	}
	40%,
	43% {
		transform: translate3d(-50%, -10px, 0);
	}
	70% {
		transform: translate3d(-50%, -5px, 0);
	}
	90% {
		transform: translate3d(-50%, -2px, 0);
	}
}

/* Utilities */
.relative {
	position: relative;
}

.z-10 {
	z-index: 10;
}

/* Header Block */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background-color: rgba(255, 255, 255, 1);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border-bottom: 1px solid var(--color-gray-100);
}

.header__container {
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
	height: 3.5rem; /* Reduced from 5rem */
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 640px) {
	.header__container {
		padding: 0 2rem;
	}
}

@media (min-width: 1024px) {
	.header__container {
		padding: 0 4rem; /* Requested padding */
		height: 4rem;
	}
}

.header__logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem; /* space-x-3 */
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
}

.header__logo-link:hover {
	transform: scale(1.05);
	opacity: 0.8;
}

.header__logo-img {
	height: 2.5rem; /* h-10 */
	width: auto;
}

.header__nav {
	display: flex;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;

	background-color: rgba(255, 255, 255, 1);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	flex-direction: column;
	padding: 2rem 1.5rem;
	gap: 1.5rem;
	border-bottom: 1px solid var(--color-gray-100);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transition:
		opacity 0.3s ease,
		transform 0.3s ease,
		visibility 0.3s;
}

.header__nav.is-open {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

@media (min-width: 768px) {
	.header__nav {
		display: flex;
		visibility: visible;
		opacity: 1;
		transform: none;
		position: static;
		width: auto;
		background-color: transparent;
		flex-direction: row;
		padding: 0;
		border: none;
		box-shadow: none;
		align-items: center;
		gap: 2rem; /* space-x-8 */
	}
}

.header__link {
	color: var(--color-gray-600);
	font-weight: 700; /* font-bold */
	transition: color 0.15s ease-in-out;
	text-align: center;
	width: 100%;
	padding: 0.5rem 0;
}

@media (min-width: 768px) {
	.header__link {
		width: auto;
		padding: 0;
	}
}

.header__link:hover {
	color: var(--color-red-500);
}

.header__link:focus-visible {
	color: var(--color-red-500);
}

.header__cta {
	background-color: var(--color-red-500);
	color: var(--color-white);
	padding: 0.75rem 2rem; /* Mobile padding */
	border-radius: 9999px; /* rounded-full */
	font-weight: 700; /* font-bold */
	transition: background-color 0.15s ease-in-out;
	text-align: center;
	width: 100%;
}

@media (min-width: 768px) {
	.header__cta {
		width: auto;
		padding: 0.5rem 1.5rem;
	}
}

.header__cta:hover {
	background-color: var(--color-red-600);
}

/* Mobile Toggle (Hamburger) */
.header__mobile-toggle {
	display: block;
	position: relative;
	width: 3rem;
	height: 3rem;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 60;
}

.header__mobile-toggle span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 24px;
	height: 2px;
	background-color: var(--color-gray-900);
	transition:
		top 0.3s ease,
		transform 0.3s ease,
		opacity 0.3s;
}

/* Hamburger Lines */
.header__mobile-toggle span:nth-child(1) {
	top: 1.1rem;
}

.header__mobile-toggle span:nth-child(2) {
	top: 1.5rem;
}

.header__mobile-toggle span:nth-child(3) {
	top: 1.9rem;
}

/* Active State (Cross) */
.header__mobile-toggle.is-active span:nth-child(1) {
	top: 1.5rem;
	transform: translateX(-50%) rotate(45deg);
}

.header__mobile-toggle.is-active span:nth-child(2) {
	opacity: 0;
}

.header__mobile-toggle.is-active span:nth-child(3) {
	top: 1.5rem;
	transform: translateX(-50%) rotate(-45deg);
}

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

/* Layout */
.main {
	width: 100%;
	position: relative;
	padding-top: 3.5rem; /* Account for fixed header universally */
}

/* Hero Section */
.hero {
	position: relative;
	width: 100%;
	height: 75vh;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.hero {
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

.hero__bg-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hero__bg-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 2000ms ease-in-out;
}

.hero__bg-image--active {
	opacity: 1;
	z-index: 0;
}

.hero__bg-image--ken-burns img {
	animation: kenBurns 24s linear infinite;
	will-change: transform;
}

@keyframes kenBurns {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}

.hero__bg-image--inactive {
	opacity: 0;
	z-index: 0;
}

.hero__content {
	position: absolute;
	bottom: 25%;
	left: 0;
	right: 0;
	z-index: 20;
	text-align: center;
}

@media (min-width: 1024px) {
	.hero__content {
		text-align: left;
		bottom: 20%;
	}
}

.hero__text-container {
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.hero__text-container {
		padding: 0 2rem;
	}
}

@media (min-width: 1024px) {
	.hero__text-container {
		padding: 0 4rem 0 0;
	}
}

.hero__heading-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	width: 90%;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.hero__heading-group {
		align-items: flex-start;
		width: clamp(480px, 60vw, 900px);
		margin: 0;
	}
}

.hero__copy {
	width: 100%;
	height: auto;
	display: block;
}

.hero__copy--sp {
	display: block;
}

.hero__copy--pc {
	display: none;
}

@media (min-width: 1024px) {
	.hero__copy--sp {
		display: none;
	}
	.hero__copy--pc {
		display: block;
	}
}

.hero__text-highlight {
	color: var(--color-red-500);
}

.hero__text-small {
	font-size: 0.7em;
	margin: 0 0.1em;
	font-weight: 900; /* Increased weight for visibility at smaller size */
}

.hero__scroll-indicator {
	position: absolute;
	bottom: 2rem; /* bottom-8 */
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem; /* gap-2 */
	color: rgba(255, 255, 255, 0.8);
	animation: bounce 2s infinite;
}

.hero__scroll-text {
	font-size: 0.875rem; /* text-sm */
	font-weight: 500; /* font-medium */
	letter-spacing: 0.1em; /* tracking-widest */
	text-transform: uppercase;
}

.hero__scroll-line {
	width: 1px;
	height: 3rem; /* h-12 */
	background: linear-gradient(to bottom, #ffffff, transparent);
}

/* Heart Section */
.heart-section {
	position: relative;
	width: 100%;
	height: 70vh;
	background-color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

@media (max-width: 1023px) {
	.heart-section {
		height: 80vh;
	}
}

.heart-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(90deg, rgba(255, 225, 225, 0.5) 0%, transparent 30%, transparent 70%, rgba(255, 225, 225, 0.5) 100%);
	background-size:
		100% 30%,
		100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
	pointer-events: none;
}

.heart-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
	pointer-events: none;
}

.heart-section__container {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

@media (min-width: 768px) {
	.heart-section__container {
		flex-direction: row;
	}
}

.heart-section__half {
	width: 100%;
	height: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 768px) {
	.heart-section__half {
		width: 50%;
		height: 100%;
	}
}

.heart-section__half--right {
	padding: 0 2rem; /* px-8 */
}

@media (min-width: 768px) {
	.heart-section__half--right {
		padding: 0 4rem; /* md:px-16 */
	}
}

/* Marquee */
.marquee-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 5;
}

.marquee-content {
	display: flex;
	width: max-content;
	animation: scroll 240s linear infinite;
}

.marquee-image {
	height: 8rem; /* Increased from 4rem */
	width: auto;
	margin-right: 6rem; /* Increased spacing */
	flex-shrink: 0;
	opacity: 0.5; /* Adjusted opacity as requested */
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Common Section Styles */
.section {
	padding: 10rem 0; /* Increased from 8rem */
}

.interview-page {
	background-color: var(--color-gray-50);
	min-height: 100vh;
}

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

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

.container {
	max-width: 80rem; /* 7xl */
	margin: 0 auto;
	padding: 0 1rem; /* px-4 */
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem; /* sm:px-6 */
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 2rem; /* lg:px-8 */
	}
}

.section__title {
	font-size: 2.25rem; /* text-4xl */
	font-weight: 700; /* font-bold */
	color: var(--color-gray-900);
	margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 768px) {
	.section__title {
		font-size: 3rem; /* md:text-5xl */
	}
}

.section__description {
	font-size: 1.25rem; /* text-xl */
	color: var(--color-gray-600);
	max-width: 48rem; /* max-w-3xl */
	margin: 0 auto;
}

/* Service Section */
.service-grid {
	display: grid;
	gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
	.service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr)); /* md:grid-cols-3 */
	}
}

.card {
	background-color: var(--color-white);
	border-radius: 1rem; /* rounded-2xl */
	padding: 2rem; /* p-8 */
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
	transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
}

.card__icon-box {
	width: 4rem; /* w-16 */
	height: 4rem; /* h-16 */
	border-radius: 0.75rem; /* rounded-xl */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem; /* mb-6 */
}

.card__icon-box--red {
	background-color: #fee2e2; /* bg-red-100 */
	color: var(--color-red-500);
}

.card__icon-box--blue {
	background-color: #dbeafe; /* bg-blue-100 */
	color: #3b82f6; /* text-blue-500 */
}

.card__icon-box--green {
	background-color: #dcfce7; /* bg-green-100 */
	color: #22c55e; /* text-green-500 */
}

.card__icon {
	width: 2rem; /* w-8 */
	height: 2rem; /* h-8 */
}

.card__title {
	font-size: 1.5rem; /* text-2xl */
	font-weight: 700; /* font-bold */
	color: var(--color-gray-900);
	margin-bottom: 1rem; /* mb-4 */
}

.card__text {
	color: var(--color-gray-600);
	line-height: 1.625; /* leading-relaxed */
}

/* Member Section */
.member-grid {
	display: grid;
	gap: 2rem; /* gap-8 */
	grid-template-columns: 1fr; /* Explicitly single column for mobile */
}

@media (min-width: 640px) {
	.member-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)); /* sm:grid-cols-2 */
	}
}

@media (min-width: 1024px) {
	.member-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr)); /* lg:grid-cols-4 */
	}
}

.member-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.member-card__image-wrapper {
	width: 10rem; /* w-40 */
	height: 10rem; /* h-40 */
	border-radius: 9999px; /* rounded-full */
	overflow: hidden;
	margin-bottom: 1.5rem; /* mb-6 */
	border: 4px solid var(--color-white);
	box-shadow:
		0 4px 6px -1px rgba(0, 0, 0, 0.1),
		0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
	background-color: var(--color-gray-100);
}

.member-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.member-card:hover .member-card__image {
	transform: scale(1.1);
}

.member-card__name {
	font-size: 1.25rem; /* text-xl */
	font-weight: 700; /* font-bold */
	color: var(--color-gray-900);
	margin-bottom: 0.25rem; /* mb-1 */
}

.member-card__position {
	font-size: 0.875rem; /* text-sm */
	color: var(--color-red-500);
	font-weight: 700; /* font-bold */
	margin-bottom: 0.75rem; /* mb-3 */
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.member-card__bio {
	font-size: 0.875rem; /* text-sm */
	color: var(--color-gray-600);
	line-height: 1.5;
}

/* Company Section */
.company-wrapper {
	max-width: 64rem; /* max-w-5xl */
	margin: 0 auto;
	background-color: var(--color-white);
	border-radius: 1.5rem; /* rounded-3xl */
	overflow: hidden;
	box-shadow:
		0 10px 15px -3px rgba(0, 0, 0, 0.1),
		0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
	display: flex;
	flex-direction: column;
}

@media (min-width: 1024px) {
	.company-wrapper {
		flex-direction: row;
	}
}

.company-info {
	flex: 1;
	padding: 2rem; /* Reduced padding for mobile */
}

@media (min-width: 640px) {
	.company-info {
		padding: 3rem;
	}
}

.company-image {
	width: 100%;
	height: 20rem; /* h-80 */
	background-color: var(--color-gray-100);
	position: relative;
}

@media (min-width: 1024px) {
	.company-image {
		width: 40%;
		height: auto;
	}
}

.company-image__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-dl {
	display: grid;
	gap: 1.5rem; /* gap-6 */
}

.company-row {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid var(--color-gray-100);
	padding-bottom: 1.5rem; /* pb-6 */
}

.company-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

@media (min-width: 640px) {
	.company-row {
		flex-direction: row;
		align-items: baseline;
	}
}

.company-dt {
	font-weight: 700; /* font-bold */
	color: var(--color-gray-900);
	width: 8rem; /* w-32 */
	flex-shrink: 0;
	margin-bottom: 0.5rem; /* mb-2 */
}

@media (min-width: 640px) {
	.company-dt {
		margin-bottom: 0;
	}
}

.company-dd {
	color: var(--color-gray-600);
	line-height: 1.6;
}

/* Contact Section */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem; /* space-y-6 */
}

.form-grid {
	display: grid;
	gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
	.form-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-label {
	display: block;
	font-size: 0.875rem; /* text-sm */
	font-weight: 500; /* font-medium */
	color: var(--color-gray-700);
	margin-bottom: 0.5rem; /* mb-2 */
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 0.75rem 1rem; /* px-4 py-3 */
	border: 1px solid var(--color-gray-300);
	border-radius: 0.5rem; /* rounded-lg */
	font-family: inherit;
	font-size: 1rem;
	transition:
		box-shadow 0.15s ease-in-out,
		border-color 0.15s ease-in-out;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--color-red-500); /* ring-2 ring-red-500 */
	border-color: transparent;
}

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

.btn {
	display: inline-block;
	background-color: #c01e34; /* Primary Red */
	color: var(--color-white);
	padding: 1rem 3rem;
	border-radius: 9999px;
	font-weight: 700; /* Bold */
	font-size: 1.125rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.15s ease-in-out;
}

.btn:hover {
	background-color: #a61a2d; /* Darker Red on Hover */
}

.btn--interview {
	display: inline-block;
	background: none;
	padding: 0;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0;
	transition:
		transform 0.2s,
		opacity 0.2s;
}

.btn--interview:hover {
	background: none;
	transform: translateX(4px); /* Move arrow right */
	color: #ffffff;
	opacity: 0.8;
}

.btn--contact {
	background-color: #c01e34; /* Unified Primary Red */
	width: 100%;
	max-width: 24rem;
	padding: 1.25rem;
	font-size: 1.1rem;
	font-weight: 700;
	border-radius: 9999px;
	letter-spacing: 0.05em;
	box-shadow: 0 4px 10px rgba(192, 30, 52, 0.3);
	transition:
		transform 0.2s,
		background-color 0.2s;
}

.btn--contact:hover {
	background-color: #a61a2d; /* Unified Hover Red */
	transform: translateY(-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;
}

/* Particle System */
.particle-canvas {
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 10;
}

.particle-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 20;
}

@media (max-width: 767px) {
	.particle-overlay {
		padding: 0 1rem;
	}
}

.particle-overlay__inner {
	width: 100%;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4rem; /* Increased from 3rem */
}

@media (min-width: 768px) {
	.particle-overlay__inner {
		flex-direction: row;
		gap: 10rem; /* Increased from 6rem */
	}
}

.particle-overlay__heart-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 170px;
	height: 152px;
	flex-shrink: 0;
}

@media (min-width: 1024px) {
	.particle-overlay__heart-wrapper {
		width: 247px;
		height: 221px;
	}
}

.particle-overlay__heart {
	position: relative;
}

.particle-overlay__heart-inner {
	position: relative;
	width: 170px;
	height: 152px;
}

.particle-overlay__svg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.particle-overlay__content {
	text-align: center;
	color: var(--color-gray-900);
	max-width: 36rem; /* max-w-xl */
	transform: translateY(-0.7rem); /* Move up slightly */
}

@media (min-width: 768px) {
	.particle-overlay__content {
		text-align: left;
	}
}

.particle-overlay__title {
	font-size: 1.3rem; /* Smaller on mobile/tablet */
	margin-bottom: 0;
	line-height: 1.8;
	font-weight: 700;
}

@media (min-width: 1024px) {
	.particle-overlay__title {
		font-size: 1.8rem; /* Restore desktop size */
		margin-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.particle-overlay__heart-inner {
		width: 247px;
		height: 221px;
	}
}

.particle-overlay__title-highlight {
	color: var(--color-red-500);
}

.particle-overlay__break {
	display: none;
}

@media (min-width: 768px) {
	.particle-overlay__break {
		display: block;
	}
}

/* Section Headers (New Design) */
.section__title-group {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem; /* mb-4 */
	justify-content: flex-start; /* Left align by default as per image */
}

@media (min-width: 768px) {
	.section__title-group {
		flex-direction: row;
		align-items: baseline;
		gap: 1rem; /* md:gap-12 */
	}
}

/* Align headers to center if needed, but design shows left alignment for the text block */
/* However, the original design had centered headers. The new image shows left-aligned "SERVICE" and description text. */
/* Let's update .section__header to be left aligned or container restrained */

.section__header {
	text-align: left; /* Change from center to left based on image */
	margin-bottom: 4rem;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.section__title-en {
	font-family: var(--font-sans);
	font-size: 3rem; /* text-5xl */
	font-weight: 700;
	color: #c01e34; /* Red color from image */
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin: 0;
}

@media (min-width: 768px) {
	.section__title-en {
		font-size: 4.5rem; /* md:text-7xl */
	}
}

.section__title-ja {
	font-size: 1.125rem; /* text-lg */
	font-weight: 500;
	color: #c01e34; /* Red color matching title */
	letter-spacing: 0.05em;
}

@media (min-width: 768px) {
	.section__title-ja {
		font-size: 1.5rem; /* md:text-2xl */
	}
}

.section__description {
	text-align: left;
	margin: 0; /* Reset auto margins */
	font-size: 1rem;
	color: var(--color-gray-600);
}

/* White Header Modifier */
.section__header--white .section__title-en,
.section__header--white .section__title-ja,
.section__header--white .section__description {
	color: var(--color-white);
}

/* Service Section Specifics */
.service-section {
	position: relative;
	overflow: hidden;
	padding: 10rem 0;
	background-color: #fff; /* White background for the section */
}

.service-section__bg {
	position: absolute;
	top: 40%; /* Adjusted for narrower height */
	left: 0;
	width: 100%;
	height: 50%; /* Further narrowed view area */
	z-index: 0;
	background-color: #f3f4f6;
	overflow: hidden;
	will-change: transform;
}

@media (max-width: 1023px) {
	.service-section__bg {
		height: 30%;
	}
}

.service-section__bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #472b2b;
	opacity: 0.58;
	z-index: 1;
}

.service-section__video {
	width: 160%; /* Wider to allow horizontal movement */
	height: 110%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	will-change: transform;
}

.service-list {
	display: flex;
	flex-direction: column;
	gap: 2rem; /* Reduced space between cards */
	position: relative;
	z-index: 10;
	padding: 2rem 0;
}

.service-card {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 2rem; /* Rounded large */
	overflow: hidden;
	box-shadow:
		0 20px 25px -5px rgba(0, 0, 0, 0.1),
		0 10px 10px -5px rgba(0, 0, 0, 0.04);
	max-width: 60rem; /* Limit width */
	width: 100%;
}

@media (min-width: 768px) {
	.service-card {
		flex-direction: row;
		align-items: stretch;
		min-height: 400px; /* Use min-height to allow expansion */
	}

	.service-card--reverse {
		flex-direction: row-reverse;
	}
}

/* Staggering/Shifting Effect */
@media (min-width: 1024px) {
	.service-card {
		width: 95%; /* Prevent overflow with margins */
	}

	.service-card:nth-child(1) {
		margin-left: auto;
		margin-right: 5%;
	}

	.service-card:nth-child(2) {
		margin-right: auto;
		margin-left: 5%;
	}

	.service-card:nth-child(3) {
		margin-left: auto;
		margin-right: 10%;
	}
}

.service-card__image-wrapper {
	width: 100%;
	height: 250px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem 2rem 0 2rem;
}

@media (max-width: 767px) {
	.service-card__image-wrapper {
		height: 200px;
		padding: 1.5rem 1.5rem 0 1.5rem;
	}
}

@media (min-width: 768px) {
	.service-card__image-wrapper {
		width: 45%;
		height: auto;
		align-self: center;
	}
}

.service-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.service-card:hover .service-card__image {
	transform: scale(1.05);
}

.service-card__content {
	padding: 1.5rem 2rem; /* Reduced vertical padding */
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (max-width: 767px) {
	.service-card__content {
		padding: 1.25rem 1.5rem;
	}
}

@media (min-width: 768px) {
	.service-card__content {
		padding: 2rem 4rem; /* Reduced vertical padding */
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.service-card {
		min-height: 320px;
	}

	.service-card__content {
		padding: 1.5rem 2.5rem;
	}

	.service-card__image-wrapper {
		padding: 1.5rem 1.5rem 0 1.5rem;
	}
}

.service-card__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-gray-900);
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
	margin: 0;
}

@media (min-width: 768px) {
	.service-card__title {
		font-size: 1.75rem;
	}
}

.service-card__subtitle {
	font-size: 1rem;
	color: var(--color-gray-700);
	margin-bottom: 1rem;
}

.service-card__tag {
	display: inline-block;
	color: #f87171; /* Light red */
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: 'Zen Kurenaido', sans-serif;
}

.service-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-card__list li {
	font-size: 0.9rem;
	color: var(--color-gray-600);
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

/* Interview Section */
.interview-section {
	position: relative;
	padding-bottom: 10rem; /* Space for the rotating circle */
	overflow: visible; /* Allow circle to overlap */
}

.interview-bg-floating {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden; /* Clip hearts to this container */
	clip-path: inset(0); /* Ensure strict clipping */
}

.interview-bg-heart {
	position: absolute;
	animation: floatHeart 6s ease-in-out infinite;
	opacity: 0.03;
}

.interview-bg-heart--1 {
	top: -4rem;
	left: -4rem;
	width: 450px;
}

.interview-bg-heart--2 {
	bottom: -2rem;
	right: -2rem;
	width: 350px;
	animation-delay: -2s;
}

@media (min-width: 768px) {
	.interview-bg-heart--1 {
		width: 750px;
		top: -6rem;
		left: -6rem;
	}

	.interview-bg-heart--2 {
		width: 600px;
		bottom: -4rem;
		right: -4rem;
	}
}

@keyframes floatHeart {
	0%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-15px) rotate(3deg);
	}
}

.interview-layout {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2rem;
	max-width: 100%;
	padding-left: 5%; /* Indent from left */
	margin-top: 3rem;
}

@media (min-width: 1024px) {
	.interview-layout {
		padding-left: 0;
	}

	.interview-layout::before {
		content: '';
		display: block;
		width: 40%;
		flex-shrink: 9999; /* Shrink aggressively if space is needed */
	}
}

.interview-nav-wrapper {
	flex-shrink: 0;
	z-index: 20;
	display: none; /* Hidden for now as per request (low item count) */
}

.interview-layout--nav-visible .interview-nav-wrapper {
	display: flex;
	align-items: center;
}

@media (max-width: 1023px) {
	.interview-layout {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
	}

	.interview-container {
		order: 1;
	}

	.interview-nav-wrapper {
		order: 2;
		width: 100%;
		justify-content: flex-start;
		padding-left: 3rem;
	}
}

.interview-nav {
	width: 4rem;
	height: 4rem;
	background-color: #c01e34;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	border: none;
	cursor: pointer;
	transition:
		transform 0.2s,
		background-color 0.2s;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.interview-nav:hover {
	transform: scale(1.1);
	background-color: #a61a2d;
}

.interview-nav__icon {
	width: 2rem;
	height: 2rem;
}

.interview-container {
	background-color: #c01e34;
	border-top-left-radius: 3rem;
	border-bottom-left-radius: 3rem;
	padding: 3rem;
	padding-right: 0; /* Let slider go to edge */
	flex-grow: 1;
	position: relative;
	min-width: 0; /* Allow flex shrinking */
}

@media (min-width: 768px) {
	.interview-container {
		padding: 3rem;
		padding-right: 0;
		border-top-left-radius: 4rem;
		border-bottom-left-radius: 4rem;
	}
}

.interview-slider {
	width: 100%;
	overflow: hidden;
	padding-top: 1rem; /* Prevent hover clipping */
	padding-bottom: 1rem; /* Space for shadow */
	padding-right: 4rem; /* Right padding for scroll */
}

.interview-slider .swiper-wrapper {
	align-items: stretch;
}

@media (min-width: 1024px) {
	.interview-slider:not(.swiper-initialized) .swiper-wrapper {
		gap: 2rem;
	}
}

.interview-slider .swiper-slide {
	height: auto;
	display: flex;
}

.interview-card {
	min-width: 280px;
	width: 280px;
	background-color: white;
	flex-shrink: 0;
	height: 100%;
	border-radius: 0.5rem; /* Small rounding */
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.interview-card:hover {
	transform: translateY(-5px);
}

@media (min-width: 768px) {
	.interview-card {
		min-width: 400px;
		width: 400px;
	}
}

.interview-card__image-wrapper {
	position: relative;
	width: 100%;
	height: 240px;
}

.interview-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interview-card__logo-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0.5rem 1.5rem;
	font-weight: 700;
	font-size: 0.875rem;
	color: #333;
}

.interview-card__content {
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
}

.interview-card__company-info {
	border-bottom: 1px solid #f3f4f6;
	/* padding-bottom: 0.5rem; */
	margin-bottom: 0.2rem;
}

.interview-card__company-name {
	font-size: 1rem;
	font-weight: 700;
	color: #333;
	margin: 0 0 0.25rem 0;
}

.interview-card__company-industry {
	font-size: 0.75rem;
	color: #666;
	margin: 0 0 0.5rem 0;
}

.interview-card__company-location {
	font-size: 0.75rem;
	color: #888;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.interview-card__location-icon {
	width: 0.875rem;
	height: 0.875rem;
	color: #c01e34;
}

.interview-card__quote {
	font-size: 1.125rem;
	font-weight: 700;
	color: #333; /* Primary black */
	margin: 0.5rem 0;
	line-height: 1.5;
}

@media (max-width: 1023px) {
	.interview-card__quote {
		display: none;
	}
}

.interview-card__actions {
	margin-top: auto;
	display: flex;
	justify-content: flex-end;
}

.interview-container__cta {
	margin-top: 1.5rem;
	display: flex;
	justify-content: center;
	width: 280px;
	max-width: 100%;
	margin-right: auto;
}

@media (min-width: 768px) {
	.interview-container__cta {
		width: 400px;
	}
}

@media (min-width: 1024px) {
	.interview-container__cta {
		width: calc(400px * 2 + 32px);
	}
}

/* Rotating Circle Message */
.interview-circle-message {
	position: absolute;
	bottom: -4rem;
	left: -2rem; /* Changed from right to left */
	right: auto;
	width: 10rem;
	height: 10rem;
	animation: spin 20s linear infinite;
	z-index: 30;
	pointer-events: none;
}

@media (min-width: 768px) {
	.interview-circle-message {
		width: 14rem;
		height: 14rem;
		bottom: -6rem;
		left: -5rem; /* More overlap on desktop */
		right: auto;
	}
}

@media (max-width: 1023px) {
	.interview-circle-message {
		left: -6rem;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Member Section New Design */
.section--beige {
	background-color: #f2eeeb;
}

.member-section {
	padding-bottom: 10rem;
	position: relative;
}

.member-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/assets/images/bg_pattern.jpg');
	background-size: 150px auto; /* 小さめに配置 */
	background-repeat: repeat; /* リピート */
	background-position: top left;
	mix-blend-mode: multiply; /* 乗算 */
	opacity: 0.4; /* パターンが見えやすいように少し濃く調整 */
	z-index: 0;
	pointer-events: none;
}

.member-section .container {
	position: relative;
	z-index: 1;
}

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

@media (min-width: 640px) {
	.member-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

/* Reset and apply new card styles */
.member-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	background: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	padding: 0;
}

.member-card:hover {
	transform: none;
	box-shadow: none;
}

.member-card--hidden {
	display: none;
}

.member-card--hidden.is-visible {
	display: flex;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.member-card__image-container {
	width: 100%;
	aspect-ratio: 4/3;
	margin-bottom: 1rem;
	overflow: hidden;
	border: none;
	box-shadow: none;
	border-radius: 0;
	background-color: #ddd;
}

.member-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%; /* Adjusted from top as requested */
	transition: transform 0.5s ease;
}

.member-card:hover .member-card__image {
	transform: scale(1.05);
}

.member-card__info {
	width: 100%;
}

.member-card__position-tag {
	display: inline-block;
	background-color: #fff;
	font-size: 0.75rem;
	padding: 0.25rem 0.75rem;
	color: #333;
	margin-bottom: 0.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.member-card__name-group {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding-bottom: 0.5rem;
	width: 100%;
}

.member-card__name-ja {
	font-size: 1.125rem;
	font-weight: 700;
	color: #333;
}

.member-card__name-en {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
	letter-spacing: 0.05em;
}

/* Show More Area */
.member-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
}

.member-more__separator {
	flex-grow: 1;
	max-width: 200px;
	border-bottom: 1px dotted #999;
	height: 1px;
}

.member-more__btn {
	background: none;
	border: none;
	font-size: 1rem;
	font-weight: 700;
	color: #111;
	cursor: pointer;
	padding: 0.5rem 1rem;
	transition: opacity 0.3s;
}

.member-more__btn:hover {
	opacity: 0.6;
}

/* Company Section New Design */
.section--pale-red {
	background-color: #f9e4e5; /* Very pale red */
}

.company-card {
	position: relative;
	max-width: 64rem; /* max-w-5xl */
	margin: 0 auto;
	/* Ensure space at bottom for the overlapping image on desktop */
	padding-bottom: 0;
}

@media (min-width: 768px) {
	.company-card {
		padding-bottom: 5rem;
	}
}

.company-info-box {
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 1rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 10;
}

@media (min-width: 768px) {
	.company-info-box {
		padding: 4rem 5rem 10rem; /* Added 10rem bottom padding */
		margin-left: 10%; /* Shift right to allow image on left */
		width: 90%;
	}
}

/* Company List (Table-like) */
.company-list {
	display: flex;
	flex-direction: column;
}

.company-list__item {
	display: flex;
	flex-direction: column;
	padding: 1.75rem 0; /* Increased from 1.25rem */
	border-bottom: 1px solid #e5e7eb; /* gray-200 */
}

.company-list__item:first-child {
	border-top: 1px solid #e5e7eb;
}

@media (min-width: 768px) {
	.company-list__item {
		flex-direction: row;
		align-items: baseline;
	}
}

.company-list__term {
	font-weight: 700;
	color: #333333; /* gray-900 */
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

@media (min-width: 768px) {
	.company-list__term {
		width: 10rem;
		flex-shrink: 0;
		margin-bottom: 0;
	}
}

.company-list__desc {
	color: #4b5563; /* gray-600 */
	font-size: 0.875rem;
	line-height: 1.7;
	margin: 0;
}

/* Overlapping Image */
.company-image-overlap {
	width: 100%;
	margin-top: 2rem;
	position: relative;
	z-index: 20;
}

.company-image-overlap__img {
	width: 100%;
	height: auto;
	border-radius: 0; /* Removed border-radius */
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	display: block;
}

@media (min-width: 768px) {
	.company-image-overlap {
		position: relative;
		width: 45%;
		margin-top: -6rem; /* Pull up to overlap bottom of box */
		margin-left: 0;
		bottom: auto;
		left: auto;
	}
}

/* Contact Section */
.contact-section {
	position: relative;
	overflow: hidden;
	padding-bottom: 10rem;
}

.contact-bg-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #c01e34;
	z-index: 0;
	/* Diagonal split from top-left to bottom-right */
	clip-path: polygon(0 0, 85% 0, 45% 100%, 0 100%);
}

@media (min-width: 1024px) {
	.contact-bg-shape {
		/* Adjust width for larger screens if needed */
		clip-path: polygon(0 0, 85% 0, 40% 100%, 0 100%);
	}
}

@media (max-width: 1023px) {
	.contact-bg-shape {
		clip-path: none;
	}
}

/* Ensure container content sits above the background */
.contact-container {
	position: relative;
	z-index: 10;
}

.contact-card {
	background-color: #ffffff;
	border-radius: 1.5rem;
	box-shadow:
		0 10px 25px -5px rgba(0, 0, 0, 0.1),
		0 8px 10px -6px rgba(0, 0, 0, 0.1);
	padding: 3rem 2rem;
	max-width: 50rem; /* max-w-4xl approx */
	margin: 0 auto;
}

@media (min-width: 768px) {
	.contact-card {
		padding: 4rem 5rem;
	}
}

.contact-fallback {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
}

.contact-fallback__text {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #333;
	font-weight: 500;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-label {
	font-weight: 700;
	font-size: 0.875rem;
	color: #333;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid #d1d5db; /* gray-300 */
	border-radius: 0.25rem; /* rounded */
	font-size: 1rem;
	background-color: #f9fafb; /* gray-50 */
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #c01e34;
	box-shadow: 0 0 0 3px rgba(192, 30, 52, 0.1);
	background-color: #fff;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #9ca3af; /* gray-400 */
}

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

.form-checkbox-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

.form-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	user-select: none;
}

.form-checkbox {
	width: 1.25rem;
	height: 1.25rem;
	accent-color: #c01e34;
	cursor: pointer;
}

.form-checkbox-text {
	font-size: 0.875rem;
	font-weight: 700;
	color: #333;
}

.form-link {
	color: #333;
	text-decoration: underline;
	transition: color 0.2s;
}

.form-link:hover {
	color: #c01e34;
}

.form-actions {
	display: flex;
	justify-content: center;
	margin-top: 1rem;
}

/* Footer */
.footer {
	background-color: var(--color-gray-900);
	color: var(--color-white);
	padding: 4rem 0 2rem;
}

.footer__container {
	width: 100%; /* No max-width */
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.footer__container {
		padding: 0 2rem;
	}
}

@media (min-width: 1024px) {
	.footer__container {
		padding: 0 4rem;
	}
}

.footer__content {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.footer__content {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.footer__logo-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__logo-link {
	display: inline-block;
}

.footer__logo-img {
	height: 2.5rem;
	width: auto;
	filter: brightness(0) invert(1); /* Make logo white for dark background */
}

.footer__tagline {
	font-size: 0.875rem;
	color: var(--color-gray-300);
	line-height: 1.6;
	margin: 0;
}

.footer__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 768px) {
	.footer__nav-list {
		flex-direction: row;
		gap: 2rem;
	}
}

.footer__nav-link {
	color: var(--color-gray-300);
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s;
}

.footer__nav-link:hover {
	color: var(--color-white);
}

.footer__bottom {
	border-top: 1px solid var(--color-gray-700);
	padding-top: 2rem;
	text-align: center;
}

.footer__copyright {
	font-size: 0.75rem;
	color: var(--color-gray-600);
	margin: 0;
}

/* Interview Page Styles */
.interview-page {
	padding-top: 8rem; /* Space for fixed header */
	padding-bottom: 5rem;
	background-color: var(--color-gray-50);
}

.interview-page__layout {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.interview-page__layout {
		flex-direction: row;
		gap: 4rem;
		align-items: flex-start;
	}
}

/* Sidebar */
.interview-page__sidebar {
	width: 100%;
}

@media (min-width: 1024px) {
	.interview-page__sidebar {
		width: 250px;
		flex-shrink: 0;
		position: sticky;
		top: 8rem;
	}
}

.interview-page__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-left: 2px solid #e5e7eb;
}

.interview-page__nav-item {
	margin-bottom: 0;
}

.interview-page__nav-link {
	display: block;
	padding: 0.75rem 0 0.75rem 1.5rem;
	color: var(--color-gray-600);
	font-weight: 500;
	font-size: 1rem;
	transition:
		color 0.2s,
		border-left-color 0.2s;
	position: relative;
	text-decoration: none;
	border-left: 2px solid transparent;
	margin-left: -2px; /* Overlap border */
}

.interview-page__nav-link:hover {
	color: #c01e34; /* Primary Red */
	border-left-color: #c01e34;
}

/* Main Content Area */
.interview-page__content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 6rem;
	width: 100%; /* Ensure it takes full width in mobile */
}

/* Interview Article */
.interview-detail {
	scroll-margin-top: 8rem; /* For sticky header anchor offset */
}

.interview-detail__header {
	margin-bottom: 2rem;
}

.interview-detail__company-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	color: var(--color-gray-900);
}

.interview-detail__company-location {
	font-size: 1rem;
	margin: 0 0 0.25rem 0;
	color: var(--color-gray-700);
}

.interview-detail__company-desc {
	font-size: 1rem;
	margin: 0;
	color: var(--color-gray-700);
}

/* Article Body Layout */
.interview-detail__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

@media (min-width: 768px) {
	.interview-detail__body {
		flex-direction: row;
		gap: 3rem;
		align-items: flex-start;
	}
}

/* Left Column: Visual & Profile */
.interview-detail__main-visual {
	width: 100%;
}

@media (min-width: 768px) {
	.interview-detail__main-visual {
		width: 300px; /* Fixed width for image column */
		flex-shrink: 0;
	}
}

.interview-detail__image-wrapper {
	width: 100%;
	aspect-ratio: 1 / 1; /* Square image based on reference */
	background-color: #eee;
	margin-bottom: 1rem;
	overflow: hidden;
}

.interview-detail__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interview-detail__profile {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--color-gray-600);
}

/* Right Column: Text Content */
.interview-detail__text-content {
	flex-grow: 1;
}

.interview-detail__quote {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 2.5rem 0;
	line-height: 1.5;
	color: var(--color-gray-900);
}

.interview-detail__qa {
	margin-bottom: 2.5rem;
}

.interview-detail__qa:last-child {
	margin-bottom: 0;
}

.interview-detail__question {
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 0.75rem;
	line-height: 1.6;
	color: var(--color-gray-900);
}

.interview-detail__answer {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--color-gray-700);
}
/* =========================================
   Interview Page Styles
   ========================================= */

.interview-page {
	padding-top: 80px; /* Header height */
	padding-bottom: 5rem;
	background-color: var(--color-white);
}

.interview-page__header {
	padding: 4rem 0 3rem;
	text-align: center;
}

.interview-page__container {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	max-width: 1200px; /* Constraint for readability */
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 1024px) {
	.interview-page__container {
		flex-direction: row;
		align-items: flex-start;
		gap: 4rem;
		padding: 0 2rem;
	}
}

/* Sidebar */
.interview-sidebar {
	width: 100%;
}

@media (min-width: 1024px) {
	.interview-sidebar {
		width: 280px;
		flex-shrink: 0;
	}
}

.interview-sidebar__sticky {
	position: sticky;
	top: 120px; /* Offset for header */
}

.interview-sidebar__title {
	font-family: var(--font-en);
	font-size: 1.5rem;
	font-weight: 700;
	border-bottom: 2px solid var(--color-red-600);
	padding-bottom: 0.5rem;
	margin-bottom: 1.5rem;
}

.interview-sidebar__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.interview-sidebar__link {
	display: block;
	padding: 0.75rem 0;
	color: var(--color-gray-900);
	text-decoration: none;
	transition: color 0.2s;
	border-bottom: 1px solid var(--color-gray-100);
	font-weight: 500;
}

.interview-sidebar__link:hover {
	color: var(--color-red-600);
}

/* Main Content */
.interview-content {
	flex-grow: 1;
	width: 100%;
}

.interview-divider {
	height: 1px;
	background-color: var(--color-gray-300);
	margin: 5rem 0;
}

/* Interview Article */
.interview-article {
	scroll-margin-top: 120px; /* For anchor links */
}

.interview-article__header {
	margin-bottom: 2.5rem;
	border-left: 6px solid var(--color-red-600);
	padding-left: 1.5rem;
}

.interview-article__company {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.interview-article__location {
	font-size: 1rem;
	color: var(--color-gray-600);
	margin-bottom: 0.5rem;
}

.interview-article__business {
	font-size: 1rem;
	font-weight: 700;
}

.interview-article__body {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.interview-article__body {
		flex-direction: row;
		align-items: flex-start;
		gap: 3rem;
	}
}

/* Left Column (Image & Info) */
.interview-article__left {
	width: 100%;
}

@media (min-width: 768px) {
	.interview-article__left {
		width: 260px;
		flex-shrink: 0;
	}
}

.interview-article__image-wrapper {
	width: 100%;
	aspect-ratio: 1/1; /* Square based on reference */
	background-color: #f3f4f6;
	margin-bottom: 1.5rem;
}

.interview-article__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interview-article__interviewees {
	font-size: 0.9rem;
	color: var(--color-gray-700);
}

.interview-article__company-name-small {
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.interview-article__names {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1.8;
}

/* Right Column (Q&A) */
.interview-article__right {
	flex-grow: 1;
}

.interview-article__quote-large {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 3rem;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.interview-article__quote-large {
		font-size: 1.5rem;
	}
}

.interview-article__qa-item {
	margin-bottom: 3rem;
}

.interview-article__qa-item:last-child {
	margin-bottom: 0;
}

.interview-article__question {
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.6;
	font-size: 1.125rem;
}

.interview-article__q-mark {
	color: #c01e34;
	margin-right: 0.25rem;
}

.interview-article__answer {
	line-height: 1.8;
	color: var(--color-gray-700);
	text-align: justify;
}
