@charset "utf-8";


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

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

h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
textarea,select,input[type="text"],input[type="checkbox"],input[type="radio"],input[type="button"],input[type="submit"]{font-size: 100%;}
h1,h2,h3,h4,#menubar {font-family:"游明朝","Yu Mincho","游明朝体","YuMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro";}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #2b3f7f;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	max-width: 1200px;	/*サイトの最大幅　※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/
	margin: 0 auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	border-top: 4px solid #2b3f7f;	/*上の線の幅、線種、色*/
	background: linear-gradient(#d1e1ff, #fff 40%);/*背景グラデーション*/
}
header .inner {
	position: relative;
	height: 100px;	/*140pxヘッダーの高さ*/
}
/*ロゴ画像*/
header #logo img {
	width: 350px;	/*画像幅*/
	position: absolute;
	left: 1%;		/*3%ヘッダーに対して左から3%の場所に配置*/
	top: 15px;	/*ヘッダーに対して上から38pxの場所に配置*/
}
/*ロゴ画像*/
header #logo2 img {
	width: 400px;	/*画像幅*/
	position: absolute;
	left: 33%;		/*ヘッダーに対して左から3%の場所に配置*/
	top: 38px;	/*ヘッダーに対して上から38pxの場所に配置*/
}


/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	position: absolute;
	right: 1%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	top: 25px;		/*ヘッダーブロックに対して上から0pxの場所に配置*/
	width: 250px ;	/*250pxブロック幅*/
	background: #fff;		/*背景色　　#fff*/
	box-shadow: 0px 0px 8px rgba(0,0,0,0.15);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.15は透明度15%の事。*/
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ。左上、右上、右下、左下への順。*/
	line-height: 50px;	/*高さ*/
	padding: 10px 0px;	/*上下、左右へのボックス内の余白*/
}
/*「文字サイズ」のテキスト*/
#fsize p {
	float: left;
	font-size: 18px;	/*文字サイズ*/
	padding: 0 20px;	/*上下、左右への余白*/
}
/*文字サイズボタン１個あたり*/
#fsize ul li {
	float: left;	/*左に回り込み*/
}
#fsize ul a {
	overflow: hidden;display: block;text-decoration: none;text-align: center;
	color: #fff;	/*文字色*/
}
/*「小」ボタン設定*/
#fsize ul li#small a::before {
	display: block;
	content: "小";		/*「小」の文字を出力*/
	font-size: 18px;	/*文字サイズ*/
	background: #2b3f7f;	/*背景色*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	margin-top: 5px;
	margin-right: 10px;
}
/*「大」ボタン設定*/
#fsize ul li#large a::before {
	display: block;
	content: "大";		/*「大」の文字を出力*/
	font-size: 30px;	/*文字サイズ*/
	background: #ccc;	/*背景色*/
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
}
/*マウスオン時の「大」ボタン設定*/
#fsize ul li#large a:hover::before {
	background: #2b3f7f;	/*背景色*/
}

/*ヘッダー内メニュー（「資料請求・お問い合わせ」と「見学のお申し込み」ボタン）
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#headermenu {
	position: absolute;
	right: 25%;		/*header のinnerに対して右から3%の場所に配置*/
	bottom: 15px;	/*header のinnerに対して下から15pxの場所に配置*/
}
/*メニュー１個あたり*/
#headermenu li {
	float: left;	/*左に回り込み*/
	margin-left: 10px;	/*左側にスペースを空ける*/
	margin-top: 5px;
}
#headermenu li a {
	text-decoration: none;display: inline-block;
	background: #ff8a00;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#ffa600, #ff8a00);	/*グラデーション*/
	color: #FFF;	/*文字色*/
	padding: 0px 15px;	/*上下、左右へのボックス内の余白*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: 1px solid #ff8a00;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
#headermenu li a:hover {
	color: #ff8a00;	/*文字色*/
	background: #fff;	/*背景色*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	clear: both;overflow: hidden;
	border-top: 1px solid #dcdcdc;	/*上の線の幅、線種、色*/
	border-bottom: 1px solid #dcdcdc;	/*下の線の幅、線種、色*/
	font-size: 20px;	/*文字サイズ*/
	background-color:#3333FF;	/*#75A9FF　メニューの背景色*/

}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 20%;		/*メニュー幅（100÷5個=20%）※下の方の「画面幅1200px以上の設定」にも関連するので変更の際は注意して下さい。*/

}
#menubar li a {
	display:  block;text-decoration: none;
	text-align: center;	/*内容をセンタリング*/
	padding: 5px 0;	/*15px メニューの上下、左右へのボックス内の余白*/
	border-right: 1px solid #dcdcdc;	/*右の線の幅、線種、色*/
	color: #fff;/*メニューの文字の色*/
}
/*１つ目のメニューへの追加設定*/
#menubar li:first-child a {
	border-left: 1px solid #dcdcdc;	/*左の線の幅、線種、色*/
}
/*マウスオン時と、現在表示中(current)メニューの設定*/
#menubar li a:hover,
#menubar li.current a {
	background: #2b3f7f;	/*背景色*/
	color: #fff;	/*#fff文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
background: #2b3f7f;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;z-index: 10;margin-top: 1px;
	width: 20%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;
	width: 100%;
}
#menubar ul.ddmenu li a {
	width: 100%;border: none;
	background: #4c4c4c;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.7);	/*背景グラデーション。0,0,0は黒の事で0.7は透明度70%の事。*/
	color: #fff;	/*文字色*/
	padding: 2px 0;	/*6px 0　プルダウンメニューの上下、左右へのボックス内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #2b3f7f;	/*背景色*/
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	clear: both;overflow: hidden;
	padding: 50px 0px;	/*上下、左右へのボックス内の余白*/
}
/*h2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 30px;	/*見出しの下にとるスペース*/
	padding: 10px 20px;		/*上下、左右への余白*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	font-size: 130%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#fff 50%, #e7edf7);/*背景グラデーション*/
	box-shadow: 0px 0px 3px 1px #fff inset;	/*ボックスの影。右へ、下へ、ぼかす範囲、広げる距離。色。insetは内側へ向ける設定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*h2タグの左側のアクセント*/
.contents h2::first-letter {
	border-left: 3px solid #2b3f7f;	/*左の線の幅、線種、色*/
	padding-left: 20px;	/*線とテキストとの距離*/
}
/*h3タグの設定*/
.contents h3 {
	clear: both;
	margin-bottom: 30px;	/*見出しの下にとるスペース*/
	padding: 0px 20px;		/*上下、左右への余白*/
	border-bottom: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 130%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
}
/*h3タグの左側のアクセント*/
.contents h3::first-letter {
	border-left: 3px solid #2b3f7f;	/*左の線の幅、線種、色*/
	padding-left: 20px;	/*線とテキストとの距離*/
}
/*h4タグの設定*/
.contents h4 {
	font-size: 130%;	/*文字サイズ。上の「body」で設定しているサイズに対しての指定。*/
	padding: 10px 20px;		/*上下、左右への余白*/
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	margin-bottom: 30px;	/*見出しの下にとるスペース*/
}


/*mainブロック内のh2タグ1*/
contents h5 {
	border-bottom: 4px solid #eee!important;	/*下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
}

.contents h5 {
	font-size: 130% !important;/*ここを調整*/
	color: #0000FF !important;
}

/*mainブロック内のh2タグに下線を引くための指定。2*/
contents h5 span.uline {
	display: inline-block;
	border-bottom: 4px solid #0014d2!important;	/*下線の幅、線種、色。アクセントカラーです。上のmain h2と数字を合わせておく。*/
	position: relative;
	bottom: -4px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 20px !important;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}






/*段落タグ設定*/
.contents p {
	padding: 0px 20px 40px;	/*上、左右、下への余白*/
}
/*段落タグが続く場合に余白が空きすぎないようにする*/
.contents p + p {
	margin-top: -20px;
}
/*h2とh3とh4タグの直後の段落タグ設定*/
.contents h2 + p,
.contents h3 + p,
.contents h4 + p {
	margin-top: -10px;
}

/*listブロック
---------------------------------------------------------------------------*/
/*listブロック設定*/

.list {
	overflow: hidden;position: relative;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3) inset;	/*ボックスの影。右へ、下へ、ぼかす範囲。0,0,0は黒の事で0.3は透明度30%の事。insetは内側に向かう影。*/
	margin: 0 2% 30px;	/*上、左右、下へのボックスの外に空けるスペース*/
	background: #fff;	/*背景色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	padding: 2%;	/*ボックス内の余白4%*/
}
.list a {
	overflow: hidden;text-decoration: none;display: block;
}
/*h4タグ設定*/
.list h4 {
	padding: 0;border: none;
	font-size: 200%;	/*文字サイズ*/
	color: #2b3f7f;		/*文字色*/
	line-height: 1.2em;
	height: 1em;overflow: hidden;	/*１行を超えた部分は非表示になる*/
	margin-bottom: 0.5em;
}


/*段落タグ設定*/

/* img {
    border-radius: 30px;
} */

.list p {
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.8;/*行間　1.8*/
	overflow: hidden;
}
/*figure画像の設定*/
.list figure img {
	margin: 0 0 4% 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list figure img.fr {
	width: 20%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 0 0 4%;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の右側回り込みの設定*/
.list figure img.fr2 {
	width: 30%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 20% 0 4%;	/*0 20% 0 4%上、右、下、左への画像の外側にとるスペース*/
}
.list figure img.fr3 {
	width: 20%;		/*画像幅*/
	float: right;	/*右に回り込み*/
	margin: 0 10% 0 4%;	/*0 20% 0 4%上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list figure img.fl {
	width: 20%;		/*画像幅*/
		float: left;	/*左に回り込み*/
	margin: 0 4% 0 0;	/*上、右、下、左への画像の外側にとるスペース*/
}
/*figure画像の左側回り込みの設定*/
.list figure img.fl2 {
	width: auto;		/*画像幅30%*/
	height: 180px;
	float: left;	/*左に回り込み*/
	margin: 0 5% 0 5%;	/*0 10% 0 0上、右、下、左への画像の外側にとるスペース*/
	/* border-radius: 30px; */
}
/*figure画像の左側回り込みの設定*/
.list figure img.fl3 {
	width: auto;		/*画像幅30%*/
	height: 180px;
	float: left;	/*左に回り込み*/
	margin: 0 30% 0 0;	/*0 30% 0 0上、右、下、左への画像の外側にとるスペース*/
		/* border-radius: 30px; */
}
.list figure img.fl4 {
	width: 30%;		/*画像幅30%*/
	float: left;	/*左に回り込み*/
	margin: 0 5% 0 5%;	/*0 10% 0 0上、右、下、左への画像の外側にとるスペース*/

}
.list figure img.fl5 {
		/*	width: 100%; 画像幅30%* いろいろ/
object-fit: cover;
	margin: 0 5% 0 5%;	/*0 10% 0 0上、右、下、左への画像の外側にとるスペース*/
	/* border-radius: 30px; */
}
/*右下の「→」マーク設定*/
.list a::before {
	content: "→";	/*このテキストを表示させる。変更しても構いませんが機種依存文字は化ける場合があるので使わない。*/
	font-size: 20px;	/*文字サイズ*/
	text-align: center;
	border-radius: 50%;	/*円形にする*/
	background: #b2b2b2;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.3);	/*背景色。0,0,0は黒の事で0.3は透明度30%の事。*/
	color: #fff;	/*文字色*/
	position: absolute;
	right: 10px;	/*右から10pxの場所に配置*/
	bottom: 10px;	/*下から10pxの場所に配置*/
	width: 30px;	/*幅*/
	line-height: 30px;	/*高さ*/
	transition: 1s;	/*マウスオン時の移り変わるまでの時間設定。1秒。*/
}
/*右下の「→」マークのマウスオン時*/
.list a:hover::before {
	background: #2b3f7f;	/*背景色*/
	box-shadow: 0px 0px 0px 10px #2b3f7f;	/*ボックスの影の指定ですが、円がそのまま大きくなるような動作になります。右へ、下へ、ぼかす範囲、距離。最後は色。*/
}
/*2カラム利用時--------------------------------------------*/
.c2 .list {
	float: left;	/*左に回り込み*/
	padding: 3%;	/*ボックス内の余白の上書き*/
	width: 40%;		/*幅*/
}
/*h4タグ*/
.c2 .list h4 {
	font-size: 130%;
}
/*p段落タグ*/
.c2 .list p {
	height: 9em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。5.4だと3行分になる。*/
}
/*3カラム利用時--------------------------------------------*/
.c3 .list {
	float: left;	/*左に回り込み*/
	padding: 2%;	/*ボックス内の余白の上書き*/
	width: 15%;	/*幅*/25.3%
}
/*h4タグ*/
.c3 .list h4 {
	font-size: 110%;
}
/*p段落タグ*/
.c3 .list p {
	font-size: 80%;
	height:20em;	/*上の「.list p」の「1.8」×「表示させたい行数」を設定。7.2だと4行分になる。*/
}
/*右下の「→」マークを少し小さく設定しなおす*/
.c3 .list a::before {
	width: 20px;
	line-height: 20px;
	font-size: 12px;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
.main {
	float: left;	/*左に回り込み*/
	width: 72%;		/*幅*/
	overflow: hidden;
}

/*mainブロック内のHHH2タグ*/

.main h5 {
	font-size: 130% !important;
	color: #0000FF !important;
}

main h5 {
	border-bottom: 4px solid #eee;	/*下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
line-height: 1;/*文字と線の行間*/
}

/*mainブロック内のHH2タグに下線を引くための指定。*/
main h5 span.uline {
	display: inline-block;
	border-bottom: 4px solid #0000FF;	/*#0014d2下線の幅、線種、色。アクセントカラーです。上のmain HH2と数字を合わせておく。*/
	position: relative;
	bottom: -4px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0px 7px 0px 0px !important;	/* 上、右、下、左 上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
line-height: 1;
}



/*subコンテンツ
---------------------------------------------------------------------------*/
/*subブロック*/
.sub {
	float: right;	/*右に回り込み*/
	width: 24%;		/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;border: none;box-shadow: none;padding: 0;letter-spacing: normal;
	font-size: 120%;	/*文字サイズ*/
	margin-bottom: 20px;
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	padding-left: 15px;
}
/*段落タグ設定*/
.sub p {
	padding-bottom: 10px;	/*上、左右、下への余白*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 20px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #dcdcdc;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #dcdcdc;	/*下の線の線種、幅、色*/
}
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 5px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 15px;			/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	background: rgba(0,0,0,0.02);	/*背景色。rgbaは色設定で0,0,0は黒。0.02は透明度2%の事。*/
	border: solid 1px #dcdcdc;	/*線の線種、幅、色*/
	box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
}
/*box1内のメニューの設定*/
.sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	font-size: 85%;	/*文字サイズ*/
	background: #2b3f7f;	/*背景色*/
	color: #fff;	/*文字色*/
}
footer a {
	text-decoration: none;
	color: #fff;	/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 15px 0;/*20px*/
	font-size: 100%;	/*文字サイズ80%*/
	background: url(../images/icon_logo.png) no-repeat right center;	/*右側に表示させているロゴマーク*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}
#footermenu a {
	color: rgba(255,255,255,0.7);
}
#footermenu a:hover {
	color: #fff;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #333;	/*背景色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #2b3f7f;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px solid #dcdcdc;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #2b3f7f;	/*文字色*/
	padding-top: 15px;
	margin-bottom: 10px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}
/*「Q」と「A」のマーク共通設定*/
.faq dt::before,
.faq dd::before {
	margin-right: 5px;display: inline-block;text-align: center;
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
}
/*「Q」のマーク追加設定*/
.faq dt::before {
	content: "Q";			/*「Q」の文字を出力する設定*/
	background: #2b3f7f;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*「A」のマーク追加設定*/
.faq dd::before {
	content: "A";		/*「A」の文字を出力する設定*/
	background: #999;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption,
.ta2 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta1,ta2共通設定*/
.ta1,
.ta2 {
	width: 96%;
	margin: 0 2% 30px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 150px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
	font-weight: normal;
}
/*ta1の左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #fffeba;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}

/*ボタン(btn)の設定
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn {
	padding: 15px;	/*ボタン内の余白*/
	margin-bottom: 30px;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 3px;	/*角丸のサイズ*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
}
/*マウスオン時の設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;	/*背景色*/
	position: relative;top: 1px;left: 1px;	/*マウスオン時に上から1px、左から1px場所を移動する*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	padding-top: 40px;
}
#pagetop a {
	text-decoration: none;text-align: center;display: block;float: right;
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #2b3f7f;	/*背景色*/
	width: 60px;	/*幅*/
	line-height: 60px;	/*高さ*/
	margin-bottom: 20px;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;	/*背景色*/
}

/*一覧ページのボックス内のアイコン
（CMSの場合は管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1,option2共通*/
span.option1, span.option2 {
	text-align: center;
	display: block;
	font-size: 10px;	/*文字サイズ*/
	width: 100px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(32px,-9px);	/**/
	color: #FFF;	/*文字色*/
	background: #666;	/*背景色*/
}
/*option1への追加設定*/
span.option1 {
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
}
/*h2タグ内で使った場合のoption1とoption2*/
h2 span.option1, h2 span.option2 {
	text-shadow: none;
	width: auto;
	padding: 2px 5px;
	position: static;
	transform: none;
	display: inline-block;
	font-size: 15px;
	margin-left: 10px;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background: #f4f2ea url(../images/bg1.png);	/*背景色、背景画像の読み込み*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #eee;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #F00;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 200%;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



/*画面幅1200px以上の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:1200px){

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: 1200px;	/*サイト幅*/
}

/*メインメニューとドロップダウンメニューの設定変更。
上の共通設定で、max-widthを1200pxにしており、メニュー数が５個なので、1200÷5=240pxになります。
---------------------------------------------------------------------------*/
#menubar li, #menubar ul.ddmenu {
	width: 240px;
	}

}



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

/*inner共通
---------------------------------------------------------------------------*/
.inner {
	width: auto;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 250px;	/*画像幅*/
}
/*ロゴ画像*/
header #logo2 img {
	width: 250px;	/*画像幅*/
}
/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はchange.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	border-top: 1px solid #fff;
	width: 100%;
	z-index: 10;
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*メニュー１個あたりの設定#ff1493　　2b3f7f*/
#menubar-s li a {
	display: block;text-decoration: none;
 padding: 15px 5%; /*15pxスマホメニュー*/
	border-bottom: 1px solid #fff;
	background: #2b3f7f;
	color: #fff;
	font-size: 150%;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 3%;	/*上から3%の場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border: 1px solid #000;	/*枠線の幅、線種、色*/

}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*コンテンツ（mainとsubを囲むブロック）
---------------------------------------------------------------------------*/
.contents {
	padding: 3%;
}

/*listブロック（※２カラムも３カラムと１列レイアウトと同じように設定しなおす）
---------------------------------------------------------------------------*/
/*listブロック設定*/
.list {
	margin: 0 !important;
	padding: 4% !important;
	float: none !important;
	width: auto !important;
	box-shadow: none;
	border-top: 1px solid #ccc;
}
.list:last-of-type {
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px !important;
}
/*h4タグ設定*/
.list h4 {
	font-size: 150% !important;
}



.list h5 {
	font-size: 130% !important;
	color: #0000FF !important;
}

/*listブロック内のHHH2タグ*/
list h5 {
	border-bottom: 4px solid #eee;	/*下線の幅、線種、色。ベースカラーです。下のspanのborder-bottomと数字を合わせておく。*/
	padding: 0;border: none;
}

/*listブロック内のHH2タグに下線を引くための指定。*/
list h5 span.uline {
	display: inline-block;
	border-bottom: 4px solid #0014d2;	/*下線の幅、線種、色。アクセントカラーです。上のlist HH2と数字を合わせておく。*/
	position: relative;
	bottom: -4px;		/*下からの配置場所指定。上にある２つのborder-bottomと重ねる為の指定なので、数字を合わせてから冒頭にマイナスをつけて下さい。*/
	padding: 0 20px !important;	/*上下、左右への余白。テキストの両脇に少し余裕をもって線を引くためです。*/
}




/*段落タグ設定*/
.list p {
	font-size: 100% !important;
	line-height: 1.8 !important;/*1.8*/
	height: auto !important;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	margin-right: 3%;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n .sub,body.s-n #footermenu,.m-n {display: none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 50%;	/*画像幅*/
	min-width: 200px;
	top: 20%;	/*ヘッダーに対して上から20%の場所に配置*/
}
/*ロゴ画像*/
header #logo2 img {
	width: 50%;	/*画像幅*/
	min-width: 200px;
	top: 20%;	/*ヘッダーに対して上から20%の場所に配置*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
.contents h2, .contents h3,.contents h4 {
	padding: 5px 0px 5px 10px;
	margin-bottom: 20px;
	font-size: 150%;
}
/*h2,h3タグの左側のアクセント*/
.contents h2::first-letter,
.contents h3::first-letter {
	padding-left: 10px;	/*線とテキストとの距離*/
}
/*段落タグ設定*/
.contents p {
	padding: 0px 10px 15px;	/*上、左右、下への余白*/
}

/*subコンテンツ
---------------------------------------------------------------------------*/
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	margin-bottom: 10px;
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
.sub .box1 {
	padding: 10px;			/*ボックス内の余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding-left: 10px;
}

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh {display:block;}
.pc {display:none;}

}



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta3 caption,
.ta4 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta3,ta4共通設定*/
.ta3,
.ta4 {
	width: 96%;
	margin: 0 2% 30px;
}
.ta3, .ta3 td, .ta3 th,
.ta4, .ta4 td, .ta4 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi,
.ta4 th.tamidashi {
	width: auto;
	text-align: center;	/*left左よせ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;
}
/*ta3の左側ボックス*/
.ta3 th {
	width: 200px;	/*200px幅*/
	text-align: center;	/*センタリング*/
	/*background: #f0f0f0;	背景色*/
	font-weight: normal;
}
/*ta3の左側ボックスに画像を入れた場合の設定*/
.ta3 th img {
	width: 100%;
}
/*ta4の左側ボックス*/
.ta4 th {
	background: #fffeba;	/*背景色*/
}

/*ta4の右側ボックス*/
.ta4 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta3.price td {
	text-align: right;
}
.ta3.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta3.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta5 caption,
.ta6 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta5,ta6共通設定*/
.ta5,
.ta6 {
	width: 96%;
	margin: 0 2% 30px;
}
.ta5, .ta5 td, .ta5 th,
.ta6, .ta6 td, .ta6 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta5 th.tamidashi,
.ta6 th.tamidashi {
	width: auto;
	text-align: center;	/*left左よせ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;
}
/*ta5の左側ボックス*/
.ta5 th {
	width: auto;	/*幅200px*/
	text-align: center;	/*センタリング*/
	/*background: #f0f0f0;	背景色*/
	font-weight: normal;
}
/*ta5の左側ボックスに画像を入れた場合の設定*/
.ta5 th img {
	width: 100%;
}
/*ta6の左側ボックス*/
.ta6 th {
	background: #fffeba;	/*背景色*/
}

/*ta6の右側ボックス*/
.ta6 td {
	text-align: center;	/*センタリング*/
}
/*ta5の右側ボックス*/
.ta5 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta5.price td {
	text-align: right;
}
.ta5.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta5.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/*--------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta7 caption,
.ta8 caption {
	border: 0px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta7,ta8共通設定*/
.ta7,
.ta8 {
	width: 96%;
	margin: 0 2% 30px;
}
.ta7, .ta7 td, .ta7 th,
.ta8, .ta8 td, .ta8 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta7 th.tamidashi,
.ta8 th.tamidashi {
	width: auto;
	text-align: center;	/*left左よせ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;
}
/*ta7の左側ボックス*/
.ta7 th {
	width: auto;	/*幅200px*/
	text-align: center;	/*センタリング*/
	/*background: #f0f0f0;	背景色*/
	font-weight: normal;
}
/*ta7の左側ボックスに画像を入れた場合の設定*/
.ta7 th img {
	width: 100%;
}
/*ta8の左側ボックス*/
.ta8 th {
	background: #fffeba;	/*背景色*/
}

/*ta8の右側ボックス*/
.ta8 td {
	text-align: center;	/*センタリング*/
}
/*ta7の右側ボックス*/
.ta7 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta7.price td {
	text-align: right;
}
.ta7.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta7.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta9 caption,
.ta10 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	background: #cce6f6;		/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*ta9,ta10共通設定*/
.ta9,
.ta10 {
	width: 70%;/*96%*/
	margin: 0 2% 30px;/*0 2% 30px*/
}
.ta9, .ta9 td, .ta9 th,
.ta10, .ta10 td, .ta10 th {
	border: 0px solid #999;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 0 20px;	/*10pxボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta9 th.tamidashi,
.ta10 th.tamidashi {
	width: auto;
	text-align: center;	/*left左よせ*/
	background: #cce6f6;	/*背景色*/
	font-weight: bold;
}
/*ta9の左側ボックス*/
.ta9 th {
	width: auto;	/*幅200px*/
	text-align: center;	/*センタリング*/
	/*background: #f0f0f0;	背景色*/
	font-weight: normal;
}
/*ta9の左側ボックスに画像を入れた場合の設定*/
.ta9 th img {
	width: 100%;
}
/*ta10の左側ボックス*/
.ta10 th {
	background: #fffeba;	/*背景色*/
}

/*ta10の右側ボックス*/
.ta10 td {
	text-align: center;	/*センタリング*/
}
/*ta9の右側ボックス*/
.ta9 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta9.price td {
	text-align: right;
}
.ta9.price tr.total th {
	background: #b7e0ee;
	font-size: 150%;
}
.ta9.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 150%;
}
/* テーブル表示--------------------------------------------------*/
.ta-a {
  width: 96%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
	margin: 0 2% 30px;
}
.ta-a th {
  width: 22%;
  background: #fff;
border: 1px solid #ccc;/* 2px #ccc #000 */
  box-sizing: border-box;
  padding: 15px;
  vertical-align: middle;
font-weight: normal;
  text-align: center;
}
.ta-a td {
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 15px;
  vertical-align: top;
  text-align: left;
}
@media all and (max-width: 767px) {
.ta-a th {
	background: #f0f8ff;
    display: block;
    width: 100%;
    border-bottom: none;
		}

.ta-a td {
	display: block;
	width: 100%;
	border-bottom: none;
	}

		.ta-a .head {
	 		display:none;
	 }

  .ta-a tr:last-child, .ta-a td:last-child {
    border-bottom: 1px solid #ccc;

  }
}

/* 画像表示--------------------------------------------------*/

.contents2 {
   width: 100%; /*width: 100%;*/
     max-width: 1200px;
     margin: auto;
 }
 .contents2 img {
     width:100%;/*width: 100%;*/

 }
 .text-center {
     text-align: center;
 }
 .flexbox {
     display: flex;

 }
 .box1 {
	 height: 40%;/*96%*/
 	margin: 0 2% 30px;/*0 2% 30px*/

	 }
 .box2 {
	 height: 40%;/*width96%*/
 	margin: 0 2% 30px;/*0 2% 30px*/

 }
 @media screen and (max-width: 767px) {
     .flexbox {
         display: block;
     }
     .flexbox .box1 {
         width: 100%;
         margin: 3%;/*0 auto*/
     }
     .flexbox .box2 {
         width: 100%;
         margin:3%;/*0 auto*/
     }

 }





 /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar2_hdr {
	display: block;
	position: fixed;z-index: 100;	/*fixedはスクロールに追従しない(固定で表示)為の指定*/
	top: 20px;		/*上からの配置場所*/
	right: 20px;	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: rgba(0,0,0,0.6) url(../images/ham.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}

/*×印が出ている状態の設定。*/
#menubar2_hdr.ham {
	background: #ff0000 url(../images/ham.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}


/*メニュー設定（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
#menubar2 ul {list-style: none;margin: 0;padding: 0;}
#menubar2 {background: #fff;height: 0px;overflow: hidden;}

/*メニュー1個あたりの設定*/
#menubar2 a {
	display: block;text-decoration: none;
	padding: 15px 20px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
}

/*ドロップダウンメニューのリンクタグ*/
#menubar2 .ddmenu2 {
	cursor: default;	/*リンク要素のカーソルを矢印に変更しておく*/
}

/*spanタグ（装飾用のテキスト）*/
#menubar2 span {
	display: block;
	font-size: 0.5em;		/*文字サイズ。50%。*/
	opacity: 0.6;			/*透明度。0.6は60%色が出た状態。*/
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広くとる指定*/
}

/*ddmenu2を指定しているメニューに矢印アイコンをつける設定（900px以上の端末用メニューもこの設定が反映されます）*/
a.ddmenu2::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f150";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	font-weight: bold;	/*この手の設定がないとアイコンが出ない場合があります*/
	color: #B1B1B1;		/*アイコンの色*/
	margin-right: 1em;	/*アイコンとテキストとの間に空けるスペース*/
}

/*マウスオン時のアイコンの色（900px以上の端末用メニューもこの設定が反映されます）*/
a.ddmenu2:hover::before {
	color: #0014d2;
}


/*メニューの設定（.shは900px未満の端末向けのメニューです）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.sh {
	display: none;
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールに追従しない(固定で表示)為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 20px;	/*上下、左右へのボックス内の余白*/
}

/*メニューの一番上の線*/
.sh > ul {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*メニュー1個あたりの下線*/
.sh > ul > li {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*装飾文字の左側余白のバランス調整*/
.sh a.ddmenu2 span {padding-left: 3.8em;}

/*ddmeuを持たないメニューのテキストの左側余白のバランス調整*/
.sh > ul > li > a:not(.ddmenu2) {padding-left: 3.2em !important;}


/*ドロップダウンメニュー（全端末サイズ共通の設定）
---------------------------------------------------------------------------*/
.ddmenu2_parent ul {
	display: none;
}


/*ドロップダウンメニュー（900px未満の端末向けの設定）
---------------------------------------------------------------------------*/
.sh .ddmenu2_parent ul li a {
	border-bottom: 1px solid #ccc;
}

.sh .ddmenu2_parent ul a {
	padding-left: 65px !important;	/*65pxドロップダウンメニューの左側にとる余白*/
}
/*最初のドロップダウンの上の線*/
.sh .ddmenu2_parent ul li:first-of-type a {
	border-top: 1px solid #ccc;
}
/*最後のドロップダウンの下線を消す*/
.sh .ddmenu2_parent ul li:last-of-type a {
	border-bottom: none;
}




/*子メニュー
---------------------------------------------------------------------------*/
/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr2 {
	padding-left: 60px;	/*60上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/

}
/*「＞」アイコン設定*/
#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}

/*子メニューメニューブロック全体background:rgba(255,0,0,0.5)(0,0,0,0.3)*/
#menubar-s2 {
	display: block;
	margin-top: 0px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
	padding: 0px;
}

/*子メニュー１個あたりの設定*/
#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
padding: 10px 20px  !important;/*10px子メニュー*/
	background: #4169e1;/*4169e1子メニューの背景色*/

}
#menubar-s2 li:last-child a {
	border-bottom: none !important;

}


/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr3 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/

}
/*「＞」アイコン設定*/
#menubar_hdr3.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr3.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}

/*子メニューメニューブロック全体*/
#menubar-s3 {
	display: block;
	margin-top: 0px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
	padding: 0px;
}

/*子メニュー１個あたりの設定*/
#menubar-s3 li a {
	border-bottom: 1px solid #fff !important;
padding: 10px 20px  !important;/*10px子メニュー*/
	background: #4169e1;/*子メニューの背景色*/
}
#menubar-s3 li:last-child a {
	border-bottom: none !important;
}


/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr4 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*「＞」アイコン設定*/
#menubar_hdr4.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr4.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}

/*子メニューメニューブロック全体*/
#menubar-s4 {
	display: block;
	margin-top: 0px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
	padding: 0px;
}

/*子メニュー１個あたりの設定*/
#menubar-s4 li a {
	border-bottom: 1px solid #fff !important;
padding: 10px 20px  !important;/*10px子メニュー*/
	background: #4169e1;/*子メニューの背景色*/
}
#menubar-s4 li:last-child a {
	border-bottom: none !important;
}



/*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
#menubar_hdr5 {
	padding-left: 60px;	/*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
}
/*「＞」アイコン設定*/
#menubar_hdr5.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}
/*「＾」アイコン設定*/
#menubar_hdr5.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}

/*子メニューメニューブロック全体*/
#menubar-s5 {
	display: block;
	margin-top: 0px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
	padding: 0px;
}

/*子メニュー１個あたりの設定*/
#menubar-s5 li a {
	border-bottom: 1px solid #fff !important;
padding: 10px 20px  !important;/*10px子メニュー*/
		background: #4169e1;/*子メニューの背景色*/
}
#menubar-s5 li:last-child a {
	border-bottom: none !important;
}




#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72C7CA;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

/*ズーム---------------------------------------------------------------------------*/

.effect-zoom {
	position: relative;
	width: 100%;
}
.effect-zoom::before {
		content:'';
		display: block;
		padding-top: 50%;
}
.effect-zoom .slick-list {
	position: absolute;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
}
.effect-zoom .slick-list .slick-track {
	height: 100%;
}
.effect-zoom .slick-list .slick-slide {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.effect-zoom .slick-list .slick-slide img,
.effect-zoom .slick-list .slick-slide img.first-slide  {
	transform: scale(1.0);
	transition: 5s linear;
}
.effect-zoom .slick-list .slick-slide.slick-current img {
	transform: scale(1.2);
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	bottom: 40px;		/*下から40pxの場所に配置*/
	right: 1%;			/*右から1%の場所に配置*/
		/*背景色　background: #000096;*/
	background:rgba(255,0,0,0.5);
	color: #fff;		/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*円形にする*/
	animation-name: opa1;	/*冒頭のkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}
