@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");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");



/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {
    --primary-color: #000000;
}


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	height: 100%;
	font-size: 16px;	/*基準となるフォントサイズ。*/
}

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

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

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


body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	line-height: 1.8;		/*行間*/
}

/*リセット*/
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タグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}
section + section {
	margin-top: 3rem;
}


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


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

/*マウスオン時*/
a:hover {
	color: var(--primary-color);	/*css冒頭で指定しているテーマカラーを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1200px;	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
	border-top: 5px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで、ここではcss冒頭で指定しているテーマカラーを読み込みます。*/
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: 0 5%;	/*コンテンツ内の余白*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: 0.3rem 0;	/*2025年1月修正。上下、左右へのヘッダー内の余白。remというのは文字単位の事。3remは3文字分。*/
	text-align: center;	/*内容をセンタリング*/
}

/*ロゴ*/
#logo img {
	width: 400px;	/*ロゴの幅*/
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック*/





#menubar ul {
	margin: 0;padding: 0;
	margin-bottom: 0rem;			/*下に空けるスペース。１文字分。*/
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-around;	/*並びかたの種類の指定*/
	border-top: 1px solid #ddd;		/*上の線の幅、線種、色*/
/*	border-bottom: 1px solid #ddd;	/*下の線の幅、線種、色*/
	font-size: 14px;	/*基準となるフォントサイズ。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	flex: 1;
	text-align: center;
}
#menubar a {
	text-decoration: none;display: block;
	color: inherit;
	padding: 0.5rem 0.2rem;		/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
#menubar a:hover {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
	color: #fff;						/*文字色*/
}

/*サブメニューブロック設定
---------------------------------------------------------------------------*/
/*サブメニューブロック*/





#submenubar ul {
	margin: 0;padding: 0;
	margin-bottom: 1rem;			/*下に空けるスペース。１文字分。*/
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-around;	/*並びかたの種類の指定*/
	background: #666;           	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
	color: #fff;						/*文字色*/
/*	border-top: 1px solid #ddd;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ddd;	/*下の線の幅、線種、色*/
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

/*サブメニュー１個あたりの設定*/
#submenubar li {
	flex: 1;
	text-align: center;
}
#submenubar a {
	text-decoration: none;display: block;
	color: inherit;
	padding: 0.4rem 0.2rem;		/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
#submenubar a:hover {
	background: #fff;           	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
	color: #000;						/*文字色*/
}

/*TOPメニューブロック設定（2025年3月3日追加）
---------------------------------------------------------------------------*/
/*TOPメニューブロック*/





#topmenubar ul {
	margin: 0;padding: 0;
	margin-bottom: 0rem;			/*下に空けるスペース。１文字分。*/
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-around;	/*並びかたの種類の指定*/
	font-size: 12px;	/*基準となるフォントサイズ。*/
}

/*TOPメニュー１個あたりの設定*/
#topmenubar li {
	flex: 1;
	text-align: center;
}
#topmenubar a {
	text-decoration: none;display: block;
	color: inherit;
	padding: 0.1rem 0.2rem;		/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
#topmenubar a:hover {
	background: var(--primary-color);  	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
	color: #fff;						/*文字色*/
}


/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/
/*画像を囲むブロック*/
.mainimg-slick {
	margin-bottom: 5px;	/*画像の下に空けるスペース*/
}

/*丸いページナビボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: -30px;	/*下からの配置場所指定。ボタンを画像の下に移動します。*/
}

/*丸いページナビボタン１個あたりの設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプするので、わかりやすいようhover時にpointerになるように。*/
	background: #ccc;		/*背景色。白。*/	
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: var(--primary-color);	/*色。css冒頭で指定しているテーマカラーを読み込みます*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
	padding:0% 2%;	/*ブロック内の余白*/
}

/*mainブロック内のh2*/
main h2 {
	font-size: 1.8rem;		/*文字サイズ*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くする指定*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているテーマカラーを読み込みます*/
}

/*mainブロック内のh3*/
main h3 {
	font-size: 1.1rem;		/*文字サイズ*/
	text-align: left;		/*テキストをセンタリング*/

}

/**mainブロック内のpタグ*/
main p {
	margin: 1rem;	/*pの外側にとるスペース*/
}


/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
.new dt,
.new dd {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
.new dt {
	width: 8em;	/*幅。8文字(em)分*/
}

/*記事(dd)設定*/
.new dd {
	width: calc(100% - 8em);	/*「8em」は上の「.new dt」のwidthの値です*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #fff;			/*文字色*/
	background: var(--primary-color);		/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}


/*メニューのご紹介ページの各ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-simple {
	text-align: center;	/*中身をセンタリング*/
	max-width: 700px;		/*ボックスの幅*/
	margin: 0 auto 4rem;	/*ボックスの外側にとるスペース。上、左右、下。*/
}

/*ボックス内のh3*/
.list-simple h3 {
	margin: 0;
}

/*ボックス内のp*/
.list-simple p {
	margin: 0;
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;
}


/*アクセスのマップ。コメント解説がある行以外はそのままで使って下さい。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*ここが高さになります。大きくすればよりマップの高さも増します。*/
	position: relative;
	margin-bottom: 2rem;	/*地図の下に空けるスペース。２文字分。*/
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 1rem;			/*ボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #555;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	color: #fff;			/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #666;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 2em;		/*最後の「2em」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #666;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 28%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #f7f7f7;	/*背景色*/
}


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	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%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.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;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

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

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

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

/*トップページの「・」2025年2月23日追加
---------------------------------------------------------------------------*/
/*ブロック*/
.dot {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*「・」(maru)、記事(kiji)共通設定*/
.dot maru,
.dot kiji {
	padding: 3px 0;		/*上下、左右へのボックス内の余白*/
}

/*「・」(maru)設定*/
.dot maru {
	width: 1em;	/*幅。1文字(em)分*/
}

/*記事(kiji)設定*/
.dot kiji {
	width: calc(100% - 1em);	/*「1em」は上の「.new maru」のwidthの値です*/
}


/*スケールモデルトップページの箇条書き　2025年2月23日追加
---------------------------------------------------------------------------*/
/*ブロック*/
.bpo {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*共通設定*/
.bpo titl,
.bpo kiji {
	padding: 5px 0;		/*上下、左右へのボックス内の余白*/
}

/*(titl)設定*/
.bpo titl {
	width: 7em;	/*幅。7文字(em)分*/
}

/*記事(kiji)設定*/
.bpo kiji {
	width: calc(100% - 7em);	/*「7em」は上の「.titl .kiji」のwidthの値です*/
}

/*SMERミグ17脚部画像用　2025年2月25日追加
---------------------------------------------------------------------------*/
.box-img,
.box-text{
  display: inline-block;
  vertical-align: middle;
}

/*スケールモデルトップページの箇条書き　その２　2025年2月25日追加
---------------------------------------------------------------------------*/
/*ブロック*/
.bpo2 {
	margin: 0;
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 1rem;	/*上下、左右へのボックス内の余白*/
}

/*共通設定*/
.bpo2 titl,
.bpo2 kiji {
	padding: 2px 0;		/*上下、左右へのボックス内の余白*/
}

/*(titl)設定*/
.bpo2 titl {
	width: 2em;	/*幅。2文字(em)分*/
}

/*記事(kiji)設定*/
.bpo2 kiji {
	width: calc(100% - 2em);	/*「2em」は上の「.titl .kiji」のwidthの値です*/
}




/*パンくずリスト 2025年3月17日追加
---------------------------------------------------------------------------*/
nav ol {
list-style: none;

padding: 0;

display: flex;

}

nav ol li {

margin-right: 10px;

}

nav ol li::after {

content: ">";

margin-left: 10px;

}

nav ol li:last-child::after {

content: “”;

}

/*完成品ラインナップ
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*2列にする指定。3列にしたければrepeat(3, 1fr)とする。*/
	gap: 1rem;	/*ブロックの間に1文字分のスペースを空ける*/
}

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

	/*ブロック全体を囲むブロック*/
	.list-grid {
		grid-template-columns: repeat(4, 1fr);	/*4列にする指定。2列にしたければrepeat(2, 1fr)とする。*/
		gap: 1.2rem;	/*ブロックの間に2文字分のスペースを空ける*/
	}

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


/*ボックス１個あたり*/
.list-grid .list {
    display: grid;
	position: relative;
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	overflow: hidden;
}

/*ボックス内のp要素*/
.list-grid .list p {
	font-size: 0.70rem;	/*文字サイズを85%に*/
	line-height: 1.0;	/*行間を少し狭く*/
    text-align: left;
}


/*アイコン
---------------------------------------------------------------------------*/
/*共通*/
.list-grid .icon-bg1,
.list-grid .icon-bg2,
.list-grid .icon-bg3 {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	overflow: hidden;
	position: absolute;
	left: 0px;		/*左からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	font-size: 0.65rem;	/*文字サイズ。85%*/
	width: 3rem;		/*幅。10文字分*/
	padding-top: 0rem;	/*テキストの上にとる余白。2文字分。*/
	text-align: center;	/*テキストをセンタリング*/
/*	transform: rotate(-45deg) translate(-2.4rem,-3rem);	/*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
/*	box-shadow: 0px 5px #fff;	/*ボックスの影。アイコンと写真の間の境界線として使っています。*/
}

/*icon-bg1*/
.list-grid .icon-bg1 {
	background: #ff3535;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2*/
.list-grid .icon-bg2 {
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
}


/*icon-bg3*/
.list-grid .icon-bg3 {
	background: #333;	/*背景色*/
	color: #fff;		/*文字色*/
}


/*ミドルメニューブロック---25年7月21日追加*/


#middlemenubar ul {
	margin: 0;padding: 0;
	margin-bottom: 1rem;			/*下に空けるスペース。１文字分。*/
	display: flex;					/*flexボックスを使う指定*/
	justify-content: space-around;	/*並びかたの種類の指定*/
/*    border-top: 1px solid #ddd;		/*上の線の幅、線種、色*/
	border-bottom: 1px solid #ddd;	/*下の線の幅、線種、色*/
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

/*ミドルメニュー１個あたりの設定*/
#middlemenubar li {
	flex: 1;
	text-align: center;
}
#niddlemenubar a {
	text-decoration: none;display: block;
	color: inherit;
	padding: 1rem 1rem;		/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
#middlemenubar a:hover {
	background: var(--primary-color);	/*背景色。css冒頭で指定しているテーマカラーを読み込みます*/
	color: #fff;						/*文字色*/
}

/*二重取り消し線
---------------------------------------------------------------------------*/
    .strike-through {
      text-decoration-line: line-through;
      text-decoration-style: double;
      text-decoration-color: black; 
    }




