/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 13 2026 | 11:49:50 */
@charset 'utf-8';
@import url( 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap' );

/* root
-------------------------------------------------- */
:root {
	--font-sans: 'Noto Sans JP', sans-serif;
	--font-aw: 'Font Awesome 7 Free';
}


/* common - 基本設定
-------------------------------------------------- */
html { scroll-behavior: smooth; }
body.single-stations { font-family: var( --font-sans ); }


body.single-stations .header_custom, body.archive .header_custom {
	display: none;
}
body.single-stations * {
	box-sizing: border-box;
}
body.single-stations .main_container {
	padding: 30px 30px 30px 10px;
}
body.single-stations .side_content {
	flex-shrink: 0;
	padding: 20px 30px;
	border-right: 1px solid rgba( 125, 125, 125, .3 );
	background: rgba( 245, 245, 245, .6 );
	box-sizing: border-box;
}

body.single-stations .wp-site-blocks {
	padding: 0 !important;
}

.stations_info_block {
	margin: 0;
	border-bottom: 1px solid rgba( 125, 125, 125, .3 );
}

.shadow_block > .wp-block-column {
	box-shadow: 0 0 6px rgba( 0, 0, 0, .2 );
}

body.archive #header {
	display: none;
}

/* title - タイトル
-------------------------------------------------- */
.ttl_main_station {
	font-family: var( --font-sans );
	font-weight: 700;
}
.ttl_main_station span {
	display: inline-block;
	margin-left: 20px;
	padding: 5px 10px;
	font-size: 16px;
    color: #ff8c00;
	line-height: 1;
    border: 1px solid #ff8c00;
	border-radius: 5px;
}

.ttl_side_station {
	padding: 15px;
}

.ttl_your_town {
	margin-bottom: 10px;
	font-weight: bold;
}
.ttl_your_town::after {
	content: 'ってどんな街？';
}

/* ヘッダー - header
-------------------------------------------------- */
/* ヘッダー全体 */
.header_stations {
	background-color: #fff;
	border-bottom: 1px solid rgba( 125, 125, 125, .3 );
	margin-top: 0 !important;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 1000;
}
body.logged-in.admin-bar .header_stations {
	top: 32px;
}

.header_stations .header-container {
	margin: 0 auto;
	padding: 0 20px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ロゴ */
.header_stations .logo { margin: 0; }
.header_stations .logo a img {
	width: 300px;
	height: auto;
}

/* ハンバーガーボタン（初期値：非表示） */
.header_stations .menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
	z-index: 1001;
}

/* ナビゲーションメニュー（PC用） */
.header_stations .nav-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	width: 640px;
	gap: 30px;
	list-style: none;
}

.header_stations .nav-item a {
	position: relative;
	font-size: 14px;
	color: #555;
	transition: color 0.3s;
	white-space: nowrap;
	text-decoration: none;
	font-weight: 600;
	transition: all ease .6s;
}

/* 「駅から探す」のアクティブ状態（緑の下線） */
.header_stations li:not(:last-of-type) a::after {
	background-color: #00b06b;
	bottom: -25px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	width: 100%;
}
.header_stations li:not(:last-of-type) a:hover::after {
	transform: scale(1, 1);
}

/* LINEで相談ボタン */
.header_stations .line-btn {
	background-color: #06c755;
	color: #fff !important;
	padding: 10px 25px;
	border-radius: 6px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 5px rgba(0, 176, 107, 0.3);
	transition: opacity 0.3s;
}

.header_stations .line-btn:hover {
	opacity: 0.9;
}

/* --- レスポンシブ（スマートフォン用：768px以下） --- */
@media screen and (max-width: 768px) {
	.header_stations .menu-btn {
		display: block; /* SP時にハンバーガーボタンを表示 */
	}
	.header_stations .header-container { padding: 0 10px; }
	body.logged-in.admin-bar .header_stations {
		top: 46px;
	}

	/* ナビメニューをドロワー（スライド）表示にする */
	.header_stations .nav {
		position: fixed;
		top: 0;
		right: -100%; /* 初期状態は画面外に隠す */
		width: 75%;
		max-width: 300px;
		height: 100vh;
		background-color: #fff;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease-in-out;
		padding-top: 80px;
		z-index: 1000;
	}

	.header_stations .nav.active {
		right: 0; /* クラスが付与されたら画面内にスライドイン */
	}

	.header_stations .nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding-left: 0;
		width: 100%;
	}

	.header_stations .nav-item {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.header_stations .nav-item a {
		display: block;
		padding: 16px 20px;
		font-size: 15px;
	}

	/* SP時のアクティブ下線をスマホ用に変更（左側の縦線や背景色などにする場合） */
	.header_stations .nav-item.active::after {
		display: none; /* PC用の下線は消す */
	}

	.header_stations .nav-item.active {
		background-color: #f7fcf9;
	}

	/* SP時のLINEボタンの調整 */
	.header_stations .line-btn-item {
		padding: 20px;
		border-bottom: none;
	}

	.header_stations .line-btn {
		width: 100%;
		justify-content: center;
		padding: 12px;
	}
}

.guide_link a {
	display: block;
	padding: 20px;
    border: 1px solid rgba(125, 125, 125, .3);
    border-radius: 5px;
	text-decoration: none;
    background: #fff;
	transition: all ease .6s;
}
.guide_link a h2 {
	margin-top: 0;
	font-size: 16px;
	font-weight: 600;
}
.guide_link a h2::before {
	margin-right: 5px;
	content: '\f518';
	font-weight: 900;
	font-family: 'Font Awesome 7 Free';
	color: #028760;
}

.guide_link a p {
	margin-bottom: 0;
	font-size: 12px;
	line-height: 1.5;
}

.guide_link a:hover {
	background: #028760;
}
.guide_link a:hover h2, .guide_link a:hover h2::before, .guide_link a:hover p { color: #fff; }

/* ACFフィールド
-------------------------------------------------- */
.taxonomy-line.stations_line_tag.wp-block-post-terms { display: none; }

/* --- 家賃目安等 --- */
.data_field > .wp-block-column {
	position: relative;
	box-sizing: border-box;
	padding: 20px 20px 20px 50px;
	border-radius: 10px;
}
.data_field > .wp-block-column::before {
	position: absolute;
	top: 20px;
	left: 15px;
	content: '\f238';
	font-size: 26px;
	font-weight: 900;
	font-family: 'Font Awesome 7 Free';
	line-height: 1;
}
.data_field > .wp-block-column:first-of-type::before { content: '\f157'; }
.data_field > .wp-block-column:last-of-type::before { content: '\f363'; }

.acf_data, .additional_data {
	margin-top: 7.5px;
	font-family: var( --font-sans );
	line-height: 1;
}
.acf_data::after {
	content: '万円';
	margin-left: 5px;
	font-weight: 600;
    font-size: 16px;
}
.acf_data.time_data::after { content: '分'; }
.acf_data.count_data::after { content: '回'; }


.acf_data span {
	font-family: var( --font-sans );
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
}

.additional_data {
	line-height: 1;
}
.additional_data span {
	font-size: 12px;
	font-weight: 600;
	color: #aaa;
}

/* --- おすすめ度 --- */
.recommend_block {
	box-sizing: border-box;
	padding: 20px;
	gap: 0;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba( 0, 0, 0, .2 );
}
.recommend_block > div:not(:last-of-type) {
	border-right: 1px solid rgba( 125, 125, 125, .3 );
}
.recommend_block .wp-block-acf-field-blocks-acf-text {
	margin-top: 5px;
	font-weight: bold;
	text-align: center;
}

.recommend_star {
	margin-top: 10px;
	font-size: 14px;
	text-align: center;
	line-height: 1;
}
.recommend_star .fa-solid.fa-star, .recommend_star .fa-solid.fa-star-half-stroke {
	color: #fabf14;
}
.recommend_star i.fa-regular.fa-star {
	color: rgba( 125, 125, 125, .5 );
}



/* --- ポイント・エリアの説明等 --- */
.onepoint_block { margin-bottom: 40px; }
.onepoint_block > .wp-block-column {
	box-sizing: border-box;
	padding: 20px;
	border-radius: 10px;
}

.field-points, .field-towninfo_content { margin-top: 10px; }
.list_points {
	margin: 0;
	padding-left: 0;
	list-style: none;
}
.list_points > li {
	display: flex;
	align-items: flex-start;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.75;
}
.list_points > li::before {
	margin-right: 10px;
	flex-shrink: 0;
	content: '\f058';
	font-weight: 900;
	font-family: var( --font-aw );
	color: #028760;
}

.field-towninfo_content span {
	font-size: 14px;
}

.onepoint_block figure img {
	border-radius: 10px;
}

.stations_posts_list { margin-bottom: 30px; }
.stations_posts_list .o-posts-grid-post {
	border-radius: 10px !important;
	background: #fff !important;
	box-shadow: 0 0 6px rgba( 0, 0, 0, .2 ) !important;
}
.stations_posts_list a {
	display: block;
	padding: 20px;
	font-size: 18px !important;
	font-weight: 600;
	text-align: center;
}
.stations_posts_list a:hover { text-decoration: none !important; }
.stations_posts_list .o-posts-grid-post-body.is-full {
	padding: 0;
}

/* サイドメニュー
-------------------------------------------------- */
.list_stations {
	margin-top: 0 !important;
	border-top: 1px solid rgba( 125, 125, 125, .6 );
}
.list_stations h4 {
	line-height: 1 !important;
}
.list_stations h4 a {
	display: flex;
	justify-content: space-between;
	padding: 15px;
	font-weight: 500;
	transition: all ease .6s !important;
}
.list_stations h4 a::after {
	content: '\f105';
	font-weight: 900;
	font-family: var( --font-aw );
	color: rgba( 125, 125, 125, .6 );
}
.list_stations h4 a:hover {
	color: #00a760 !important;
	background: rgba( 0, 0, 0, .05 );
	text-decoration: none !important;
}
.list_stations h4 a:hover::after {
	color: #00a760;
}

.search_line {
	padding: 20px;
	border: 1px solid rgba( 125, 125, 125, .3 );
	border-radius: 5px;
	background: #fff;
}

.search_line h2 { margin-bottom: 20px; }
.search_line .wp-block-terms-query,
.search_line .wp-block-terms-query ul > li,
.search_line .wp-block-terms-query ul > li p {
	margin: 0;
}
.search_line .wp-block-terms-query ul > li:not(:last-of-type) {
	margin-bottom: 10px;
}
.search_line .wp-block-terms-query ul > li p a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all ease .6s;
}
.search_line .wp-block-terms-query ul > li p a:hover {
	color: #00a760;
}


/* 一覧ページ
-------------------------------------------------- */
.archive_wrapper {
	border-bottom: 1px solid rgba(125, 125, 125, 0.3);
}
.archive_wrapper > * { box-sizing: border-box; }

.station_post_list {
	display: flex;
	flex-wrap: wrap;
	gap: 3.5%;
	margin: 30px 0;
	padding-left: 0;
	list-style: none;
}
.station_post_list > li {
	margin-bottom: 30px;
	width: 31%;
	border-radius: 10px;
	box-shadow: 0 0 6px rgba(0, 0, 0, .2);
}
.station_post_list > li a {
	display: block;
	padding: 20px;
	text-decoration: none;
}

.station_post_list > li h3 {
	display: flex;
	align-items: center;
	margin: 0;
	font-size: 21px;
	font-weight: bold;
}
.station_post_list > li h3::before {
	margin-right: 15px;
	content: '\f238';
    font-size: 26px;
    font-weight: 900;
    font-family: 'Font Awesome 7 Free';
    line-height: 1;
}


.list_pickup {
	list-style: none;
	margin: 15px 0;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
}
.list_pickup > li {
	width: 50%;
}
.list_pickup > li:first-of-type {
	border-right: 1px dashed rgba(125, 125, 125, .6);
}
.list_pickup > li:last-of-type {
	padding-left: 10px;
}

.list_pickup > li h4 {
	margin: 0 0 5px;
	font-size: 16px;
	font-weight: bold;
	color: #ff8c00;
}
.list_pickup > li h4::before {
	margin-right: 5px;
	content: '\f157';
    font-size: 16px;
    font-weight: 900;
    font-family: 'Font Awesome 7 Free';
    line-height: 1;
}
.list_pickup > li:last-of-type h4::before { content: '\f238'; }

.list_pickup > li span.value {
	padding-left: 10px;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
}
.list_pickup > li span.value::after {
	content: '万円';
    margin-left: 5px;
    font-weight: 600;
    font-size: 16px;
}
.list_pickup > li:last-of-type span.value::after { content: '分'; }

.btn_more {
	margin: 0;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border-radius: 5px;
	background: rgba( 40, 75, 102, 1 );
	transition: all ease .6s;
}
.station_post_list > li a:hover .btn_more {
	background: #ff8c00;
}

.ttl_sidemenu {
	margin: 0;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid rgba(125, 125, 125, .6);
}

/* 全体のレイアウト（左右2カラム） */
.archive_wrapper {
	display: flex;
	margin: 0 auto;
}

/* 左側：アンカーメニュー */
.term_sidemenu {
	position: sticky;
	top: 40px;
	flex-shrink: 0;
	padding: 20px 30px;
	width: 300px;
	border-right: 1px solid rgba(125, 125, 125, .3);
    background: rgba(245, 245, 245, .6);
}

.anchor_list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.anchor_list li {
	margin-bottom: 0;
}

.anchor_list a {
	display: flex;
    justify-content: space-between;
    padding: 10px 15px;
	font-size: 16px;
    font-weight: 500;
	text-decoration: none;
    transition: all ease .6s;
}
.anchor_list a:hover {
    color: #00a760 !important;
    background: rgba(0, 0, 0, .05);
    text-decoration: none !important;
}
.anchor_list a::after {
    content: '\f105';
    font-weight: 900;
    font-family: var(--font-aw);
    color: rgba(125, 125, 125, .6);
}

.anchor_list a:hover {
	background: #e0e0e0;
}

/* 右側：メインコンテンツ */
.term_main_contents {
	flex-grow: 1;
	padding: 30px;
}
.ttl_termname {
	margin: 0;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: bold;
    border-bottom: 1px solid rgba(125, 125, 125, .3);
}

.term-section {
	margin-bottom: 60px; /* セクションごとの余白 */
}

.btn_line_contact a.wp-block-button__link {
	position: relative;
	min-height: 90px;
}
.btn_line_contact a.wp-block-button__link::after {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY( -50% );
	content: '\f105';
	font-weight: 900;
	font-family: 'Font Awesome 7 Free';
}

.list_other_contact {
	margin: 5px 0 0;
	padding-left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
}
.list_other_contact > li { flex: 1; }
.list_other_contact > li a {
	display: block;
	padding: 5px 20px;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
	background: #fff;
	border: 1px solid rgba(125, 125, 125, .3);
	border-radius: 5px;
}
.list_other_contact > li a::before {
	margin-right: 5px;
	content: '\f0e0';
	font-weight: 900;
	font-family: 'Font Awesome 7 Free';
}
.list_other_contact > li:last-of-type a::before { content: '\f095'; }


@media( max-width: 1280px ) {
	body.single-stations .side_content {
		padding: 20px 25px;
		flex-basis: 250px !important;
	}
}

@media( max-width: 768px ) {
	body.single-stations .main_container {
		padding: 20px;
	}
	.stations_info_block {
		flex-direction: column-reverse;
	}
	.data_field.wp-block-columns > div:not(:last-of-type) {
		flex-basis: 48% !important;
	}
	.data_field.wp-block-columns > div:last-of-type p {
		display: inline-block;
		width: fit-content;
	}
	.data_field.wp-block-columns > div:last-of-type p:first-of-type {
		margin-right: 20px;
	}
	.data_field > .wp-block-column {
		padding: 20px 20px 20px 65px;
	}
	.data_field > .wp-block-column::before { left: 25px; }
	
	.recommend_block.wp-block-columns > div.wp-block-column {
		flex-basis: 25% !important;
	}
	
	.btn_line_contact a.wp-block-button__link {
		min-height: auto;
	}
	.list_other_contact > li a {
		padding: 10px 20px;
		font-size: 14px;
	}
	
	.archive_wrapper {
		flex-direction: column-reverse;
	}
	.term_main_contents {
		padding: 20px;
	}
	.term_sidemenu { width: 100%; }
	.station_post_list { gap: 2%; }
	.station_post_list > li {
		margin-bottom: 15px;
		width: 49%;
	}
}
@media( max-width: 480px ) {
	body.single-stations .main_container {
		padding: 20px 10px;
	}
	body.single-stations .side_content {
		padding: 20px 10px;
	}
	
	.header_stations .logo a img { width: 200px; }
	
	.data_field { gap: 1rem; }
	.data_field.wp-block-columns > div:not(:last-of-type) {
		flex-basis: 45% !important;
	}
	.data_field > .wp-block-column {
		padding: 15px 20px 15px 55px;
	}
	.data_field > .wp-block-column::before {
		left: 20px;
	}
	.data_field.wp-block-columns > div:last-of-type p:first-of-type {
		margin-right: 10px;
	}
	
	.recommend_block.wp-block-columns > div.wp-block-column {
		padding: 10px 0;
        flex-basis: 50% !important;
    }
	.recommend_block > div:not(:last-of-type) {
		border-right: none;
	}
	.recommend_block > div:nth-child(odd) {
		border-right: 1px solid rgba( 125, 125, 125, .3 );
	}
	.recommend_block > div:first-of-type, .recommend_block > div:nth-child(2) {
		border-bottom: 1px solid rgba( 125, 125, 125, .3 );
	}
	
	.stations_posts_list a {
		padding: 10px 20px;
	}
	
	.list_other_contact {
		flex-wrap: wrap;
		flex-direction: column;
	}
	.list_other_contact > li {
		width: 100%;
	}
	
	.ttl_termname { font-size: 21px; }
	.station_post_list > li {
		width: 100%;
	}
}