@charset "utf-8";


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


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

/*全体の設定
-----------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
    letter-spacing : 1.5px;
	color: #333;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	font-size: 14px;
	line-height: 2;		/*行間*/
	background: #f8f8ff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,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: 85%;border-spacing: 0;}
iframe {width: 100%;}


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

/*container（footer以外を囲むブロック）
-----------------------------------------*/
#container {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
	position: relative;
	padding: 0 10%;		/*上下、左右へのボックス内の余白*/
}

/*ヘッダー（ロゴが入った最上段のブロック）
-----------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	width: 100%;
    height: 150px;
    font-size: 45px;
    color: #000000;
    letter-spacing : 3px;
    font-family:"Verdana","游明朝","YuGothic","Yu Gothic","Yu Mincho","游明朝体","Yu Mincho","Osaka";
    font-weight: bold;
    margin-bottom: 20px;
    background: url(../img/hero5b.png) center / cover;
}

/*メニューブロック
-----------------------------------------*/
/*メニューブロック全体*/
.submenu {
	overflow: hidden;
	border-radius: 10px;
	border: 3px solid #000000;
	margin-bottom: 25px;
}
/*メニュー１個あたりの設定*/
.submenu li {
	text-align: center;
	border-top: 1px solid #000;
	font-size: 16px;
}
.submenu li a {
	display: block;text-decoration: none;
	padding: 15px 5px;
	background: #fff;
}
/*マウスオン時*/
.submenu li a:hover {
	background: #b0c4de;
}
/*１つ目のメニューへの追加指定*/
.submenu li:first-child {
	border: none;	/*上の線を消す*/
}
/*飾り文字*/
.submenu li span {
	display: block;
	font-size: 12px;
	font-weight: normal;	/*文字標準に*/
	letter-spacing: 0.3em;	/*文字間隔をあける*/
	color: #333333;	
}

/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*contents
-----------------------------------------*/
#contents {
	clear: both; 
    overflow: hidden; 
    padding-top: 10px; 
}

/*mainコンテンツ
-----------------------------------------*/
/*mainブロック全体の設定*/
#main {
	float: right;	/*右に回り込み*/
	width: 70%;		/*ブロックの幅*/
}
/*トップページでのmainコンテンツへの追加設定*/
.home #main {
	margin-top: 10px;
}

/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	font-size: 16px;
	margin-bottom: 15px;
    border-radius: 10px;
	border: 3px solid #000000;
	padding: 20px 20px 20px 20px;
	color: #000000;
	background: #f0f8ff;	
	border-radius: 10px;
}

/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	margin-bottom: 20px;
	padding: 15px 15px;
	border: 1px solid #999;
	border-radius: 8px;
	background: #fff;
}
#main h3::first-letter {
	border-left: 8px solid #000000;
    border-color: #b0c4de;
	padding-left: 15px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 5px 10px;
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	margin-top: 20px;
}

/*subコンテンツ
-----------------------------------------*/
/*subブロック全体の設定*/
#sub {
	float: left;
	font-size: 14px;
	line-height: 1.5;
	width: 25%;	
}
#sub h2 {
	font-size: 18px;
}
#sub h2::first-letter {
	border-left: 2px solid #000000;
	padding-left: 10px;
}
#sub .box h2::first-letter {
	border-left: 2px solid #fff;
}

/*subコンテンツ内のbox
-----------------------------------------*/
#sub .box {
	background: #f0f8ff;
	color: #000;
	padding: 10px;
	border-radius: 10px;
	margin-bottom: 20px;
    border: 2px solid #333;
}

/*リンクテキストの文字色*/
#sub .box a {
	color: #000;
}

/*subコンテンツ内のaddress
-----------------------------------------*/
#sub address {
	font-style: normal;	/*デフォルトで斜体になるのでノーマルに*/
}

/*フッター設定
-----------------------------------------*/
footer {
	clear: both;
	padding-top: 40px;
	text-align: center;
	font-size: 85%;
}
footer .pr {display: block;font-size: 80%;}

/*フッターメニュー
-----------------------------------------*/
/*ボックス全体*/
#footermenu {
	padding: 10px;
}
/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;
	padding: 2px 10px;
}

/*コピーライト
-----------------------------------------*/
#copyright {
	clear: both;
	background: #333;
	color: #fff;
}
#copyright a {
	text-decoration: none;
	color: #fff;
}

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


/*テーブル
-----------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #000;
	border-bottom: none;
	text-align: left;
	background: #eee;
	color: #222;
	font-weight: bold;
    font-size: 16px;
	padding: 10px;
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
    font-size: 14px;
	margin: 0 auto 20px;
	background: #fff;
	color: #222;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #000;
	padding: 8px;
}

/*ta1の左側ボックス*/
.ta1 th {
	width: 120px;
	text-align: center;
}

/*テーブル（ta2）サブブロックの受付テーブルに使用。
-----------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta2 caption {
	border: 1px solid #000000;
	border-bottom: none;
	text-align: center;
	background: #fff;
	color: #333;
	font-weight: bold;
	padding: 5px;
}
/*ta2設定*/
.ta2 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
	background: #fff;
	color: #333;
}
.ta2, .ta2 td, .ta2 th {
	word-break: break-all;
	border: 1px solid #000;
}
/*曜日*/
.ta2 th {
	background: #b0c4de;
}


/*box（info1.htmlやstaff.htmlで使っている枠色がついたタイプのボックス）
-----------------------------------------*/
/*box*/
#main .box {
	overflow: hidden;
	border: 3px solid #19204d;
	padding: 20px;
	border-radius: 10px;		
	margin-bottom: 20px;
	background: #fff;
}
/*box内のh4タグ*/
#main .box h4 {
	color: #19204d;
	font-size: 130%;
}
/*box内のpタグ*/
#main .box p {
	padding: 0 !important;
}
/*box内のfrとflスタイルのリセット*/
#main .box .fr,#main .box .fl {margin-bottom: 0;}

/*ページ内メニュー（info.htmlで使用）
-----------------------------------------*/
/*ブロック全体*/
.menu {
	overflow: hidden;
	margin-bottom: 20px;
	text-align: center;
}
/*メニュー１個あたりの指定*/
.menu li {
	display: inline;
	border-right: 1px solid #999;
}
.menu li a {
	padding: 10px;
}
/*最初のメニューへの追加指定*/
.menu li:first-child {
	border-left: 1px solid #999;
}

/*PAGE TOP（↑）設定
-----------------------------------------*/
/*アニメーションのキーグレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;z-index: 100;position: fixed;
	width: 100px;
	bottom: 55px;
	right: 3%;
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 0.5S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;
	border: 3px solid #19204d;
	background: #fff;
	background: rgba(255,255,255,0.5);
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;
}


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

/*checkブロック。赤い注意書きブロックです。
-----------------------------------------*/
p.check {
	background: #ff5544;
	color:#fff;
	padding: 10px 10px !important;
    border-radius: 10px;
	margin-bottom: 20px;
}
#sub p.check {
	padding: 5px !important;
}
p.check a {color: #fff;}

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

/*その他
-----------------------------------------*/
.look {background: #eee;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb10 {margin-bottom: 10px;}
.mb30 {margin-bottom: 30px;}
.clear {clear: both;}
.color1, .color1 a {color: #19204d;}
.bgcolor1 {background: #f2f2f2 !important;}
.bgcolor2 {background: #dbebf7 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.w40p {width: 40%;}
.w20p {width: 20%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fr {float: right;margin-left: 2%;margin-bottom: 20px;}
.fl {float: left;margin-right: 2%;margin-bottom: 20px;}
.big1 {font-size: 24px;letter-spacing: 0.2em;}
#sub .big1 {font-size: 20px;letter-spacing: normal;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.dn {display: none;}




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

/*ヘッダー（ロゴが入った最上段のブロック）
-----------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;
    width: 100%; 
    height: 130px;
}

/*contents
-----------------------------------------*/
/*トップページのcontents*/
.home #contents {
	padding-top: 40%;
}
/*トップページ以外のcontents*/
#contents {
	padding-top: 40%;
}

/*header,main,sub
-----------------------------------------*/

    #main, #sub {
	float: none;
	width: 100%;
	overflow: hidden;
        padding-top: 10px;
}

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


/*mainコンテンツ
-----------------------------------------*/
/*mainコンテンツのh2タグ設定*/
#main h2 {
	font-size: 16px;
	padding: 10px 20px;
	background-image: none;
}
/*mainコンテンツのh3タグ設定*/
#main h3::first-letter {
	border-left: none;
	padding-left: 0;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0px 0px 20px;
}

/*listブロック
-----------------------------------------*/
/*ブロック１個あたりの設定*/
.list {
	overflow: hidden;
	width: 26.4%;
	float: left;
	margin: 0 0 20px 2%;
	border: 1px solid #ccc;
	box-shadow: 3px 4px 2px rgba(0,0,0,0.1);
	padding: 2%;
	border-radius: 3px;
}
.list a {
	display: block;text-decoration: none;overflow: hidden;
	margin: -2%;	/*ボックスのマージン。.listのpaddingを相殺*/
	padding: 2%;	/*ボックス内の余白*/
	background: url(../images/arrow1.png) no-repeat right bottom / 40px;
}
/*マウスオン時の設定*/
.list a:hover {
	position: relative;
	left: 1px;	/*マウスオン時に右に1px移動する*/
	top: 1px;	/*マウスオン時に下に1px移動する*/
}
/*h4（見出し）タグの設定*/
.list h4 {
	color: #19204d;		/*文字色*/
	font-size: 120%;	/*文字サイズ*/
	text-align: center;	/*文字をセンタリング*/
	height: 2em;		/*高さ*/
	overflow: hidden;	/*高さを超えた場合に非表示にする*/
}
/*p（段落）タグの設定*/
.list p {
	padding: 0 !important;
	line-height: 1.5;	/*行間を少し狭くす*/
	font-size: 90%;		/*文字サイズを少し小さく*/
	color: #333;
	height: 6em;		/*高さ。1.5em-１行分*/
	overflow: hidden;	/*高さを超えた場合に非表示*/
}

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

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

/*その他
-----------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 18px;letter-spacing: normal;}
.sh {display:block;}
.pc {display:none;}

}