@charset "utf-8";
/* =====================================================================
   彼方号について（/about/）ページ固有スタイル
   ※ ヘッダー/フッター/見出し/MV共通ガワ/パンクズ/カード → common.css
     ここには about ページ専用のMV写真と本文スタイルを書く。
   ===================================================================== */

/* MV背景写真 */
.pageHead--about {
	background-image: url('/img/about/mv.jpg');
}


/* =========== セクション共通 =========== */
/* 背景を交互に（トップ準拠：FFF ／ 薄水色 #f4fafd） */
.greeting,
.facility {
	background: #FFF;
}

.strength,
.access {
	background: #f4fafd;
}


/* =========== 船長ご挨拶 =========== */
.greeting__body {
	display: flex;
	gap: 56px;
	align-items: flex-start;
}

.greeting__photo {
	flex: none;
	width: 38%;
}

.greeting__photo img {
	width: 100%;
	display: block;
	border-radius: 4px;
}

.greeting__text {
	flex: 1;
}

.greeting__lead {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.7;
	color: #1A1E24;
	margin-bottom: 28px;
}

.greeting__p {
	font-size: 16px;
	line-height: 2;
	color: #333B44;
	margin-bottom: 20px;
}

.greeting__sign {
	margin-top: 32px;
	text-align: right;
	font-size: 15px;
	color: #1A1E24;
}

.greeting__sign strong {
	font-size: 20px;
	margin-left: 6px;
}


/* =========== 彼方号の魅力 =========== */
.strength__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 28px;
}

.strength__card {
	background: #FFF;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(34,50,64,.06);
}

.strength__ph {
	aspect-ratio: 16/10;
	width: 100%;
	object-fit: cover;
	display: block;
}

.strength__card-body {
	padding: 24px 26px 28px;
}

.strength__card-num {
	font-family: 'Inter', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #b9d3e5;
	line-height: 1;
	margin-bottom: 8px;
}

.strength__card-title {
	font-size: 19px;
	font-weight: 700;
	color: #1A1E24;
	margin-bottom: 12px;
}

.strength__card-desc {
	font-size: 15px;
	line-height: 1.9;
	color: #6B7684;
}


/* =========== 船体・設備 =========== */
.facility__body {
	margin-bottom: 74px;
}

.facility__photo {
	margin-bottom: 50px;
}

.facility__subhead {
	margin: 0 0 20px;
}

.facility__photo img {
	width: 100%;
	display: block;
	border-radius: 4px;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.facility__spec {
	max-width: 620px;
}

/* 船体概要スペック表：1列目を広げ、2列目の広がりを抑えてバランス調整 */
.facility__spec .specList__row dt {
	width: 190px;
}

/* 設備ギャラリー（3カラム）*/
.facility__gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px 24px;
}

.facility__gitem {
	margin: 0;
}

.facility__gitem img {
	width: 100%;
	display: block;
	border-radius: 4px;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.facility__gcap {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.7;
	color: #6B7684;
}


/* =========== アクセス =========== */
.access__lead {
	color: #333B44;
	margin-bottom: 28px;
}

.accessGrid {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 32px;
}

.accessStep__thumb {
	position: relative;
}

.accessStep__thumb img {
	width: 100%;
	display: block;
	border-radius: 4px;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.accessStep__num {
	position: absolute;
	top: 0;
	left: 0;
	width: 34px;
	height: 34px;
	background: #223240;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 700;
	border-radius: 4px 0 4px 0;
}

.accessStep__txt {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.7;
	color: #333B44;
}


/* =========== タブレット（959px以下）=========== */
@media screen and (max-width: 959px){

.strength__grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	}

.facility__gallery {
	grid-template-columns: repeat(2, 1fr);
	}

.facility__gcap {
	font-size: 14px;
	}

.accessGrid {
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 20px;
	}

}


/* =========== SP（767px以下）=========== */
@media screen and (max-width: 767px){

.greeting__body {
	flex-direction: column;
	gap: 28px;
	}

.greeting__photo {
	width: 100%;
	}

.greeting__lead {
	font-size: 19px;
	margin-bottom: 20px;
	}

.greeting__p {
	font-size: 15px;
	margin-bottom: 16px;
	}

.strength__grid {
	grid-template-columns: 1fr;
	gap: 24px;
	}

.facility__body {
	flex-direction: column;
	gap: 24px;
	margin-bottom: 32px;
	}

.facility__spec {
	width: 100%;
	}

.facility__gallery {
	gap: 22px 16px;
	}

.facility__gcap {
	font-size: 14px;
	}

.accessGrid {
	grid-template-columns: 1fr;
	gap: 24px;
	}

.accessStep__txt {
	font-size: 14px;
	}

}
