@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


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

	/*余白の一括管理用。主に左右の余白に使っています。2rem＝２文字分。*/
	--content-space: 3rem 2rem;
	
}


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 14px;	/*基準となるフォントサイズ。*/
}

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

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

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


body {
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #555;		/*文字色*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

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

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

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

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

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

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space);	/*section内の余白。冒頭のcontent-spaceを読み込みます。*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	overflow-x: hidden;
	position: relative;
	animation: opa1 1s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	max-width: 3000px;	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	/*padding: var(--content-space);	ヘッダー内の余白。css冒頭のcontent-spaceを読み込みます。*/
	padding: 1rem 3rem;
	background: #f5f5f5;
	/*background: #83ccd2;	背景色*/
	color: #555;		/*文字色*/
}
header a {color: #00478c;}

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

	/*ヘッダーブロック*/
	header {
		display: flex;
		align-items: center;
		gap: 5rem;	/*ヘッダー内のブロック同士の余白*/
	}
	
	}/*追加指定ここまで*/


/*ロゴ（※画像の場合）*/
#logo img {
	display: block;
	width: 220px;	/*ロゴの幅*/
}

/*ロゴ（※テキストの場合）*/
#logo a {text-decoration: none;}
#logo {
	width: auto;
	font-size: 1.4rem;	/*文字サイズ。140%*/
}


/*header-box（この場合は「資料請求」「お問い合わせ」）
---------------------------------------------------------------------------*/
/*ボックス全体*/
#header-box * {margin: 0;padding: 0;}
#header-box ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*メニュー１個あたり*/
#header-box ul a {
	display: block;text-decoration: none;
	padding: 1rem 2rem;
}

/*1つ目、2つ目メニューのアイコン（共通）*/
#header-box ul li:nth-of-type(1) a::before,
#header-box ul li:nth-of-type(2) a::before {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	margin-right: 1em;		/*アイコンとメニューテキストとの間に空けるスペース。1文字分。*/
	transform: scale(1.5);	/*アイコンを150%のサイズに*/
	display: inline-block;
}

/*1つ目のメニュー（資料請求）*/
#header-box ul li:nth-of-type(1) a {
	background: #555;
	color: #fff;
}
#header-box ul li:nth-of-type(1) a::before {
	content: "\f15c";	/*このアイコンを使う*/
}

/*2つ目のメニュー（お問い合わせ）*/
#header-box ul li:nth-of-type(2) a {
	background: #00478c;
	color: #fff;
}
#header-box ul li:nth-of-type(2) a::before {
	content: "\f0e0";	/*このアイコンを使う*/
}


/*大きな端末で見たメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar {
	flex: 1;
	font-size: 1rem;	
}
.large-screen #menubar > nav > ul {
	display: flex;
	gap: 2rem;	/*メニュー同士に空けるスペース*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	display: block;text-decoration: none;
}


/*大きな端末で見た場合のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウン全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色。*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
	margin-top: 3px;		/*上に3pxスペースを空ける*/
}


/*小さな端末で見たメニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
	background: rgba(0,0,0,0.9);	/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	color: #fff;					/*文字色。白。*/
}

.small-screen #menubar {display: none;}

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	border: none;
	padding: 0;
    margin-left: 3.8rem;	/*左に空けるスペース*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	content: "\f078";		/*このアイコンを使う*/
	margin-right: 0.3em;	/*アイコンとメニューテキストとの間に空けるスペース。0.5文字分。*/
	transform: scale(0.7);	/*アイコンを70%のサイズに*/
	display: inline-block;
}
a.ddmenu {cursor: default;}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 50px;	/*ボタンの幅*/
	height: 50px;	/*ボタンの高さ*/
	background: #00478c;	/*ボタン色*/
	border-radius: 0px 0px 0px 20px;	/*角を丸くする指定。左上、右上、右下、左下の順番。この場合は左下だけ角を丸くする。*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 25px;
	height: 2px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 12px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 22px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 32px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}


/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}

@media (max-width: 698px) {
#contents ul,#contents ol {
	margin-left: 1rem;
	margin-right: 1rem;
}
}



/* 青色中黒（●）のリストデザイン */
#contents ul li {
    list-style: none;
    position: relative;
    padding-left: 1.2rem; /* ドットと文字の間の余白 */
}
#contents ul li::before {
    content: "●";
    color: #00478c;
    position: absolute;
    left: 0;
    top: 0.35em; /* ● の縦位置を中央寄せ */
    font-size: 0.8em; /* 少し小さくして位置合わせ */
}


/*p要素（段落タグ）
---------------------------------------------------------------------------*/
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer a {color: inherit;text-decoration: none;}
footer small {font-size: 100%;}
footer {
	margin-top: auto;
	font-size: 0.8rem;		/*文字サイズ。80%。*/
	background: #eee;		/*背景色*/
	color: #555;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;	/*ボックス内の余白。１文字分。*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*余白調整用
---------------------------------------------------------------------------*/
section.padding0 {
	padding: 0;
}
div.padding0 {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mt30 {margin-top: 30px !important;}

.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

/*大きな画面の場合*/
.large-screen .ws {width: 48%;display: inline;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}




	/*list-grid1-parts
---------------------------------------------------------------------------*/
.list-grid1-parts .list-parts * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid1-parts {
	display: grid;
}

/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
    display: grid;
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1-parts .list-parts p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

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

	/*ブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(2, 1fr);	/*2列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 0.3rem;	/*ブロックの間に空けるマージン的な指定*/
	}

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


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

	/*ブロック全体を囲むブロック*/
	.list-grid1-parts {
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 1rem;	/*ブロックの間に空けるマージン的な指定*/
	}
     .grid6{
		grid-template-columns: repeat(6, 1fr);
		gap:0rem;
	}

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


	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
		.grid6{
			grid-template-columns: repeat(2, 1fr);
			gap: 0.5rem;
		}
	}


/*ボックス１個あたり*/
.list-grid1-parts .list-parts {
	padding: 0.3rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid1-parts .list-parts figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}


/*ボタン
---------------------------------------------------------------------------*/
.list-grid1-parts .btn-parts a {
	display: block;text-decoration: none;
	font-size: 1.1rem;
	text-align: center;		/*テキストをセンタリング*/
	/* background: #555;		背景色*/
	color: #fff;			/*文字色*/
	padding: 10px;		/*ボタン内の余白*/
	/*margin-top: 1rem;		ボタンの上に空けるスペース*/
}
	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
		.list-grid1-parts .btn-parts a {
			font-size: 1.2rem;
		}
	}


/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid1-parts .icon-bg1-parts,
.list-grid1-parts .icon-bg2-parts {
	overflow: hidden;
	position: absolute;
	left: -15px;	/*左からの配置場所*/
	top: -15px;		/*上からの配置場所*/
	font-size: 0.7rem;	/*文字サイズ。70%*/
	width: 4em;			/*幅*/
	line-height: 4em;	/*高さ*/
	text-align: center;	/*テキストをセンタリング*/
	border-radius: 50%;	/*円形にする*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-grid1-parts .icon-bg1-parts {
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-grid1-parts .icon-bg2-parts {
	background: #358bff;	/*背景色*/
	color: #fff;			/*文字色*/
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 600px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
	#logo img {
		display: block;
		margin: 0 auto;
		width: 220px;	/*ロゴの幅*/
	}

}

/*h2タグ
---------------------------------------------------------------------------*/
#contents h2.titleset1-parts {
	font-size: 1.3rem;		/*文字サイズ。bodyで設定しているfont-sizeに対して1.3倍。*/
	padding: 0.4rem 1rem;	/*h2内の余白。上下、左右への順番。*/
	border-radius: 3px;		/*角を少しだけ丸くする指定。不要ならこの１行を削除します。*/
	background: #eee;		/*背景色*/
	color: #555;			/*文字色*/
}

/*左のアクセントラインの設定。不要ならブロックごと削除して下さい。*/
#contents h2.titleset1-parts::before {
	content: "";
	border-left: 0.3rem solid #fff;		/*テキスト左側のアクセントラインの幅、線種、色*/
	padding-right: 1rem;				/*アクセントラインと、テキストとの間の余白*/
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3.titleset1-parts {
	font-size: 1.2rem;		/*文字サイズ。bodyで設定しているfont-sizeに対して1.2倍。*/
	padding: 0.4rem 1rem;	/*h2内の余白。上下、左右への順番。*/
	border-radius: 3px;		/*角を少しだけ丸くする指定。不要ならこの１行を削除します。*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*左のアクセントラインの設定。不要ならブロックごと削除して下さい。*/
#contents h3.titleset1-parts::before {
	content: "";
	border-left: 0.3rem solid #999;		/*テキスト左側のアクセントラインの幅、線種、色*/
	padding-right: 1rem;				/*アクセントラインと、テキストとの間の余白*/
}


/*h2タグ
---------------------------------------------------------------------------*/
#contents h2.titleset2-parts {
	margin: 0 0 1rem;	/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.5rem;	/*文字サイズ*/
	position: relative;	/*ulineを配置する為に必要な指定*/
	border-bottom: 3px solid #eee;	/*薄い色の線の幅、線種、色*/
}
#contents h2.titleset2-parts .uline {
	display: inline-block;position: relative;
	padding: 10px 1rem;	/*h2内の余白。上下、左右への順番。*/
	bottom: -3px;		/*濃い線を薄い線に重ねる為の指定。枠線の幅と合わせます。*/
	border-bottom: 3px solid #999;	/*濃い色の線の幅、線種、色。*/
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3.titleset2-parts {
	margin: 0 0 1rem;	/*h3の外側にとるスペース。上、左右、下への順番。*/
	font-size: 1.2rem;	/*文字サイズ*/
	padding: 10px 1rem;	/*h3内の余白。上下、左右への順番。*/
	border-bottom: 3px solid #eee;	/*薄い色の線の幅、線種、色*/
}


/*h2タグ
---------------------------------------------------------------------------*/
#contents h2.titleset4-parts {
	font-size: 1.3rem;		/*文字サイズ。bodyで設定しているfont-sizeに対して1.3倍。*/
	padding: 0.4rem 2rem;	/*h2内の余白。上下、左右への順番。*/
	border-radius: 10px;	/*角を少しだけ丸くする。適当に大きめサイズであればOK。*/
	background: #00478c;		/*背景色*/
	color: #fff;			/*文字色*/
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3.titleset4-parts {
	font-size: 1.2rem;		/*文字サイズ。bodyで設定しているfont-sizeに対して1.2倍。*/
	padding: 0.4rem 2rem;	/*h2内の余白。上下、左右への順番。*/
	border-radius: 10px;	/*角を少しだけ丸くする。適当に大きめサイズであればOK。*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}



/*h2タグ
---------------------------------------------------------------------------*/
#contents h2.titleset5-parts {
	font-size: 2rem;		/*文字サイズ。2倍。*/
	text-align: center;
	position: relative;
	letter-spacing: 0.1em;	/*文字間隔を少し広くする*/
	padding-top: 1rem;		/*ここを調整すると、見出しテキストとボーダーの間の余白を調整できます。お好みで。*/
}

/*小文字（kazari title）*/
#contents h2.titleset5-parts span {
	display: block;
	font-weight: normal;
	font-size: 0.5em;		/*文字サイズ。見出しの50%*/
	opacity: 0.5;			/*透明度。色を50%だけ出す。*/
}

/*見出し上のボーダー*/
#contents h2.titleset5-parts::before {
	content: "";
	position: absolute;
	height: 3px;	/*ボーダーの高さ*/
	width: 50px;	/*ボーダーの幅。変更する際は、下のleftの行も変更します。*/
	left: calc(50% - 25px);	/*左からの配置場所。ここの25px部分は、上のwidthの半分。*/
	top: 0px;
	background: #ccc;	/*線の色*/
}


/*h3タグ
---------------------------------------------------------------------------*/
#contents h3.titleset5-parts {
	font-size: 1.6rem;		/*文字サイズ。1.6倍。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする*/
	padding-left: 1rem;		/*左に空ける余白*/
	padding-right: 1rem;	/*右に空ける余白*/
}

/*小文字（kazari title）*/
#contents h3.titleset5-parts span {
	display: block;
	font-weight: normal;
	font-size: 0.5em;		/*文字サイズ。見出しの50%*/
	opacity: 0.5;			/*透明度。色を50%だけ出す。*/
}






main {
	max-width: 1400px;
	margin:  0 auto;   
}





/* table 共通-------------------------------------------------------------------------- */
.tb01 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5;
}

.tb01 th,
.tb01 td {
  padding: 10px;
  border: solid 1px #ccc;
  text-align: left;
  box-sizing: border-box;
}

.tb01 th {
  background: #778ca3;
  color: #fff;
  font-weight: bold;
}

.tb01 tr:nth-child(2n+1) {
  background: #e9faf9;
}

/* ボタン風 */
.btn2-parts.block {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.btn2-parts.block:hover {
  background: #0056b3;
}
.btn3-parts.block {
  display: inline-block;
  background: #ccc;
  color: #666;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: bold;
}

/* 中央寄せ */
.c {
  text-align: center;
}

/* --- スマホ用（640px以下） --- */
@media screen and (max-width: 640px) {
  .tb01 thead,
  .tb01 .head {
    display: none;
  }
  .tb01,
  .tb01 tbody,
  .tb01 tr,
  .tb01 td {
    display: block;
    width: 100%;
  }
  .tb01 tr {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }
  .tb01 td {
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    position: relative;
    padding: 10px 10px 10px 25%;
  }
  .tb01 td:first-child {
    background: #778ca3;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
    padding: 12px;
    padding-left: 12px;
  }
  .tb01 td:last-child {
    border-bottom: none;
  }

  /* 各セルにラベル */
  .tb01 td:nth-of-type(2):before { content: "開催日"; }
  .tb01 td:nth-of-type(3):before { content: "時間"; }
  .tb01 td:nth-of-type(4):before { content: "会場"; }
  .tb01 td:nth-of-type(5):before { content: "住所"; }
  .tb01 td:nth-of-type(6):before { content: "MAP"; }
  /* 7列目（申し込み）はラベルなし */
  .tb01 td:nth-of-type(7):before { content: ""; }

  .tb01 td:before {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
    color: #555;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* 申し込みセルだけ特別扱い */
  .tb01 td:nth-of-type(7) {
    padding: 10px;
    text-align: center;
  }

  /* ボタンを大きく */
  .tb01 td:nth-of-type(7) .btn2-parts,
  .tb01 td:nth-of-type(7) .btn3-parts {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-radius: 8px;
  }
}


  td.example {
	white-space: nowrap !important;
	}
	



/*table

---------------------------------------------------------------------------
table {
	width: 100%;
}

  .tb01 th,
  .tb01 td{
	padding: 10px;
	border: solid 1px #ccc;
	text-align:left;
	box-sizing:border-box;
  }
  .tb01 th {
	background: #778ca3;
	color: #fff;
	
  }

  .tb01 tr:nth-child(2n+1) {
	background: #e9faf9;
   }

 
   
  @media screen and (max-width: 640px) {
	.tb01 .head{
	  display:none;
	}
	.tb01 {
	  width: 100%;
	  position: relative;
	}
	
	table.tb01 td {
	  display: block;
	  width: 100%;
	  border-bottom:none;
	  font-size: 1.2rem;
	}
	table.tb01 td:first-child{
	  background: #778ca3;
	  color:#fff;
	  font-weight:bold;
	  text-align: center;
	  font-size: 1.5rem;
	}
	.tb01 tr:last-child{
	  border-bottom: solid 1px #ccc;
	}
	
  }
	*/

  /*btn2
---------------------------------------------------------------------------*/
a.btn2-parts {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0.8rem 1rem;	/*上下、左右へのボタン内の余白*/
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.2は色が20%出た状態。*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	background: #00478c;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*アイコン*/
a.btn2-parts i {
	padding-left: 0.3em;	/*アイコンとテキストの間の余白*/
}

/*マウスオン時*/
a:hover.btn2-parts {
	transform: scale(1.03);		/*103%に拡大する*/
}






/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
.slide5-parts {
	position: relative;
	overflow: hidden;
}

/*３枚の画像の共通設定*/
.slide5-parts .slide-parts {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	transform: translateX(100%);	/*初期状態で画面の右外側に配置*/
	transition: transform 0.7s ease;	/*スライドのアニメーション。0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5-parts .slide-parts.active {
	transform: translateX(0);	/*画面内に表示*/
}

/*左に移動*/
.slide5-parts .slide-parts.left {
	transform: translateX(-100%);	/*画面の左外側に移動*/
}

/*非表示*/
.slide5-parts .slide-parts.hidden {
	opacity: 0;
}

/*初期表示用*/
.slide5-parts .slide-parts.initial {
	transform: translateX(0);
	transition: none;
}

/*１枚目画像（変更不要）*/
.slide5-parts .img1-parts {
	position: relative;width: 100%;height: auto;
}

/*画像のクリップ*/
.slide5-parts .slide-parts img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.slide5-parts .slide-parts {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.slide5-parts .slide-parts.active {
	pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}

/*現在表示中のボタン
---------------------------------------------------------------------------*/
/*全体*/
.slide5-parts .slide-indicators-parts {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 10px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide5-parts .indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5-parts .indicator.active {
    background: #000;
}

.color1 a {
	background: #00478c;
}
.color1 {
	background: #00478c!important;
	color: #fff !important;
}

.color2 a {
	background: #67499b;
}
.color2 {
	background: #67499b!important;
	color: #fff !important;
}
.color3 a {
	background: #a74598;
}
.color3 {
	background: #a74598!important;
	color: #fff !important;
}
.color4 a {
	background: #db4484;
}
.color4 {
	background: #db4484!important;
	color: #fff !important;
}


.color5 a {
	background: #fd5665;
}
.color5 {
	background: #fd5665!important;
	color: #fff !important;
}

.color6 a {
	background: #ff7a3f;
}
.color6 {
	background: #ff7a3f!important;
	color: #fff !important;
}

.color7 a {
	background: #ffa600;
}
.color7 {
	background: #ffa600!important;
	color: #fff !important;
}


.color-gray a {
	background-color: #888 !important;
}

.btn3-parts {
	display: inline-block;text-decoration: none;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0.3rem 1rem;	/*上下、左右へのボタン内の余白*/
	box-shadow: 1px 2px 3px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅。0,0,0は黒の事で0.2は色が20%出た状態。*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
	background: #8e8e8e;	/*背景色*/
	color: #fff;		/*文字色*/
}
.btn3-parts i {
	padding-left: 0.3em;	/*アイコンとテキストの間の余白*/
}

.btn-seminar {
	background-color: #ff8038 !important;
	padding: 1rem 2rem !important;
}

.hight::after{
	display: inline-block;
    content: "高校生限定";
    background-color: crimson;
	font-size: 0.7rem;	/*文字サイズ。70%*/
	vertical-align: middle;
width: 5em;			/*幅*/
height: 2em;
line-height: 2em;	/*高さ*/
text-align: center;	/*テキストをセンタリング*/
/*border-radius: 50%;	円形にする*/
color: #fff;			/*文字色*/
padding: 0.5em;;
margin-left: 1em;
}

.new_i::before{
	display: inline-block;
    content: "NEW";
    background-color: crimson;
	font-size: 0.7rem;	/*文字サイズ。70%*/
width: 3em;			/*幅*/
height: 3em;
line-height: 3em;	/*高さ*/
text-align: center;	/*テキストをセンタリング*/
border-radius: 50%;	/*円形にする*/
color: #fff;			/*文字色*/
margin-right: 1em;
}


/*スマホの時だけ改行させるクラス*/
.br-sp {
    display: none;
}

@media (max-width: 600px) {
    .br-sp {
        display: block;
    }
}




/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	text-shadow: none;display: block;text-decoration: none;
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	font-size: 1.4rem;		/*文字サイズ。140%に。*/
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右へ。*/
	border-radius: 100px;	/*角を丸くする*/
	text-align: center;		/*テキストをセンタリング*/
}

/*bg-primary-colorの上で使う場合*/
.btn1 a {
	background: #ff8038;		/*背景色。冒頭のprimary-inverse-colorを読み込みます。*/
	color: #ffffff;	/*文字色。冒頭のprimary-colorを読み込みます。*/
}

/*マウスオン時
.btn1 a:hover {
	opacity: 1;
	transform: scale(1.05);	
	background: var(--primary-inverse-color);	
	color: var(--primary-color);				
}
	*/


/*矢印アイコン*/
.btn1 a::after {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f0a9";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 0.5em;		/*アイコンとテキストとの間に空けるスペース*/
}




/*縦書きボタン
---------------------------------------------------------------------------*/
#btn-side1-parts a {
	text-decoration: none;display: block;
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: #ff7e00;/*背景色*/
	color: #fff;		/*文字色*/
	position: fixed;	/*スクロールしてもボタンが移動しないようにする指定。移動させたいならfixedをabsoluteにして下さい。*/
	z-index: 1;
	right: 0px;			/*ボタンの右からの配置場所指定*/
	bottom: 100px;			/*ボタンの上からの配置場所指定*/
	padding: 20px 10px;	/*ボタン内の余白。上下、左右。*/
	border-radius: 10px 0px 0px 10px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
}

/*ふきだしアイコン*/
#btn-side1-parts i {
	transform: scale(1.3);	/*1.3倍に*/
	margin-bottom: 10px;	/*下に空ける余白*/
}




/*list-normal3-parts
---------------------------------------------------------------------------*/
.list-normal3-parts .list-parts * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-normal3-parts .list-parts {
	position: relative;
	overflow: hidden;
	padding: 1.5rem;		/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	/*margin-bottom: 2rem;	ボックス同士の余白*/
}

/*ボックス内のfigure画像*/
.list-normal3-parts .list-parts figure {
	margin-bottom: 0.5rem;	/*見出しの下に0.5文字分のスペースを空ける*/
}

/*ボックス内のh4見出し*/
.list-normal3-parts .list-parts h4 {
	font-size: 1.3rem;	/*文字サイズ130%*/
	margin-bottom: 0.5rem;	/*見出しの下に0.5文字分のスペースを空ける*/
	margin-left: 2rem;
}

/*ボックス内のp要素*/
.list-normal3-parts .list-parts p {
	font-size: 0.9rem;	/*文字サイズを90%*/
	line-height: 1.6;	/*行間を少し狭く*/
}

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

	/*ボックス１個あたり*/
	.list-normal3-parts .list-parts {
		display: flex;	/*横並びにする*/
		gap: 1.5rem;	/*左の画像と右のテキストとの間のマージン的な余白*/
	}
	
	/*ボックス内のfigure画像*/
	.list-normal3-parts .list-parts figure {
		margin-bottom: 0;	/*見出しの下のマージンをリセット*/
		width: 30%;			/*画像の幅*/
	}

	/*テキストを囲むブロック*/
	.list-normal3-parts .list-parts .text-parts {
		flex: 1;
	}

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


/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-normal3-parts .icon-bg1-parts,
.list-normal3-parts .icon-bg2-parts {
	overflow: hidden;
	position: absolute;
	left: 0px;		/*左からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	font-size: 0.7rem;	/*文字サイズ。70%*/
	width: 10rem;		/*幅。10文字分*/
	padding-top: 2rem;	/*テキストの上にとる余白。2文字分。*/
	text-align: center;	/*テキストをセンタリング*/
	transform: rotate(-45deg) translate(-2.4rem,-3rem);	/*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
}

/*icon-bg1-parts（サンプルだと「NEW」）*/
.list-normal3-parts .icon-bg1-parts {
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2-parts（サンプルだと「UP」）*/
.list-normal3-parts .icon-bg2-parts {
	background: #358bff;	/*背景色*/
	color: #fff;			/*文字色*/
}

.clear {
	padding:0;
}








/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	flex: 1;
	border-top: 1px solid #ccc;	/*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;	/*上、左右、下へのdd内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	margin-right: -1rem;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	border-color: transparent;				/*枠線を出したくないので透明にする*/
}

/*bg1背景の上で使うicon-bg1*/
.bg1 .new .icon-bg1 {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);				/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.thumbnail-view {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}


	.markdown-body img {
		margin: 0 auto;
		display: block;
		max-width: 80%;
	  }

	  #info_date {
			border: solid 1px #999;
			padding:3px 10px;
			display: inline-block;
			margin-bottom: 1rem;
			border-radius: 3px;
	  }




/* お知らせ詳細ページのレスポンシブ */


.post-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4rem; /* 画像と本文の間隔 */
   max-width: 900px;
  margin: 0 auto;
}

.post-content img {
  max-width: 400px;  /* PC時の画像サイズ調整 */
  height: auto;
  flex-shrink: 0;
  border-radius: 8px; /* デザイン用オプション */
}

.post-content p {
  flex: 1;
  margin: 0;
}

/* スマホ表示用（画面幅768px以下で縦並び） */
@media (max-width: 768px) {
  .post-content {
    flex-direction: column;
    align-items: center; /* 画像を中央寄せ */
  }

  .post-content img {
    max-width: 100%;
  }

  .post-content p {
    width: 100%;
  }
}


@media only screen and (max-width: 600px) {
  .clearsp {
	padding-top: 0;
}
}



/* ============================
   合同説明会 PDF風デザイン
============================ */


.godo-box {
    background: #ffffff;       /* 内側は白 */
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12); /* PDF風のふわっと影 */
}

/* 見出しの余白調整（PDFに寄せる） */
.godo-box h2,
.godo-box h3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

/* 説明文の整形 */
.godo-box p {
    margin: 0 0 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* リスト（PDFのように1行ずつグレーの帯） */
.godo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.godo-list li {
    background: #f2f2f2;
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
    font-size: 1rem;
    border-bottom: 1px solid #ddd; /* PDFの薄い枠再現 */
}

/* 合同説明会リストのみ中黒を非表示 */
.godo-list li::before {
    content: none !important;
}

/* PCの時だけ2列表示 */
@media screen and (min-width: 800px) {
    .godo-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem 1.2rem; /* 行間・列間の余白調整 */
    }
    /* li が1つだけのときは横幅いっぱいに */
    .godo-list li:only-child {
        grid-column: 1 / -1;
    }
}

/* 合同説明会サイトリンクのみ青色 */
.godo-link {
    color: #0066cc !important;
    text-decoration: underline;
}




/* --- 7学科紹介デザイン --- */
.gakugei-7dept {
    background: #fff;
 
}
.gakugei-7dept h2 {
    margin-bottom: 2rem;
}

/* --- 7学科紹介デザイン --- */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.gakugei-7dept .dept-block {
    background: #ffffff;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    text-align: left;
}
.gakugei-7dept .dept-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.gakugei-7dept .dept-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.6rem;
}

@media screen and (max-width:900px){
    .dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width:600px){
    .dept-grid {
        grid-template-columns: 1fr;
    }
}

/* 見出し色バリエーション */
.color-art { color:#e95b5b; }
.color-kenchiku { color:#e5a03b; }
.color-design { color:#e87b2e; }
.color-photo { color:#5bab47; }
.color-bun { color:#37a6a1; }
.color-music { color:#6a4bd1; }
.color-kyoiku { color:#cd7acb; }

/* スマホ対応 */
@media screen and (max-width:600px){
    .gakugei-7dept .dept-block {
        grid-template-columns: 1fr;
    }
}



.br-sp {
    display: none;
}

@media (max-width: 698px) {
    .br-sp {
        display: block;
    }
}