@charset "utf-8";



/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700&display=swap');


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--primary-color: #000;				/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対として使う色*/

	--global-space: 3vw;				/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/

	--border-color1-maru: rgba(255,255,255,0.3) !important;	/*Q19用*/
}


/*Q19用
---------------------------------------------------------------------------*/
.step-maru.arrow-maru .list-maru::before,
.step-float-maru.arrow-maru .list-maru::before {
	color: var(--primary-inverse-color) !important;
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		html, body {
			font-size: 16px;	/*基準となるフォントサイズ。*/
		}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "M PLUS 1p", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	line-height: 3;		/*行間*/
	animation: opa1 0.2s 0.5s both;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
input {font-size: 1rem;}

/*ul,ol*/
ul,ol {margin-left: 1.5rem;margin-bottom: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*sectionが続く場合*/
section + section {
	margin-top: 8vw;	/*sectionの上に空けるスペース*/
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {color: inherit;transition: 0.3s;}

a:hover {
	opacity: 0.7;	/*マウスオン時に色を80%に薄くする*/
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	padding-left: var(--global-space);		/*左側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-right: var(--global-space);		/*右側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*header（サイトロゴが入った最上部のボックス）
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	padding-top: var(--global-space);		/*上側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	padding-bottom: var(--global-space);	/*下側の余白。css冒頭で指定しているglobal-spaceを読み込みます。*/
	text-align: center;		/*中のテキストをセンタリング*/
}

/*TELブロック（header内のaddress）*/
header address {
	font-style: normal;
}

	/*画面幅901px以上の追加指定*/
	@media screen and (min-width:901px) {
	
	/*headerブロック*/
	header {
		display: flex;	/*直接の子要素を横並びにする*/
		justify-content: space-between;
		align-items: center;
	}
	
	}/*追加指定ここまで*/


/*ヘッダー内のロゴ
---------------------------------------------------------------------------*/
#logo a {text-decoration: none;display: block;}

/*ロゴ*/
#logo {
	margin: 0;padding: 0;
	font-size: 1.5rem;	/*文字サイズを150%に*/
}

/*ロゴを画像にする場合*/
#logo img {
	display: block;
	width: 200px;	/*ロゴ画像の幅*/
}


/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin-bottom: var(--global-space);	/*下に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*contents（左右のブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	display: flex;	/*直接の子要素を横並びにする*/
	gap: var(--global-space);		/*左右のボックスの間に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
}


/*メインコンテンツ
---------------------------------------------------------------------------*/
main {
	flex: 1;
	line-height: 1.5;
}

/*h2見出し*/
main h2 {
	margin-top: 0;line-height: 1;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--primary-inverse-color);	/*下線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
/*メニューを囲むブロック*/
#menubar {
	order: -1;		/*左側に表示させる。右側がいいならこの１行を削除。*/
	width: 230px;	/*幅。お好みで変更して下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	border-bottom: 1px solid var(--primary-inverse-color);	/*下線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}
#menubar li a {
	padding-left: 1rem;	/*左側の余白*/
}

/*h3見出し*/
#menubar h3 {
	margin: 0;
	line-height:2;
	font-size: 1rem;
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	text-align: center;	/*テキストをセンタリング*/
}


/*メニューブロック初期設定（※変更不要）
---------------------------------------------------------------------------*/
#menubar {opacity: 0;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}
.large-screen #menubar {opacity: 1;}
.small-screen #menubar.display-none {display: none;}
.small-screen #menubar.display-block {display: block;opacity: 1;}
#menubar_hdr.display-none {display: none;}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 100px;	/*上に空ける余白。ハンバーガーアイコンと重ならない為の指定ですのでお好みで変更OK。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	animation: animation1 0.2s both;
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	padding: 1rem 3rem;		/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 20px;		/*上からの配置場所*/
	right: 20px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 15px;	/*ブロック内の余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: rgba(0,0,0,0.6);	/*背景色*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;			/*線の太さ*/
	background-color: #fff;	/*線の色*/
	border-radius: 2px;		/*コーナーを少しだけ丸く*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%;transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {opacity: 0;}
#menubar_hdr.ham div span:nth-child(3) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer a {color: inherit;text-decoration: none;}
footer .pr {display: block;}

footer {
	font-size: 0.8rem;		/*文字サイズ。80%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding-top: 5rem;
}


/*list-normal（service.htmlで使っている２カラムボックス）
---------------------------------------------------------------------------*/
/*ボックス１個あたり*/
.list-normal .list {
	display: flex;		/*直接の子要素を横並びにする*/
	gap: 2vw;			/*左右の間のマージン的なスペース*/
	margin-bottom: var(--global-space);	/*ボックスの下に空けるスペース。css冒頭で指定しているglobal-spaceを読み込みます。*/
	line-height: 2;		/*行間を少し狭く*/
}

/*テキストブロック*/
.list-normal .text {
	flex: 1;
}

/*画像ブロック*/
.list-normal figure {
	width: 40%;	/*幅。お好みで。*/
}

/*h4見出し*/
.list-normal h4 {
	margin: 0;
	margin-bottom: 0.5rem;	/*下に少しスペースをとる*/
	font-size: 1.2rem;	/*文字サイズを120%に*/
}

/*説明テキスト*/
.list-normal p {
	margin: 0;	
}


/*FAQ
---------------------------------------------------------------------------*/
.openclose {cursor: pointer;}

/*FAQ全体を囲むボックス*/
.faq {
	line-height: 2;	/*行間を少しせまくする*/
}

/*質問*/
.faq dt {
	position: relative;
	padding-left: 3rem; 	/*下の「回答」と数字部分を合わせる*/
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
	padding-right: 1rem;	/*ボックス内の右側の余白*/
	margin-bottom: 1rem;	/*ボックスの外（下）に空けるスペース*/
	border-radius: 5px;		/*角を少しだけ丸くする*/
}

/*「Q」のテキスト*/
.faq dt::before {
	content: "Q.";			/*このテキストを表示させます*/
	position: absolute;
	left: 0;
	top: 0;
	padding-left: 1rem;		/*テキストの左側に空ける余白*/
}

/*回答*/
.faq dd {
	margin-left: 3rem;		/*上の「質問」と数字部分を合わせる*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;				/*幅*/
	margin-bottom: 2rem;
}

.ta1, .ta1 td, .ta1 th {
	border: 1px solid var(--primary-inverse-color);	/*テーブルの枠線の幅、線種、varは色のことでcss冒頭で指定しているprimary-inverse-colorを読み込みます。*/
	padding: 1rem;			/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(255,255,255,0.2);	/*背景色。255,255,255は白の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: yellow !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5vw {margin-bottom: 5vw !important;}
.look {display: inline-block;padding: 0px 10px;background: #fff;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/
/* --- ここから下：明るい水色テーマへの上書き（改訂版：スッキリしたカード型） --- */

body, #container {
    background-color: #f4f9ff !important; /* 全体の背景を統一したごく薄い水色に（中途半端な枠や影を消す） */
    box-shadow: none !important;
    color: #333333 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #005a99 !important; /* 見出しの文字色（少し濃いめの青） */
    border-bottom-color: #b3d4fc !important; /* 見出しの下線を水色に */
}

a {
    color: #008cd6 !important; /* リンクの文字色（明るい青） */
}

header, footer, #menubar {
    background-color: #e6f2ff !important; /* 上下のメニュー帯（薄い水色） */
    color: #333333 !important;
    border: none !important; /* メニュー周りの不要な線を消す */
}

/* ▼ここがポイント：サービス紹介を「カード」のように独立させる▼ */
.list {
    background-color: #ffffff !important; /* カード自体を真っ白に */
    border: 1px solid #d9ebff !important; /* 優しい水色の枠線で囲む */
    border-radius: 10px !important; /* 角を少し丸めて柔らかい印象に */
    padding: 20px !important; /* 内側の余白をしっかり取る */
    margin-bottom: 30px !important; /* カード同士の間隔をあける */
    box-shadow: 0 4px 10px rgba(0, 80, 200, 0.05) !important; /* ふんわりとした影をつける */
}

.list-normal {
    border: none !important;
    background: transparent !important;
}
/* 会社概要のセル内を整える設定 */
.company-cell {
    display: flex;
    flex-wrap: wrap; /* スマホでは上下に、PCでは横並びに自動調整 */
    gap: 15px; /* 文字と写真の間隔 */
    align-items: flex-start;
    padding: 10px 0;
}

.cell-text {
    flex: 1; /* 文字部分を広げる */
    min-width: 200px; /* スマホで文字が細長くなりすぎないように */
}

.cell-img {
    display: flex;
    gap: 10px;
}

.cell-img img {
    width: 120px; /* 写真のサイズを統一 */
    height: 90px;
    object-fit: cover; /* 写真の比率を保ったまま枠に収める */
    border-radius: 4px;
    border: 1px solid #ddd;
}

.cell-divider {
    border: 0;
    border-top: 1px dashed #eee;
    margin: 10px 0;
}

/* --- 会社概要：モバイル最適化レイアウト --- */

/* ① 説明と写真を包む箱（PCは横並び、スマホは縦並び） */
.company-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

/* ② 常に縦並びにする専用の箱（PCでもスマホでも縦並び） */
.company-row-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

/* 文字部分 */
.row-text {
    width: 100%;
    line-height: 1.6;
}

/* 写真部分 */
.row-img {
    display: flex;
    gap: 8px;
    width: 100%;
}

/* 写真1枚ずつの設定 */
.row-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #d9ebff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* 2枚並べる場合の設定 */
.dual-img img {
    width: calc(50% - 4px);
}

/* パソコンなどの広い画面で見るときだけ「①」を横並びに変える設定 */
@media screen and (min-width: 768px) {
    .company-row {
        flex-direction: row;
        align-items: flex-start;
    }
    .row-text {
        flex: 1;
    }
    .row-img {
        width: auto;
    }
    .row-img img {
        width: 200px; /* PCではサイズを少し控えめに */
    }
}
/* --- 会社概要：下部の画像ギャラリー設定 --- */
.company-gallery {
    margin-top: 40px; /* 表との間に少し余白をあける */
    padding-top: 20px;
    border-top: 2px dashed #cce0ff; /* 薄い水色の点線で区切る */
}

.company-gallery h3 {
    text-align: center;
    color: #005a99;
    margin-bottom: 20px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* 画像を中央に寄せる */
}

.gallery-grid figure {
    margin: 0;
    width: calc(33.333% - 15px); /* パソコンでは横に3枚並べる */
    min-width: 140px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #d9ebff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.gallery-grid figcaption {
    text-align: center;
    font-size: 0.9em;
    margin-top: 8px;
    color: #555;
    font-weight: bold;
}

/* スマホ用の設定（画面が狭いときは横2枚にする） */
@media screen and (max-width: 600px) {
    .gallery-grid figure {
        width: calc(50% - 10px);
    }
}
/* --- サービス紹介：各種工事と3列写真の設定 --- */

/* 1つの工事のまとまり（ブロック） */
.service-block {
    margin-bottom: 40px; /* 次の工事との間に余白をあける */
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc; /* 区切り線 */
}

/* 一番最後のブロックは区切り線を消す */
.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 工事名の見出しデザイン */
.service-block h3 {
    color: #005a99;
    border-left: 5px solid #005a99;
    padding-left: 10px;
    margin-bottom: 15px;
}

.service-block p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 写真3枚を並べる箱 */
.service-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* 写真1枚ずつの枠 */
.service-gallery figure {
    margin: 0;
    flex: 1; /* 3枚が同じ幅になるように均等に広げる */
}

.service-gallery img {
    width: 100%;
    height: 180px; /* 高さを揃えて綺麗に見せる */
    object-fit: cover; /* 写真が歪まないように切り抜く設定 */
    border-radius: 6px;
    border: 1px solid #d9ebff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* スマホ用設定（画面が狭いときは写真を縦並びにする） */
@media screen and (max-width: 600px) {
    .service-gallery {
        flex-direction: column; /* 縦並びに変更 */
        gap: 10px;
    }
    .service-gallery img {
        height: auto; /* スマホでは高さを自動にして写真全体を見せる */
    }
}
/* --- 追加ここまで --- */
/* --- 上書きここまで --- */
/* --- 上書きここまで --- */
/* --- サービス紹介：各種工事と3列写真の設定 --- */

/* 1つの工事のまとまり（ブロック） */
.service-block {
    margin-bottom: 40px; /* 次の工事との間に余白をあける */
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc; /* 区切り線 */
}

/* 一番最後のブロックは区切り線を消す */
.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* 工事名の見出しデザイン */
.service-block h3 {
    color: #005a99;
    border-left: 5px solid #005a99;
    padding-left: 10px;
    margin-bottom: 15px;
}

.service-block p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 写真3枚を並べる箱 */
.service-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* 写真1枚ずつの枠 */
.service-gallery figure {
    margin: 0;
    flex: 1; /* 3枚が同じ幅になるように均等に広げる */
}

/* 写真1枚ずつの設定（変更後） */
.service-gallery img {
    width: 100%;
    height: auto; /* 高さを自動調整にする */
    /* object-fit: cover; - この設定は不要になるので消すか、コメントアウトします */
    border-radius: 6px;
    border: 1px solid #d9ebff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}


/* スマホ用設定（画面が狭いときは写真を縦並びにする） */
@media screen and (max-width: 600px) {
    .service-gallery {
        flex-direction: column; /* 縦並びに変更 */
        gap: 10px;
    }
    .service-gallery img {
        height: auto; /* スマホでは高さを自動にして写真全体を見せる */
    }
}
/* --- 追加ここまで --- */
/* --- 施工までの流れ・対応エリア設定 --- */

/* 流れの全体枠 */
.flow-container {
    margin: 30px 0 50px 0;
}

/* 1ステップの箱 */
.flow-step {
    display: flex;
    align-items: center;
    background: #f8fbff; /* 非常に薄い水色 */
    border: 1px solid #cce0ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 10px;
}

/* STEPの四角いアイコン */
.step-num {
    background: #005a99;
    color: #fff;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 4px;
    margin-right: 20px;
    min-width: 80px;
    text-align: center;
}

/* ステップの見出しと説明文 */
.step-content h4 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 1.1em;
}

.step-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* 下向き矢印 */
.flow-arrow {
    text-align: center;
    color: #005a99;
    font-size: 20px;
    margin-bottom: 10px;
}

/* 対応エリアの枠 */
.area-box {
    background: #fff;
    border: 2px solid #e6f0fa;
    padding: 20px;
    border-radius: 8px;
}

.area-list {
    list-style-type: none;
    padding: 0;
    margin: 15px 0;
}

/* リストの先頭に四角いマークをつける */
.area-list li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

.area-list li::before {
    content: "■";
    color: #005a99;
    position: absolute;
    left: 0;
}

/* 補足の小さな文字 */
.area-note {
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

/* スマホ用設定（画面が狭いときはSTEPの数字を上に持ってくる） */
@media screen and (max-width: 600px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
    }
    .step-num {
        margin: 0 0 15px 0;
    }
}
/* --- 電話発信リンクの装飾 --- */
.tel-link {
    color: #005a99; /* サイトに合わせた水色 */
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: underline; /* 下線をつけて押せることをアピール */
    padding: 2px 5px;
}

/* パソコンで見た時はクリックしても何も起きないようにする（マウスポインターも変えない） */
@media screen and (min-width: 768px) {
    .tel-link {
        pointer-events: none;
        text-decoration: none;
        color: #333; /* PCでは普通の文字色にする */
    }
}
/* パソコンで見た時はクリックしても何も起きないようにする */
@media screen and (min-width: 768px) {
    .tel-link {
        pointer-events: none;
        text-decoration: none; /* 下線を消す */
        color: #333; /* 普通の黒文字にする */
    }
}
/* 現在地（current-page）の時だけ色を変える */
#menubar nav ul li a.current-page {
    background-color: #005a99 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-left: 5px solid #ffcc00 !important;
}
/* --- 現在地表示の最終調整：テンプレートのルールを上書きして強制適用 --- */
#menubar nav ul li a.current-page,
#menubar nav ul li a.current-page:hover,
#menubar nav ul li a.current-page:active,
#menubar nav ul li a.current-page:visited {
    background: #005a99 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-left: 5px solid #ffcc00 !important;
    text-decoration: none !important;
}
/* --- 現在地表示の最終調整（サイズ固定版） --- */
#menubar nav ul li a.current-page {
    background-color: #005a99 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-weight: bold !important;
    border-left: 5px solid #ffcc00 !important;
    
    /* 以下を追加してサイズを強制的に揃える */
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    margin: 0 !important;
}