/* ========================================
   RORO船LP - style.css
   ======================================== */

/* --- CSS Variables --- */
:root {
	--lp-red: #E50012;
	--lp-red-hover: #c5000f;
	--lp-navy: #104486;
	--lp-blue: #40699e;
	--lp-dark: #0B2A4A;
	--lp-gray-bg: #F4F4F6;
	--lp-white: #ffffff;
	--lp-text: #333333;
	--lp-text-light: #666666;
	--lp-border: #e0e0e0;
	--lp-max-w: 1120px;
	--lp-section-py: 80px;
	--lp-radius: 8px;
	--lp-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* --- LP Container Reset --- */
.lp-roro {
	font-feature-settings: "palt";
	line-height: 1.8;
	color: var(--lp-text);
}

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

/* --- Common Layout --- */
.lp-section {
	padding: var(--lp-section-py) 0;
}

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

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

.lp-inner {
	max-width: var(--lp-max-w);
	margin: 0 auto;
	padding: 0 24px;
}

/* --- Section Labels --- */
.lp-section__label {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--lp-blue);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.lp-section__lead {
	font-size: 16px;
	color: var(--lp-text-light);
	margin-bottom: 48px;
	max-width: 720px;
}

.lp-section__lead--white {
	color: rgba(255, 255, 255, 0.8);
}

/* --- Headings --- */
/* --- 見出し揃えの統一: セクション主見出しはセンター --- */
.lp-about .lp-section__label,
.lp-about > .lp-inner > .lp-heading,
.lp-structure__header,
.lp-summary__title {
	text-align: center;
}


.lp-heading {
	font-size: 44px;
	font-weight: 700;
	color: var(--lp-navy);
	margin-bottom: 16px;
	line-height: 1.4;
}

.lp-heading--white {
	color: var(--lp-white);
}

.lp-subheading {
	font-size: 22px;
	font-weight: 700;
	color: var(--lp-navy);
	margin-bottom: 16px;
	line-height: 1.4;
}

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

/* --- Buttons (use site-wide .u-button pattern) --- */
/* LP-specific button layout adjustments */
.lp-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.lp-cta__buttons .u-button {
	margin: 0;
}

/* --- Cards --- */
.lp-card-grid {
	display: grid;
	gap: 24px;
}

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

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

.lp-card {
	min-height: 250px;
	background: var(--lp-white);
	border: 1px solid #d9e4f2;
	border-radius: var(--lp-radius);
	box-shadow: 0 8px 22px rgba(13, 58, 117, 0.08);
	padding: 34px 22px 28px;
	text-align: center;
}

/* 器なし: アイコンを白地に直置き */
.lp-card__icon-bg {
	height: 104px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-card__icon-img {
	width: 104px;
	height: 104px;
	object-fit: contain;
}

/* 横長モチーフ（モーダルシフト）は幅基準で他アイコンと視覚サイズを揃える */
.lp-card__icon-img--wide {
	width: 132px;
	height: 132px;
}

.lp-card__icon {
	font-size: 32px;
	margin-bottom: 16px;
}

.lp-card__num {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--lp-blue);
	background: rgba(64, 105, 158, 0.1);
	padding: 4px 10px;
	border-radius: 4px;
	margin-bottom: 12px;
}

.lp-card__title {
	position: relative;
	font-size: 24px;
	font-weight: 800;
	color: var(--lp-navy);
	margin: 0 0 28px;
	line-height: 1.45;
}

.lp-card__title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -14px;
	width: 36px;
	height: 2px;
	background: var(--lp-red);
	transform: translateX(-50%);
}

.lp-card__text {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #243044;
	line-height: 1.8;
}

/* --- Tables --- */
.lp-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.lp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.lp-table th,
.lp-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--lp-border);
}

.lp-table th {
	background: var(--lp-gray-bg);
	font-weight: 700;
	color: var(--lp-navy);
	white-space: nowrap;
}

.lp-table__highlight {
	background: rgba(16, 68, 134, 0.08) !important;
}

.lp-table--dark {
	color: var(--lp-white);
}

.lp-table--dark th {
	background: rgba(255, 255, 255, 0.1);
	color: var(--lp-white);
}

.lp-table--dark td {
	border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* --- Stats --- */
.lp-stat {
	text-align: center;
	margin: 16px 0;
}

.lp-stat--inline {
	display: flex;
	align-items: baseline;
	gap: 6px;
	justify-content: center;
}

.lp-stat__label {
	font-size: 14px;
	color: var(--lp-text-light);
}

.lp-stat__number {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	font-weight: 800;
	color: var(--lp-red);
	line-height: 1;
}

.lp-stat__unit {
	font-size: 28px;
}

.lp-stat__desc {
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text);
}

/* --- Placeholder Images --- */
.lp-placeholder-img {
	background: linear-gradient(135deg, #dce3ec 0%, #c4d0de 100%);
	border-radius: var(--lp-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	color: #8899aa;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
}

.lp-placeholder-img--dark {
	background: linear-gradient(135deg, #1a3a5c 0%, #0d2a4a 100%);
	color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   Section 1: ヒーロー
   ======================================== */
.lp-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.lp-hero__bg {
	position: absolute;
	inset: 0;
	background: url('/_assets/images/roro-ship/hero.jpg') center center / cover no-repeat;
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right,
			rgba(8, 20, 40, 0.72) 0%,
			rgba(8, 20, 40, 0.55) 35%,
			rgba(8, 20, 40, 0.25) 65%,
			rgba(8, 20, 40, 0.08) 100%);
}

.lp-hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--lp-max-w);
	margin: 0 auto;
	padding: 80px 24px;
	width: 100%;
}

.lp-hero__title {
	position: relative;
	padding-bottom: 20px;
	font-size: 48px;
	font-weight: 800;
	color: var(--lp-white);
	line-height: 1.3;
	margin-bottom: 12px;
}

.lp-hero__title::after {
	content: '';
	position: absolute;
	left: 2px;
	bottom: 0;
	width: 190px;
	height: 4px;
	background: var(--lp-red);
	border-radius: 999px;
}

.lp-hero__subtitle {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 32px;
}

.lp-hero__cta {
	margin-top: 8px;
	/* 親を内容幅に縮め、共通の min-width:calc(100%/3) による間延びを防ぐ（左寄せ位置は維持） */
	display: inline-block;
}

/* 視認性: 背景だけ白塗り。それ以外はサイト標準のu-buttonそのまま */
.u-button.lp-hero__cta > a {
	background: #fff;
	text-align: center;
	padding-right: 56px; /* 他ボタンと同じ矢印スペース（45pxだとテキストと矢印が重なる） */
}

/* 目次（TOC） */
.lp-toc {
	max-width: 760px;
	margin: 0 auto;
	padding: 28px 36px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-top: -32px;
	position: relative;
	z-index: 2;
}

.lp-toc__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-toc__list li a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 16px;
	background: #ffffff;
	border: 1px solid #dfe6ef;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	color: #1e3a5f;
	text-decoration: none;
	line-height: 1.5;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.lp-toc__list li a::before {
	content: '▾';
	color: var(--lp-red, #E50012);
	font-weight: 800;
	line-height: 1;
}

.lp-toc__list li a:hover {
	border-color: var(--lp-red, #E50012);
	color: var(--lp-red, #E50012);
}

/* ========================================
   Section 2: 30秒サマリー
   ======================================== */
.lp-summary {
	padding: 48px 0;
	background: var(--lp-white);
}

.lp-summary__box {
	position: relative;
	background: linear-gradient(180deg, #f9fcff 0%, #f5f9ff 100%);
	padding: 34px 48px;
}

.lp-summary__box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 56px;
	height: 56px;
	border-top: 4px solid var(--lp-navy);
	border-left: 4px solid var(--lp-navy);
}

.lp-summary__box::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 56px;
	height: 56px;
	border-bottom: 4px solid var(--lp-navy);
	border-right: 4px solid var(--lp-navy);
}

.lp-summary__title {
	font-size: 44px;
	font-weight: 800;
	color: var(--lp-navy);
	margin: 0 0 14px;
	letter-spacing: 0.06em;
	line-height: 1.35;
}

.lp-summary__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lp-summary__list li {
	display: grid;
	grid-template-columns: 88px 1fr;
	align-items: center;
	min-height: 82px;
	border-top: 1px solid #d8e1ef;
}

.lp-summary__list li:first-child {
	border-top: none;
}

.lp-summary__num {
	position: relative;
	align-self: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.04em;
	color: var(--lp-navy);
}

.lp-summary__num::after {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	width: 1px;
	height: 42px;
	background: #c5d2e4;
	transform: translateY(-50%);
}

.lp-summary__text {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #1d2737;
	line-height: 1.7;
}


/* ========================================
   Section 3: RORO船とは何か
   ======================================== */

/* Section 3 heading override */
.lp-about .lp-heading {
	font-size: 44px;
	font-weight: 900;
	letter-spacing: 0.07em;
}

.lp-about__lead {
	max-width: 760px;
	margin-bottom: 48px;
}

.lp-about__lead p {
	margin-bottom: 22px;
	font-size: 16px;
	font-weight: 500;
	line-height: 2;
	color: #263347;
}

.lp-about__history {
	margin-bottom: 48px;
}

/* Timeline - vertical line + dots */
.lp-about__history-lead {
	max-width: 760px;
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.9;
	color: var(--lp-text);
}

.lp-about__timeline {
	width: min(620px, 100%);
	margin: 34px 0 38px 130px;
	padding: 0;
	list-style: none;
	position: relative;
}

.lp-about__timeline::before {
	content: '';
	position: absolute;
	left: 13px;
	top: 14px;
	bottom: 0;
	width: 2px;
	background: #8fb3df;
}

.lp-about__timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: 16px;
	margin-bottom: 22px;
}

.lp-about__timeline-item:last-child {
	margin-bottom: 0;
}

.lp-about__timeline-dot {
	position: relative;
	z-index: 1;
	width: 28px;
	height: 28px;
	border: 2px solid #8fb3df;
	border-radius: 50%;
	background: var(--lp-white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.lp-about__timeline-dot::before {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lp-navy);
}

/* Red variant for 1969 */
.lp-about__timeline-item--red .lp-about__timeline-dot {
	border-color: #ff6b74;
}

.lp-about__timeline-item--red .lp-about__timeline-dot::before {
	background: var(--lp-red);
}

.lp-about__timeline-era {
	margin: 0 0 2px;
	color: var(--lp-navy);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.45;
}

.lp-about__timeline-item--red .lp-about__timeline-era {
	color: var(--lp-red);
}

.lp-about__timeline-item p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #263347;
	line-height: 1.8;
}


/* ========================================
   Section 4: 仕組みと構造
   ======================================== */

.lp-structure {
	padding: 28px 0 56px;
	background: #ffffff;
}

/* --- Header & Heading --- */
.lp-structure__header {
	margin-bottom: 24px;
}

.lp-heading--underline {
	position: relative;
	display: block;
	text-align: center;
	margin: 0 0 8px;
	padding-bottom: 18px;
	line-height: 1.35 !important;
}

.lp-structure .lp-heading--underline {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0.06em;
}

.lp-heading--underline::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 98px;
	height: 4px;
	background: var(--lp-red);
	border-radius: 999px;
}

/* --- Main asymmetric layout --- */
.lp-structure__layout {
	display: grid;
	grid-template-columns: 515px 1fr;
	grid-template-areas:
		"ramp-photo ramp-text"
		"deck-text  deck-photo";
	column-gap: 56px;
	row-gap: 32px;
	align-items: start;
}

.lp-structure__photo--ramp {
	grid-area: ramp-photo;
}

.lp-structure__text--ramp {
	grid-area: ramp-text;
	padding-top: 64px;
}

.lp-structure__text--deck {
	grid-area: deck-text;
	padding-top: 8px;
}

.lp-structure__photo--deck {
	grid-area: deck-photo;
}

/* --- Photos --- */
.lp-structure__photo {
	overflow: hidden;
	border-radius: 6px;
	background: #eef3f8;
	box-shadow: 0 8px 22px rgba(0, 40, 90, 0.08);
}

.lp-structure__photo img {
	display: block;
	width: 100%;
	object-fit: cover;
}

.lp-structure__photo--ramp img {
	height: 300px;
}

.lp-structure__photo--deck img {
	height: 325px;
}

/* --- Text blocks --- */
.lp-structure__text h3 {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.45;
	color: #111;
	letter-spacing: 0.06em;
}

.lp-structure__text p {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 2.05;
	color: #1d2430;
}

/* --- Deck spec list (数字主役型) --- */
.lp-spec-table {
	width: 100%;
	margin-top: 22px;
}

.lp-spec-item {
	padding: 13px 2px;
	border-bottom: 1px solid #dfe5ee;
}

.lp-spec-item:first-child {
	padding-top: 0;
}

.lp-spec-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lp-spec-name {
	display: block;
	margin-bottom: 5px;
	color: var(--lp-navy);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.lp-spec-figure {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 12px;
}

.lp-spec-group {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}

.lp-spec-cap {
	color: #6b7684;
	font-size: 12px;
	font-weight: 600;
}

.lp-spec-num {
	color: var(--lp-navy);
	font-size: 23px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.lp-spec-num em {
	font-style: normal;
	font-size: 14px;
	margin-left: 1px;
}

.lp-spec-plus {
	color: #9aa4b2;
	font-size: 14px;
	font-weight: 700;
}

.lp-spec-note {
	color: #6b7684;
	font-size: 12px;
	font-weight: 500;
}

/* --- Block title (shared for cargo & flow) --- */
.lp-block-title {
	margin: 0 0 10px;
	color: #111;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing: 0.05em;
}

/* --- Cargo table --- */
.lp-cargo {
	margin-top: 26px;
	margin-bottom: 0;
}

.lp-cargo__table-wrap {
	border: 1px solid #d7e0ec;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.lp-cargo__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.lp-cargo__table thead th {
	padding: 9px 20px;
	background: var(--lp-navy);
	color: var(--lp-white);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.5;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.lp-cargo__table thead th:first-child {
	width: 285px;
}

.lp-cargo__table thead th:last-child {
	border-right: none;
}

.lp-cargo__table tbody td {
	padding: 9px 42px;
	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.55;
	color: #111;
	border-top: 1px solid #d7e0ec;
	border-right: 1px solid #d7e0ec;
}

.lp-cargo__table tbody td:first-child {
	text-align: left;
	font-weight: 900;
}

.lp-cargo__table tbody td:last-child {
	border-right: none;
}

.lp-cargo__table tbody tr:nth-child(even) td {
	background: #fbfdff;
}

/* --- Unmanned transport flow --- */
.lp-flow {
	margin-top: 24px;
}

.lp-flow__grid {
	display: grid;
	grid-template-columns: 1fr 36px 1fr 36px 1fr;
	gap: 18px;
	align-items: center;
}

.lp-flow__card {
	position: relative;
	min-height: 232px;
	padding: 28px 22px 20px;
	border: 1px solid #d7e0ec;
	border-radius: var(--lp-radius);
	background: var(--lp-white);
	box-shadow: 0 8px 22px rgba(0, 40, 90, 0.08);
	text-align: center;
}

.lp-flow__badge {
	display: none;
}

.lp-flow__image {
	height: 92px;
	margin: 6px auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-flow__image img {
	display: block;
	max-width: 225px;
	max-height: 92px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.lp-flow__card h4 {
	margin: 0 0 8px;
	color: #111;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.45;
}

.lp-flow__card p {
	margin: 0;
	color: #111;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
}

.lp-flow__arrow {
	color: var(--lp-navy);
	font-size: 34px;
	font-weight: 900;
	text-align: center;
}

.lp-flow__arrow::before {
	content: '▶';
	line-height: 1;
}


/* ========================================
   Section 5: 比較
   ======================================== */

/* --- Block layout --- */
.lp-compare__block {
	padding: 36px 0 38px;
}

.lp-compare__block--02 {
	background: linear-gradient(180deg, #f7faff 0%, #ffffff 42%);
}

/* --- Header --- */
.lp-compare__header {
	text-align: center;
	margin-bottom: 40px;
}

.lp-compare__label::after {
	content: '';
	display: block;
	width: 54px;
	height: 3px;
	background: var(--lp-red);
	margin: 8px auto 0;
}

.lp-compare__header h2 {
	font-size: 44px;
	font-weight: 900;
	color: var(--lp-navy);
	letter-spacing: 0.07em;
	line-height: 1.3;
	margin-bottom: 16px;
}

.lp-compare__header--small h2 {
	font-size: 44px;
}

.lp-compare__lead {
	font-size: 16px;
	font-weight: 500;
	color: #111827;
	line-height: 1.7;
}

/* --- Comparison 01: Ship Grid (3-column) --- */
.lp-compare__ship-grid {
	display: grid;
	grid-template-columns: 1fr 190px 1fr;
	margin-bottom: 48px;
}

.lp-compare__panel {
	overflow: hidden;
}

.lp-compare__panel--left {
	border-radius: 10px;
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 30%);
}

.lp-compare__panel--right {
	border-radius: 10px;
	background: #ffffff;
}

.lp-compare__panel-head {
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--lp-navy);
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	letter-spacing: 0.05em;
}

.lp-compare__panel--right .lp-compare__panel-head {
	background: #64748b;
}

.lp-compare__panel-visual {
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f7f9fc;
	border-bottom: 1px solid #e5eaf1;
	padding: 8px 16px;
}

.lp-compare__panel-visual img {
	max-width: 82%;
	max-height: 100%;
	object-fit: contain;
}

.lp-compare__panel-row {
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	border-top: 1px solid #e5e7eb;
	padding: 0 16px;
	text-align: center;
}

/* 対比色分け: RORO=淡青 / コンテナ=淡グレー（優劣ではなく方式の違いを示す） */
.lp-compare__panel--left .lp-compare__panel-row {
	background: #eef5ff;
	border-radius: 4px;
}

.lp-compare__panel--right .lp-compare__panel-row {
	background: #f3f4f6;
	border-radius: 4px;
}

/* --- Center axis (overlapping) --- */
.lp-compare__axis {
	position: relative;
	z-index: 3;
}

.lp-compare__axis-spacer {
	height: 155px; /* panel-head 58px + panel-visual 96px + border 1px */
}

.lp-compare__axis-item {
	height: 61px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-top: none;
	padding: 0 10px;
}

.lp-compare__axis-item:first-of-type {
	border-top: 1px solid #e5e7eb;
	border-radius: 8px 8px 0 0;
}

.lp-compare__axis-item:last-child {
	border-radius: 0 0 8px 8px;
}

.lp-compare__axis-item span {
	position: relative;
	padding-bottom: 9px;
	font-size: 14px;
	font-weight: 800;
	color: var(--lp-navy);
	line-height: 1.3;
}

.lp-compare__axis-item span::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 22px;
	height: 3px;
	border-radius: 2px;
	background: #d14c4d;
}

/* --- 関連ページへのテキストリンク --- */
.lp-related-link {
	margin: 40px 0 0;
	text-align: center;
	font-size: 15px;
	color: #4b5563;
}

.lp-related-link a {
	color: var(--lp-navy);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-color: rgba(16, 68, 134, 0.35);
	transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.lp-related-link a:hover {
	color: var(--lp-red);
	text-decoration-color: var(--lp-red);
}

/* --- Green check mark --- */
.lp-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
}

.lp-check::after {
	content: '';
	display: block;
	width: 6px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	margin-top: -2px;
}

/* --- Choice section --- */
.lp-compare__choice {
	margin-bottom: 32px;
}

.lp-compare__choice-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 22px;
	font-weight: 900;
	color: var(--lp-navy);
	margin-bottom: 28px;
}

.lp-compare__choice-title span {
	display: block;
	width: 74px;
	height: 2px;
	background: #d1d5db;
}

.lp-compare__choice-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 34px;
	width: calc(100% - 44px);
	margin: 0 auto;
}

.lp-compare__choice-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lp-compare__choice-card {
	padding: 22px 26px 20px;
	display: flex;
	flex-direction: column;
}

.lp-compare__choice-head {
	margin: 0 0 6px;
	padding: 0 0 12px;
	border-bottom: 1px solid #e5eaf1;
	color: var(--lp-navy);
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-align: center;
}

.lp-compare__choice-list {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: fit-content;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.lp-compare__choice-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f0f3f7;
	color: #1b2430;
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.5;
}

.lp-compare__choice-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.lp-compare__choice-card p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
}

/* --- Note --- */
.lp-compare__note {
	text-align: center;
	font-size: 12px;
	color: #6b7280;
	margin-top: 24px;
}

/* --- Comparison 02: Ferry table --- */
.lp-compare__ferry-wrap {
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 40px;
}

.lp-compare__ferry-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.lp-compare__ferry-table colgroup col:first-child,
.lp-compare__ferry-table thead th:first-child,
.lp-compare__ferry-table tbody td:first-child {
	width: 31%;
}

.lp-compare__ferry-table thead th {
	background: var(--lp-navy);
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	height: 52px;
	padding: 0 20px;
	vertical-align: middle;
	text-align: center;
	letter-spacing: 0.04em;
}

.lp-compare__thead-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
	vertical-align: middle;
	margin-right: 8px;
}

.lp-compare__ferry-table tbody td {
	height: 58px;
	padding: 0 20px;
	vertical-align: middle;
	font-size: 15px;
	font-weight: 600;
	color: #1f2937;
	border-bottom: 1px solid #e5e7eb;
	text-align: center;
}

.lp-compare__ferry-table tbody tr:nth-child(even) td {
	background: #f7fbff;
}

.lp-compare__ferry-table tbody td:first-child {
	text-align: left;
	font-weight: 700;
}

.lp-compare__row-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 2px solid #e5e7eb;
	background: #ffffff;
	vertical-align: middle;
	margin-right: 10px;
}

.lp-compare__row-icon img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

/* --- Alert box --- */
.lp-compare__alert {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: 24px;
	border: 2px solid var(--lp-red);
	border-radius: 12px;
	padding: 28px 32px;
	box-shadow: 0 4px 16px rgba(229, 0, 18, 0.1);
	background: #ffffff;
}

.lp-compare__alert-icon {
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: linear-gradient(135deg, #fee2e2, #fecaca);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.lp-compare__alert-icon img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.lp-compare__alert-body h3 {
	font-size: 22px;
	font-weight: 900;
	color: #1f2937;
	margin-bottom: 10px;
	line-height: 1.4;
}

.lp-compare__alert-body h3 strong {
	color: var(--lp-red);
	font-size: 28px;
}

.lp-compare__alert-body p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 8px;
}

.lp-compare__alert-body p:last-child {
	margin-bottom: 0;
}

.lp-compare__alert-body p span {
	color: var(--lp-red);
	font-weight: 900;
	font-size: 20px;
}

.lp-compare__alert-body p strong {
	font-weight: 800;
}


/* ========================================
   Section 6: メリット
   ======================================== */
.lp-merits {
	background: var(--lp-white);
	padding-bottom: 0;
}

/* --- Header --- */
.lp-merits__header {
	text-align: center;
	margin-bottom: 26px;
}

.lp-merits__header h2 {
	font-size: 44px;
	font-weight: 900;
	color: var(--lp-navy);
	letter-spacing: 0.06em;
	line-height: 1.2;
	margin-bottom: 12px;
}

.lp-merits__header p {
	font-size: 15px;
	color: var(--lp-text-light);
}

/* --- Grid --- */
.lp-merits__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
}

/* --- Card base --- */
.lp-merits__card {
	position: relative;
	overflow: hidden;
	background: var(--lp-white);
	border: 1px solid #d7e1ee;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(16, 68, 134, 0.06);
}

.lp-merits__card h3,
.lp-merits__card p,
.lp-merits__small-layout {
	position: relative;
	z-index: 1;
}

.lp-merits__card h3 {
	margin-top: 38px;
}

.lp-merits__card h3::after {
	content: '';
	display: block;
	width: 24px;
	height: 3px;
	margin-top: 10px;
	background: var(--lp-red);
	border-radius: 2px;
}

.u-phrase {
	display: inline-block;
	white-space: nowrap;
}

.lp-merits__num {
	position: absolute;
	top: 2px;
	left: 24px;
	font-family: 'Montserrat', sans-serif;
	font-size: 92px;
	font-weight: 800;
	line-height: 1;
	color: rgba(16, 68, 134, 0.08);
	pointer-events: none;
	z-index: 0;
}

.lp-merits__card h3 {
	font-weight: 900;
	color: var(--lp-navy);
	line-height: 1.4;
	margin-bottom: 10px;
}

.lp-merits__text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.8;
	color: var(--lp-text);
}

/* --- Large card --- */
.lp-merits__card--large {
	grid-column: span 3;
	min-height: 438px;
	padding: 22px 28px 24px;
}

.lp-merits__card--large h3 {
	font-size: 22px;
}

/* --- Small card --- */
.lp-merits__card--small {
	grid-column: span 2;
	min-height: 260px;
	padding: 22px 20px;
}

.lp-merits__card--small h3 {
	font-size: 22px;
}

/* --- 5-1: Driver card --- */
.lp-merits__card--driver {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: center;
}

.lp-merits__big-percent {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
	position: relative;
	z-index: 1;
	color: var(--lp-red);
	font-weight: 800;
}

.lp-merits__big-percent > span {
	font-size: 20px;
	white-space: nowrap;
}

.lp-merits__big-percent span {
	font-size: 18px;
	padding-bottom: 14px;
}

.lp-merits__big-percent strong {
	font-family: 'Montserrat', sans-serif;
	font-size: 88px;
	font-weight: 800;
	line-height: 0.85;
}

.lp-merits__big-unit {
	font-family: 'Montserrat', sans-serif;
	font-size: 56px;
	padding-bottom: 6px;
}

.lp-merits__visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.lp-merits__visual--driver img {
	width: 170px;
	height: 170px;
	object-fit: contain;
}

/* --- 5-2: CO2 card --- */
.lp-merits__card--co2 {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 24px;
	align-items: center;
}

.lp-merits__co2-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.lp-merits__co2-main {
	text-align: center;
}

.lp-merits__co2-main span {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--lp-text-light);
	margin-bottom: 4px;
}

.lp-merits__co2-main strong {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 88px;
	font-weight: 800;
	line-height: 0.9;
	color: var(--lp-red);
}

.lp-merits__co2-chart {
	width: 100%;
}

.co2-bar {
	display: block;
	margin-bottom: 12px;
}

.co2-bar__label {
	display: block;
	font-size: 11.5px;
	font-weight: 600;
	color: #4b5563;
	text-align: left;
	line-height: 1.4;
	margin-bottom: 4px;
}

.co2-bar__track {
	display: flex;
	align-items: center;
	gap: 8px;
}

.co2-bar__fill {
	flex-shrink: 0;
	height: 22px;
	border-radius: 3px;
}

.co2-bar__fill--gray {
	background: #9aa4af;
}

.co2-bar__fill--navy {
	background: var(--lp-navy);
}

.co2-bar__track em {
	font-style: normal;
	font-size: 14px;
	font-weight: 800;
	color: #1b2430;
	white-space: nowrap;
}

.co2-bar__source {
	margin: 12px 0 0;
	font-size: 12px;
	color: #9aa4af;
	text-align: right;
	line-height: 1.5;
}

.lp-merits__cases {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #e8edf4;
}

.lp-merits__cases-label {
	display: block;
	margin-bottom: 8px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #6b7684;
}

.lp-merits__cases ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lp-merits__cases li {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.lp-merits__cases sub {
	font-size: 0.68em;
}

.lp-merits__cases li > span {
	font-size: 14.5px;
	font-weight: 600;
	color: #1b2430;
	min-width: 74px;
}

.lp-merits__cases em {
	font-style: normal;
	font-size: 19px;
	font-weight: 900;
	color: var(--lp-red);
	line-height: 1.2;
}

.lp-merits__card--co2 > .lp-merits__text {
	margin-top: 14px;
}

/* --- 5-3〜5-8: Small cards --- */
.lp-merits__small-layout {
	margin-top: 8px;
}

/* --- CTA: WPダウンロード（メリット内統合） --- */

/* ========================================
   Section 7: デメリット
   ======================================== */
.lp-demerits {
	background: #f8fafc;
}

.lp-demerits__inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 24px;
}

.lp-demerits__header {
	text-align: center;
	margin-bottom: 48px;
}

.lp-demerits__header h2 {
	font-size: 44px;
	font-weight: 900;
	color: #073b82;
	margin-bottom: 16px;
}

.lp-demerits__header p {
	font-size: 16px;
	line-height: 1.8;
	color: #475569;
}

.lp-demerits__list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.lp-demerits__card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 32px;
	background: var(--lp-white);
	border-radius: 16px;
	padding: 40px 44px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.lp-demerits__content h3 {
	font-size: 28px;
	font-weight: 900;
	color: #073b82;
	line-height: 1.35;
	margin-bottom: 12px;
}

.lp-demerits__content > p {
	font-size: 16px;
	line-height: 1.85;
	color: #334155;
	margin-bottom: 20px;
}

.lp-demerits__solution {
	position: relative;
	background: #ffffff;
	border: 1px solid #e5e9f0;
	border-left: 3px solid var(--lp-navy);
	border-radius: 10px;
	padding: 20px 24px;
	overflow: hidden;
}

.lp-demerits__solution-watermark {
	position: absolute;
	right: -14px;
	bottom: -22px;
	width: 120px;
	height: 120px;
	opacity: 0.06;
	pointer-events: none;
}

.lp-demerits__solution-text {
	position: relative;
}

.lp-demerits__solution-text strong {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 21px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--lp-navy);
	letter-spacing: 0.03em;
}

.lp-demerits__solution-text strong::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e3e9f1;
	margin-left: 4px;
}

.lp-demerits__solution-text strong img {
	width: 30px;
	height: 30px;
}

/* 定時運航率の実績スタット行 */
.lp-demerits__solution-text .otd-stat {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 2px 0 6px;
}

.lp-demerits__solution-text .otd-stat__label {
	font-size: 14px;
	font-weight: 700;
	color: #1b2430;
}

.lp-demerits__solution-text .otd-stat__num {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--lp-red);
	line-height: 1;
}

.lp-demerits__solution-text .otd-stat__num em {
	font-style: normal;
	font-size: 16px;
	margin-left: 1px;
}

.lp-demerits__solution-text .otd-stat__note {
	font-size: 11.5px;
	color: #6b7684;
}

.lp-demerits__solution-text span {
	font-size: 15.5px;
	line-height: 1.8;
	color: #334155;
}


/* ========================================
   Section 8: 国内主要航路
   ======================================== */
.roro-route-section {
	padding: 48px 0 72px;
	background: #ffffff;
}

.roro-route-container {
	width: min(1120px, calc(100% - 64px));
	margin: 0 auto;
}

/* 見出し */
.route-header {
	text-align: center;
	margin-bottom: 20px;
}

.route-header h2 {
	margin: 0 0 14px;
	color: #073b82;
	font-size: 44px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.08em;
}

.route-header p {
	margin: 0;
	color: #111827;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.8;
}

/* 数字実績 */
.route-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	margin: 20px 0 30px;
}

.route-stat {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 12px;
	min-width: 170px;
	white-space: nowrap;
}

.route-stat-wide {
	min-width: 340px;
}

.stat-number {
	color: var(--lp-red, #e60012);
	font-size: clamp(70px, 8vw, 98px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.02em;
}

.stat-unit {
	color: #073b82;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.stat-small {
	color: #073b82;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}

.stat-divider {
	width: 1px;
	height: 66px;
	background: #b9c8dc;
}

/* 地図カード */
.map-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: linear-gradient(135deg, #e8f5ff 0%, #dff0ff 100%);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.map-card .route-map-image {
	display: block;
	width: 100%;
	height: auto;
}

/* 地図プレースホルダー */
.map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 660px;
	color: #6b8ab5;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	line-height: 2;
}

/* 凡例 */
.map-legend {
	position: absolute;
	top: 34px;
	left: 36px;
	z-index: 2;
	min-width: 230px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #c6d5e8;
	border-radius: 6px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #111827;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.5;
}

.legend-item + .legend-item {
	margin-top: 12px;
}

.legend-line {
	display: inline-block;
	width: 28px;
	height: 4px;
	border-radius: 999px;
	background: var(--lp-red, #e60012);
}

.legend-dot {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #073b82;
}

/* 地図下説明 */
.route-description {
	margin: 26px 0 28px;
	text-align: center;
	color: #111827;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.9;
}

/* 船舶テーブル */
.ship-table-section {
	margin-top: 8px;
}

.ship-table-section h3 {
	margin: 0 0 12px;
	color: #0b4a9f;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.5;
}

.ship-table-wrap {
	overflow: hidden;
	border: 1px solid #d5e0ef;
	border-radius: 6px;
	background: #ffffff;
}

.ship-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.ship-table th {
	background: #0b4a9f;
	color: #ffffff;
	padding: 13px 12px;
	font-size: 17px;
	font-weight: 900;
	text-align: center;
	line-height: 1.4;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.ship-table th:last-child {
	border-right: none;
}

.ship-table td {
	padding: 13px 12px;
	color: #111827;
	font-size: 17px;
	font-weight: 500;
	text-align: center;
	line-height: 1.5;
	border-top: 1px solid #d5e0ef;
	border-right: 1px solid #d5e0ef;
}

.ship-table td:last-child {
	border-right: none;
}

.ship-table td:first-child {
	font-weight: 900;
}

.ship-table tr:nth-child(even) td {
	background: #fbfdff;
}

/* CTA */
.route-cta {
	position: relative;
	overflow: hidden;
	margin-top: 64px;
	padding: 76px 40px 72px;
	text-align: center;
	background: url('/_assets/images/roro-ship/banner-mid.jpg') center 25% / cover no-repeat;
	border-radius: 8px;
}

.route-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 20, 40, 0.62) 0%, rgba(8, 20, 40, 0.45) 55%, rgba(8, 20, 40, 0.25) 100%);
}

.route-cta > * {
	position: relative;
	z-index: 1;
}

.route-cta .u-button,
.route-cta .u-button a,
.route-cta .u-button span {
	text-shadow: none;
}

.route-cta .u-button a {
	background: #ffffff;
	border-radius: 999px;
}

.route-cta h3 {
	margin: 0 0 8px;
	color: #ffffff;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.06em;
}

.route-cta p {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.7;
}

.route-cta .cta-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px 42px;
}

/* CTA内 u-button のテキスト/アイコン重なり防止 */
.route-cta .u-button > *,
.final-cta .u-button > * {
	padding-right: 56px;
	text-align: center;
}



/* ========================================
   Section 9: 今後の動向と2030年問題 + 最終CTA
   ======================================== */
.roro-future-section {
	padding: 42px 0 64px;
	background: #ffffff;
}

.roro-future-container {
	width: min(1320px, calc(100% - 56px));
	margin: 0 auto;
}

/* 見出し */
.future-header {
	text-align: center;
	margin-bottom: 28px;
}

.future-header h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	padding-bottom: 18px;
	color: #073b82;
	font-size: 44px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

.future-header h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 48px;
	height: 4px;
	background: var(--lp-red, #e60012);
	border-radius: 999px;
	transform: translateX(-50%);
}

/* 2024/2030 比較ビジュアル */
.problem-visual {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background: linear-gradient(90deg, #f6f9fc 0%, #ffffff 50%, #f6f9fc 100%);
}

.problem-bg {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 34%;
	opacity: 0.32;
	z-index: 0;
}

.problem-bg-left {
	left: 0;
}

.problem-bg-right {
	right: 0;
}

.problem-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.problem-bg-left img {
	object-position: center left;
}

.problem-bg-right img {
	object-position: center right;
}

.problem-bg-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #e8edf4 0%, #d4dce8 100%);
}

.problem-inner {
	position: relative;
	z-index: 1;
	min-height: 280px;
	display: grid;
	grid-template-columns: 315px 175px 315px;
	justify-content: center;
	align-items: center;
	gap: 26px;
}

.problem-card {
	min-height: 250px;
	padding: 26px 32px 24px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(216, 225, 239, 0.9);
	border-radius: 5px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
	text-align: center;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.problem-card h3 {
	margin: 0 0 10px;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.3;
}

.problem-card-blue h3 {
	color: #073b82;
}

.problem-card-red h3 {
	color: var(--lp-red, #e60012);
}

.problem-label {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 900;
	color: #073b82;
	line-height: 1.4;
}

.problem-card-red .problem-label {
	color: #111827;
}

.problem-number {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 5px;
	margin-bottom: 8px;
}

.problem-card-blue .problem-number {
	color: #073b82;
}

.problem-card-red .problem-number {
	color: var(--lp-red, #e60012);
}

.problem-number .number {
	font-size: 74px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.02em;
}

.problem-number .percent {
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
}

.problem-number .shortage {
	margin-left: 4px;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.problem-line {
	width: 100%;
	height: 1px;
	background: #b8c2d0;
	margin: 14px 0;
}

.problem-note {
	margin: 0;
	color: #073b82;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.6;
}

.problem-arrow {
	position: relative;
	z-index: 2;
	height: 76px;
	background: var(--lp-red, #e60012);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.problem-arrow::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -44px;
	width: 0;
	height: 0;
	border-top: 62px solid transparent;
	border-bottom: 62px solid transparent;
	border-left: 44px solid var(--lp-red, #e60012);
	transform: translateY(-50%);
}

/* リード文 */
.future-lead {
	margin: 36px auto 34px;
	text-align: center;
	color: #111827;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.9;
}

/* 進化と政策支援 */
.support-section {
	margin: 68px auto 0;
	max-width: 1072px;
}

.support-text {
	margin-bottom: 32px;
}

.support-text h3 {
	position: relative;
	margin: 0 0 16px;
	padding-bottom: 18px;
	text-align: center;
	color: #073b82;
	font-size: 44px;
	line-height: 1.35;
	font-weight: 900;
	line-height: 1.35;
	letter-spacing: 0.06em;
}

.support-text h3::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 54px;
	height: 4px;
	background: var(--lp-red, #e60012);
	border-radius: 999px;
}

.support-text p {
	max-width: 760px;
	margin: 0 auto 14px;
	text-align: center;
	color: #111827;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.95;
}

/* カード3枚 */
.support-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.support-card {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid #d8e1ef;
	border-radius: 5px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
}

.support-card-head {
	padding: 18px 18px 12px;
}

.support-num {
	display: block;
	color: var(--lp-red, #e60012);
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.support-card h4 {
	margin: 0;
	color: #073b82;
	font-size: 19px;
	font-weight: 900;
	line-height: 1.35;
	min-height: 2.7em; /* 常に2行分を確保して3枚の画像位置を揃える */
}

.support-image {
	aspect-ratio: 16 / 7;
	overflow: hidden;
}

.support-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.support-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #dce8f5 0%, #c4d6eb 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8ba5c4;
	font-size: 14px;
	font-weight: 700;
}

.support-image-placeholder::after {
	content: attr(data-label);
}

.support-card > p {
	margin: 0;
	padding: 14px 18px 18px;
	color: #111827;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.8;
}

/* 最終CTA */
.final-cta {
	position: relative;
	overflow: hidden;
	margin-top: 64px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	min-height: 520px;
	border-radius: 0;
	background: #eaf4fb;
	display: flex;
	align-items: center;
	justify-content: center;
}

.final-cta-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 34%;
}

.final-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(231, 242, 250, 0.15) 0%, rgba(231, 242, 250, 0.90) 34%, rgba(231, 242, 250, 0.90) 66%, rgba(231, 242, 250, 0.2) 100%);
}

.final-cta-content {
	position: relative;
	z-index: 1;
	padding: 34px 48px 24px;
	text-align: center;
}

.final-cta h3 {
	margin: 0 0 18px;
	color: #073b82;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.final-cta > .final-cta-content > p {
	margin: 0;
	color: #073b82;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
}

.final-cta-buttons .u-button > a {
	background: #fff;
}

.final-cta-buttons {
	display: grid;
	grid-template-columns: minmax(0, 380px);
	justify-content: center;
	gap: 22px;
	max-width: 780px;
	margin: 24px auto 8px;
}


.final-note {
	margin-top: 6px !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	color: #073b82 !important;
}

/* ========================================
   Scroll Reveal（スクロールでふわっと表示）
   ======================================== */
body.reveal-ready .js-reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	transition-delay: var(--reveal-delay, 0s);
}

body.reveal-ready .js-reveal--x {
	transform: translateX(-14px);
}

body.reveal-ready .js-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	body.reveal-ready .js-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --- Timeline reveal（線が伸びて点が生まれる） --- */
body.reveal-ready .js-reveal-timeline::before {
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.9s ease-out 0.1s;
}

body.reveal-ready .js-reveal-timeline.is-visible::before {
	transform: none;
}

body.reveal-ready .js-reveal-timeline .lp-about__timeline-item {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

body.reveal-ready .js-reveal-timeline .lp-about__timeline-dot {
	transform: scale(0.4);
	transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}

body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item {
	opacity: 1;
	transform: none;
}

body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-dot {
	transform: none;
}

body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(1),
body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(1) .lp-about__timeline-dot {
	transition-delay: 0.05s;
}

body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(2),
body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(2) .lp-about__timeline-dot {
	transition-delay: 0.4s;
}

body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(3),
body.reveal-ready .js-reveal-timeline.is-visible .lp-about__timeline-item:nth-child(3) .lp-about__timeline-dot {
	transition-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {
	body.reveal-ready .js-reveal-timeline::before,
	body.reveal-ready .js-reveal-timeline .lp-about__timeline-item,
	body.reveal-ready .js-reveal-timeline .lp-about__timeline-dot {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* --- About: 左テキスト・右写真 --- */
.lp-about__intro {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 8px;
}

.lp-about__intro .lp-about__lead {
	max-width: none;
	margin-bottom: 0;
}

.lp-about__photo {
	position: relative;
	margin: 0;
}

.lp-about__photo::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 14px;
	right: -14px;
	bottom: 8px;
	background: rgba(16, 68, 134, 0.08);
	border-radius: var(--lp-radius);
}

.lp-about__photo img {
	position: relative;
	width: 100%;
	height: auto;
	border-radius: var(--lp-radius);
	box-shadow: 0 8px 24px rgba(13, 58, 117, 0.14);
	display: block;
}

.lp-about__photo figcaption {
	position: relative;
	margin-top: 12px;
	font-size: 12px;
	color: var(--lp-text-light);
	text-align: right;
}


/* --- フッター前: サイト内リンクブロック（内部リンク/クローラビリティ） --- */
.lp-sitelinks {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	/* 祖先の下余白（.roro-future-section 64px + .g-wrapper 100px）を相殺してフッターに密着させる */
	margin-bottom: -164px;
	padding: 56px 24px 64px;
	background: #f7f9fc;
}

.lp-sitelinks__title {
	margin: 0 0 24px;
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	color: var(--lp-navy);
}

.lp-sitelinks__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
}

.lp-sitelinks__grid a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 18px 18px;
	background: #ffffff;
	border: 1px solid #e2e8f1;
	border-radius: 8px;
	color: var(--lp-navy);
	font-size: 14.5px;
	font-weight: 700;
	text-decoration: none;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lp-sitelinks__grid a::after {
	content: '→';
	color: var(--lp-red);
	font-weight: 800;
	flex-shrink: 0;
}

.lp-sitelinks__grid a:hover {
	box-shadow: 0 6px 16px rgba(13, 58, 117, 0.12);
	transform: translateY(-2px);
}

/* 船舶表のSP専用注記（列間引きの説明） */
.ship-table-note-sp {
	display: none;
	margin: 8px 0 0;
	font-size: 12px;
	color: #8a94a3;
}

/* 表ヘッダーの折り返しは単語境界のみ */
.ship-table .th-word {
	display: inline-block;
	white-space: nowrap;
}
