@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅900px以上」で基準を大きなサイズに再設定しています。*/
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #F9F7DC url(../images/bg_kazari.png) no-repeat left top / 100%;	/*背景色、背景壁紙の読み込み*/
	color: #57524b;		/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
#map iframe {
  width: 100%;
  height: 420px;   /* ← ここが縦の高さ */
}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}

/*section全般の設定*/
section > div {
	padding: 50px 2%;	/*上下、左右に空ける余白*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;	/*文字色*/
	transition: 0.3s;
}

a:hover {
	color: #938a7d;	/*マウスオン時の文字色*/
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1400px;				/*最大幅*/
	margin: 0 auto;

}

/*ロゴ画像*/
header .logo {
	margin: 0;
	width: 200px;		/*ロゴ画像の幅*/
	margin-top: 10px;	/*ロゴの上部に空けるスペース*/
	margin-left: 100px;	/*ロゴの左側に空けるスペース*/
}

/*トップページのロゴ画像への追加設定*/
.home header .logo {
	width: 27%;			/*ロゴ画像の幅*/
	margin-left: 0px;	/*ロゴの左側に空けるスペース*/
	margin-top: 130px;	/*ロゴの上に空けるスペース*/
}

/*トップページ以外にある右上の電話番号画像の設定*/
header .tel {
	width: 300px;	/*幅*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: -15px;		/*上からの配置場所指定*/
	left: -20px;	/*左からの配置場所指定*/
	width: 100px;	/*幅*/
	height: 100px;	/*高さ*/
	cursor: pointer;
	background: #00B7CE url(../images/ham.png) no-repeat center top/100px;/*背景色、ハンバーガメニュー画像の読み込み。最後のpxは上のwidthとheightと#menubar_hdr.hamと揃えておいて下さい。*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
	box-shadow: 2px 2px 0px 4px rgba(0,0,0,0.1);		/*ボックスの影。右へ、したへ、ぼかし幅、広げる距離。0,0,0は黒の事で0.1は色が10%でた状態の事。*/
	transition: 0.2s;
}

/*マウスオン時*/
#menubar_hdr:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #ff0000 url(../images/ham.png) no-repeat center bottom/100px;
}


/*メニュー設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {display: none;}
#menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;width: 100%;height: 100%;
	display: flex;
	justify-content: center;
	padding-top: 80px;			/*上部にあける余白*/
	font-size: 1.3rem;			/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	animation: opa1 1s both;	/*フェードインのアニメーション*/
	background: #fff;			/*背景色*/
	box-shadow: #87CEFA 0px 0px 500px inset;	/*ボックスの影。右へ、下へ、ぼかし幅、insetは内側への影という意味。*/
}

/*最後のメニューの下に余白をあける*/
#menubar.db li:last-of-type a {
	padding-bottom: 80px;
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	display: block;text-decoration: none;
	padding: 20px;	/*メニュー内の余白*/
}

/*装飾文字（英語表記）*/
#menubar ul span {
	display: block;
	font-size: 0.7em;	/*文字サイズ。70%。*/
	opacity: 0.5;		/*透明度。50%色がでた状態。*/
}


/*decoブロック（色がついた装飾タイプのブロック）
---------------------------------------------------------------------------*/
/*decoブロックの設定*/
.deco {
	background: 
	url(../images/bg_deco_top.png) repeat-x center top / 1000px,		/*ブロック上部の背景画像の指定。1000pxは画像幅。*/
	url(../images/bg_deco_bottom.png) repeat-x center bottom / 1000px;	/*ブロック下部の背景画像の指定。1000pxは画像幅。*/
	padding-top: 199px;		/*上部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
	padding-bottom: 54px;	/*下部の背景画像の本体の「幅」を1000pxにした際の画像の「高さ-1」をここで設定します*/
}

/*上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.deco > div {
	background: #87CEFA;
}

/*decoブロックのh2見出し*/
.deco h2 {
	color: #F9F7DC;	/*文字色*/
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、距離、0,0,0は黒の事で0.3は30%色が出た状態。*/
}

/*decoブロック、フッターブロック内にあるcolor-themeの文字色*/
.deco .color-theme, .deco .color-theme a,
#footer .color-theme {
	color: #ffe13d !important;
}

/*リンクテキストのマウスオン時の文字色*/
.deco a:hover {
	color: #726b62;
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック内のh2タグ*/
main h2 {
	position: relative;
	color: #87CEFA;			/*文字色*/
	font-size: 3.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くする*/
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
	line-height: 1.5;		/*行間*/
}

/*mainブロック内のh3タグ*/
main h3 {
	position: relative;
	font-size: 2.1rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*mainブロック内のh3タグ内のulineタグ*/
main h3 .uline {
	display: inline-block;
	background: url(../images/u_line1.png) repeat-x center bottom / 100px;	/*下線のイラスト*/
	padding: 0 15px 10px;	/*上、左右、下への余白*/
}

/*装飾文字(small)の指定*/
h2 .small {
	display: block;
	font-size: 0.4em;		/*文字サイズを40%にする*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*微調整*/
main h2 + p,main h3 + p {
	margin-top: -10px;
}


/*２カラム利用時
---------------------------------------------------------------------------*/
.c2 {
	display: flex;
	flex-direction: column;
}


/*２カラム利用時のmainブロック（※冒頭に「.(ドット)」がついていない「main」とは全く異なるので注意して下さい）
---------------------------------------------------------------------------*/
.main {
	order: 0;	/*.mainと.subの配置指定。数字が小さい順に並びます。*/
}


/*２カラム利用時のsubブロック
---------------------------------------------------------------------------*/
.sub {
	order: 1;	/*.mainと.subの配置指定。数字が小さい順に並びます。*/
}


/*subブロックで使っているメニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
.submenu {
	background: #fff;			/*背景色*/
	border-radius: 10px;		/*角丸のサイズ*/
	border: 5px solid #87CEFA;	/*枠線の幅、線種、色*/
	padding: 10px 0;			/*上下、左右へのメニュー内の余白*/
}

/*色のついたブロックでの枠線の色*/
.deco .submenu {
	border-color: #F7C4C4;
}

/*メニュー一個あたりの設定*/
.submenu li {
	border-bottom: 2px dotted #ccc;	/*下線の幅、線種、色*/
}

/*リンクテキスト*/
.submenu a {
	display: block;text-decoration: none;
	padding: 10px 20px;	/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
.submenu a:hover {
	background: #87CEFA;	/*背景色*/
	color: #fff;			/*文字色*/
}


/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
---------------------------------------------------------------------------*/
/*フッターブロック*/
#footer {
	background: #87CEFA;	/*背景色*/
	color: #fff;			/*文字色*/
	margin-top: 50px;		/*フッターの上部(外側)に空けるスペース。上にあるコンテンツとのバランス調整です。*/
	font-size: 0.85rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*リンクテキスト*/
#footer a {
	color: #fff;text-decoration: none;
}

/*フッター内のロゴ画像*/
#footer .logo img {
	display: block;
	position: relative;z-index: 1;	/*下の地図よりも前面に出るようにする設定。地図をロゴより前面に出したいならこの１行を削除。*/
	width: 150px;					/*幅*/
	margin: -120px auto 30px;		/*最初の数字は上へ移動する距離。フッターより上部に飛び出させる為。最後の数字はロゴの下に空けるスペース。地図がない場合のバランス用。*/
	background: #fff;				/*背景色*/
	border-radius: 50%;				/*画像が正方形であれば、正円になります。例えばここを30pxとかにすれば角が丸くなった四角形になります。*/
	padding: 30px;					/*余白*/
	border: 5px solid #87CEFA;		/*枠線の幅、線種、色*/
}


/*footer内にある地図。
---------------------------------------------------------------------------*/
#map {
	 max-width: 900px;   /* ← 手書きマップと同じ幅 */
  margin: 0 auto 30px;/* ← 中央寄せ + 下余白 */
}


/*footer内にある地図。
---------------------------------------------------------------------------*/
#map {
  max-width: 900px;        /* 手書きマップと同じ幅 */
  margin: -100px auto 30px; /* ← 上に100px引き上げてロゴと重ねる */
}






/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: flex-start;		/*垂直揃えの指定。上に配置されるように。*/
	margin-bottom: 50px;			/*メニューブロックと、下のコピーライトとの間にとる余白*/
}

/*ulタグ（メニューの列単位）*/
#footermenu ul {
	margin: 0;
	padding: 0 5px;
	flex: 1;
	list-style: none;
}

/*リンクテキスト*/
#footermenu a {
	opacity: 0.7;	/*透明度。70%色がついた状態。*/
}
#footermenu a:hover {
	opacity: 1;		/*マウスオン時に色を100%にする*/
}


/*フッター設定（最下部のコピーライトの部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {text-align: center;}
footer .pr {display: block;}


/*listブロック（２カラムタイプ、横長タイプ）、list2ブロック（枠が動く３カラムタイプ）の設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list {
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;
	align-items: center;			/*垂直揃えの指定。上下中央に配置されるように。*/
	margin-bottom: 30px;			/*ボックス同士の上下間の余白*/
	background: #fff;				/*背景色。*/
	padding: 30px;					/*ボックス内の余白*/
	box-shadow: 2px 2px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.15は色が15%出た状態。*/
	border-radius: 8px;				/*角を丸くする指定*/
	overflow: hidden;				/*はみ出た要素を非表示にする。画像の角が飛び出ないようにする為の指定です。*/
}

/*h4タグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list h4,
.list2 h4 {
	margin: 0;
	font-size: 1.2em;		/*文字サイズを120%に*/
	font-weight: normal;	/*hタグのデフォルトの太字を標準にする。太字がいいならこの１行を削除。*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}

/*pタグの指定。「２カラムタイプ」「横長タイプ」「３カラムタイプ（フレームが動く）」共通に適用されます。*/
.list p,
.list2 p {
	margin: 0;
}

/*「２カラムタイプ」と「３カラムタイプ（フレームが動く）」のlistボックス全体を囲むボックス*/
.list-container {
	display: flex;					/*flexボックスを使う指定*/
	flex-wrap: wrap;				/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
}

/*「２カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	align-items: stretch;			/*垂直揃えをデフォルトに戻す指定。*/
}

/*「２カラムタイプ」のfigure画像の上書き。*/
.list-container .list figure {
	margin: -30px -30px 30px;	/*１つ目と２つ目は画像周りの余白を埋める指定で、上の.listのpaddingの数字にマイナスをつければOKです。３つ目は画像下に空けるスペース。*/
	width: auto;
}


/*list2ブロック（枠が動く３カラムタイプ）への追加設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定*/
.list2 {
	text-align: center;		/*中身をセンタリング*/
	margin-bottom: 30px;	/*下(ボックスの外側)に空けるスペース。*/
}

/*画像の指定*/
.list2 figure .mask1,.list2 figure .mask2,.list2 figure .mask3 {
	margin-bottom: 30px;	/*画像の下に空ける余白。h4見出しとの余白バランスです。*/
}


/*mask（フレームが動くタイプのアニメーション設定。３タイプ用意しています。）
---------------------------------------------------------------------------*/
/*３タイプ共通設定*/
.mask1,.mask2,.mask3 {
	position: relative;z-index: 10;		/*トップページのスライドショーを動画にする場合、動画が飾りの下に隠れないようにする為*/
	box-shadow: 10px 10px 0px #e2ddc0;	/*ボックスの影。右へ、下へ、ぼかし幅、色。*/
}

/*mask1のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask1 {
	animation: mask 12s linear infinite;
}

/*mask2のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask2 {
	animation: kazari1 8s linear infinite;
}

/*mask3のアニメーション設定。animation.cssのアニメーションを使っています。*/
.mask3 {
	animation: kazari2 10s linear infinite;
}

/*トップページのスライドショーを動画にした場合に、影を消す設定*/
#mainimg .mask1,#mainimg .mask2,#mainimg .mask3 {
	box-shadow: none;
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 20px;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。※下の「900px以上」の端末用の設定に再設定があります。*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: none;	/*小さな端末では非表示にしておく。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。※下の「900px以上」の端末用の設定に再設定があります。*/
}


/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	color: #fff;			/*文字色*/
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 15px 40px;	/*上下、左右への余白。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	font-size: 1rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #F75757;	/*背景色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	cursor: pointer;
	color: #fff;			/*文字色*/
}

/*list、list2内で使う場合のボタン*/
.list .btn a,
.list2 .btn a {
	display: block;		/*幅一杯にとる*/
	margin-top: 20px;	/*ボタンの上に空けるスペース*/
}

/*矢印アイコン（Font Awesome）*/
.btn.arrow a::after {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0a9";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #fff;		/*アイコンの色*/
	font-weight: bold;
	display: inline-block;
	padding-left: 15px;		/*テキストとの間に空けるスペース*/
	transform: scale(1.4);	/*サイズを1.4倍にする設定*/
	transition: 0.3s;
}

/*矢印アイコン（Font Awesome）のマウスオン時*/
.btn.arrow a:hover::after {
	transform: scale(1.6);	/*サイズを少し大きくする*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;			/*太字に*/
	padding: 10px 5px;			/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #57524b;		/*背景色*/
	color: #fff;				/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #d3c99f;	/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白のことで0.5は色が50%出た状態のこと。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #d3c99f;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}


/*イベントページ上部の横並びの「月」メニュー
---------------------------------------------------------------------------*/
/*メニューを囲むブロック*/
.inline-menu {
	text-align: center;
	margin-bottom: 50px;	/*下に空けるスペース*/
}

/*メニュー１個あたりの設定*/
.inline-menu li {
	display: inline-block;	/*横並びにする*/
	margin-bottom: 10px;	/*メニューが２段以上になった場合の、上下の間に空けるスペース*/
}

.inline-menu li a {
	display: block;text-decoration: none;
	padding: 0 10px;			/*上下、左右へのメニュー内の余白*/
	background: #fff;			/*背景色*/
	border: 3px solid #87CEFA;	/*枠線の幅、線種、色*/
	border-radius: 3px;			/*角丸のサイズ*/
}

/*マウスオン時*/
.inline-menu li a:hover {
	background: #87CEFA;
	color: #fff;
}


/*イベントページの各月イベント
---------------------------------------------------------------------------*/
/*イベント全体を囲むブロック*/
dl.event {
	margin: 0 20px 30px;	/*上、左右、下へ空けるスペース*/
}

/*イベント見出し*/
dl.event dt {
	color: #87CEFA;		/*文字色*/
	font-size: 1.2rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*色のついたブロックでのイベント見出し*/
.deco dl.event dt {
	color: #ffe13d;	/*文字色*/
}

/*日付*/
dl.event .date {
	background: #87CEFA;	/*背景色*/
	color: #fff;			/*文字色*/
	width: 10em;			/*幅。（10文字分）*/
	text-align: center;		/*中身をセンタリング*/
	display: block;			/*ブロック要素にする事で、<br>がなくても改行されます*/
	font-size: 0.7em;		/*文字サイズ70%*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする*/
	border-radius: 3px;		/*角丸のサイズ*/
}

/*色のついたブロックでの日付*/
.deco dl.event .date {
	background: #ffe13d;	/*背景色*/
	color: #87CEFA;			/*文字色*/
}

/*説明文*/
dl.event dd {
	margin-bottom: 20px;	/*下に空けるスペース*/
}


/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 10px;	/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e2ddc0;		/*枠線の幅、線種、色*/
}

/*アイコン（Font Awesome）*/
.faq dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #938a7d;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	z-index: 99;
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: rgba(0,0,0,0.3);	/*背景色。0,0,0は黒の事で0.3は色が30%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #F75757 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 0px 10px;background: rgba(0,0,0,0.05);border-radius: 5px;margin: 5px 0;}
.deco .look {background: rgba(255,255,255,0.2);}



/*---------------------------------------------------------------------------
ここから下は画面幅700px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) {


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header .logo {
	margin-top: 20px;	/*ロゴの上部に空けるスペース*/
	margin-left: 150px;	/*ロゴの左側に空けるスペース*/
}

/*トップページのロゴ画像への追加設定*/
.home header .logo {
	width: 30%;			/*ロゴ画像の幅*/
	margin-left: 20px;	/*ロゴの左側に空けるスペース*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: -20px;		/*上からの配置場所指定*/
	width: 130px;	/*幅*/
	height: 130px;	/*高さ*/
	background-size: 130px;	/*サイズのみ、変更*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background-size: 130px;	/*サイズのみ、変更*/
}


/*２カラム利用時
---------------------------------------------------------------------------*/
.c2 {
	flex-direction: row;
	justify-content: space-between;
}


/*２カラム利用時のmainブロック（※冒頭に「.(ドット)」がついていない「main」とは全く異なるので注意して下さい）
---------------------------------------------------------------------------*/
.main {
	order: 1;	/*.mainと.subの左右への配置指定。数字が小さい順に並びます。*/
	width: calc(100% - 250px);	/*幅。250pxの数字は、.subで指定しているwidthに余白を50px含めて設定しています。*/
}


/*２カラム利用時のsubブロック
---------------------------------------------------------------------------*/
.sub {
	order: 0;	/*.mainと.subの左右への配置指定。数字が小さい順に並びます。*/
	width: 200px;	/*幅。大幅に変更する際は、上の.mainのwidthの250pxの値も調整して下さい。*/
}

/*.subブロックのpタグ*/
.sub p {
	margin: 0 0 30px;	/*上、左右、下へ空けるスペース*/
}


/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
---------------------------------------------------------------------------*/
/*フッターブロック*/
#footer {
	margin-top: 100px;		/*フッターの上部(外側)に空けるスペース。上にあるコンテンツとのバランス調整です。*/
}

/*フッター内のロゴ画像*/
#footer .logo img {
	width: 250px;					/*幅*/
	border: 10px solid #87CEFA;		/*枠線の幅、線種、色*/
}


/*footer内にある地図。
---------------------------------------------------------------------------*/
#map {
	margin-top: -100px;		/*フッターのロゴに重ねる為の指定。この行を削除すれば、ロゴの下に通常通り配置されます。*/
}


/*listブロック（２カラムタイプ、横長タイプ）、list2ブロック（枠が動く３カラムタイプ）の設定
---------------------------------------------------------------------------*/
/*１個あたりのボックスの指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list {
	flex-direction: row;
}

/*画像の指定。「２カラムタイプ」「横長タイプ」共通に適用されます。*/
.list figure {
	width: 30%;			/*幅*/
	margin-right: 20px;	/*画像とテキストブロックの間にとる余白*/
}

/*「２カラムタイプ」のlistボックス全体を囲むボックス*/
.list-container {
	flex-direction: row;	/*子要素を横並びにする*/
}

/*「２カラムタイプ」のlistボックス。１個あたりのボックスの指定です。*/
.list-container .list {
	width: 48%;	/*ボックスの幅*/
}
.list-container .list2 {
	width: 30%;	/*ボックスの幅*/
}

/*2023/01/19追記*/
.list div {
	flex: 1;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*ボタンの設定*/
.pagetop a {
	width: 100px;		/*幅*/
	line-height: 100px;	/*高さ*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 19px;	/*基準となるフォントサイズの上書き*/
}


/*contentsブロック
---------------------------------------------------------------------------*/
/*トップページのみ、コンテンツ上部に余白をとります。お好みで数値は調整して下さい。*/
.home #contents {
	margin-top: 250px;
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付(dt)設定*/
#new dt {
	width: 14em;	/*幅。14文字(em)分。*/
	display: flex;	/*flexボックスを使う指定*/
	justify-content: space-between;	/*日付とアイコンをそれぞれ端に寄せる*/
}

/*日付の横のマーク（共通設定）*/
#new dt span {
	display: inline-block;	/*表示させる*/
	width: 6em;				/*幅。6文字(em)分。*/
	background: #999;		/*背景色*/
	color: #fff;			/*文字色*/
	font-size: 0.9em;		/*文字サイズを90%に。*/
	text-align: center;		/*文字をセンタリング*/
	border-radius: 3px;		/*角を少しだけ丸くする*/
	margin-right: 1.2em;	/*アイコンの右側に空けるスペース*/
	align-self: flex-start;	/*高さを間延びさせない指定*/
	line-height: 1.8;		/*行間を少し狭く*/
	position: relative;top: 0.4em;	/*上下の配置バランスの微調整*/
}

/*bg1設定。サンプルテンプレートでは「求人情報」と書いてあるマーク*/
#new dt span.icon-bg1 {
	background: #F75757;	/*背景色*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 14em);	/*「14em」は上の「#new dt」のwidthの値です。*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}

	

/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}







/* トップページ背景：テンプレ背景（模様）＋ 空の写真を重ねる */
body.home {
    background:
        url(../images/bg_kazari.png) no-repeat left top / 100%,  /* 左の模様（テンプレ） */
        url(../images/main_bg.jpg) no-repeat center top / cover; /* 空の写真（あなたの画像） */
}



/* ABCキッズスクールについて の文章を完全中央揃えにする */
.deco p.c {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center !important;
}
/* 見出し（h3）を確実に中央揃えにする */
.deco h3.c {
    width: 100%;
    text-align: center !important;
    display: block;
    margin-left: 0 !important;
    margin-right: 0 !important;
}



/* ===== カード外枠 ===== */
.support-card {
    background: #f7f4e8;
    padding: 40px 30px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
    border: 3px solid #fff7d6;
}

/* ===== 横並びエリア（上段） ===== */
.support-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* 左テキスト列 */
.support-text {
    flex: 1;
    min-width: 260px;
}

.support-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* 小見出し：ねらい */
.support-subtitle {
    font-weight: bold;
    margin-bottom: 10px;
    color: #555;
}

/* リスト：▶ */
.support-list li {
    list-style: none;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.support-list li::before {
    content: "▶";
    position: absolute;
    left: 0;

    top: 50%;
    transform: translateY(-50%);

    color: #7fb4b8;
    font-size: 0.9em;
}


/* 右画像 */
.support-image {
    flex-shrink: 0;
}

.support-image img {
    width: 260px;
    border-radius: 15px;
    object-fit: cover;
}

/* ===== 下の白枠 ===== */
.support-bottom {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
}

/* 見出し */
.bottom-title {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

/* リスト：✓ */
.bottom-list li {
    list-style: none;
    margin-bottom: 12px;
    position: relative;
    padding-left: 32px;
	
	 font-size: 1.8rem;      /* ★ 大きく */
    font-weight: 700;       /* ★ 太字 */
    color: #333;            /* ★ 濃いグレー */
    line-height: 2;
}

.bottom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.2em;
    color: #5ba97c;
    font-weight: 900;   /* ★ さらに太く */
    font-size: 1em;
}

/* 文末左揃え */
.bottom-end {
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
}

/* ===== PC（写真右固定・横並び強制） ===== */
@media screen and (min-width: 701px) {

    .support-content {
        flex-direction: row;
        flex-wrap: nowrap; /* ← 画像が下へ落ちるのを防ぐ */
    }

    .support-text {
        flex: 1;
        min-width: 0; /* ← 超重要！折返し防止 */
    }

    .support-image {
        flex-shrink: 0;
    }
}

/* ===== スマホ（あなたが気に入っている表示そのまま） ===== */
@media screen and (max-width: 700px) {
    .support-content {
        flex-direction: column;
        text-align: left;
    }

    .support-image img {
        margin: 0 auto;
        width: 90%;
        max-width: 260px;
    }
}




/* ====================================
   ① 外枠の縦余白を短く
==================================== */
.support-card {
    background: #f7f4e8;
    padding: 25px 20px;   /* ← 40px → 25px に短縮 */
    border-radius: 20px;
    margin: 25px auto;    /* ← 全体の下余白も短縮 */
    max-width: 900px;
    border: 3px solid #fff7d6;
}

/* スマホ時はさらに余白を小さく */
@media screen and (max-width: 700px) {
    .support-card {
        padding: 15px 10px;   /* ← スマホはかなり短く */
        margin: 15px auto;
    }
}

/* ====================================
   ② PC版画像を大きく（横長に）
==================================== */
@media screen and (min-width: 701px) {
    .support-image img {
        width: 340px;/* ★ 260 → 340 に拡大：健康・生活に近づく */
        height: auto;
        border-radius: 15px;
        object-fit: cover;
    }
}



/* ====================================
   ③ スマホ画像を白い四角と同じ幅に  クリーム色の四角の上下余白取るコード
==================================== */
@media screen and (max-width: 700px) {
    .support-image img {
        width: 100%;       /* ← スマホでは全幅でOK */
        max-width: none;   /* ← 上限を解除して白枠に合わせる */
        margin: 0 auto 10px auto;
    }
}

/* ====================================
   ④ 白い四角（support-bottom）の下余白を短く
==================================== */
.support-bottom {
    background: #ffffff;
    padding: 18px;          /* ← 25px → 18px に短縮 */
    border-radius: 15px;
    margin-top: 15px;       /* ← 上との間も短縮 */
    margin-bottom: 10px;    /* ← 下余白も短く */
}

.bottom-end {
    margin-bottom: 0;       /* ← 文末の下余白を消す */
}










/* ========== ABCキッズスクールについて の文章を整列する ========== */

/* セクション内のテキストブロックを中央に寄せつつ、内部は左揃え */
.deco .align-block {
    width: 95%;             /* ← テキストブロックの幅を統一（調整可） */
    max-width: 1000px;       /* ← PCで広がりすぎないように上限設定 */
    margin: 0 auto 40px;    /* ← 中央寄せ */
    text-align: left;       /* ← 内部は左揃え */
}




/* ================================
   スマホ時 h3 見出しを小さくして行数を減らす
================================ */
@media screen and (max-width: 700px) {
    .align-block h3 {
        font-size: 1.2rem !important;   /* ← 小さめ（調整可） */
        line-height: 1.4 !important;    /* ← 行間を詰めてコンパクトに */
        white-space: normal !important; /* ← 自然な改行 */
        word-break: keep-all;           /* ← 日本語が変な位置で改行されない */
        margin-bottom: 10px;
    }
}


/* ================================
   スマホ時（幅700px以下）
   h2.cracker を2行でバランス良く中央揃え
================================ */
@media screen and (max-width: 700px) {

    h2.cracker {
        font-size: 1.45rem !important;  /* ← 大きすぎず、小さすぎず */
        line-height: 1.35 !important;   /* ← 行間を詰めて2行に収まりやすく */
        text-align: center !important;  /* ← 中央揃え */

        /* 長い単語や引用符が暴れないように */
        word-break: keep-all !important;
        white-space: normal !important; /* ← 改行許可（自然な見栄え） */

        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 95%;  /* ← 文字幅を適度に制限してバランス良く */
    }

    /* 小見出し SUPPORT を少し大きく */
    h2.cracker .small {
        font-size: 0.55em !important;  /* ← 小さすぎを改善 */
        margin-top: 5px;
        display: block;
    }
}




/* 初期状態（非表示） */
.js-aim,
.js-image,
.js-box {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示状態 */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 少しリズムを出す */
.js-image.is-show {
  transition-delay: 0.3s;
}

.js-box.is-show {
  transition-delay: 0.6s;
}




/* ===============================
   特徴セクション
   =============================== */
.feature-area {
  padding: 60px 20px;
}

.feature-block {
  max-width: 1000px;
  margin: 0 auto 80px;
}

.feature-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #aaa;
  color: #555;
}

/* レイアウト */
.feature-content {
  display: flex;
  gap: 40px;
  align-items: center;
}


.feature-text {
  flex: 0 0 35%;
}

.feature-image {
  flex: 0 0 65%;
}


.feature-text {
  flex: 0 0 40%;   /* ← 文字を40%に縮める */
}

.feature-image {
  flex: 0 0 60%;   /* ← 写真を最大60%使う */
}


.feature-block.reverse .feature-content {
  flex-direction: row-reverse;
}

/* テキスト（読みやすく調整） */
.feature-text {
  flex: 1;
  font-size: 15px;      /* 少し大きく */
  font-weight: 500;    /* 少し太く */
  line-height: 2.1;    /* 行間を広げて読みやすく */
  color: #555;
}

.feature-text ul {
  padding-left: 20px;
}

.feature-text li {
  margin-bottom: 8px;
}

/* 画像 */
.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 6px;
}

/* ===============================
   写真：スクロール表示
   =============================== */
.js-photo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-photo.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   ♪ アニメーション
   =============================== */
.music {
  display: inline-block;
  margin-left: 4px;
  animation: music-swing 2s ease-in-out infinite;
}

@keyframes music-swing {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(8deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}

/* ===============================
   スマホ対応
   =============================== */
@media screen and (max-width: 768px) {
  .feature-content {
    flex-direction: column;
  }

  .feature-block.reverse .feature-content {
    flex-direction: column;
  }

  .feature-title {
    font-size: 18px;
  }

  .js-photo {
    transform: translateY(10px);
  }
}

/* ===============================
   微調整　タイトル文字真ん中にした
   =============================== */
.deco h2 {
  text-align: center;
}







/* ===============================
   ABC キッズスクール 写真エリア
   =============================== */

/* 見出し */
.abc-catch-title {
  text-align: center;
  font-size: 21px;
  margin-bottom: 40px;
}

/* 写真全体の並び */
.abc-photo-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* 写真1枚（スクロール前の初期状態） */
.abc-photo-item {
  position: relative;            /* ← イラスト重ね用 */
  width: 260px;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* スクロール後に表示 */
.abc-photo-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 写真そのもの */
.abc-photo-item img:first-child {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* イラスト共通 */
.abc-illust {
  position: absolute;
  width: 80px;
  height: auto;
  pointer-events: none;
}

/* 左側イラスト */
.abc-illust-left {
  bottom: -20px;
  left: -30px;
}

/* 右側イラスト */
.abc-illust-right {
  bottom: -20px;
  right: -30px;
}

/* 説明文 */
.abc-catch-text {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
  color: #555;
}

/* ===============================
   スマホ対応
   =============================== */
@media screen and (max-width: 768px) {

  .abc-photo-area {
    flex-direction: column;
    align-items: center;
  }

  .abc-photo-item {
    width: 90%;
    transform: translateY(10px);
  }

  .abc-illust {
    width: 60px;
  }

  .abc-catch-title {
    font-size: 20px;
  }

  .abc-catch-text {
    font-size: 16px;
  }
}




/* =================================================
   deco-top-only：見出しと写真の間の余白を詰める（確定版）
   ================================================= */
.deco.deco-top-only {
  /* 上の巨大余白（199px）を小さくする */
  padding-top: 40px !important;

  /* 下はいらないので消す */
  padding-bottom: 0 !important;
}

/* 中の水色エリアの余白を詰める */
.deco.deco-top-only > div {
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* =================================================
   ABCキッズスクールについて：背景装飾を完全に消す
   ================================================= */
.deco.deco-top-only {
  background: none !important;
}





/* =================================================
   GOOGLEmapレイアウト　角丸と影つけた
   ================================================= */
#map iframe {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}





/* =================================================
   手書きマップ（メイン）
   ================================================= */

.access-map img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* =================================================
   事業所写真
   ================================================= */

.access-photos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.access-photos img {
  width: 48%;
  border-radius: 12px;
}




/* ===============================
   手書きマップを大きく表示
================================ */
.access-map {
  max-width: 900px;      /* PCで大きく */
  margin: 30px auto;     /* 中央寄せ */
}

.access-map img {
  width: 100%;           /* 親要素いっぱい */
  height: auto;
  display: block;        /* 余白・ズレ防止 */
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
@media screen and (max-width: 768px) {
  .access-map {
    width: 95%;
    margin: 20px auto;
  }
}
/* ===============================
   アクセス案内テキストを中央揃え
================================ */
.access-title,
.access-text {
  text-align: center;
}




/* ===============================
   施設の様子：文字を黒く
================================ */
.facility-title {
  text-align: center;
  color: #636363;          /* 黒っぽく */
  font-size: 22px;
  margin-bottom: 30px;
}

/* ===============================
   4枚同時表示カルーセル
================================ */
.carousel-section {
  padding: 40px 20px;
  background: #eef6f4;
}

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* ★ PC：4枚表示 */
.carousel-track img {
  width: 25%;
  height: 320px;          /* PCは縦をしっかり */
  object-fit: cover;
  padding: 0 10px;
  border-radius: 18px;
}

/* 矢印ボタン */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* ★ スマホ */
@media screen and (max-width: 768px) {
  .carousel-track img {
    width: 80%;        /* 1〜2枚見える */
    height: 220px;
  }
}




/* =====================================
   スマホ：お子様に合わせたプログラム余白調整
===================================== */
@media screen and (max-width: 768px) {

  /* 親の deco の上下余白を縮める */
  .deco {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  /* 見出し下の余白を詰める */
  .deco > h2 {
    margin-bottom: 20px !important;
  }

  /* feature エリア上の余白を詰める */
  .feature-area {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  /* 各ブロック間の余白も少し詰める */
  .feature-block {
    margin-bottom: 40px !important;
  }

  /* feature 見出しと本文の間 */
  .feature-title {
    margin-bottom: 15px !important;
  }
}
/* =====================================
   スマホ専用：プログラム紹介セクション余白調整
===================================== */
@media screen and (max-width: 768px) {

  /* セクション全体の上下余白を削る */
  .deco {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }

  /* 見出し（白文字）の上下余白を削減 */
  .deco > h2 {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    line-height: 1.4;
  }

  /* 各 feature ブロックの間隔を整理 */
  .feature-block {
    margin-bottom: 48px !important;
  }

  /* 見出し（遊んで学ぶ〜）と本文の距離 */
  .feature-title {
    margin-bottom: 12px !important;
  }

  /* 見出し直下の説明文エリア */
  .feature-content {
    padding-top: 0 !important;
    gap: 16px !important; /* 文章と画像の距離 */
  }

  /* 文章ブロック下に余白を作る */
  .feature-text {
    margin-bottom: 8px !important;
  }

  /* 写真の下にしっかり余白を作る */
  .feature-image {
   margin-top: 0 !important;
  margin-bottom: 28px !important;
}

  .feature-image img {
    display: block;
  }
}


/* =====================================
   スマホ：文章と写真を完全に密着させる
===================================== */
@media screen and (max-width: 768px) {

  /* 文章内のpの余白を完全に消す */
  .feature-text p {
    margin-bottom: 0 !important;
  }

  /* 文章ブロック自体の下余白も消す */
  .feature-text {
    margin-bottom: 0 !important;
  }

  /* 文章と写真の間のgapを消す */
  .feature-content {
    gap: 0 !important;
  }

  /* 写真の上余白を完全にゼロ */
  .feature-image {
    margin-top: 0 !important;
  }

}







/* =====================================
   スマホの見出しタイトル文字調整
===================================== */
@media screen and (max-width: 700px) {

  /* 汎用のh2 */
  .deco h2 {
    font-size: 1.4rem;
  }

  /* キャッチコピー専用 */
  .abc-catch-title {
    font-size: 16px;
    white-space: nowrap;
  }
}






/* =========================================
   トップ右上：SNS / ブログ / お問い合わせ（拡大・太字）
========================================= */

#mainimg {
  position: relative;
}

.side-links {
  position: absolute;
  top: 20px;
  right: 12px;
  transform: translateX(110%);
  display: flex;
  flex-direction: row;
  gap: 20px;                 /* ← 少し広げる */
  align-items: center;
  z-index: 300;
}

/* ===============================
   Instagram（大きく）
================================ */
.insta-link {
  display: block;
  width: 80px;               /* ← 64 → 80 */
  height: 80px;              /* ← 64 → 80 */
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  transition: background 0.3s, filter 0.3s, transform 0.3s;
}

.insta-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-link:hover {
  background: #e6e6e6;
  filter: brightness(0.9);
  transform: translateY(-3px);
}

/* ===============================
   ブログ（大きく・太字）
================================ */
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 18px 32px;        /* ← 少し大きく */
  background: #000;
  color: #fff;

  font-size: 19px;           /* ← 17 → 19 */
  font-weight: 900;          /* ← 太字強化 */

  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;

  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
}

.blog-link::after {
  content: "✏️";
  font-size: 20px;
}

.blog-link:hover {
  background: #444;
  transform: translateY(-3px);
}

/* ===============================
   お問い合わせ（赤・丸・強調）
================================ */
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 18px 28px;        /* ← 大きく */
  background: #e53935;
  color: #fff;

  font-size: 18px;           /* ← 読みやすく */
  font-weight: 900;          /* ← 太字 */

  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
}

/* メールアイコン */
.contact-link .icon {
  font-size: 20px;           /* ← アイコンも大きく */
  line-height: 1;
}

/* hover */
.contact-link:hover {
  background: #444;
  transform: translateY(-3px);
}

/* ===============================
   スマホでは非表示（そのまま）
================================ */
@media screen and (max-width: 768px) {
  .side-links {
    display: none;
  }
}









/* ===============================
   フッター全体
=============================== */
#footer {
  background: #f7f7f7;
  padding: 60px 20px 40px;
}

/* 中央寄せの本体 */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* 事業所名 */
.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===============================
   フッターメニュー
=============================== */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
}

.footer-nav li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.footer-nav li a:hover {
  text-decoration: underline;
}

/* ===============================
   フッター：SNS・ブログ・お問い合わせ
=============================== */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

/* Instagram */
.footer-links .insta-link img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: 0.2s;
}

.footer-links .insta-link:hover img {
  opacity: 0.7;
}

/* ブログボタン */
.footer-links .blog-link {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links .blog-link:hover {
  background: #666;
}

/* お問い合わせ */
.footer-links .contact-link {
  background: #e60023;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.footer-links .contact-link:hover {
  background: #c4001d;
}


/* ===============================
   スマホ用：フッターのSNS・ボタン調整
=============================== */
@media screen and (max-width: 768px) {

  /* フッター全体の余白 */
  #footer {
    padding: 40px 16px 30px;
  }

  /* 事業所名 */
  .footer-title {
    font-size: 20px;
  }

  /* メニューを縦寄りに */
  .footer-nav ul {
    gap: 12px 16px;
  }

  /* SNS・ブログ・お問い合わせ */
  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  /* Instagram */
  .footer-links .insta-link img {
    width: 48px;
    height: 48px;
  }

  /* ブログ・お問い合わせボタン */
  .footer-links .blog-link,
  .footer-links .contact-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 15px;
    padding: 12px 0;
  }

}
/* ===============================
   上部メニュー（PC・スマホ共通）
=============================== */
#menubar a {
  color: #555555;              /* 濃いグレー */
  transition: color 0.2s ease;
}

/* ホバー時（PC） */
#menubar a:hover {
  color: #b5b5b5;              /* 薄いグレー */
}

/* スマホメニューも同じ色 */
@media screen and (max-width: 768px) {
  #menubar a {
    color: #555555;
  }
}
/* ===============================
   コピーライト（スマホだけ小さく）
=============================== */
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 12px;        /* 小さく */
    line-height: 1.4;
    text-align: center;
  }
}



/* ===============================
   上部メニュー文字色 強制上書き
=============================== */

/* PCメニュー */
#menubar ul li a {
  color: #555555 !important;      /* 濃いグレー */
  transition: color 0.2s ease;
}

/* ホバー時 */
#menubar ul li a:hover {
  color: #b5b5b5 !important;      /* 薄いグレー */
}

/* スマホメニュー */
@media screen and (max-width: 768px) {
  #menubar ul li a {
    color: #555555 !important;
  }
}
/* ===============================
   フッター：SNS・ブログ・お問い合わせ
=============================== */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Instagram */
.footer-links .insta-link img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: block;
  transition: opacity 0.2s;
}

.footer-links .insta-link:hover img {
  opacity: 0.7;
}

/* ブログ */
.footer-links .blog-link {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.footer-links .blog-link:hover {
  background: #666;
}

/* お問い合わせ */
.footer-links .contact-link {
  background: #e60023;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links .contact-link:hover {
  background: #c4001d;
}

/* コピーライト（PC） */
.footer-inner .copyright {
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* ===============================
   スマホ用
=============================== */
@media screen and (max-width: 768px) {

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-links .blog-link,
  .footer-links .contact-link {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  .footer-inner .copyright {
    font-size: 12px;
    line-height: 1.4;
  }
}




/* =====================================
   PC版だけ 横幅を広げて見やすくする これをとれば水色の横幅が画面いっぱいに広がる。
===================================== */
@media screen and (min-width: 900px) {

  /* section 内の左右余白を縮小 */
  section > div {
    padding-left: 2% !important;
    padding-right: 2% !important;
  }

  /* メインコンテンツをほぼ全幅に */
  main {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* ABCキッズスクールについて（青背景） */
  .deco > div {
    max-width: 1800px;
    margin: 0 auto;
  }

  /* 文章ブロックを広げる */
  .align-block {
    max-width: 1200px !important;
    width: 100% !important;
  }

  /* 写真エリアを広げる */
  .abc-photo-area {
    max-width: 1400px;
    margin: 0 auto 50px;
  }

  .abc-photo-item {
    width: 34%;   /* ← 3枚を横いっぱいに */
  }

  /* supportカードも横に広げる */
  .support-card {
    max-width: 1800px !important;
  }

  /* support内の画像も大きく */
 .support-image img {
    width: 630px !important;   /* ← 横を拡大 */
    height: 400px;             /* ← 縦も拡大 */
    object-fit: cover;         /* ← すでにあるので安全 */
  }
}



/* ===== ハンバーガーメニューを最前面に出す（必須） ===== */
#menubar_hdr {
  z-index: 9999 !important;
  pointer-events: auto !important;
}




/* =====================================
   PC：説明文セクション文字を大きくする
===================================== */
@media screen and (min-width: 900px) {

  /* 見出し（1.2.3） */
  .align-block h3 {
    font-size: 2.6rem !important;   /* ← 今よりかなり大きく */
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* 本文 */
  .align-block p {
    font-size: 1.7rem !important;   /* ← 体感で一気に変わる */
    line-height: 2.2;
  }
}
/* =====================================
   PC：ベージュ枠（support-card）の文字を大きく
===================================== */
@media screen and (min-width: 900px) {

  /* タイトル（健康・生活など） */
  .support-title {
    font-size: 2.4rem !important;
    font-weight: 700;
    margin-bottom: 20px;
  }

  /* 小見出し（ねらい） */
  .support-subtitle {
    font-size: 1.6rem !important;
    margin-bottom: 16px;
  }

  /* 上段リスト */
  .support-list li {
    font-size: 1.7rem !important;
    line-height: 2.1;
  }

  /* 下の白枠タイトル */
  .bottom-title {
    font-size: 1.8rem !important;
    margin-bottom: 18px;
  }

  /* 下の白枠リスト */
  .bottom-list li {
    font-size: 1.5rem !important;
    line-height: 2.1;
  }




/* =====================================
   青背景プログラム紹介エリア：文字を大きく・太く
===================================== */
@media screen and (min-width: 900px) {

  /* 見出し（遊んで学ぶ〜 など） */
  .feature-title {
    font-size: 2.6rem !important;
    font-weight: 800 !important;
    line-height: 1.5;
  }

  /* 本文テキスト */
  .feature-text {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    line-height: 2.3;
    color: #333;
  }

  /* 箇条書き */
  .feature-text li {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    line-height: 2.3;
  }
}


/* スマホだけ Googleマップの高さを元に戻す */
@media screen and (max-width: 768px) {
  #map iframe {
    height: 250px;   /* ← 前と同じくらいの高さ */
  }
}


  /* 「ABCキッズスクールでは…」の説明文 */
  .support-bottom p,
  .support-bottom {
    font-size: 0.9rem;
  }
}


/* ===============================
   カルーセル（最小・安定版）
=============================== */

.carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* ===== PC：2枚表示 ===== */
@media screen and (min-width: 769px) {
  .carousel-track img {
    width: 50%;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
    padding: 0 10px;
  }
}

/* ===== スマホ：1枚・拡大しない ===== */
/* ===== スマホ：スライダー画像サイズ統一 ===== */
@media screen and (max-width: 768px) {
  .carousel-track img {
    width: 90%;
    max-width: 420px;
    height: 220px;          /* ← 高さを固定 */
    object-fit: cover;      /* ← 枠いっぱいに統一表示 */
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 12px;    /* 見た目も安定 */
  }
}


/* 矢印 */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }











/* ===============================
   フッター文字色を濃いグレーに変更（安全上書き）
=============================== */

/* フッターの事業所名 */
.footer-title {
  color: #555555 !important;   /* 濃いグレー */
}

/* フッターメニュー文字 */
.footer-nav li a {
  color: #555555 !important;   /* 濃いグレー */
}

/* ホバー時 */
.footer-nav li a:hover {
  color: #888888 !important;   /* 少し薄く */
}

/* コピーライト */
.footer-inner .copyright {
  color: #666666;
}













/* ===============================
   スマホ：supportカード文字サイズ 最終確定版
   （文字だけ調整／スライダーには影響しない）
=============================== */
@media screen and (max-width: 768px) {

  .support-card {
    font-size: 0.9rem !important;
  }

  .support-list li {
    font-size: 0.95em !important;
    line-height: 1.7;
  }

  .bottom-list li {
    font-size: 0.95em !important;
    line-height: 1.7;
  }

  .support-bottom p {
    font-size: 0.9em !important;
  }
}


/* ===============================
   スマホ：スライダー上下余白 微調整（今回追加）
   ※ 枠サイズ・表示枚数には触らない
=============================== */
@media screen and (max-width: 768px) {

  /* スライダー全体の上下余白を少しだけ減らす */
  .carousel-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* 「施設の様子」見出しとスライダーの距離を縮める */
  .facility-title {
    margin-bottom: 12px !important;
  }

  /* スライダー本体の余白を詰める */
  .carousel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* ===============================
   アクセス案内 見出しを薄いグレーに
=============================== */
.access-title {
  color: #b5b5b5;   /* 薄いグレー */
}





/* ===============================
   スマホ：アクセス案内〜スライダーの余白最適化（最終）
   ※ デザインを壊さない安全調整
=============================== */
@media screen and (max-width: 768px) {

  /* アクセス案内タイトル（薄いグレー・余白縮小） */
  .access-title {
    color: #b5b5b5;
    margin-bottom: 10px;
  }

  /* 手書きマップ：少し大きく */
  .access-map {
    width: 96%;
    margin: 10px auto 16px;
  }

  .access-map img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* スライダー全体の上下余白を減らす */
  .carousel-section {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  /* 「施設の様子」見出しとスライダーを近づける */
  .facility-title {
    margin-bottom: 10px !important;
  }

  /* スライダー画像サイズを完全統一 */
  .carousel-track img {
    width: 90%;
    max-width: 420px;
    height: 220px;          /* ★ 全画像を同じ高さに */
    object-fit: cover;      /* ★ 枠いっぱいに表示 */
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 12px;
  }
}














/* =====================================
   PC固定タイトルバー（PCのみ・最終完成版）
===================================== */
#pc-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 9998;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s ease;
}

#pc-fixed-header.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   ヘッダー全体
=============================== */
.pc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 32px;
  min-height: 110px;
  box-sizing: border-box;
}

/* ===============================
   ロゴ
=============================== */
.pc-header-logo {
  margin-left: 96px;
  height: 100%;
  display: flex;
  align-items: center;
}

.pc-header-logo img {
  height: 100px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
}

/* ===============================
   メニュー
=============================== */
.pc-header-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.pc-header-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.pc-header-nav a:hover {
  background: #f3efe6;
  color: #d14b2c;
}

.pc-header-nav a.is-active {
  background: #f3efe6;
  color: #d14b2c;
  position: relative;
}

.pc-header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 100%;
  border-bottom: 3px dotted #d14b2c;
}

/* ===============================
   右側リンク（完全保証）
=============================== */
.pc-header-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Instagram */
.pc-header-links .insta-link {
  flex-shrink: 0;
}

/* ★ ブログ：全文保証 */
.pc-header-links .blog-link {
  display: inline-flex;            /* ← 重要 */
  align-items: center;
  justify-content: center;
  padding: 14px 56px;
  min-width: 320px;                /* ← 文字数ベース */
  white-space: nowrap;             /* ← 折り返し禁止 */
  overflow: visible;               /* ← 切れ防止 */
  line-height: 1.2;
}

/* ★ お問い合わせ：✉必ず表示 */
.pc-header-links .contact-link {
  display: inline-flex;            /* ← 重要 */
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  min-width: 220px;
  gap: 10px;
  white-space: nowrap;
  overflow: visible;
  line-height: 1.2;
}

/* メールアイコン強制表示 */
.pc-header-links .contact-link .icon,
.pc-header-links .contact-link i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  line-height: 1;
}

/* ===============================
   スマホでは非表示
=============================== */
@media screen and (max-width: 768px) {
  #pc-fixed-header {
    display: none;
  }
}

/* PCではハンバーガー非表示 */
@media screen and (min-width: 769px) {
  #menubar_hdr {
    display: none;
  }
}




/* ===============================
   固定タイトルメニュー：右側ボタン調整
=============================== */

/* ブログボタン */
#pc-fixed-header .blog-link {
  display: inline-flex;          /* 文字サイズにフィット */
  align-items: center;
  justify-content: center;

  padding: 14px 24px;            /* ← 上下を広め・左右は文字基準 */
  line-height: 1;                /* 高さ暴れ防止 */
  white-space: nowrap;

  width: auto;                   /* ← 横幅を文字に合わせる */
  min-width: unset;
  max-width: unset;
}

/* お問い合わせボタン */
#pc-fixed-header .contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 26px;            /* ← 上下をブログと同じくらい */
  line-height: 1;
  white-space: nowrap;

  width: auto;                   /* ← 文字基準 */
  min-width: unset;
  max-width: unset;
}
/* ===============================
   固定タイトル：右側ボタン最終調整（安定版）
=============================== */

/* インスタは「触らない」＝既存デザインを尊重 */
#pc-fixed-header .insta-link {
  display: block;
}

/* ブログ：文字幅にフィット＋上下を広げる */
#pc-fixed-header .blog-link {
  padding: 18px 28px;     /* ← 上下をしっかり */
  width: auto;            /* ← 文字に合わせる */
  min-width: unset;       /* ← 強制幅を解除 */
  line-height: 1;
}

/* お問い合わせ：ブログと高さを揃える */
#pc-fixed-header .contact-link {
  padding: 18px 30px;
  width: auto;
  min-width: unset;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* メールアイコン切れ防止 */
#pc-fixed-header .contact-link .icon {
  line-height: 1;
}

















/* ===============================
   トップページ：PCだけロゴを下にずらす
   （スマホは一切変更しない）
=============================== */
@media screen and (min-width: 769px) {
  .home header .logo {
    margin-top: 200px;  /* ← この数字だけ調整 */
  }
}







/* ===============================
   PCだけ：トップページ電話番号画像
   スクロール前・左上配置　　　　　　　　　　　　　　　　←いらなかったら消す　HTMLも忘れずに
=============================== */
@media screen and (min-width: 769px) {

  .home .pc-tel-image {
    position: absolute;
    top: 30px;          /* 上からの位置 */
    left: 40px;         /* 左からの位置 */

    z-index: 200;       /* 写真より前、固定ヘッダーより後 */
  }

  .home .pc-tel-image img {
    width: 320px;       /* ★ ちょうど良いサイズ */
    max-width: 24vw;    /* 画面が広いPCでも大きくなりすぎない */
    height: auto;
  }
}

/* スマホでは完全に非表示 */
@media screen and (max-width: 768px) {
  .pc-tel-image {
    display: none;
  }
}




/* ===============================
   フッター：SNS・ブログ・お問い合わせ整形
=============================== */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;               /* ボタン同士の間隔 */
  margin-top: 20px;
}

/* Instagram（フッター用） */
.footer-links .insta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.footer-links .insta-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

/* ブログボタン（フッター） */
.footer-links .blog-link {
  padding: 14px 28px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

/* お問い合わせボタン（フッター） */
.footer-links .contact-link {
  padding: 14px 28px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* メールアイコン */
.footer-links .contact-link .icon {
  line-height: 1;
}
/* ===============================
   フッター Instagram アイコンを枠いっぱいに
=============================== */
.footer-links .insta-link img {
  width: 55px;        /* ← 大きくする */
  height: 55px;
  object-fit: contain;
}




/* ===============================
   スマホ：bg_deco_top が切れないように高さを確保             ←これ大事このコードでスマホの気球画像が映るようになった
=============================== */
@media screen and (max-width: 768px) {
  .deco {
    padding-top: 180px !important;  /* ← これが核心 */
  }
}



/* ===============================
   スマホ：活動写真は2枚目だけ表示　　三枚映ると見にくいから一枚だけ表示にした。
=============================== */
@media screen and (max-width: 768px) {

  /* いったん全部非表示 */
  .abc-photo-item {
    display: none;
  }

  /* 真ん中（写真2）だけ表示 */
  .abc-photo-item:nth-child(2) {
    display: block;
  }
}

/* ===============================
   スマホ：｢私たちの想い｣を読みやすく　　少し大きく拡大した。
=============================== */
@media screen and (max-width: 768px) {

  h2 .small {
    font-size: 0.70em !important; /* ← 0.4 → 0.65 */
    margin-top: 6px;
    letter-spacing: 0.08em;
  }

}





/* ===============================
   スマホ：青背景（私たちの想い）文章レイアウト 最終調整
=============================== */
@media screen and (max-width: 768px) {

  /* 見出し全体 */
  .deco h2 {
    margin-bottom: 12px !important; /* ← 見出し直下 */
    text-align: center;
  }

  /* 小見出し */
  h2 .small {
    font-size: 0.7em !important;
    line-height: 1.6 !important;
    margin-bottom: -35px !important;
  }

  /* 説明文（ここが主役） */
  .deco > div p {
    margin-top: 18px !important;
    margin-bottom: 30px !important;
    line-height: 2.0 !important;
  }

}


/* ===============================
   スマホ：文字と写真の上下余白を完全になくす    ５領域の写真上と文字の余白なくす。
=============================== */
@media screen and (max-width: 768px) {

  /* 文字ブロックの下余白を消す */
  .support-text {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* リストやpが持つ下余白も念のため消す */
  .support-text p,
  .support-text ul {
    margin-bottom: 0 !important;
  }

  /* 写真ブロックの上余白を消す */
  .support-image {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* img特有の隙間対策 */
  .support-image img {
    display: block;
  }

}







/* ===============================
   フッター：電話番号ボタン（赤文字・赤アイコン確定）
=============================== */
.footer-links .tel-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 28px;
  border-radius: 999px;

  background: #ffffff;         /* 白背景 */
  border: 2px solid #e60023;   /* 赤い枠線 */

  color: #e60023 !important;   /* ← ☎ も番号も強制で赤 */
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* hover */
.footer-links .tel-link:hover {
  background: #ffeaea;
  color: #e60023 !important;
}

/* ===============================
   スマホ：フッターボタン3つの横幅を統一（安全版）
=============================== */
@media screen and (max-width: 768px) {

  .footer-links .blog-link,
  .footer-links .contact-link,
  .footer-links .tel-link {
    width: 100%;
    max-width: 280px;   /* ← 3つとも同じ横幅 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

}







/* ===============================
   フッター：ブログボタンを白×濃グレーに変更（確定）                              ブログボタンの色変更できる！！
=============================== */
.footer-links .blog-link {
  background: #ffffff !important;   /* 白背景 */
  color: #555555 !important;         /* 濃いグレー文字 */
  border: 2px solid #555555 !important;
  box-shadow: none !important;       /* 黒い影を消す */
  font-weight: 700;
}

/* タップ・ホバー時 */
.footer-links .blog-link:hover {
  background: #f2f2f2;
}
/* ===============================
   フッター：3ボタンの外枠サイズを完全に統一
=============================== */
.footer-links .blog-link,
.footer-links .tel-link,
.footer-links .contact-link {
  width: 260px;              /* ← 全員同じ横幅 */
  height: 54px;              /* ← 全員同じ高さ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}



/* ===============================
   共通：ブログボタン（ヘッダー・トップ・フッターすべて）　　　　　　　　　　　　　　　　　トップとヘッダーのブログボタンの色変更できる。
=============================== */
a.blog-link {
  background: #ffffff !important;   /* 白背景 */
  color: #555555 !important;         /* 濃グレー文字 */
  border: 2px solid #555555 !important;
  box-shadow: none !important;
  font-weight: 700;
  border-radius: 999px;
}

/* ホバー・タップ時 */
a.blog-link:hover {
  background: #f3f3f3;
}






/* ===============================
   ヘッダー：Instagramアイコンを少し小さく
=============================== */
.pc-header-links .insta-link img {
  width: 36px;   /* ← 今より小さく */
  height: 36px;
}
/* ===============================
   ヘッダー：Instagramアイコン（枠＋画像を完全中央揃え）
=============================== */
.pc-header-links .insta-link {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;     /* 縦中央 */
  justify-content: center; /* 横中央 */
}

/* 中の画像 */
.pc-header-links .insta-link img {
  width: 24px;
  height: 24px;
  display: block;          /* 余計なズレ防止 */
}
/* ===============================
   上書き用：ヘッダーInstagramアイコン 最終調整
=============================== */
.pc-header-links a.insta-link {
  width: 39px !important;
  height: 39px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pc-header-links a.insta-link img {
  width: 32px !important;   /* ← ここを変えればサイズ調整可 */
  height: 32px !important;
  display: block !important;
}







/* ===== ホーム本文だけを80%表示にする（確定版）===== */
body.home #contents {
  zoom: 0.8;
}

/* ヘッダーは縮小させない */
body.home header,
body.home #pc-fixed-header {
  zoom: 1;
}







/* =================================================
   PC専用：固定タイトルバー調整     最初画面80％で作っていたため拡大されて表示されていたので、100％で見た時にちょうどいいように大きさ調整した。
   ※ スマホには一切影響しない
================================================= */
@media screen and (min-width: 769px) {

  /* ===== 固定ヘッダー全体の高さを低く ===== */
  #pc-fixed-header .pc-header-inner {
    min-height: 72px;          /* 高さを下げる */
    padding: 6px 24px;         /* 上下を詰める */
  }

  /* ===== ロゴを一番左へ ===== */
  .pc-header-logo {
    margin-left: 20px;         /* 左寄せ */
  }

  .pc-header-logo img {
    height: 60px;              /* ロゴを少し小さく */
    max-width: 220px;
  }

  /* ===== 中央メニューを少しコンパクトに ===== */
  .pc-header-nav {
    gap: 18px;                 /* 間隔を詰める */
  }

  .pc-header-nav a {
    font-size: 14px;
    padding: 6px 8px;
  }

  /* ===== 右側リンクを右に寄せ、中央と離す ===== */
  .pc-header-links {
    margin-left: 48px;         /* 中央メニューと距離 */
    gap: 14px;
  }

  /* ===== Instagram（小さく） ===== */
  .pc-header-links a.insta-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pc-header-links a.insta-link img {
    width: 22px;
    height: 22px;
  }

  /* ===== ブログボタン（小さく） ===== */
  #pc-fixed-header .blog-link {
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
  }

  /* ===== お問い合わせボタン（小さく） ===== */
  #pc-fixed-header .contact-link {
    padding: 8px 18px;
    font-size: 13px;
    line-height: 1;
    gap: 6px;
    white-space: nowrap;
  }

  #pc-fixed-header .contact-link .icon {
    font-size: 13px;
  }
}
/* =================================================
   PCのみ：スクロール前トップ右上ボタンを
   固定ヘッダーと同じサイズ・位置にする
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  /* ===== トップ右上のボタン群 ===== */
  .side-links {
    top: 16px;                 /* 固定ヘッダーと同じ高さ感 */
    right: 24px;               /* 右端を揃える */
    transform: none;           /* 余計なズレを解除 */
    gap: 14px;
  }

  /* ===== Instagram ===== */
  .side-links .insta-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: none;
  }

  .side-links .insta-link img {
    width: 22px;
    height: 22px;
  }

  /* ===== ブログ ===== */
  .side-links .blog-link {
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1;
    height: auto;
    box-shadow: none;
  }

  /* ===== お問い合わせ ===== */
  .side-links .contact-link {
    padding: 8px 18px;
    font-size: 13px;
    line-height: 1;
    gap: 6px;
    box-shadow: none;
  }

  .side-links .contact-link .icon {
    font-size: 13px;
  }
}
/* =================================================
   PCのみ：トップ右上ボタン位置＆Instagram修正
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  /* ===== トップ右上ボタン群をさらに右へ ===== */
  .side-links {
    top: 16px;
    right: 48px;              /* ← 右へ寄せる（重要） */
    transform: none;
    gap: 14px;
  }

  /* ===== Instagram：枠と画像を完全一致 ===== */
  .side-links .insta-link {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;         /* ← はみ出し防止 */
    box-shadow: none;
    background: transparent;
  }

  .side-links .insta-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* ← 枠にピッタリ */
    display: block;
  }

  /* ===== ブログ ===== */
  .side-links .blog-link {
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1;
    box-shadow: none;
  }

  /* ===== お問い合わせ ===== */
  .side-links .contact-link {
    padding: 8px 18px;
    font-size: 13px;
    line-height: 1;
    gap: 6px;
    box-shadow: none;
  }

  .side-links .contact-link .icon {
    font-size: 13px;
  }
}
/* =================================================
   PCのみ：トップ右上3ボタンをさらに右へ
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  /* ★ 親コンテナを右端へ */
  .side-links {
    top: 16px;
    right: 80px;              /* ← ここが核心。さらに右へ */
    transform: none !important;
    gap: 14px;
  }
}
/* =================================================
   PCのみ：トップ右上3ボタンを画面右端に固定
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  .side-links {
    position: fixed;      /* ★ absolute → fixed */
    top: 16px;
    right: 24px;          /* ★ 画面右端基準になる */
    transform: none !important;
    gap: 14px;
    z-index: 9997;
  }

}
/* =================================================
   PC固定タイトルメニュー時だけ
   「ブログ」→「ブログはこちらから」に変更
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  /* 文字を一度消す */
  #pc-fixed-header .blog-link {
    font-size: 0;          /* 元の文字を非表示 */
    padding: 8px 18px;     /* 横幅を少し広げる */
  }

  /* 新しい文字を表示 */
  #pc-fixed-header .blog-link::before {
    content: "ブログはこちらから";
    font-size: 13px;       /* 他ボタンと揃える */
    font-weight: 700;
  }

  /* ペンアイコンを後ろに付ける */
  #pc-fixed-header .blog-link::after {
    content: " ✏️";
    font-size: 13px;
  }

}
/* =================================================
   PC固定ヘッダー：中央ナビを画面中央に固定
   ※ 見た目がはっきり変わる
================================================= */
@media screen and (min-width: 769px) {

  .pc-header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;           /* auto を無効化 */
  }

}
/* =================================================
   PCのみ：スクロール前の3ボタンは固定しない
   ※ スマホ一切影響なし
================================================= */
@media screen and (min-width: 769px) {

  .side-links {
    position: absolute;   /* ← fixed をやめる */
    top: 16px;
    right: 24px;
    z-index: 10;
  }

}
/* =================================================
   PCのみ：スクロール前3ボタンを右端に寄せる
================================================= */
@media screen and (min-width: 769px) {

  .side-links {
    position: absolute;
    top: 16px;
    right: -220px;   /* ← マイナスで右に押し出す */
    z-index: 10;
  }

}

/* ===============================
   PCだけ：ABCロゴを強制的に下へ
=============================== */
@media screen and (min-width: 769px) {
  .home header .logo {
    transform: translateY(85px);     /* ← PCのロゴの位置を上や下にずらしたい時ここの数値変更すれば変わる。上にもっと上げたければ数値少なくする！！ */
  }
}






/* ===============================
   見出し下の説明文を中央に揃える
   （PC・スマホ共通）
=============================== */
.deco > div p {
  max-width: 900px;        /* 横に広がりすぎない */
  margin: 0 auto 30px;     /* ブロック自体を中央へ */
  text-align: center;      /* 文字を中央揃え */
}
/* ===============================
   見出し下の説明文
   外枠は中央・中身は左揃え（美しく整列）
=============================== */
.deco > div p {
  max-width: 720px;      /* ← 文章幅を固定 */
  margin: 0 auto 30px;   /* ← ブロック自体を中央へ */
  text-align: left;      /* ← 文章の頭を揃える */
}
/* ===============================
   見出し下の説明文
   PC・スマホ共通で中央配置を保証
=============================== */
.deco > div p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* ===============================
   スマホ専用：左右ズレを完全に排除
=============================== */
@media screen and (max-width: 768px) {
  .deco > div p {
    width: 90%;              /* ← 画面に対して中央 */
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }
}
/* ===============================
   PCのみ：番号付き見出しを
   少し小さく＆中央揃えにする
=============================== */
@media screen and (min-width: 769px) {

  /* 1. 2. 3. の見出し（PC） */
  .deco h3 {
    font-size: 1.85rem;        /* ← 少しだけ小さく */
    line-height: 1.4;
    text-align: center;

    max-width: 900px;          /* ← 横幅制限 */
    margin: 0 auto 24px;       /* ← 完全中央 */

    white-space: normal;       /* ← ★ nowrapをやめる */
    word-break: keep-all;      /* ← 日本語を変な位置で切らない */
  }

}







/* ===============================
   スマホ版：見出し（1・2・3）を中央に戻す
=============================== */
@media screen and (max-width: 768px) {
  .deco h3 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* ===============================
   スマホ：番号付き見出しを
   本当の意味で中央にする
=============================== */
@media screen and (max-width: 768px) {
  .deco h3 {
    display: block;
    width: 100%;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* ===============================
   スマホ：deco内の中央バランス最終調整
=============================== */
@media screen and (max-width: 768px) {

  .deco > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .deco h3 {
    max-width: 90%;
    margin: 0 auto 20px !important;
    text-align: center !important;
  }

  .deco > div p {
    width: 90%;
    margin: 0 auto 24px !important;
    text-align: left !important;
  }

}
/* ===============================
   スマホ：青背景エリア自体を
   画面中央に固定する
=============================== */
@media screen and (max-width: 768px) {
  .deco {
    margin-left: auto !important;
    margin-right: auto !important;      /* ← スマホ版で、文字が中央寄りではなく左にそろえられてるので、インポータントを書いたが、全然作用しないのでこのまましする */                          
    left: auto !important;
    right: auto !important;                             
  }
}











/* ===============================
   スマホ：フッターメニューを
   上4・下3 に分ける
=============================== */
@media screen and (max-width: 768px) {

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 0;          /* 縦の間隔を少し詰める */
  }

  /* 1〜4番目：上段（4つ） */
  .footer-nav li:nth-child(-n+4) {
    width: 25%;           /* 4等分 */
    text-align: center;
  }

  /* 5〜7番目：下段（3つ） */
  .footer-nav li:nth-child(n+5) {
    width: 33.333%;       /* 3等分 */
    text-align: center;
  }

}
/* ===============================
   スマホ：下段（3項目）だけ
   文字間を少し詰める
=============================== */
@media screen and (max-width: 768px) {

  /* 下段3つ */
  .footer-nav li:nth-child(n+5) {
    width: 30%;              /* ← 33.333% → 少し詰める */
  }

  /* 下段のリンク文字 */
  .footer-nav li:nth-child(n+5) a {
    letter-spacing: -0.02em; /* ← 文字間をほんの少し寄せる */
  }

}






/* =====================================
   ボタン hover：ごくわずかにだけ色を変える（最終）
===================================== */

/* お問い合わせボタン（ヘッダー・フッター共通） */
a.contact-link {
  color: #ffffff;   /* ← ★追加：少し薄いグレー */
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* ホバー時：ほんのり暗い赤 */
a.contact-link:hover {
  background-color: #d83a3a;
  color: #E3E3E3;   /* ← ★hover時は読みやすい明るめグレー                                                       ←カーソルが当たった時のヘッダーお問い合わせボタン文字色変化 */
}



/* ブログボタン（ヘッダー・フッター共通） */
a.blog-link {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* ホバー時：お問い合わせと同じトーン変化 */
a.blog-link:hover {
  background-color: #f2f2f2;   /* 白→ごく薄いグレー */
  border-color: #d83a3a;       /* 赤系で統一感 */
  color: #555555;
}
/* ===============================
   ヘッダー：ブログ hover を
   Instagram と同じ色にする
=============================== */

/* Instagram の hover と完全に統一 */
.pc-header-links a.blog-link:hover,
.side-links a.blog-link:hover {
  background: #EDEBEB !important;   /* Instagramと同色                            また色変えたく成ればここら辺変更すればオッケー    ブログボタンの色変更するカーソルが合うと、薄グレーになる。*/
  border-color: #E9E9E9 !important;
  color: #555555 !important;
  filter: brightness(0.9);          /* Instagramと同じトーン */
}
/* ===============================
   ヘッダー：ブログ hover
   背景はInstagramと同色
   黒枠は維持する
=============================== */

.pc-header-links a.blog-link:hover,
.side-links a.blog-link:hover {
  background: #e6e6e6 !important;   /* Instagramと同じ */
  color: #555555 !important;

  /* ★ 黒枠はそのまま */
  border-color: #555555 !important;

  filter: brightness(0.9);          /* Instagramと同トーン */
}



/* ===============================
   フッター：ブログ hover 最終上書き
   （共通ルールより必ず勝つ）
=============================== */
.footer-links a.blog-link:hover {
  background-color: #EDEBEB !important; /* 超うすいグレー                         カーソルが当たるとフッターの背景色変えたいとき*/
  color: #555555 !important;
}

/* ===============================
   フッター：電話ボタン
   hoverしても色を変えない（完全固定）
=============================== */
.footer-links .tel-link:hover {
  background: #ffffff !important;   /* 通常時と同じ */
  color: #e60023 !important;         /* 赤文字固定 */
  border-color: #e60023 !important;  /* 赤枠固定 */
  box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
  filter: none !important;
  transform: none !important;
}
/* ===============================
   コピーライト上に確実に余白を作る（最終確定）
=============================== */
.footer-inner small.copyright {
  display: block !important;
  margin-top: 32px !important;
}



/* =====================================
   PC固定タイトルバー（下層ページは常時表示）
   追記：index以外
===================================== */

#pc-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#pc-fixed-header.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* トップページ以外は本文が隠れないように調整（PCのみ） */
@media screen and (min-width: 769px) {
  body:not(.home) {
    padding-top: 80px; /* ← 固定バーの高さに合わせて微調整 */
  }
}








/* =========================
   PCだけ Googleマップを確実に高くする（親ごと）                               
========================= */
@media screen and (min-width: 769px) {

  /* 親コンテナを固定高にする */
  section#footer #map{
    height: 690px !important;                  /* ←　PCのGoogleマップの高さを調整したいときこの数値で調整する。６９０ｐｘ*/                         
    max-height: none !important;
    overflow: visible !important;
  }

  /* iframeは親の高さに合わせる */
  section#footer #map iframe{
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: 620px !important;
  }
}

/* スマホ版：Googleマップを見やすくする */
@media screen and (max-width: 768px) {
  #footer #map iframe {
    height: 450px !important;                  /* ←　スマホののGoogleマップの高さを調整したいときこの数値で調整する。450ｐｘ*/                         
    max-height: none !important;
  }
}








/* ==============================
   ハンバーガーメニュー③
   スマホ時のみ点線を表示
============================== */
@media screen and (max-width: 768px) {

  #menubar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  #menubar ul li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  }

  #menubar ul li:last-child {
    border-bottom: none;
  }

  #menubar ul li a {
    transition: background 0.2s ease, transform 0.1s ease;
  }

  #menubar ul li a:active {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(0.98);
  }

}
@media screen and (max-width: 768px) {

  /* 文字を少し太く・読みやすく */
  #menubar ul li a{
    font-weight: 600;          /* 太くしすぎない */
    letter-spacing: 0.03em;    /* ほんの少しだけ今っぽく */
    font-size: 16px;           /* 読みやすさUP（好みで15〜17） */
    padding: 18px 16px;        /* タップしやすく */
    border-radius: 12px;       /* 今っぽい丸み */
    margin: 6px 10px;          /* 項目同士の余白 */
  }

  /* 触った時の反応を少しリッチに */
  #menubar ul li a:hover{
    background: rgba(0,0,0,0.04);
  }
  #menubar ul li a:active{
    background: rgba(0,0,0,0.06);
    transform: scale(0.99);
  }

  /* 点線を“区切り”じゃなく“薄いガイド”に（主張を弱める） */
  #menubar ul li{
    border-bottom: 1px dashed rgba(0,0,0,0.05);
  }

}






/* ==============================
   PC固定メニュー：区切り線 + 文字を真ん中（左右均等）
============================== */
@media screen and (min-width: 769px) {

  /* PC固定メニューの並び */
  .pc-header-nav{
    display: flex;
    align-items: center;
    gap: 0; /* 念のため */
  }

  /* 各メニューの左右余白を均等にする（←ここが“真ん中”の肝） */
  .pc-header-nav a{
    display: flex;
    align-items: center;
    padding: 10px 18px;  /* 左右18pxが均等 */
    line-height: 1;      /* 縦のズレを減らす */
    position: relative;
  }

  /* 区切り線（2個目以降の左側に出す） */
  .pc-header-nav a + a{
    border-left: 1px solid rgba(0,0,0,0.12);
  }

}




@media screen and (min-width: 769px){　　　　　  /* PCの固定メニューカーソルが当たると色が薄いブルーになる、前回のベージュでなくなる） */
  .pc-header-nav a{
    background-clip: padding-box;
  }
  .pc-header-nav a:hover{
    background: rgba(0,0,0,0.04);
  }
}
/* ==============================
   PCナビ：現在ページもホバーと同色に
============================== */
@media screen and (min-width: 769px){

  /* ホバー時 */
  .pc-header-nav a:hover{
    background: rgba(0, 0, 0, 0.04);
  }

  /* 現在ページ（アクティブ） */
  .pc-header-nav a.is-active,
  .pc-header-nav a.current{
    background: rgba(0, 0, 0, 0.04);
    font-weight: 600; /* 状態の違いは太さで */
  }

}













/* =================================================
   フッター関連ここから
   （ボタン・LINE・Instagram・ブログ・電話）
   ※ 次回この下だけ見ればOK
================================================= */

/* ==============================
   フッター：LINEボタン
============================== */
.footer-links .line-link{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  max-width: 360px;          /* フッター内で大きすぎないように */
  margin: 10px auto 0;       /* 上に少し余白 */
  padding: 14px 16px;

  background: #06C755;       /* LINEグリーン */
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}

/* アイコン部分 */
.footer-links .line-link .icon{
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;

  background: #fff;          /* 白丸 */
  color: #06C755;            /* 中の文字は緑 */
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

/* 文字 */
.footer-links .line-link .text{
  font-size: 16px;
}

/* hover / active */
.footer-links .line-link:hover{
  filter: brightness(1.02);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
  transform: translateY(-1px);
}
.footer-links .line-link:active{
  transform: translateY(0) scale(0.99);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* スマホ微調整 */
@media screen and (max-width: 600px){
  .footer-links .line-link{
    max-width: 100%;
    padding: 15px 14px;
  }
  .footer-links .line-link .text{
    font-size: 15px;
  }
}


/* =========================================
   フッター：4ボタン横並び（PC）＋スマホ縦並び
   Instagram / ブログ / 電話 / お問い合わせ / LINE
   ※既存の .footer-links や .line-link 関連は全部消してこれに統一
========================================= */

/* 共通：フッターボタンの並び */
#footer .footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;  /* スマホで折り返し */
  margin-top: 16px;
}

/* 共通：フッターボタン（aタグ）を同じ箱にする */
#footer .footer-links > a{
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;                 /* ★全ボタンの高さ統一 */
  width: 220px;                 /* ★全ボタンの長さ統一（PC基準） */
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* Instagram：画像だけでも同じ箱サイズに収める */
#footer .footer-links > a.insta-link{
  padding: 0;
}
#footer .footer-links > a.insta-link img{
  width: 30px;
  height: 30px;
  display: block;
}

/* LINEボタン：他と同じ箱サイズで横並びに入れる */
#footer .footer-links > a.line-link{
  background: #06C755;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}

/* LINEの中身（アイコン＋文字）を横並びに */
#footer .footer-links > a.line-link .icon{
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #06C755;
  border-radius: 50%;
  margin-right: 10px;
  line-height: 1;
}
#footer .footer-links > a.line-link .text{
  font-size: 15px;
}

/* hover/active（全部に適用して統一感） */
#footer .footer-links > a{
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
#footer .footer-links > a:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}
#footer .footer-links > a:active{
  transform: translateY(0) scale(0.99);
}

/* =========================
   PC：横並び固定（折り返さない）
========================= */
@media screen and (min-width: 901px){
  #footer .footer-links{
    flex-wrap: nowrap;          /* ★PCは1行に固定 */
  }
}

/* =========================
   スマホ：縦並び（横幅が長すぎない）
========================= */
@media screen and (max-width: 900px){
  #footer .footer-links{
    flex-direction: column;
    align-items: center;
  }
  #footer .footer-links > a{
    width: min(92%, 360px);     /* ★スマホで長すぎない */
    height: 56px;
  }
}
/* =========================================
   フッター：ボタン横並び統一（PC）＋LINE中央ズレ修正
   ※ style.css 一番下に追記
========================================= */

@media screen and (min-width: 901px){

  /* ボタン群 */
  #footer .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
  }

  /* 4つのボタン（ブログ/電話/問い合わせ/LINE）は同じ幅・同じ高さ */
  #footer .footer-links > a{
    box-sizing: border-box;
    height: 56px;
    width: 220px;                /* ←ここで横幅統一（好みで 200〜240px） */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    margin: 0;                   /* ←LINEだけ間隔広い原因を潰す */
  }

  /* Instagramだけは小さく（デカすぎ対策） */
  #footer .footer-links > a.insta-link{
    width: 80px;
    padding: 0;
    flex: 0 0 80px;
  }
  #footer .footer-links > a.insta-link img{
    max-width: 34px;             /* アイコンの見た目も調整 */
    height: auto;
    display: block;
  }

  /* LINEの中身を完全中央固定（ズレ対策） */
  #footer .footer-links > a.line-link{
    justify-content: center;
    gap: 10px;
  }
  #footer .footer-links > a.line-link .icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #06C755;
    line-height: 1;
    margin: 0;                   /* 余計な余白を禁止 */
    flex: 0 0 34px;
  }
  #footer .footer-links > a.line-link .text{
    margin: 0;
    line-height: 1;
    white-space: nowrap;
  }
}


/* =========================================
   フッター：PC ボタン最終調整（インスタ透明化/LINE中央/間隔統一）
   ※ style.css 一番下に追記
========================================= */

@media screen and (min-width: 901px){

  /* ボタン群：間隔を統一 */
  #footer .footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    gap: 16px;                 /* ←間隔はここで統一 */
    flex-wrap: nowrap;
  }

  /* 念のため：余計なmarginが残っていても無効化 */
  #footer .footer-links > a{
    margin: 0 !important;
  }

  /* --- Instagram：外枠を“消す”（透明化）--- */
  #footer .footer-links > a.insta-link{
    width: 44px !important;    /* 枠も最小に */
    height: 44px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;     /* ←大きく見える原因の影を消す */
    display: grid !important;
    place-items: center !important;
  }
  #footer .footer-links > a.insta-link img{
    width: 28px !important;
    height: 28px !important;
    display:block;
  }

  /* 4つの“普通ボタン”は同じサイズ */
  #footer .footer-links > a.blog-link,
  #footer .footer-links > a.tel-link,
  #footer .footer-links > a.contact-link,
  #footer .footer-links > a.line-link{
    width: 220px;              /* ←長さを揃える */
    height: 56px;              /* ←高さを揃える */
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 0 18px;
    box-sizing:border-box;
  }

  /* --- LINE：中身を完全に中央固定（右寄り解消）--- */
  #footer .footer-links > a.line-link{
    gap: 10px;
  }
  #footer .footer-links > a.line-link .icon{
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display:grid;
    place-items:center;
    margin: 0 !important;
  }
  #footer .footer-links > a.line-link .text{
    flex: 0 0 auto;            /* ←伸びないようにして中央ズレ防止 */
    margin: 0 !important;
    text-align: center;
    white-space: nowrap;
  }
}


/* =========================================
   LINEボタン：文字が右寄りになる問題の最終修正
   ※ 追記専用（既存コードは消さない）
========================================= */

@media screen and (min-width: 901px){

  /* LINEボタン自体を grid にして完全中央化 */
  #footer .footer-links > a.line-link{
    display: grid !important;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    column-gap: 10px;          /* アイコンと文字の間隔 */
  }

  /* 文字が伸びて右に寄らないよう固定 */
  #footer .footer-links > a.line-link .text{
    width: auto !important;
    flex: none !important;
    text-align: center;
  }

  /* 念のため：icon側も固定 */
  #footer .footer-links > a.line-link .icon{
    margin: 0 !important;
    flex: none !important;
  }
}
/* =========================================
   LINEボタン：文字が右寄りに見えるのを確実に直す（PC）
   ※ style.css の一番下に追記
========================================= */

@media screen and (min-width: 901px){

  /* LINEボタン本体 */
  #footer .footer-links a.line-link{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 12px 18px !important;
  }

  /* 右側に「アイコンと同じ幅のダミー」を作って重心を中央に */
  #footer .footer-links a.line-link::after{
    content: "";
    width: 34px;      /* ← .icon の幅と同じにする */
    height: 34px;     /* ← .icon の高さと同じにする */
    display: block;
    flex: 0 0 34px;
  }

  /* 文字が伸びて右に引っ張られないようにする */
  #footer .footer-links a.line-link .text{
    flex: 0 0 auto !important;
    text-align: center !important;
    white-space: nowrap;
  }

  /* アイコンサイズが違う場合の保険 */
  #footer .footer-links a.line-link .icon{
    flex: 0 0 34px !important;
  }
}
/* =========================================
   PCフッター：ブログ/LINEの文字を見た目で中央に
   ＆ LINEの丸アイコンを消す（PCのみ）
========================================= */
@media screen and (min-width: 901px){

  /* ブログ：鉛筆アイコンが原因でズレて見えるので、文字だけ中央に */
  #footer .footer-links a.blog-link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  /* ブログ内のアイコン(鉛筆など)が span/icon の場合は幅固定で左右バランス */
  #footer .footer-links a.blog-link .icon,
  #footer .footer-links a.blog-link i,
  #footer .footer-links a.blog-link img{
    flex: 0 0 18px;
  }

  /* LINE：邪魔な丸（💬側）を消す */
  #footer .footer-links a.line-link .icon{
    display: none !important;
  }

  /* LINE：文字を完全に中央へ */
  #footer .footer-links a.line-link{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding-left: 18px !important; /* 左右の余白を揃える */
    padding-right: 18px !important;
  }
  #footer .footer-links a.line-link .text{
    text-align: center !important;
    white-space: nowrap;
  }
}
/* =========================================
   PCフッター：ボタン間隔＆ブログ左余白 微調整
========================================= */
@media screen and (min-width: 901px){

  /* ボタン全体の間隔を少し詰める */
  #footer .footer-links{
    gap: 10px; /* ← 空きすぎていたので 14px → 10px */
  }

  /* 全ボタンを同じ幅にそろえる（見た目安定） */
  #footer .footer-links a{
    width: 220px;
  }

  /* ブログボタン：左側にだけ少し余白 */
  #footer .footer-links a.blog-link{
    margin-left: 6px; /* ← ほんのりでOK */
  }

  /* LINEボタン：余計な余白を完全リセット */
  #footer .footer-links a.line-link{
    margin: 0 !important;
  }
}





/* =========================================
   スマホ：フッターボタンの大きさ統一（LINEだけ大きい問題を修正）
========================================= */
@media screen and (max-width: 600px){

  #footer .footer-links{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  #footer .footer-links > a{
    width: min(92%, 360px) !important;
    height: 56px !important;
    padding: 0 18px !important;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #footer .footer-links > a.line-link{
    max-width: none !important;
    margin: 0 !important;
  }

  #footer .footer-links > a.line-link .icon{
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
  }

  #footer .footer-links > a.line-link .text{
    white-space: nowrap;
  }
}
/* =========================================
   スマホ：LINEだけ大きいのを強制的に他と同じ幅へ
   ※ style.css 一番下に追記
========================================= */
@media screen and (max-width: 600px){

  /* まず：スマホのボタン共通幅（他のボタンに合わせる） */
  .footer-links a.blog-link,
  .footer-links a.tel-link,
  .footer-links a.contact-link,
  .footer-links a.line-link{
    width: min(92%, 320px) !important;  /* ←ここを他と同じにする（320は調整可） */
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* LINEだけが持ってる “大きくする原因” を全部殺す */
  .footer-links a.line-link{
    width: min(92%, 320px) !important;  /* 念押し */
    max-width: none !important;
    margin: 0 auto !important;
    padding: 0 18px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
/* =========================================
   スマホ：LINEボタン中身を完全中央に固定
========================================= */
@media screen and (max-width: 600px){

  /* LINEボタン本体 */
  .footer-links a.line-link{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 18px !important;
  }

  /* アイコンと文字が引っ張られないよう固定 */
  .footer-links a.line-link .icon{
    flex: 0 0 28px !important;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    margin: 0 !important;
  }

  .footer-links a.line-link .text{
    flex: 0 0 auto !important;
    text-align: center !important;
    white-space: nowrap;
  }
}
@media screen and (max-width: 600px){
  .footer-links a.line-link::after{
    content: "";
    width: 28px;   /* ← アイコンと同じ幅 */
    height: 28px;
    display: block;
  }
}




/* =========================================
   スマホ：LINEアイコンの「白い丸」系スタイルを全消し
========================================= */
@media screen and (max-width: 600px){

  /* 1) まず .icon 本体の白丸を消す */
  .footer-links a.line-link .icon{
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* 2) .icon の疑似要素が白丸を作っている場合も消す */
  .footer-links a.line-link .icon::before,
  .footer-links a.line-link .icon::after{
    content: none !important;
    display: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* 3) aタグ側の疑似要素で白丸を作っている場合も消す（ここが犯人多い） */
  .footer-links a.line-link::before,
  .footer-links a.line-link::after{
    content: none !important;
    display: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}


/* =================================================
   フッター関連ここまで
================================================= */






/* ==========
   Section　とも育の箇所参考にしたところ経験の価値の場所！
========== */
/* =========================
   体験セクション（統合版）
   見やすく・大きく・角丸・白枠
========================= */
/* =========================
   体験セクション（最終統合版）
   ・二重白枠なし
   ・外側のみ角丸白枠
   ・全体を大きく・見やすく
========================= */

/* 外側：白枠＋角丸（これだけ残す） */
.experience {
	margin-bottom: 80px;  /* ← ここが超重要 */
  padding: 80px 32px 96px;
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
  color: #222;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Meiryo", sans-serif;
}

/* 内側：透明（白枠を作らない） */
.experience__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* タイトル */
.experience__title {
  font-size: 34px;
  font-weight: 800;
  color: #333;
  -webkit-text-fill-color: #333; /* ← 白くなる原因を上書き */
  text-shadow: none;             /* ← テンプレの影を消す */
  letter-spacing: 0.05em;
  margin: 0 0 24px;
}


/* 点線＋右上アイコン */
.experience__rule {
  position: relative;
  margin: 0 0 28px;
}
.experience__rule::before {
  content: "";
  display: block;
  border-top: 4px dotted #d6d6d6;
  margin-right: 64px;
}
.experience__rule::after {
  content: "★";
  position: absolute;
  right: 0;
  top: -18px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fb1;
  border: 2px solid #ffd0de;
  border-radius: 12px;
  background: #fff;
  font-size: 20px;
}

/* 説明文 */
.experience__lead {
  font-size: 25px;          /* ← 大きく */
  font-weight: 550;         /* ← 少し太く（ゴツくなりすぎない） */
  line-height: 2.5;         /* ← 読みやすさUP */
  color: #222;              /* ← より濃い黒 */
  max-width: 960px;
  margin: 0 0 56px;
}


/* カードレイアウト */
.experience__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* カード本体 */
.card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

/* 画像 */
.card__media {
  height: 230px;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カード本文 */
.card__body {
  padding: 28px;
}

/* カード見出し */
.card__title {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 800;
  color: #ff7fa4;
  letter-spacing: 0.02em;
}

/* カード文章 */
.card__text {
  margin: 0;
  font-size: 17px;          /* ← 明確に大きく */
  font-weight: 500;         /* ← はっきり */
  line-height: 2.2;
  color: #222;              /* ← 黒を強める */
}


/* =========================
   スマホ対応
/* =========================
   スマホ表示（最終版）
   文字を大きく・太く・読みやすく
========================= */
@media (max-width: 768px) {

  /* 外枠 */
  .experience {
    padding: 52px 20px 60px;
    border-radius: 0px;
  }

  /* タイトル */
  .experience__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
  }

  /* 説明文（上の黒文字） */
  .experience__lead {
    font-size: 16.5px;     /* ← 大きく */
    font-weight: 500;      /* ← はっきり */
    line-height: 2.1;
    color: #222;
    margin-bottom: 44px;
  }

  /* カード：1列 */
  .experience__cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* 画像 */
  .card__media {
    height: 200px;
  }

  /* カード見出し（ピンク） */
  .card__title {
    font-size: 22px;
    font-weight: 800;
  }

  /* カード説明文（黒文字） */
  .card__text {
    font-size: 16px;       /* ← 明確に大きく */
    font-weight: 500;      /* ← 太さ追加 */
    line-height: 2.1;
    color: #222;
  }
}
/* =========================
   体験セクション下の大きな画像　　　　　　　　　　　　　　　　大きな画像五感のイラスト入れる！
========================= */
.experience-large-image {
  margin-top: 64px;              /* カードとの余白 */
  border-radius: 32px;           /* 角丸 */
  overflow: hidden;              /* 角丸を効かせる */
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.experience-large-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ */
@media (max-width: 768px) {
  .experience-large-image {
    margin-top: 48px;
    border-radius: 24px;
  }
}




/* =========================
   画像上のタイトル（五感）
========================= */

.experience-visual {
  margin-top: 56px;
  text-align: center;
}

.experience-visual-title {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin-bottom: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* 「5感」を強調 */
.experience-visual-title .accent {
  color: #e53935;          /* 赤 */
  font-size: 1.25em;
  margin-right: 4px;
}

/* スマホ */
@media (max-width: 768px) {
  .experience-visual {
    margin-top: 40px;
  }

  .experience-visual-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}








/* =========================
   ABCの提供する療育サービス      ABCのプログラムについて
========================= */

.service-section {
	 border-radius: 36px;   /* ← 角丸 */
  background: #f7f2ea;
  padding: 60px 40px 80px;
　margin-top: 80px;   /* ← 上との余白を作る */
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

/* 上の吹き出し風ラベル */
.service-label {
  display: inline-block;
  background: #c49a6c;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  font-size: 20px;
  position: relative;
  margin-bottom: 28px;
}

.service-label::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -14px;
  border-width: 14px 10px 0 10px;
  border-style: solid;
  border-color: #c49a6c transparent transparent transparent;
}

/* タイトル */
.service-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 21px;
  font-weight: 800;
  color: #333 !important;                /* ← 上書き対策 */
  -webkit-text-fill-color: #333 !important; /* ← 白くなる原因を潰す */
  text-shadow: none !important;          /* ← 影で薄く見えるのを防ぐ */

  margin-bottom: 18px;
}

/* 01 の丸 */
.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5b000;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

/* ===== ライン（指定どおり点線） ===== */
.service-line {
  border-top: 4px dotted #f5b000;
  margin-bottom: 36px;
}

/* 画像レイアウト */
.service-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.service-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.service-image-sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.service-image-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* スマホ */
@media (max-width: 768px) {

  .service-section {
    padding: 40px 20px 60px;
  }

  .service-title {
    font-size: 18px;
    flex-wrap: wrap;
  }

  .service-images {
    grid-template-columns: 1fr;
  }

  .service-image-sub {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}





/* =========================
   療育サービス共通セクション       
========================= */
/* =========================
   SSTセクション（統合・崩れ対策版）
   ・中央揃え
   ・点線ライン
   ・3カラム安定（狭い画面で2→1）
   ・アイコン画像サイズ統一
   ・カード高さ揃え
========================= */

/* =========================
   SSTセクション（最新・写真カード対応）
   ・中央揃え（左寄り対策）
   ・点線ライン
   ・3カラム安定（980pxで2→768pxで1）
   ・写真サイズ統一（cover）
   ・長い見出しでも崩れない
========================= */

.sst{
  background:#f7f2ea;
  padding: 64px 24px 80px;
  color:#222;
  font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

/* 中央配置の親 */
.sst__inner{
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* 見出し行 */
.sst__head{
  display:flex;
  align-items:center;
  gap: 16px;
  margin-bottom: 12px;
}

.sst__badge{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:#f5b000;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 auto;
}

.sst__title{
  margin:0;
  font-size: 28px;
  font-weight: 900;
  color:#222;
  letter-spacing: .02em;
  line-height: 1.4;
}

/* 点線ライン */
.sst__line{
  border-top: 4px dotted #f5b000;
  margin: 14px 0 26px;
}

/* 説明文 */
.sst__lead{
  font-size: 16px;
  line-height: 2;
  color:#222;
  max-width: 1000px;
}

.sst__lead p{
  margin: 0 0 14px;
}

/* 6枚カード（3列） */
.sst__grid{
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;

  /* 左寄り対策：中身を中央に */
  justify-items: center;
}

/* カード */
.sst-card{
  background:#fff;
  padding: 22px 22px 26px;
  display:flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,.04);
  min-width: 0;

  width: 100%;
  max-width: none;   /* ★ここが重要 */
}


/* 写真エリア（統一） */
.sst-card__photo{
  width: 100%;
  height: 160px;          /* ← 全カード同じ高さ */
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}

.sst-card__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ← 写真向け */
  display: block;
}

/* 見出し（長い文字でも崩れない） */
.sst-card__title{
  margin: 0 0 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color:#f5b000;
  letter-spacing: .02em;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}

/* 本文 */
.sst-card__text{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color:#222;
}

/* PCで高さを揃える（必要なら） */
@media (min-width: 981px){
  .sst-card{
    min-height: 320px;
  }
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 980px){
  .sst__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sst-card{
    max-width: 360px;
  }
}

@media (max-width: 768px){
  .sst{
    padding: 48px 18px 64px;
  }

  .sst__title{
    font-size: 22px;
  }

  .sst__lead{
    font-size: 15.5px;
  }

  .sst__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sst-card{
    max-width: 520px;
  }

  .sst-card__photo{
    height: 180px;
  }
}



/* 01と02を同じ枠にまとめる外側 */
.service-wrapper{
  background:#f7f2ea;        /* ベージュ */
  border-radius: 28px;       /* 角丸 */
  padding: 64px 24px 80px;
  max-width: 1100px;         /* 中央の幅 */
  margin: 80px auto;         /* 中央寄せ＋上下余白 */
}

/* 既存の各セクションの背景が邪魔なら透明にする */
.service-section,
.sst{
  background: transparent;
  padding: 0;
}


.sst__title{
  color: #333 !important;
  font-size: 26px;      /* ①に近づける ②の文字色を濃いグレーにする。タイトル*/
  font-weight: 800;
  letter-spacing: 0.05em;
}









/* 写真をカードいっぱいに表示 */
.card__media img {
  width: 100%;
  height: 220px;        /* ← ここを大きくすると写真がさらに見やすくなる */
  object-fit: cover;
  border-radius: 16px;
}
.experience__inner {
  max-width: 1400px; /* 今より広く */
}


/* ===== PCの全体幅を1500に統一（上書き専用）===== */
@media screen and (min-width: 900px) {
  header,
  main,
  .footer-inner,
  #footer #map {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}




/* ★二重枠の内側（service-section / sst）を確実に消す */
.service-wrapper .service-section,
.service-wrapper .sst{
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
/* ★service-wrapperの幅上限を広げる */
.service-wrapper{
  max-width: 1700px !important;  /* 好みで1300〜1600 */
}



/* 6枚カードの全体幅を、上の写真の幅（PCのメイン幅）に合わせる */
@media (min-width: 900px){
  .sst__inner{
    max-width: 1500px !important; /* ← 上の写真と同じ幅にしたいならここ */
  }
}




/* =====================================
   PCだけ：イラストは切らずに全部表示
   スマホは既存CSSのまま
===================================== */
@media (min-width: 981px){

  /* PCではイラスト用カードの写真枠を少し大きく */
  .sst-card--illust .sst-card__photo{
    height: 210px;        /* ← PCでちょうど良いサイズ */
    overflow: hidden;    /* 枠は維持 */
    background: #fff;
  }

  /* PCではイラストは contain（切らない） */
  .sst-card--illust .sst-card__photo img{
    width: 100%;
    height: 100%;
    object-fit: contain; /* ★ここが核心 */
  }

}
/* PCだけ：ソーシャルスキルトレーニングの文字を一行に */
@media (min-width: 981px){
  .sst-card__title.sst-card__title--social{
    font-size: 16px !important;
    white-space: nowrap !important;
    letter-spacing: 0.3em !important;
  }
}






/* タイトル下の説明文を中央揃え */
.sst__lead{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* 黒テキストを読みやすく太くする */
.sst-card__text{
  font-weight: 900;     /* ← 標準(400)より一段階太く */
  line-height: 2;       /* ← 太くした分、行間も少し広げる */
  color: #222;          /* ← すでにあれば不要 */
	font-size: 16px;      /* ← 今より少し大きく */
  letter-spacing: 0.03em;
}




.feature-text p,
.experience__lead p {         /* ← お子様に合わせたプログラムのテキスト文字の行間を調整できる。広げたいかせばめたいかなど*/
  line-height: 1.45;
}



/* ：外観写真（手書きマップの下に追加）　　　外観画像の大きさ調整CSS　　　　 */


.access-map,
.access-photo{
  max-width: 900px;
  margin: 0 auto;
}






/* =========================
   外観写真：3枚サムネ＋拡大（ライトボックス）
========================= */
/* =========================
   外観写真：3枚サムネ＋拡大（ライトボックス）
========================= */

.access-gallery{
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 20px;
}

.access-gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.access-thumb{
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
}

.access-thumb img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.access-cap{
  display: none;
}

@media (max-width: 768px){
  .access-gallery-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-thumb img{
    height: 240px;
  }
}

.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}

.lightbox.is-open{
  display: block;
}

.lightbox__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.lightbox__panel{
  position: relative;
  width: min(92vw, 980px);
  height: min(80vh, 700px);
  margin: 5vh auto 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
}

.lightbox__img{
  width: 100%;
  height: calc(100% - 48px);
  object-fit: contain;
  background: #111;
  display: block;
}

.lightbox__caption{
  min-height: 48px;
  padding: 10px 14px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.lightbox__close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .access-thumb{
    transition: background-color .2s ease, transform .2s ease;
  }

  .access-thumb:hover{
    background-color: #f2f2f2;
    transform: translateY(-2px);
    cursor: pointer;
  }
}



/* ===============================
   お知らせカードをもっと大きくする
=============================== */

/* カード全体を拡大 */
#new .news-card {
  max-width: 1350px;   /* ← 横幅アップ */
  padding: 40px;      /* ← 内側余白アップ */
  border-radius: 26px;
}

/* タイトルを大きく */
#new .news-title {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 18px;
}

/* 本文を少し大きく */
#new .news-text {
  font-size: 17px;
  line-height: 1.9;
}

/* 情報リストを大きく */
#new .news-info li {
  font-size: 17px;
  margin-bottom: 10px;
}

/* ボタンを目立たせる */
#new .news-btn {
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 40px;
}

/* NEW OPENラベルも少し大きく */
#new .news-label {
  font-size: 14px;
  padding: 7px 18px;
}

/* 日付 */
#new .news-date {
  font-size: 14px;
}

/* スマホだけは少し抑える */
@media screen and (max-width: 768px) {

  #new .news-card {
    padding: 24px;
  }

  #new .news-title {
    font-size: 22px;
  }

  #new .news-text,
  #new .news-info li {
    font-size: 15px;
  }

  #new .news-btn {
    font-size: 16px;
    padding: 14px 28px;
  }

}


.notice-box{
  float: none !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  position: relative; /* absolute なら相当ズレます */
}




/* お知らせ全体（dl）をページ中央へ */
section #new{
  width: min(1100px, 100%);
  margin: 0 auto !important;
  padding: 0;
}

/* dd を横幅100%にして白枠が中央計算できるように */
section #new .news-dd-card{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* 白い枠そのものを強制センター */
section #new .news-card{
  width: min(1100px, 92vw);
  margin: 0 auto !important;
  box-sizing: border-box;

  /* “ズレの犯人”を無効化（保険） */
  float: none !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  position: relative;
}



/* 白枠の中の余白を広げて中央寄りに見せる */
section #new .news-card{
  padding-left: 64px;
  padding-right: 64px;
}




@media screen and (max-width: 768px){

  /* 白カードを画面いっぱい寄りに */
  section #new .news-card{
    width: 96vw;
    padding: 28px 22px;
    border-radius: 20px;
  }

  /* タイトルを少し大きく */
  section #new .news-title{
    font-size: 18px;
    line-height: 1.6;
  }

  /* 本文を読みやすく */
  section #new .news-text{
    font-size: 15px;
    line-height: 1.8;
  }

  /* 所在地など */
  section #new .news-info li{
    font-size: 14px;
  }

  /* ボタンを横いっぱい気味に */
  section #new .news-btn{
    width: 100%;
    text-align: center;
  }

}



@media screen and (max-width: 768px){

  /* dt内のラベル（その他/イベント）を必ず表示 */
  #new dt .icon-bg1{
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;

    background: #ff5a5a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    vertical-align: middle;
  }

  /* dt自体も消されないように */
  #new dt{
    display: block !important;
    margin: 12px 0 6px;
    padding: 0;
    white-space: normal;
  }

}

/* ラベル共通 */
#new .icon-bg1{
  display: inline-block;
  background: #ff5a5a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
}

/* dt/ddの余計な空白を消す */
#new dt, #new dd{
  margin: 0;
  padding: 0;
}

/* PC：ラベル→文章の順で自然に */
#new .news-tag{
  margin-top: 14px;
}
#new .news-tag-text{
  margin: 6px 0 10px;
}

/* スマホ：ラベルと文章を横並びで読みやすく */
@media screen and (max-width: 768px){
  #new .news-tag{
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
  }
  #new .news-tag-text{
    display: inline-block;
    width: calc(100% - 90px); /* ラベル分を引く */
    margin: 0 0 12px;
    vertical-align: top;
  }
}
/* ===== スマホだけ：その他/イベントのラベル表示を整える ===== */
@media screen and (max-width: 768px){

  /* その他・イベント全体を少し内側へ */
  #new{
    padding-left: 20px !important;
    padding-right: 10px !important;
  }

  /* dtの変な空白レイアウトを無効化 */
  #new dt{
    margin: 12px 0 6px !important;
    padding: 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  /* ラベル：必ず1行、同じサイズ、改行させない */
  #new dt .icon-bg1{
    display: inline-flex !important;
    justify-content: center;
    align-items: center;

    width: 78px;          /* ←「イベント」が1行で入る幅 */
    height: 26px;

    padding: 0 !important; /* 余計なpaddingで崩れないように */
    white-space: nowrap !important; /* ← ここが超重要（改行禁止） */

    background: #ff5a5a;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    box-sizing: border-box;
  }

}
@media screen and (min-width: 769px){

  /* dl が grid/flex になっていても強制的に普通に戻す */
  #new{
    display: block !important;
  }

  /* dt と dd を同じ行で並べて、間を詰める */
  #new dt,
  #new dd{
    display: inline-block !important;
    vertical-align: top;
    margin: 8px 0 0 !important;
    padding: 0 !important;
  }

  /* ラベル（左） */
  #new dt{
    width: 80px;                 /* ← ラベル幅 */
    white-space: nowrap;
  }

  /* 文章（右） */
  #new dd{
    width: calc(100% - 90px);    /* ← dt幅＋余白分を引く */
    margin-left: 10px !important;
    line-height: 1.7;
  }

  /* 空白だけのddが高さを持たないようにする（保険） */
  #new dd{
    min-height: 0 !important;
  }
}
/* PCだけ：特徴エリアの文字間隔を詰める */
@media screen and (min-width: 769px) {

  .feature-content .feature-text ul li {
    line-height: 1.4;     /* 行間（おすすめ 1.3〜1.5） */
    margin-bottom: 6px;   /* 下の余白を詰める */
  }
}
/* PCだけ：タイトルと音符を横並び固定 */
/* PCだけ：タイトルは折り返しOK、音符は末尾から落ちない */
@media screen and (min-width: 769px){

  /* 見出しを基準にする */
  .feature-title{
    position: relative;
    padding-right: 60px; /* 右側に♪の席を作る */
  }

  /* ♪を右横に固定 */
  .feature-title .music{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    display: inline-block;
    white-space: nowrap;
  }
}








/* ========== 利用料金（画像と同じ雰囲気） ==========                            料金案内*/
.fee{
  padding: 20px 0 40px;
}

.fee-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px;
}

.fee-bar{
  width: 6px;
  height: 22px;
  background: #7fc9ff; /* 水色バー */
  border-radius: 2px;
  display: inline-block;
}

.fee-text p{
  margin: 0 0 10px;
  line-height: 1.9;
}

.fee-note{
  font-size: 13px;
  margin-top: 14px;
}

/* 表 */
.fee-table-wrap{
  margin-top: 18px;
}

.fee-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #c9b6ff; /* 薄い紫系 */
}

.fee-table th,
.fee-table td{
  border: 1px solid #c9b6ff; /* 薄い紫系 */
  padding: 14px 16px;
  font-size: 15px;
}

.fee-table thead th{
  background: #ffd6dc; /* 薄いピンク */
  text-align: left;
  font-weight: 800;
}

.fee-price{
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.fee-price strong{
  font-size: 18px;
  font-weight: 900;
}






/* ========== 利用料金（整列・完成版） ========== */

/* セクション全体を「中央の同一幅コンテナ」にする */
.fee{
  max-width: 1200px;      /* ← 文章と表の幅が揃う */
  margin: 0 auto;         /* 中央寄せ */
  padding: 34px 20px 44px;
  box-sizing: border-box;
}

/* 見出し（左の水色バー付き） */
.fee-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
}

.fee-bar{
  width: 6px;
  height: 22px;
  background: #7fc9ff;
  border-radius: 2px;
  display: inline-block;
}

/* 本文 */
.fee-text p{
  margin: 0 0 10px;
  line-height: 1.9;
}

.fee-note{
  font-size: 13px;
  margin-top: 14px;
}

/* 表（本文と同じ左端・同じ幅で表示） */
.fee-table-wrap{
  width: 100%;
  margin-top: 18px;
}

.fee-table{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #c9b6ff;
}

.fee-table th,
.fee-table td{
  border: 1px solid #c9b6ff;
  padding: 14px 16px;
  font-size: 15px;
}

.fee-table thead th{
  background: #ffd6dc;
  text-align: left;
  font-weight: 800;
}

.fee-price{
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.fee-price strong{
  font-size: 18px;
  font-weight: 900;
}

/* スマホ最適化（崩れ防止） */
@media screen and (max-width: 768px){
  .fee{
    max-width: 100%;
    padding: 26px 14px 34px;
  }

  .fee-title{
    font-size: 20px;
  }

  .fee-table th,
  .fee-table td{
    padding: 12px 12px;
    font-size: 14px;
  }

  .fee-price strong{
    font-size: 16px;
  }
}



/* ========== サービスについて             （利用料金と同じ世界観） ========== */

/* 利用料金(.fee)と同じ幅で揃える */
.service-info{
  max-width: 1000px;
  margin: 0 auto;
  padding: 34px 20px 44px;
  box-sizing: border-box;
}

/* 見出し（左に水色バー） */
.service-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 18px;
	color: #fff !important; /* ← 追加：白文字 */
	 text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.service-bar{
  width: 6px;
  height: 22px;
  background: #7fc9ff;
  border-radius: 2px;
  display: inline-block;
}

/* 3行の一覧（横線で区切る） */
.service-list{
  border-top: 1px solid rgba(255,255,255,0.45); /* 背景が青でも薄く見える線 */
}

.service-row{
  display: grid;
  grid-template-columns: 180px 1fr; /* 左：項目名 / 右：本文 */
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.45);
}

.service-head{
  font-weight: 800;
  white-space: nowrap;
}

.service-body{
  line-height: 1.9;
}

/* スマホ：縦並び */
@media screen and (max-width: 768px){
  .service-info{
    max-width: 100%;
    padding: 26px 14px 34px;
  }

  .service-title{
    font-size: 21px;
  }

  .service-row{
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .service-head{
    font-size: 15px;
  }

  .service-body{
    font-size: 14px;
  }
}







/* ===== 1週間のプログラム（ABCサイト版）                       ===== */
.weekly{
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 60px;
  box-sizing: border-box;
}

.weekly-title{
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 26px;
  color: #444;                 /* 水色背景なら白文字が合う */
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

.weekly-sub{
  display: block;
  font-size: 13px;
  font-weight: 700;
  opacity: .9;
  margin-top: 8px;
}

/* カード一覧 */
.weekly-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 22px;
}

/* カード本体 */
.weekly-card{
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* 曜日バッジ */
.day-badge{
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.10);
}

.day-badge .jp{font-size: 18px; line-height: 1.1;}
.day-badge .en{font-size: 11px; opacity: .95; margin-top: 4px;}

/* バッジ色（サイトの青系に馴染むパステル） */
.day-mon{ background: #9fb9ff; }
.day-tue{ background: #8fd6ff; }
.day-wed{ background: #9fe0c7; }
.day-thu{ background: #b6c6ff; }
.day-fri{ background: #ffb3c7; }
.day-sat{ background: #ffd08a; }

/* 文章 */
.weekly-body h3{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
  color: #2a67b8;  /* あなたのサイトの青に寄せる */
}

.weekly-body p{
  margin: 0;
  line-height: 1.85;
  color: #333;
}

/* スマホ */
@media screen and (max-width: 768px){
  .weekly-title{font-size: 26px;}
  .weekly-grid{grid-template-columns: 1fr;}
  .weekly-card{grid-template-columns: 78px 1fr; padding: 16px;}
  .day-badge{width: 74px; height: 74px;}
}





/* 1週間プログラム：全体を必ず中央にする（強制） */
.weekly,
.weekly-grid{
  width: min(1100px, 100%);
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

/* グリッドが効いていない場合でも中央になるように */
.weekly-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  justify-content: center !important;
  padding-left: 20px;
  padding-right: 20px;
}

/* スマホ */
@media screen and (max-width: 768px){
  .weekly-grid{
    grid-template-columns: 1fr !important;
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* 1週間プログラム 見出し色 強制変更 */
.weekly-title,
.weekly-title * {
  color: #444 !important;
  text-shadow: none !important;
}




/* ===== PC固定ヘッダー：共通（基本は表示） 共通部分固定ヘッダーの全てのページ反映===== */
@media screen and (min-width: 769px){

  #pc-fixed-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }

  /* トップ以外は最初から表示 */
  body:not(.home) #pc-fixed-header{
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    display: block !important;
  }

  /* トップ（home）だけ：スクロール前は非表示 */
  body.home #pc-fixed-header{
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  /* トップ（home）でスクロール後に表示（JSがis-showを付ける） */
  body.home #pc-fixed-header.is-show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* トップ以外は本文がヘッダーに隠れないように余白 */
  body:not(.home){
    padding-top: 90px; /* ←ヘッダー高さに合わせて調整 */
  }
}









/* ====== 3枚ヒーロー（左：大 / 右：上下2枚） ====== */
.hero3{
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #fff; /* 黒はやめる */
}

/* 3枚レイアウト：左を大きく（プログラミング強調） */
.hero3-grid{
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;  /* 左を大きく、右を小さめ */
  grid-template-rows: 1fr 1fr;     /* 右は上下2段 */
}

/* 各枠 */
.hero3-photo{
  position: relative;
  overflow: hidden;
}

/* 左（1枚目）を縦2マスにする */
.hero3-photo:nth-child(1){
  grid-column: 1;
  grid-row: 1 / span 2;
}

/* 右上（2枚目） */
.hero3-photo:nth-child(2){
  grid-column: 2;
  grid-row: 1;
}

/* 右下（3枚目） */
.hero3-photo:nth-child(3){
  grid-column: 2;
  grid-row: 2;
}

/* imgで全面カバー */
.hero3-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 読みやすくする薄い幕（強すぎない） */
.hero3::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.15) 45%,
    rgba(0,0,0,.22) 100%
  );
  z-index: 1;
}

/* 上のロゴ */
.hero3-top{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.hero3-logo img{
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

/* 中央の文字 */
.hero3-overlay{
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(900px, 92vw);
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0,0,0,.40);
}

.hero3-kicker{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero3-title{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 900;
  letter-spacing: .03em;
}
.hero3-lead{
  font-size: 32px; /* 下の文字を大きく */
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: 14px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}

/* ボタン */
.hero3-cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero3-btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,90,90,.95);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.hero3-btn.ghost{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
}

/* スマホ：縦に3枚（写真が“3枚見える”を優先） */
@media screen and (max-width: 768px){
  .hero3{ min-height: 640px; }
  .hero3-grid{
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
  /* スマホでは順番通りに並べる（縦3枚） */
  .hero3-photo:nth-child(1),
  .hero3-photo:nth-child(2),
  .hero3-photo:nth-child(3){
    grid-column: auto;
    grid-row: auto;
  }
  .hero3-logo img{ height: 46px; }
}




.hero3-grid{
  position: absolute;
  inset: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  column-gap: 4px;   /* 横だけ余白 */
  row-gap: 0px;      /* 縦はなし */

  width: 100%;
  height: 100%;

  box-sizing: border-box;
}
.hero3-grid{
  position: absolute;
  inset: 0;

  display: grid;
  grid-template-columns: 2fr 1fr; /* ← 例：左を大きく */
  gap: 6px;                       /* 写真の隙間 */

  padding: 6px;                   /*                 topページの写真の隙間　余白大きさ外周にも同じ隙間 */
  box-sizing: border-box;
}





/* =========================
  PC：hero3表示 / 元テンプレ(#mainimg)は非表示
========================= */
@media screen and (min-width: 769px){
  .hero3{ display: block !important; }
  #mainimg{ display: none !important; }
}

/* =========================
  スマホ：元テンプレ(#mainimg)表示 / hero3は非表示
========================= */
@media screen and (max-width: 768px){
  .hero3{ display: none !important; }
  #mainimg{ display: block !important; }
}
/* PCではロゴ非表示 */
@media screen and (min-width: 769px){
  header .logo{
    display: none !important;
  }
}

/* スマホではロゴ表示 */
@media screen and (max-width: 768px){
  header .logo{
    display: block !important;
  }
}
/* PCでは電話番号画像を非表示 */
@media screen and (min-width: 769px){
  .pc-tel-image{
    display: none !important;
  }
}



/* スマホでは表示（念のため） */
@media screen and (max-width: 768px){
  .pc-tel-image{
    display: block !important;
  }
}








/* スマホ版 電話番号バナーを非表示 */
/* スマホだけ：電話画像（tel.png）を非表示 */
@media screen and (max-width: 768px){
  .pc-tel-image{
    display: none !important;
  }
}
/* ===========================
スマホだけ余白を詰める
=========================== */

@media screen and (max-width: 768px){

  #contents {
    margin-top: 0 !important;　/* PCのトップ画面写真下の余白除去これとったらまた余白できる。 　　　　　　　　　　　　　６６７７から６６９２までが余白取れるかどうかの調整必要*/
    padding-top: 0 !important;
  }
}





/* ===========================
トップページ PCだけ 旧header非表示＋余白調整
=========================== */

@media screen and (min-width: 769px){

  body.home > header{
    display: none !important;
  }

  /* hero直下の余白除去 */
  body.home .hero3{
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 波セクション上の余白除去 */
  body.home #contents,
  body.home main,
  body.home .deco{
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

}

/* ABCキッズスクールについて 背景色を淡くする */
/* @media screen and (min-width: 769px){

  .deco > div {
    background: #eaf8ff;
  }

}*/





/* =========================
   お知らせカード（薄ベージュ）インデックスのページ一番最後のお知らせ白枠作る
========================= */

.news-card{
  background:#f7f0dc;          /* 薄ベージュ */
  padding:28px 32px;
  border-radius:14px;
  max-width:720px;
  margin:0 auto;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* タイトル */
.news-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:14px;
}

/* 本文 */
.news-text{
  line-height:1.9;
  margin-bottom:16px;
}

/* 情報リスト */
.news-info{
  margin:14px 0;
  padding-left:18px;
}

.news-info li{
  margin-bottom:6px;
}

/* ボタン */
.news-btn{
  display:inline-block;
  margin-top:12px;
  padding:10px 18px;
  background:#ff7a7a;
  color:#fff;
  border-radius:20px;
  text-decoration:none;
  font-weight:600;
}

.news-btn:hover{
  opacity:0.9;
}





/* =========================
   PC：文字を大きく＆太く     indexのページ　　　　　PCの文字の大きさが小さすぎるので、ここから文字大きくする調整コード！！！！
========================= */
/* =========================
   PCだけ文字を大きく太く
========================= */
@media screen and (min-width: 768px) {

  .experience__lead,
  .experience__lead p,
  .card__text,
  .sst__lead,
  .sst__lead p,
  .sst-card__text,
  .feature-text p,
  .weekly-body p,
  .support-list li,
  .bottom-list li,
  .abc-catch-text p {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 2.1 !important;
    color: #333 !important;
  }

  /* タイトルさらに強調 */
 
  .experience__title,
  .sst__title,
 
  .weekly-title,
  .support-title,
  .card__title,
  .sst-card__title,
  .feature-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    line-height: 1.5 !important;
  }

  .weekly-body h3,
  .bottom-title {
    font-size: 26px !important;
    font-weight: 800 !important;
  }
}

/* スマホ版index見出しタイトルSEOの為に枚方市をいれている */
@media screen and (max-width:768px){

.service-title{
  display:block;
  margin-bottom:11px;
  font-size:13px !important;
　color: #333;
}

}
/* PC版index見出しタイトルSEOの為に枚方市をいれている */
.service-title{
  display:block;
  text-align:center;
}







/* フッター上に余白追加 */
.footer-inner {
  padding-top: 120px !important;
}











/* スマホだけ写真２変更する */
/* PCではスマホ用写真4を隠す */
.sp-photo {
  display: none;
}

/* スマホだけ表示切り替え */
@media screen and (max-width: 768px) {

  .pc-photo {
    display: none;
  }

  .sp-photo {
    display: block;
  }

  .sp-photo img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
  }

}
/* スマホ用写真4は通常隠す */
.sp-photo{
  display:none;
}

/* スマホだけ切替 */
@media screen and (max-width:768px){

  .pc-photo{
    display:none !important;
  }

  .sp-photo{
    display:block !important;
  }

}






/*========================================================================================================================================================================
   会社概要
======================================================================================================================================================================*/
/* index以外（= bodyにhomeが無いページ）だけフッター幅を整える */
/* フッター：どのページでも中央基準にする（安全版） */
#footer .footer-inner{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
/* フッターメニューの文字が途中で折れないようにする */
#footer .footer-nav a{
  white-space: nowrap;     /* 単語途中で折らない */
  word-break: keep-all;    /* 日本語でも極端な折返しを抑える */
}

/* ULの幅が狭くなっている場合に備えて保険 */
#footer .footer-nav ul{
  width: 100%;
}




#map {
  margin-top: 20px;
}

h2.c {
  margin-bottom: 25px;
}






/* =========================
   アクセス情報ボックス
========================= */
/* =========================
   アクセス情報ボックス
========================= */

.access-info{
max-width:720px;
margin:25px auto 40px;
background:#ffffff;
padding:20px 24px;
border-radius:12px;
line-height:1.8;
font-size:21px;
color:#333333;
}

/* スマホだけ文字サイズ調整 */
@media screen and (max-width:768px){

.access-info{
font-size:16px;
padding:18px;
line-height:1.7;
}

}
/* ========================================================================================================================================================================
   ご利用について　　　　（イベント）
======================================================================================================================================================================*/
/* ===== お申し込みの流れ（画像のデザイン寄せ） ===== */
/* =========================
   お申し込みの流れ（ABCカラー版）
   ・背景：水色
   ・ボタン：フッター赤
   ・STEP/アイコン：濃い青
========================= */

:root{
  --abc-bg: #eaf5ff;        /* 外側の水色背景 */
  --abc-red:#e53935;        /* フッターと同じ系統の赤（お問い合わせボタン） */
  --abc-blue:#1e88e5;       /* STEPやアイコンの濃い青 */
  --abc-blue-line: rgba(30,136,229,.25); /* 左ライン用 */
  --card-shadow: 0 8px 24px rgba(0,0,0,.06);
}

/* 外側背景 */
.apply-flow{
  background: var(--abc-bg);
  padding:70px 0;
}

.apply-flow__wrap{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* 白いカード */
.apply-flow__card{
  background:#fff;
  border-radius:26px;
  padding:56px 70px;
  box-shadow: var(--card-shadow);
}

/* タイトル */
.apply-flow__title{
  text-align:center;
  font-size:28px;
  letter-spacing:.08em;
  margin:0 0 40px;
  font-weight:700;
  position:relative;
  color: var(--abc-blue);
}

/* タイトル上のバー（濃い青） */
.apply-flow__title::before{
  content:"";
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:8px;
  border-radius:999px;
  background: var(--abc-blue);
}

.flow{
  list-style:none;
  margin:0;
  padding:0;
  position:relative;
}

/* 左の縦ライン（青） */
.flow::before{
  content:"";
  position:absolute;
  left:78px;
  top:10px;
  bottom:10px;
  width:3px;
  background: var(--abc-blue-line);
  border-radius:999px;
}

.flow__item{
  display:grid;
  grid-template-columns: 140px 1fr;
  column-gap:20px;
  padding:22px 0;
  position:relative;
}

/* 丸アイコン（淡い水色） */
.flow__icon{
  width:86px;
  height:86px;
  border-radius:50%;
  background:#eef7ff;
  display:grid;
  place-items:center;
  margin-left:34px;
  position:relative;
  z-index:2;
}

/* SVG色（濃い青） */
.flow__icon svg{
  width:34px;
  height:34px;
  fill: var(--abc-blue);
}

/* 最後のチェックなど強調 */
.flow__icon--check{
  background:rgba(30,136,229,.10);
  outline:6px solid rgba(30,136,229,.18);
}

.flow__body{
  padding-right:10px;
}

/* STEP表示（濃い青） */
.flow__step{
  color: var(--abc-blue);
  font-weight:800;
  letter-spacing:.06em;
  margin:2px 0 6px;
}

.flow__head{
  margin:0 0 16px;
  font-size:20px;
  font-weight:800;
  position:relative;
  padding-bottom:10px;
  color:#222;
}

/* 見出し下の点線（濃い青） */
.flow__head::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:170px;
  border-bottom:2px dashed var(--abc-blue);
  opacity:.85;
}

.flow__text{
  margin:0 0 14px;
  line-height:2.0;
  color:#333;
}

/* 情報ボックス（水色系） */
.flow__info{
  background:#eef7ff;
  border-radius:10px;
  padding:12px 16px;
  margin:10px 0 10px;
  width:min(520px, 100%);
}

.flow__info ul{
  list-style:none;
  margin:0;
  padding:0;
}

.flow__info li{
  display:flex;
  gap:10px;
  line-height:1.8;
}

/* ●や強調の色（濃い青） */
.flow__info li span{
  color: var(--abc-blue);
  font-weight:900;
}

.flow__note{
  margin:0 0 18px;
  color:#666;
  font-size:13px;
}

/* お問い合わせボタン（フッター赤） */
.flow__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  background: var(--abc-red);
  color:#fff;
  text-decoration:none;
  padding:12px 22px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.06em;
}

/* ボタン内の丸 */
.flow__btnicon{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  font-size:12px;
}

/* 区切り線 */
.flow__hr{
  margin-top:26px;
  height:1px;
  background:#e7e7e7;
  width:min(640px, 100%);
}

/* ===== スマホ最適化 ===== */
@media (max-width: 768px){
  .apply-flow{ padding:48px 0; }
  .apply-flow__card{ padding:34px 18px; border-radius:18px; }
  .apply-flow__title{ font-size:22px; margin-bottom:26px; }
  .apply-flow__title::before{ top:-18px; width:90px; height:7px; }

  .flow::before{ left:34px; }

  .flow__item{
    grid-template-columns: 90px 1fr;
    column-gap:14px;
    padding:18px 0;
  }
  .flow__icon{
    width:62px;
    height:62px;
    margin-left:4px;
  }
  .flow__icon svg{ width:28px; height:28px; }

  .flow__head::after{ width:150px; }
}










/* ========================================================================================================================================================================
   料金案内
======================================================================================================================================================================*/


/* =========================
   料金のご案内（ABC水色版）
========================= */

.abc-fee{
  background: #eaf6ff; /* ←同じ水色（必要なら色コード差し替え） */
  padding: 60px 0;
}

.abc-fee__inner{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  padding: 28px 34px 30px;
  box-sizing: border-box;
}

.abc-fee__title{
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.abc-fee__subtitle{
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 10px;
}

.abc-fee__line{
  height: 2px;
  background: #222;
  margin: 10px 0 0;
}

.abc-fee__line--thin{
  height: 2px;
  background: #222;
  margin-top: 8px;
}

.abc-fee__text{
  margin: 14px 0 0;
  line-height: 1.9;
  color: #222;
}

.abc-fee__table-wrap{
  margin: 22px 0 0;
}

.abc-fee__table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.abc-fee__table th,
.abc-fee__table td{
  border: 1px solid #cfcfcf;
  padding: 14px 14px;
  text-align: center;
  vertical-align: middle;
}

.abc-fee__table thead th{
  background: #f3f1ea; /* 見本の薄いベージュ */
  font-weight: 700;
}

.abc-fee__table tbody td:first-child{
  background: #f3f1ea; /* 左列が薄いベージュ */
}

.abc-fee__list{
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 2.0;
}

.abc-fee__list li{
  margin: 4px 0;
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px){
  .abc-fee{
    padding: 34px 14px;
  }

  .abc-fee__inner{
    padding: 18px 16px 20px;
  }

  .abc-fee__title{
    font-size: 18px;
  }

  .abc-fee__subtitle{
    font-size: 16px;
  }

  .abc-fee__table th,
  .abc-fee__table td{
    padding: 12px 8px;
    font-size: 14px;
  }
}



/* ===== PCだけ：左端が欠ける（クリップ）問題を強制的に解消 ===== */
@media (min-width: 769px){

  /* 1) 横方向のクリップをやめる（テンプレでよく入ってる） */
  html, body,
  #container, #contents, main,
  .deco, .deco > div {
    overflow: visible !important;
    overflow-x: visible !important;
  }

  /* 2) もし中央寄せに transform を使っていたら無効化して margin auto に統一 */
  .fee, .fee-inner, .fee-box, .price-box, .price-wrap,
  .abc-fee, .abc-fee__inner, .abc-price, .abc-price__inner {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 980px;      /* 好みでOK */
    width: min(100%, 980px);
    box-sizing: border-box;
  }

  /* 3) 見出しが負のmargin等で左に逃げてるケースを潰す */
  .fee h2, .fee h3,
  .fee-inner h2, .fee-inner h3,
  .fee-box h2, .fee-box h3,
  .price-box h2, .price-box h3,
  .price-wrap h2, .price-wrap h3,
  .abc-fee h2, .abc-fee h3,
  .abc-fee__inner h2, .abc-fee__inner h3,
  .abc-price h2, .abc-price h3,
  .abc-price__inner h2, .abc-price__inner h3 {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}





/* ===== ページ内ジャンプボタン（ABC用） ===== */

/* クリックで飛んだ時にスルッとスクロール */
html{
  scroll-behavior: smooth;
}

/* ボタン2つ並びのラッパー */
.abc-jumpBtns{
  width: min(980px, 92%);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ボタン本体 */
.abc-jumpBtn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;

  background: #49bff1;               /* ABCの水色（好みで調整OK） */
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 16px;                /* 画像より少し柔らかめ */
  padding: 18px 18px;
  min-height: 58px;

  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  transition: transform .12s ease, filter .12s ease;
}

/* ▼の見た目（右側） */
.abc-jumpBtn__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  font-size: 14px;
  line-height: 1;
}

/* ホバー（PCだけ） */
@media (hover:hover){
  .abc-jumpBtn:hover{
    filter: brightness(0.98);
    transform: translateY(-1px);
  }
  .abc-jumpBtn:active{
    transform: translateY(0);
  }
}

/* スマホ：縦並び */
@media (max-width: 768px){
  .abc-jumpBtns{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .abc-jumpBtn{
    border-radius: 14px;
    padding: 16px 14px;
  }
}




/* =========================
   料金案内：水色背景エリア（左画像の雰囲気）
========================= */
.abc-fee-area{
  background:#eaf6ff;              /* 淡い水色 */
  padding:60px 0;
}

/* 中央寄せ＆幅制御 */
.abc-fee-wrap{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* =========================
   文章ボックス（右画像の内容）
========================= */
.abc-fee-note{
  background:#fff;
  border:2px solid #5bbef2;        /* ABC系の青枠 */
  border-radius:18px;
  padding:34px 36px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  line-height:2.0;
  color:#333;
}

/* 段落の間 */
.abc-fee-note p{
  margin:0 0 16px;
}
.abc-fee-note p:last-child{
  margin-bottom:0;
}

/* スマホ */
@media (max-width:768px){
  .abc-fee-area{ padding:40px 0; }
  .abc-fee-note{
    padding:22px 18px;
    border-radius:14px;
  }
}
/* =========================
   児童発達支援 説明エリア（上と同サイズに揃える）
========================= */
/* =========================
  上の料金案内ブロックと完全に幅を揃える
========================= */

/* =========================
  料金ブロック（abc-fee）の“横幅”を基準値にする
========================= */
.abc-fee__inner{
  width: min(1100px, 92%) !important;
  margin: 0 auto !important;
}





/* =========================
   児童発達支援の文章枠：料金表と幅を揃える
   ========================= */

/* 料金表の inner と同じ横幅にする（abc-fee__inner と同条件） */
.abc-fee-area .abc-fee-wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* 水色の背景エリア（料金表と同じ雰囲気に） */
.abc-fee-area{
  background: #eaf6ff;   /* 料金表と同じ水色にしたい場合 */
  padding: 70px 0;       /* 上下の余白も料金表に合わせる */
}

/* 白い外枠（いま出ている白い大きい箱） */
.abc-fee-area .abc-fee-wrap{
  background: #fff;
  border: 1px solid #ddd;
  padding: 56px 70px;
  box-sizing: border-box;
}

/* 中の青枠（あなたの .abc-fee-note ）は “幅100%で親に合わせる” */
.abc-fee-area .abc-fee-note{
  width: 100%;
  max-width: none;        /* ←ここ超重要（小さく固定される原因を潰す） */
  margin: 0;              /* ←中央寄せ用の余計な margin を消す */
  box-sizing: border-box;

  border: 2px solid #3aa9ff;
  border-radius: 18px;
  padding: 26px 30px;
  background: #fff;
  line-height: 2.0;
}

/* スマホだけ余白を最適化 */
@media (max-width: 768px){
  .abc-fee-area{ padding: 48px 0; }
  .abc-fee-area .abc-fee-wrap{ padding: 34px 18px; }
  .abc-fee-area .abc-fee-note{ padding: 18px 16px; }
}





@media screen and (max-width: 768px) {
.c {
    font-size: 22px !important;
  }
}



/* =====================================
   PC固定ヘッダー分、本文を下げて重なり防止
   ===================================== */




/* ========================================================================================================================================================================
   療育内容
======================================================================================================================================================================*/
/* =========================
  療育の目的（画像のデザイン参考 / ABCカラー）
========================= */
.abc-purpose{
  background:#eaf6ff;           /* ABCの淡い水色 */
  padding:64px 0;
}

.abc-purpose__inner{
  width:min(1100px, 92%);
  margin:0 auto;
  background:#fff;
  border-radius:28px;
  padding:56px 60px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.abc-purpose__title{
  text-align:center;
  font-size:28px;
  letter-spacing:.06em;
  margin:0 0 36px;
  font-weight:800;
  color:#1f2b3a;                /* 濃い文字 */
}

.abc-purpose__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr; /* 左やや広め */
  gap:34px;
  align-items:start;
}

/* 強調リード（赤線のところをABCの濃い青に） */
.abc-purpose__lead{
  margin:0 0 18px;
  font-size:18px;
  font-weight:800;
  color:#0b5aa6;                /* 濃い青（アクセント） */
  letter-spacing:.03em;
  line-height:1.7;
  position:relative;
  padding-bottom:14px;
}

/* 点線風の下線 */
.abc-purpose__lead::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:min(520px, 100%);
  height:0;
  border-bottom:2px dashed rgba(11,90,166,.75);
}

/* 本文 */
.abc-purpose__text p{
  margin:0 0 16px;
  color:#2b2b2b;
  line-height:2.05;
  font-size:15px;
}

.abc-purpose__text p:last-child{
  margin-bottom:0;
}

/* 右画像 */
.abc-purpose__media{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  background:#f2f7ff;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.abc-purpose__media img{
  display:block;
  width:100%;
  height:auto;
}

/* ====== スマホ（縦並び） ====== */
@media (max-width: 768px){
  .abc-purpose{ padding:44px 0; }

  .abc-purpose__inner{
    border-radius:18px;
    padding:28px 18px;
  }

  .abc-purpose__title{
    font-size:22px;
    margin-bottom:22px;
  }

  .abc-purpose__grid{
    grid-template-columns: 1fr;
    gap:18px;
  }

  .abc-purpose__lead{
    font-size:16px;
    padding-bottom:12px;
  }

  .abc-purpose__lead::after{
    width:100%;
  }
}


/* =========================
   ABC 1日の流れ（タイムライン）
   ========================= */

.abc-dayflow{
  background:#eaf6ff; /* ABC水色背景 */
  padding:80px 0;
}

.abc-dayflow-inner{
  max-width:1100px;
  width:92%;
  margin:0 auto;
}

.abc-dayflow-title{
  text-align:center;
  font-size:32px;
  color:#5bbcf0;
  margin-bottom:20px;
  font-weight:700;
}

.abc-dayflow-lead{
  text-align:center;
  color:#555;
  line-height:1.8;
  margin-bottom:40px;
}

/* 白カード */

.abc-dayflow-box{
  background:#fff;
  border-radius:24px;
  padding:40px 50px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* ラベル */

.abc-dayflow-label{
  display:inline-block;
  background:#5bbcf0;
  color:#fff;
  padding:10px 20px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:25px;
}

/* リスト */

.abc-dayflow-list{
  list-style:none;
  padding:0;
  margin:0;
}

.abc-dayflow-list li{
  background:#f6fbff;
  border-radius:16px;
  padding:18px 22px;
  margin-bottom:14px;
  display:flex;
  gap:18px;
  align-items:center;
}

/* 時間 */

.abc-dayflow-list .time{
  font-weight:700;
  color:#2fa8e1;
  min-width:130px;
}

/* テキスト */

.abc-dayflow-list .text{
  color:#333;
  line-height:1.7;
}

/* 注釈 */

.abc-dayflow-note{
  margin-top:18px;
  font-size:13px;
  color:#777;
}

/* ===== スマホ ===== */

@media(max-width:768px){

  .abc-dayflow{
    padding:50px 0;
  }

  .abc-dayflow-title{
    font-size:24px;
  }

  .abc-dayflow-box{
    padding:24px 20px;
    border-radius:18px;
  }

  .abc-dayflow-list li{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .abc-dayflow-list .time{
    min-width:auto;
  }

}



/* 説明文（ラベルの下） */
.abc-dayflow-desc{
  margin:0 0 16px;
  color:#555;
  line-height:1.8;
}

/* 下のブロックとの間隔 */
.abc-dayflow-box--mt{
  margin-top:26px;
}
/* 全体エリア */
.abc-dayflow-area{
  background:#eaf6ff;
  padding:80px 0;
}

/* 白い共通カード */
.abc-dayflow-card{
  max-width:1100px;
  margin:0 auto;
  background:#fff;
  border-radius:28px;
  padding:60px 60px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* 下のブロックとの区切り */
.abc-dayflow-sep{
  margin-top:48px;
  padding-top:48px;
  border-top:1px solid #dbefff;
}








/* ===============================
  療育×（生活・学習・就労）に役立つ支援 10選（ABC版）
  ※CSSだけ（コピペ用）
================================ */

/* ===== ABCカラー（必要ならここだけ微調整） ===== */
:root{
  --abc-sky: #5bbff2;      /* タイトル水色 */
  --abc-sky-soft:#eaf7ff;  /* セクション薄水色 */
  --abc-ink:#222;
  --abc-muted:#666;
  --abc-border:#e8e8e8;
  --abc-shadow: 0 10px 26px rgba(0,0,0,.08);
}

/* ===== セクション全体 ===== */
.abc-support10{
  background: var(--abc-sky-soft);
  padding: 64px 0;
}

.abc-support10__inner{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.abc-support10__head{
  text-align:center;
  margin-bottom: 26px;
}

.abc-support10__title{
  margin:0;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--abc-ink);
}

.abc-support10__title span{
  color: var(--abc-sky); /* タイトル文字はABC水色 */
}

.abc-support10__sub{
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--abc-sky);
  letter-spacing: .08em;
}

/* ===== グリッド ===== */
.abc-support10__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===== カード ===== */
.abc-supportCard{
  background:#fff;
  border-radius: 16px;
  overflow:hidden;
  box-shadow: var(--abc-shadow);
  border: 1px solid rgba(0,0,0,.02);
}

.abc-supportCard__img{
  position: relative;
  height: 150px;                 /* 画像の高さ */
  background:#f2fbff;
  overflow:hidden;
}

.abc-supportCard__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* 番号札 */
.abc-supportCard__num{
  position:absolute;
  left: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffd07a;          /* 黄色っぽい札 */
  color:#222;
  font-weight: 900;
  display:grid;
  place-items:center;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
  border: 2px solid rgba(255,255,255,.8);
}

.abc-supportCard__body{
  padding: 16px 16px 18px;
}

.abc-supportCard__h{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--abc-ink);
  line-height: 1.4;
}

.abc-supportCard__p{
  margin:0;
  font-size: 13.5px;
  color: var(--abc-muted);
  line-height: 1.85;
}

/* ===== レスポンシブ ===== */
@media (max-width: 980px){
  .abc-support10__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .abc-support10{ padding: 44px 0; }
  .abc-support10__title{ font-size: 24px; }
  .abc-support10__grid{ grid-template-columns: 1fr; gap: 18px; }
  .abc-supportCard__img{ height: 160px; }
}



















/* ========================================================================================================================================================================
   お問い合わせ
======================================================================================================================================================================*/
/* =========================


/* =========================
   お問い合わせフォーム強化（追記用）
   ========================= */

/* セクション全体 */
.contact-sec{
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* テーブル全体 */
.ta1.contact-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

/* 行 */
.ta1.contact-table th,
.ta1.contact-table td{
  border: 1px solid rgba(0,0,0,.12);
  padding: 22px 20px;
  vertical-align: middle;
}

/* 左の見出し（右画像っぽい水色） */
.ta1.contact-table th{
  width: 28%;
  background: #e9f7ff; /* ABCの淡い水色 */
  font-weight: 700;
  white-space: nowrap;
}

/* 必須バッジ */
.ta1.contact-table .req{
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: #ff5a7a; /* ピンク系（写真の必須タグ風） */
  color: #fff;
  font-weight: 700;
}

/* 入力欄を「右の写真くらい」大きく */
.contact-input,
.contact-select,
.contact-textarea{
  width: 100%;
  max-width: 520px;     /* PCで横に広すぎない */
  height: 48px;         /* 高さを大きく */
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  background: #fff;
}

/* テキストエリア */
.contact-textarea{
  max-width: 100%;
  height: 170px;
  resize: vertical;
}

/* フォーカス */
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus{
  outline: none;
  border-color: #3aa7ff;
  box-shadow: 0 0 0 3px rgba(58,167,255,.18);
}

/* 送信ボタン（いまの赤系に寄せる） */
.contact-btn-wrap{
  text-align: center;
  margin-top: 22px;
}

.contact-submit{
  appearance: none;
  border: none;
  cursor: pointer;
  background: #e53935; /* フッターのお問い合わせ赤に寄せて調整 */
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 34px;
  border-radius: 10px;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}

.contact-submit:hover{
  filter: brightness(0.97);
}

.contact-submit:active{
  transform: translateY(1px);
}

/* スマホ：縦積み */
@media (max-width: 768px){
  .ta1.contact-table th{
    width: auto;
    white-space: normal;
  }

  /* テーブルを縦積みに */
  .ta1.contact-table,
  .ta1.contact-table tbody,
  .ta1.contact-table tr,
  .ta1.contact-table th,
  .ta1.contact-table td{
    display: block;
    width: 100%;
  }

  .ta1.contact-table tr{
    margin-bottom: 14px;
  }

  .ta1.contact-table th{
    border-bottom: none;
    border-radius: 10px 10px 0 0;
  }

  .ta1.contact-table td{
    border-top: none;
    border-radius: 0 0 10px 10px;
  }

  .contact-input,
  .contact-select{
    height: 46px;
    max-width: 100%;
  }
}








/* ========================================================================================================================================================================
  
======================================================================================================================================================================*/

