/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: calc(100vh - 60px);
	margin-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: hidden;
	background: linear-gradient(150deg, #faf8f5 0%, #f5f0eb 30%, #eef6fb 65%, #e8f4fb 100%);
}
@media (min-width: 900px) {
	.hero {
		flex-direction: row;
		align-items: center;
	}
}
/* Decorative circles */
.hero-deco {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}
.hero-deco-circle {
	position: absolute;
	border-radius: 50%;
	opacity: 0.12;
}
.hero-deco-circle:nth-child(1) {
	width: 600px;
	height: 600px;
	background: #ffffff;
	right: -150px;
	top: -200px;
	opacity: 0.55;
}
.hero-deco-circle:nth-child(2) {
	width: 300px;
	height: 300px;
	background: #f9d0d8;
	right: 80px;
	bottom: -80px;
	opacity: 0.3;
}
.hero-deco-circle:nth-child(3) {
	width: 160px;
	height: 160px;
	background: #f9d0d8;
	left: 10%;
	top: 20%;
	opacity: 0.35;
}
/* Grid overlay */
.hero-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(25, 39, 68, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(25, 39, 68, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	z-index: 0;
}
/* Hero image area — SP: 通常フロー、PC: 右半分に絶対配置 */
.hero-img-area {
	position: relative;
	width: 100%;
	order: 2;
	padding: 32px 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-img-frame {
	position: relative;
	width: 100%;
	max-width: 480px;
}
@media (min-width: 900px) {
	.hero-img-area {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		width: 50%;
		z-index: 1;
		order: unset;
		padding: 0;
		display: block;
	}
	.hero-img-frame {
		max-width: none;
	}
	.hero-img-frame-r {
		display: none;
	}
}
.hero-img-frame::before, .hero-img-frame::after, .hero-img-frame-r::before, .hero-img-frame-r::after {
	content: '';
	position: absolute;
	width: 36px;
	height: 36px;
	border-color: var(--gold);
	border-style: solid;
	z-index: 3;
}
/* left corners */
.hero-img-frame::before {
	top: -15px;
	left: -15px;
	border-width: 2px 0 0 2px;
}
.hero-img-frame::after {
	bottom: -15px;
	left: -15px;
	border-width: 0 0 2px 2px;
}
/* right corners */
.hero-img-frame-r {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hero-img-frame-r::before {
	top: -15px;
	right: -15px;
	border-width: 2px 2px 0 0;
}
.hero-img-frame-r::after {
	bottom: -15px;
	right: -15px;
	border-width: 0 2px 2px 0;
}
.hero-img-area-inner {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(25, 39, 68, 0.4);
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-align: center;
	gap: 8px;
	padding: 0;
}
.hero-img-area-img {
	width: 100%;
	height: auto;
}
.hero-content {
	position: relative;
	z-index: 2;
	padding: 60px 0 40px;
	order: 1;
}
@media (min-width: 900px) {
	.hero-content {
		padding: 60px 40% 80px 0;
		order: unset;
	}
}
.hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}
.hero-eyebrow-pill {
	background: #fff;
	border: 1px solid rgba(25, 39, 68, 0.15);
	color: var(--navy);
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 50px;
}
.hero-title {
	color: var(--navy);
	margin-bottom: 20px;
}
.hero-title .main-copy {
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 700;
	line-height: 1.2;
	display: block;
}
.hero-title .en-copy {
	font-family: Helvetica, Arial, sans-serif;
	font-size: clamp(0.85rem, 1.8vw, 1.15rem);
	font-weight: 400;
	letter-spacing: 0.15em;
	color: var(--gold);
	display: block;
	margin-top: 14px;
}
.hero-sub {
	color: var(--text-mid);
	margin-bottom: 32px;
	line-height: 1.8;
}
/* Route badge */
.hero-route {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(25, 39, 68, 0.05);
	border: 1px solid rgba(25, 39, 68, 0.12);
	border-radius: 50px;
	padding: 10px 20px;
	margin-bottom: 32px;
}
.route-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--navy);
}
.route-dot.sg {
	background: var(--gold);
}
.route-arrow {
	font-family: Helvetica, Arial, sans-serif;
	color: var(--navy);
	font-size: 0.8rem;
}
.route-label {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	color: var(--navy);
	text-transform: uppercase;
}
.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}
.hero-meta-item .label {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 3px;
}
.hero-meta-item .value {
	color: var(--text-dark);
	font-size: 0.9rem;
	font-weight: 500;
}
.hero-img-note {
	position: absolute;
	bottom: 16px;
	right: 16px;
	z-index: 10;
	background: rgba(25, 39, 68, 0.7);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	padding: 5px 12px;
	border-radius: 4px;
	font-family: Helvetica, Arial, sans-serif;
}
/* ===== Map Section ===== */
.map-section {
	background: linear-gradient(135deg, #192744 0%, #1e3258 50%, #192744 100%);
	padding: 56px 0;
	overflow: hidden;
}
.map-section h2 {
	color: var(--white);
}
.map-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}
.map-svg {
	width: 100%;
	height: auto;
	overflow: visible;
}
@media (max-width: 767px) {
	.map-section {
		padding-bottom: 150px;
	}
	.map-svg {
		transform: scale(2.7);
		transform-origin: 62% 50%;
	}
}
/* ===== About ===== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
@media (max-width: 767px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
}
.about-img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 8px;
}
.about-text p {
	margin-bottom: 16px;
}
.about-text p:last-child {
	margin-bottom: 0;
}
.about-accent {
	color: var(--navy);
	font-weight: 700;
}
/* ===== Partner Cards ===== */
.partner-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding-top: 24px;
}
@media (min-width: 640px) {
	.partner-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.partner-card {
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(25, 39, 68, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
}
.partner-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(25, 39, 68, 0.14);
}
.partner-card-logo {
	position: absolute;
	top: -20px;
	left: 20px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(25, 39, 68, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	z-index: 2;
}
.partner-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.partner-card-img {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}
.partner-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.partner-card-body {
	padding: 20px;
}
.partner-card-label {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 6px;
	font-weight: 700;
}
.partner-card-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}
.partner-card-desc {
	font-size: 0.85rem;
	color: var(--text-mid);
	line-height: 1.7;
}
/* ===== Program & Schedule ===== */
.schedule-block {
	position: relative;
	overflow: hidden;
	padding: 40px 0 0;
	margin-bottom: -80px;
	padding-bottom: 80px;
}
.schedule-block::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 44%;
	height: 55%;
	background: url('../img/top/project-image2.webp') center / cover no-repeat;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%), linear-gradient(to bottom, transparent 0%, black 25%);
	-webkit-mask-composite: source-in;
	mask-image: linear-gradient(to right, transparent 0%, black 25%), linear-gradient(to bottom, transparent 0%, black 25%);
	mask-composite: intersect;
	opacity: 0.7;
	pointer-events: none;
	z-index: 0;
}
@media (max-width: 767px) {
	.schedule-block::after { display: none; }
}
.schedule-block .section-title,
.schedule-block .timeline {
	position: relative;
	z-index: 1;
}
.section-divider {
	border: none;
	border-top: 1px solid rgba(25, 39, 68, 0.12);
	margin: 56px 0;
}
/* ===== Program ===== */
.program-list {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}
@media (min-width: 640px) {
	.program-list {
		grid-template-columns: 1fr 1fr;
	}
}
.program-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 22px;
	background: #fff;
	border-radius: 10px;
	border-left: 4px solid var(--gold);
	transition: background 0.2s;
}
.program-item-num {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--gold);
	line-height: 1;
	flex-shrink: 0;
	min-width: 28px;
}
.program-item-text {
	font-size: 0.88rem;
	color: var(--text-dark);
	line-height: 1.65;
	padding-top: 3px;
}
/* ===== Timeline ===== */
.timeline {
	position: relative;
	padding-left: 36px;
}
.timeline::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--navy), var(--gold));
	border-radius: 2px;
}
.timeline-item {
	position: relative;
	margin-bottom: 28px;
}
.timeline-item:last-child {
	margin-bottom: 0;
}
.timeline-item::before {
	content: '';
	position: absolute;
	left: -31px;
	top: 5px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--navy);
	border: 3px solid var(--white);
	box-shadow: 0 0 0 2px var(--navy);
}
.timeline-item.highlight::before {
	background: var(--gold);
	box-shadow: 0 0 0 2px var(--gold);
	width: 18px;
	height: 18px;
	left: -33px;
	top: 3px;
}
.timeline-month {
	display: inline-block;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0.82rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--navy);
	font-weight: 700;
	margin-bottom: 12px;
	background: var(--white);
	padding: 5px 32px 5px 12px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
}
.timeline-item.highlight .timeline-month {
	background: var(--white);
}
.timeline-item.highlight .timeline-month {
	color: var(--gold);
}
.timeline-content h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--text-dark);
}
.timeline-content p {
	font-size: 0.85rem;
	color: var(--text-mid);
	line-height: 1.7;
}
.timeline-content ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.timeline-content li {
	font-size: 0.95rem;
	color: var(--text-dark);
	line-height: 1.5;
	padding-left: 1.2em;
	position: relative;
}
.timeline-content li::before {
	content: '–';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: 700;
}
.timeline-note {
	font-size: 0.78rem;
	color: var(--text-mid);
	margin-top: 10px;
	line-height: 1.7;
}
.timeline-item.highlight .timeline-content h3 {
	color: var(--navy);
	font-size: 1.05rem;
}
/* ===== Feature Cards ===== */
.features-layout {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 40px;
	align-items: start;
}
@media (max-width: 767px) {
	.features-layout {
		grid-template-columns: 1fr;
	}
}
.features-layout-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}
.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 767px) {
	.features-grid {
		grid-template-columns: 1fr;
	}
}
.feature-card {
	background: var(--white);
	border-radius: 12px;
	padding: 32px 28px;
	box-shadow: 0 3px 16px rgba(25, 39, 68, 0.07);
	border-top: 4px solid var(--light-blue);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}
.feature-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background: radial-gradient(circle at bottom right, rgba(182, 159, 114, 0.08), transparent 70%);
	border-radius: 50%;
}
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 32px rgba(25, 39, 68, 0.12);
}
.feature-card:nth-child(4) {
	border-top-color: var(--gold);
}
.feature-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--off-white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.3rem;
	color: var(--navy);
}
.feature-card:nth-child(4) .feature-icon {
	color: var(--gold);
}
.feature-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	padding: 4px 12px;
	border-radius: 50px;
	background: var(--light-blue);
	color: var(--navy);
}
.feature-card:nth-child(4) .feature-badge {
	background: var(--light-orange);
	color: var(--gold);
}
.feature-card h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--navy);
}
.feature-card p {
	font-size: 0.84rem;
	color: var(--text-mid);
	line-height: 1.7;
}
/* ===== Persona ===== */
.persona-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.persona-tag {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 10px;
	font-size: 0.9rem;
	color: var(--text-dark);
	transition: background 0.2s;
}
.persona-tag:hover {
	background: rgba(255, 255, 255, 0.95);
}
.persona-tag::before {
	content: '✓';
	color: var(--navy);
	font-weight: 700;
	flex-shrink: 0;
	font-size: 1rem;
}
/* ===== Goal ===== */
.goal-box {
	background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 1);
	border-radius: 16px;
	padding: 48px 40px;
	text-align: center;
}
.goal-box .big-quote {
	font-size: clamp(1.15rem, 2.5vw, 1.55rem);
	font-weight: 700;
	line-height: 1.7;
	margin-bottom: 20px;
	color: var(--text-dark);
}
.goal-box .big-quote em {
	font-style: normal;
	color: var(--navy);
	border-bottom: 2px solid var(--gold);
}
.goal-box p {
	color: var(--text-mid);
}
/* ===== Details Table ===== */
.details-table {
	width: 100%;
	border-collapse: collapse;
}
.details-table tr {
	border-bottom: 1px solid var(--gray-light);
}
.details-table tr:last-child {
	border-bottom: none;
}
.details-table th {
	text-align: left;
	padding: 18px 0;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	color: var(--navy);
	font-weight: 700;
	width: 28%;
	vertical-align: top;
	white-space: nowrap;
}
.details-table td {
	padding: 18px 0;
	font-size: 0.9375rem;
	color: var(--navy);
	line-height: 1.8;
}
/* ===== CTA Section ===== */
.cta-section {
	background: linear-gradient(135deg, #192744 0%, #1e3258 60%, #192744 100%);
	padding: 100px 0 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-section::before {
	content: 'SINGAPORE';
	position: absolute;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.05);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	pointer-events: none;
}
.cta-deco-1, .cta-deco-2 {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
}
.cta-deco-1 {
	width: 400px;
	height: 400px;
	background: var(--gold);
	top: -150px;
	left: -100px;
}
.cta-deco-2 {
	width: 250px;
	height: 250px;
	background: var(--gold);
	bottom: -80px;
	right: -60px;
}
.cta-inner {
	position: relative;
	z-index: 1;
}
.cta-inner h2 {
	color: var(--white);
	margin-bottom: 12px;
}
.cta-inner > p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
}
.cta-note {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 20px;
	line-height: 1.8;
}
.cta-image-strip {
	display: flex;
	width: 100%;
	margin-top: 70px;
}
.cta-image-strip img {
	flex: 1;
	width: 20%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
}
/* ===== Responsive (TOP固有) ===== */
@media (max-width: 639px) {
	.hero-content {
		padding: 60px 0 60px;
	}
	.details-table th {
		width: 35%;
	}
	.goal-box {
		padding: 32px 20px;
	}
}
