@charset "UTF-8";

.acc-h2 {
	width: 100%;
	background: #fff;
	/*背景色（白）*/
	border: 4px double #339ecc;
	/*囲み線（太さ 二重線 色）*/
	display: block;
	font-size: 16px;
	/*文字サイズ*/
	padding: 0.8rem;
	/*文字回りの余白（上下左右）*/
	position: relative;
}

.acc-h2:before {
	border-right: 30px solid #2181C8;
	/*折れ曲がり部の幅・色など*/
	border-bottom: 10px solid transparent;
	/*折れ曲がり部の高さなど*/
	content: '';
	left: -0.2rem;
	position: absolute;
	top: 105%;
}

/*H3見出し*/
.acc-h3 {
	background: #e9eff1;
	/*背景色（白）*/
	border-left: 4px double #339ecc;
	/*左線（太さ 二重線 色）*/
	display: block;
	font-size: 18px;
	/*文字サイズ*/
	padding: 0.7rem;
	/*文字回りの余白（上下左右）*/
}

/*H4見出し*/
.acc-h4 {
	border-top: 4px double #339ecc;
	/*上線（太さ 二重線 色）*/
	border-bottom: 1px solid #339ecc;
	/*下線（太さ 実線 色）*/
	display: block;
	font-size: 16px;
	/*文字サイズ*/
	padding: 0.4rem;
	/*文字回りの余白（上下左右）*/
}

.acc-map-flex {
	display: flex;
	justify-content: space-between;
}

.acc-map-flex-item {
	width: 49%;
	gap: 5px;
}

.sunosakimap {
	aspect-ratio: 4/3;
}
.acc-route {
	width: min(100%, 560px);
	margin: 40px auto;
	padding: 35px 30px;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 70, 120, 0.12);
}

/* 各ルート */
.acc-route-item {
	position: relative;
	padding: 14px 20px;
	margin-bottom: 42px;

	background: #f4fbff;
	border: 1px solid #d8edf8;
	border-radius: 12px;

	color: #174d68;
	font-size: 1.05rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.05em;
}

/* 左のポイント */
.acc-route-item::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);

	width: 10px;
	height: 10px;
	background: #28a9e0;
	border: 4px solid #fff;
	border-radius: 50%;

	box-shadow: 0 0 0 2px #28a9e0;
	z-index: 2;
}

/* 次のルートへ続く縦線 */
.acc-route-item:not(:last-of-type)::after {
	content: "";
	position: absolute;

	left: 28px;
	top: 100%;

	width: 2px;
	height: 44px;

	background: linear-gradient(
		to bottom,
		#28a9e0,
		#8dd8f5
	);
}

/* 東京湾フェリーだけアクセント */
.acc-route-ferry {
	background: linear-gradient(
		135deg,
		#edfaff,
		#dff5ff
	);
	border: 2px solid #38b6e9;
	color: #0077a8;
}

/* GOAL */
.acc-route-goal {
	position: relative;
	padding: 24px 20px;
	margin-top: 5px;

	background: linear-gradient(
		135deg,
		#0878b8,
		#21a7d8
	);

	border-radius: 15px;

	color: #fff;
	text-align: center;
	font-size: 1rem;
	line-height: 1.8;

	box-shadow: 0 6px 18px rgba(0, 110, 170, 0.25);
}

/* GOALラベル */
.acc-route-goal span {
	display: block;
	width: fit-content;
	margin: -38px auto 12px;
	padding: 4px 16px;

	background: #fff;
	border: 2px solid #1598cc;
	border-radius: 50px;

	color: #0878b8;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
}

/* 時間を強調 */
.acc-route-goal strong {
	display: inline-block;
	margin-top: 3px;

	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}
/***** 画面サイズ768px以上の指定 *****/
@media screen and (min-width:768px) {}

/***** 画面サイズ960px以上の指定 *****/
@media screen and (min-width:960px) {}