@charset "utf-8";

/*slide.cssの読み込み*/
@import url(slide.css);

/*inview.cssの読み込み*/
@import url(inview.css);

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap');

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定　色▲red_w・#ff0000
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #ffffff;	/*▲全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #ff0000;	/*◆◆◆◆◆背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*Google FONT*/
.font-txt {
font-family: 'Noto Sans JP', sans-serif;
}

/*header
「top: -80px」の「80」の数字は、headerのheight(高さ)に合わせる。
---------------------------------------------------------------------------*/
/*アニメーションフレーム*/
@keyframes header {
0% {opacity: 0;top: -80px;}
100% {opacity: 1;top: 0px;}
}
/*headerブロック*/
header {
	position: fixed;	/*固定表示*/
	left: 0px;top: 0px;
	z-index: 2;
	width: 100%;		/*幅*/
	height: 80px;		/*高さ*/
	background: #ff0000;	/*◆◆◆◆◆背景色*/
	box-shadow: 0px 0px 30px 30px #ff0000;	/*◆◆◆◆◆グラデーション*/
}
/*headerブロック（トップページへの追加設定）*/
.home header {
	animation-name: header;		/*上で設定しているキーフレーム（keyframes）の名前*/
	animation-delay: 5s;		/*アニメーションを遅れて開始させる。「s」は秒の事。*/
	animation-duration: 0.2s;	/*アニメーションの実行時間。「s」は秒の事。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のフレームを、アニメーションの完了後は最後のフレームを維持する。*/
	animation-timing-function: ease-in-out;
	background: #ff0000;	/*◆◆◆◆◆背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.0);	/*背景色。255,255,255は白の事で0.9は色が90%出た状態の事*/
	box-shadow: none;
}
/*ロゴ画像*/
header #logo img {
	width: 190px;	/*●画像の幅180*/
	position: absolute;
	left: 3%;		/*ヘッダーブロックに対して左から3%の場所に配置*/
	bottom: 10px;	/*ヘッダーブロックに対して下から10pxの場所に配置*/
}

/*mainブロック
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	overflow: hidden;
	#width: 100%;
	max-width: 900px;				/*サイトの最大幅。これ以上広がらない。*/
	float: none;
}
/*トップページのmainブロックの指定*/
.home #main {
	#width: 100%;
	max-width: 900px;				/*サイトの最大幅。これ以上広がらない。*/
	float: none;
}
/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 36px;	/*●文字サイズ*/
	border-bottom: 2px solid #ffffff;	/*▲下線の色*/
	padding: 0 20px 10px;	/*上、左右、下へのタグ内の余白*/
	line-height: 1.2;	/*行間を少し狭くする。デフォルト指定は冒頭のbody内にあります。*/
	}
/*h3タグ*/
#main h3 {
	clear: both;margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	padding: 3px 15px;	/*上下、左右への余白*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	background: #ff0000;	/*◆◆◆◆◆背景色（古いブラウザ用）*/
	background: linear-gradient(#ff0000, #ff0000);	/*◆◆◆◆◆背景グラデーション*/
	border: 3px solid #ffffff;	/*▲枠線の色*/
	color: #ffffff;		/*▲文字色*/
}
/*h4タグ*/
#main h4 {
	clear: both;margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	padding: 3px 15px;	/*上下、左右への余白*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	background: #ff0000;	/*◆◆◆◆◆背景色（古いブラウザ用）*/
	background: linear-gradient(#ff0000, #ff0000);	/*◆◆◆◆◆背景グラデーション*/
	border: 3px solid #ffffff;	/*▲枠線の色*/
	color: #ffffff;		/*▲文字色*/
}
/*h5タグ*/
#main h5 {
	clear: both;margin-bottom: 20px;
	font-size: 24px;	/*文字サイズ*/
	padding: 3px 15px;	/*上下、左右への余白*/
	border-radius: 10px;	/*角を丸くする指定。この１行を削除すれば角丸がなくなります。*/
	background: #ff0000;	/*◆◆◆◆◆背景色（古いブラウザ用）*/
	background: linear-gradient(#ff0000, #ff0000);	/*◆◆◆◆◆背景グラデーション*/
	border: 3px solid #ffffff;	/*▲枠線の色*/
	color: #ffffff;		/*▲文字色*/
}
/*段落(p)タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p,
#main h4 + p {
	margin-top: -10px;
}
#main section + section {
	clear: both;
	padding-top: 40px;
}
.fl + .fr {
	clear: none !important;
	padding-top: 0 !important;
}

/*リンク（全般）設定69
---------------------------------------------------------------------------*/
a {
	color: #ffffff;		/*▲リンクテキストの色・列19の全体の文字色と合わせる*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #ffd700;			/*▲マウスオン時の文字色・薄い色*/
	#color: #ff8c00;			/*▲マウスオン時の文字色・濃い色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	fill: transparent;	/*初期の色。透明。*/
	stroke: #ffffff;		/*▲フチ取りの色・列19の全体の文字色と合わせる*/
	stroke-width: 2;	/*フチ取りの幅1*/
	width: 40%;			/*画像の幅40*/
	height: 30%;		/*画像の高さ30*/
	position: absolute;
	left: 30%;			/*左から30%の場所に配置*/
	bottom: 50%;		/*下から35%の場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;clear: both;
	position: absolute;
	left: 250px;	/*ヘッダーブロックに対して左から300pxの場所に配置*/
	bottom: 10px;	/*ヘッダーブロックに対して下から10pxの場所に配置*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	overflow: hidden;
	float: left;		/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	padding: 0px 10px;	/*上下、左右へのメニュー内の余白*/
}
#menubar li a {
	display:  block;text-decoration: none;
	padding-top: 3px;	/*下のブロックの「border-bottom」と「bottom」の数字と合わせる。*/
}
/*下線のアニメーション設定*/
#menubar li::after {
	transition: 0.3s;	/*0.3秒かけてアニメーションを実行する。*/
	content: "";
	display: block;
	border-bottom: 3px solid #ffffff;	/*▲下線の色、幅、線種。上のブロックの「padding-top」と、下の行の「bottom」の数字と合わせる。*/
	position: relative;left: 0px;bottom: -3px;	/*bottomの数字は上のブロックの「padding-top」と、上の行の「border-bottom」の数字と合わせる。※マイナス記号は残したまま。*/
}
/*マウスオン時、現在表示中(current)、共通設定*/
#menubar li:hover::after,#menubar li.current::after {
	bottom: 0px;
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #ffffff;	/*▲テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 8px;			/*ボックス内の余白*/
	#background: #zzzzzz;		/*▲背景色・必要に応じて*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ffffff;	/*▲テーブルの枠線の幅、線種、色*/
	padding: 8px;	/*ボックス内の余白*/
	#color: #dcdcdc;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 60px;		/*●幅140*/
	text-align: center;	/*センタリング*/
	#color: #dcdcdc;
}

/*headerアイコン（facebookやtwitterなどのアイコンブロック）
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	bottom: 10px;	/*ヘッダーブロックに対して下から10pxの場所に配置*/
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 25px;		/*●画像の幅30*/
	margin-left: 5px;	/*画像同士の余白5*/
}

/*box
---------------------------------------------------------------------------*/
.box {
	background: #000;				/*▲背景色（古いブラウザ用）#000*/
	background: rgba(0,0,0,1.0);	/*▲背景色。0,0,0は黒の事で0.7は色が70%出た状態の事 rgba(0,0,0,0.2)*/
	padding: 1%;					/*▲ボックス内の余白5%*/
	margin-bottom: 30px;			/*▲ボックスの下に空けるスペース30px*/
	border: 1px solid #fff;						/*▲線の幅、線種、色（古いブラウザ用）1px solid #fff*/
	border: 2px solid rgba(255,255,255,0.3);	/*▲線の幅、線種、色。255,255,255は白の事で0.3は色が30%出た状態の事1px solid rgba(255,255,255,0.3)*/

}

/*トップページのcontainerとcontentsとmain
---------------------------------------------------------------------------*/
.home #container,.home #contents,.home #main{
	height: 100%;
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
#container {
	#max-width: 1600px;	/*最大幅。これ以上幅が広くならないように。*/
	max-width: 900px;	/*最大幅。これ以上幅が広くならないように。*/
	margin: 0 auto;
}

/*contentsブロック。mainとsubを囲むブロック。
---------------------------------------------------------------------------*/
#contents {
	padding: 150px 3% 0;	/*上、左右、下へのコンテンツ内の余白*/
}
/*トップページのcontentsへの追加指定。余白をリセット。*/
.home #contents {
	padding: 0;
}

/*footerブロック
---------------------------------------------------------------------------*/
/*footerブロック*/
footer {
	clear: both;
	text-align: center;
	padding-top: 40px;
}
footer a {text-decoration: none;}
footer .pr {display: block;}
/*トップページのfooterブロック*/
.home footer {
	position: absolute;
	bottom: 0px;
	width: 100%;
}

/*NEWSブロック
---------------------------------------------------------------------------*/
/*日付設定*/
. dt {
	clear: both;
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる指定*/
	font-weight: bold;		/*太字にする*/
	padding: 10px 20px 0px;	/*上、左右、下への余白*/
}
/*記事設定*/
. dd {
	overflow: hidden;
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 0px 20px 10px;	/*上、左右、下への余白*/
}
/*右に回り込みの小さな画像*/
. dd .img {
	width: 100px;	/*画像の幅*/
	float: right;	/*右に回り込み*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;animation-name: scroll;animation-duration: 1s;animation-fill-mode: forwards;
	width: 40px;		/*ボタンの幅*/
	line-height: 40px;	/*ボタンの高さ*/
	bottom: 20px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 3%;			/*ウィンドウの右から3%の場所に配置*/
	background: #555;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 50%;	/*円形にする指定*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}
ol {
	padding: 0 20px 20px 45px;
}


/*縦書きバー
---------------------------------------------------------------------------*/
#message-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;			/*ボタンの右からの配置場所指定*/
	top: 111px;			/*ボタンの上からの配置場所指定*/
	padding: 10px 10px;	/*ボタン内の余白。上下、左右。*/
	border-radius: 10px 0px 0px 10px;	/*角を丸くする指定。左上、右上、右下、左下の順番。*/
	letter-spacing: 0.2rem;	/*文字間隔を少しだけ広く*/
}


/*その他▲
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
.color1, .color1 a {color: #29acef !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.w25 {width: 25%;}
.w48 {width: 48%;}
.w70 {width: 70%;}
.w85 {width: 85%;}
.w90 {width: 90%;}
.big1 {font-size: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}
.border1 {border: 1px solid #000;}
#sh-sub {display: none;}



/*画面を横向きにした場合の高さが500px以下の場合の設定。
※小さな端末用メニューを２列にします。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;		/*左に回り込み*/
	width: 44%;			/*幅*/
	line-height: 1.2;	/*行間*/
}

}



/*画面幅900px以下の設定◆
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

/*header
---------------------------------------------------------------------------*/
header {
	border-bottom: 1px solid #ffffff;	/*▲下線の幅、線種、色*/
	box-shadow: none;
}
/*ロゴ画像*/
header #logo img {
	top: 10px;	/*ヘッダーブロックに対して上から10pxの場所に配置*/
	left: 10px;	/*ヘッダーブロックに対して左から10pxの場所に配置*/
}

/*headerアイコン（facebookやtwitterなどのアイコンブロック）
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	right: auto;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;
	z-index: 3;
	top: 81px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;		/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 3%;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 10px;/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 13px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: url(../images/icon_menu.png) no-repeat center top/50px;	/*背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*contentsブロック。mainとsubを囲むブロック。
---------------------------------------------------------------------------*/
#contents {
	padding: 100px 3% 0;	/*上、左右、下へのコンテンツ内の余白*/
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
	clear: both;
}
#main {
	padding-bottom: 20px;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.sh {display:block;}
.pc {display:none;}

}



/*画面幅480px以下の設定◆
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#main h2 {
	font-size: 18px;
	margin-bottom: 20px;
	padding: 0 10px 5px;
}
/*h3タグ*/
#main h3 {
	font-size: 18px;
}
/*h4タグ*/
#main h4 {
	font-size: 18px;
}
/*h5タグ*/
#main h5 {
	font-size: 18px;
}
/*段落(p)タグ*/
#main p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main section + section {
	padding-top: 20px;
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	width: 80%;			/*画像の幅*/
	left: 10%;			/*左から10%の場所に配置*/
}

/*NEWSブロック
---------------------------------------------------------------------------*/
/*右に回り込みの小さな画像*/
. dd .img {
	width: 50px;	/*画像の幅*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 50px;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 10px 20px 30px;
}
ol {
	padding: 0 10px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}

}