@charset "utf-8";
/* CSS Document */

/* ===========================================================
 * 街並ページ「路線でたどる」  /css/machi_nav.css
 * machi_nav.php が読み込む。基本はスマホ、980px以上をPC
 * =========================================================== */
 
/* -------------------------
 枠・見出し（サイドの「街並画像」と同じ色・アイコン）
--------------------------*/
.mnBlock{
	margin: 0 0 4vw;
	padding: 0 0 16px;
	background: #fff;
	color: #1e3a56;
	font-size: 14px;
	line-height: 1.5;
}
 
.mnHead{
	margin: 0;
	padding: 4.5vw 0 4.5vw 2vw;
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	text-indent: 40px;
	color: #fff;
	background: #2aa9ca url("/img/common/icon_menu01.png") 2vw center /32px no-repeat;
}
 
/* -------------------------
 路線ごとの段
--------------------------*/
.mnLine{
	padding: 16px 0 0;
}
 
.mnLineHead{
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin: 0 12px 8px;
}
 
.mnLineName{
	font-size: 16px;
	font-weight: bold;
}
 
.mnAll{
	flex-shrink: 0;
	font-size: 12px;
}
 
/* 横スクロールする帯 */
.mnScroll{
	overflow-x: auto;
	padding: 0 12px 8px;
	-webkit-overflow-scrolling: touch;
}
 
.mnStrip{
	position: relative;
	display: flex;
	align-items: flex-start;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
}
 
/* 路線の線：左端の駅の中心から右端の駅の中心まで */
.mnStrip::before{
	content: "";
	position: absolute;
	left: 38px;
	right: 38px;
	top: 35px;
	height: 3px;
	background: #2aa9ca;
}
 
/* -------------------------
 駅
 アイコンの枠の高さをそろえ、駅名が一直線に並ぶようにする
--------------------------*/
.mnNode{
	position: relative;
	flex-shrink: 0;
	width: 76px;
	text-align: center;
}
 
.mnNode a{
	display: block;
	text-decoration: none;
}
 
.mnIcon{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
}
 
/* 撮影済み：丸い写真 */
.mnShot img{
	position: relative;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	border: 3px solid #2aa9ca;
	border-radius: 50%;
	background: #eee;
	object-fit: cover;
}
 
.mnShot a:hover img{
	opacity: 0.8;
}
 
/* 未撮影：白抜きの小さな丸 */
.mnDot{
	position: relative;
	width: 14px;
	height: 14px;
	box-sizing: border-box;
	border: 3px solid #2aa9ca;
	border-radius: 50%;
	background: #fff;
}
 
/* いまここ */
.mnHereDot{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #2aa9ca;
	box-shadow: 0 0 0 4px #d4eef5;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}
 
/* 起点・終点：線が縦の棒で止まる */
.mnBar{
	position: relative;
	width: 5px;
	height: 28px;
	border-radius: 2px;
	background: #2aa9ca;
}
 
/* ○○方面：矢印 */
.mnArrow{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: #fff;
	color: #2aa9ca;
}
 
/* 駅名 */
.mnName{
	display: block;
	margin-top: 4px;
	padding: 0 2px;
	font-size: 12px;
	line-height: 1.3;
	color: #5a6b7b;
}
 
.mnShot .mnName,
.mnHere .mnName,
.mnTerm .mnName,
.mnDir .mnName{
	font-weight: bold;
}
 
.mnShot a .mnName{ color: #0066cc; }
.mnHere .mnName  { color: #1e3a56; }
 
.mnTerm .mnName,
.mnDir .mnName{
	white-space: nowrap;
}
 
 
/* -------------------------
 以下PC
--------------------------*/
@media
screen and (min-width: 980px){
 
.mnBlock{
	margin: 0 0 24px;
	padding: 0 0 22px;
}
 
.mnHead{
	padding: 20px 0 16px 0;
	line-height: 26px;
	text-indent: 64px;
	background: #2aa9ca url("/img/common/icon_menu01.png") 15px 10px /40px no-repeat;
}
 
.mnLine{
	padding: 20px 24px 0;
}
 
.mnLineHead{
	margin: 0 0 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e8eaec;
	gap: 12px;
}
 
.mnLineName{ font-size: 17px; }
.mnAll     { font-size: 13px; }
 
.mnScroll{
	padding: 0 0 4px;
}
 
.mnStrip::before{
	left: 44px;
	right: 44px;
	top: 41px;
}
 
.mnNode{ width: 88px; }
.mnIcon{ height: 84px; }
 
.mnShot img{
	width: 74px;
	height: 74px;
}
 
.mnHereDot{
	width: 78px;
	height: 78px;
}
 
.mnName{
	font-size: 13px;
}
 
}