﻿@charset "utf-8";
/*全体の設定
---------------------------------------------------------------------------*/
body{
  color: #000000;
  /*全体の文字色*/
	margin: 0px;
  padding: 0px;
  font : normal normal normal 16px /2 "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  /*文字サイズ・行間・フォント設定*/
	background: url(../images/bg_line.png) repeat-x center top, url(../images/bg.png);
/*左からカンマで区切って背景画像を2つ指定*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
  margin: 0px;
  padding: 0px;
}
ul{
  list-style-type: none;
}
img{
  border: none;
}
input,textarea,select{
  font-size: 1em;
}
form{
  margin: 0px;
}
table{
  border-collapse:collapse;
  font-size: 100%;
  border-spacing: 0;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a{
  color: #0000D7;
/*リンクテキストの色*/
}
a:hover{
  color: #FFFF00;
  /*マウスオン時の文字色（全体）*/
	text-decoration: none;
/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
/*h1タグ設定
---------------------------------------------------------------------------*/
h1{
  font-size: 10px;
  /*文字サイズ*/
	color: #0a31b5;
  /*文字色*/
	text-align: right;
/*右寄せ*/
}
h1 a, h1 a:hover{
  color: #0a31b5;
  text-decoration: none;
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
  width: 800px;
  /*コンテナー幅*/
	margin-right: auto;
  margin-left: auto;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
  height: 200px;
  /*ヘッダーブロックの高さ*/
	width: 100%;
  /*ヘッダーブロックの幅*/
	position: relative;
}
/*ロゴの設定*/
header #logo{
  position: absolute;
  left: 40px;
  /*ヘッダーブロックに対して左から40pxの位置に配置*/
	top: 80px;
/*ヘッダーブロックに対して上から80pxの位置に配置*/
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menubar ul{
  font-size: 11px;
  /*文字サイズ*/
	height: 120px;
  /*ブロックの高さ*/
	width: 520px;
  /*ブロックの幅*/
	position: absolute;
  top: 50px;
  /*ヘッダーブロックに対して上から50pxの位置に配置*/
	right: 30px;
/*ヘッダーブロックに対して右から30pxの位置に配置*/
}
/*各メニューの設定*/
nav#menubar ul li a{
  height: 100px;
  /*メニューの高さ*/
	width: 100px;
  /*メニューの幅*/
	line-height: 100px;
  /*行間（heightの数値と合わせる）*/
	color: #FFF;
  /*文字色*/
	text-decoration: none;
  text-align: center;
  display: block;
  background: rgba(0,38,171,0.5);
  /*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	border-radius: 70px;
  /*角丸のサイズ*/
	-webkit-transition: 0.8s;
  /*マウスオン時の移り変わるまでの時間設定。0.8秒。*/
	transition: 0.8s;
  /*同上*/
	border: 10px solid #FFF;
  /*枠線の幅、線種、色*/
	overflow: hidden;
  float: left;
  margin-right: 10px;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover{
  background: #FFF;
  /*背景色*/
	color: #0a31b5;
  /*文字色*/
	border: 10px solid #1846b3;
/*枠線の幅、線種、色*/
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
  width: 100%;
  /*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2{
  background-color: #FFF;
  /*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));
  /*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);
  /*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);
  /*同上*/
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*同上*/
	font-size: 100%;
  padding: 10px 10px 10px 20px;
  /*左から、上、右、下、左側への余白*/
	clear: both;
  border-radius: 10px;
  /*角丸のサイズ*/
	color: #0a31b5;
/*文字色*/
}
/*mainコンテンツのh3タグの設定*/
#main h3{
  background-color: #0c39d3;
  /*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#0c39d3), to(#0a31b5));
  /*グラデーション*/
	background-image: -webkit-linear-gradient(#0c39d3, #0a31b5);
  /*同上*/
	background-image: linear-gradient(#0c39d3, #0a31b5);
  /*同上*/
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*同上*/
	font-size: 100%;
  padding: 10px 10px 10px 20px;
  /*左から、上、右、下、左側への余白*/
	clear: both;
  border-radius: 10px;
  /*角丸のサイズ*/
	color: #FFF;
/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p{
  padding: 0.5em 20px 1em;
/*左から、上、左右、下への余白*/
}
/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu{
  clear: both;
  padding-top: 30px;
  font-size: 12px;
  text-align: center;
}
#footermenu li{
  display: inline;
  padding: 0px 5px;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer{
  clear: both;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .pr{
  display: block;
  font-size: 80%;
}
footer a{
  text-decoration: none;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
  overflow: auto;
  /*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
  margin: 5px 20px 0px;
}
/*日付設定*/
#new dt{
  font-weight: bold;
  /*太字にする設定。標準がいいならこの行削除。*/
	float: left;
  width: 8em;
}
/*記事設定*/
#new dd{
  border-bottom: 1px solid rgba(255,255,255,0.3);
  /*下線の幅、線種、色。色については左３つの数値はRGBカラーでの色指定。一番右は透明度（0.3＝30％）の指定。*/
	padding-left: 8em;
}
#new dd img{
  vertical-align: middle;
}
/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu{
  font-size: 16px;
  /*文字サイズ*/
	padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
/*メニューテキストをセンタリング*/
}
ul.navmenu li{
  display: inline;
}
ul.navmenu li a{
  background: url(../images/arrow.png) no-repeat left center;
  /*矢印マークの設定*/
	padding-right: 20px;
  padding-left: 15px;
  text-decoration: none;
}
ul.navmenu li a:hover{
  background: url(../images/arrow.png) no-repeat 2px center;
/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}
/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list{
  height: 370px;
  /*ボックスの高さ*/
	width: 280px;
  /*ボックスの幅*/
	border-radius: 10px;
  /*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  /*同上*/
	background-color: #FFF;
  /*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));
  /*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);
  /*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);
  /*同上*/
	padding: 15px;
  /*ボックス内の余白*/
	float: left;
  margin: 0px 9px 1em;
  position: relative;
}
/*ボックス内の段落タグ設定*/
#main section.list p{
  padding: 0px;
  color: #666;
  /*文字色*/
	font-size: 12px;
/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list h4{
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 100%;
  padding: 0;
  border-radius: 0px;
  color: #0a31b5;
  /*文字色*/
	border-bottom: 2px dotted #0a31b5;
  /*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ボックス内の写真設定*/
#main section.list figure img{
  width: 100%;
  height: auto;
}
/*ふきだしアイコンの位置*/
#main section.list img.icon{
  position: absolute;
  top: -10px;
  /*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;
/*ボックスに対して右から0pxの位置に配置*/
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
  width: 950px;
  margin: 0px auto;
}
.ta1, .ta1 td, .ta1 th{
  border: 1px solid #FFF;
/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
  padding: 10px;
}
.ta1 td img.wa{
  height: auto;
  width: 100%;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
  background: rgba(255,255,255,0.1);
  /*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.1＝10％）の指定。*/
	width: 200px;
  /*幅*/
	padding: 10px;
  text-align: center;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
  width: auto;
  text-align: left;
}
/*テーブルのキャプション設定*/
.ta1 caption{
  background: rgba(144,128,90,0.5);
  /*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.5＝50％）の指定。*/
	padding: 10px;
  border-top: 1px solid #FFF;
  /*上側の線の幅、線種、色*/
	border-right: 1px solid #FFF;
  /*右側の線の幅、線種、色*/
	border-left: 1px solid #FFF;
  /*左側の線の幅、線種、色*/
	text-align: left;
  font-weight: bold;
  /*文字を太字にする設定*/
	color: #FFF;
}
/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"]{
  width: 250px;
  /*ボタン幅*/
	padding: 10px;
  /*ボタン内の余白*/
	margin-bottom: 20px;
  border-radius: 30px;
  /*角丸のサイズ*/
	background-color: #e5e5e5;
  /*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e5e5e5));
  /*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e5e5e5);
  /*同上*/
	background-image: linear-gradient(#FFF, #e5e5e5);
  /*同上*/
	font-size: 16px;
  /*文字サイズ*/
	letter-spacing: 0.1em;
  border: 1px solid #999;
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover{
  background-color: #FFF;
  /*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));
  /*グラデーション*/
	background-image: -webkit-linear-gradient(#e5e5e5, #FFF);
  /*同上*/
	background-image: linear-gradient(#e5e5e5, #FFF);
/*同上*/
}
/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポンブロック全体の設定*/
#coupon{
  width: 100%;
  position: relative;
}
#coupon img{
  width: 100%;
  height: auto;
}
/*クーポン内の説明文設定*/
#coupon p{
  font-size: 20px;
  position: absolute;
  height: 250px;
  /*ボックスの高さ*/
	width: 270px;
  /*ボックスの幅*/
	top: 50px;
  /*couponブロックに対して上から50pxの位置に配置*/
	right: 50px;
  /*couponブロックに対して右から50pxの位置に配置*/
	padding: 20px;
  background: rgba(0,0,0,0.7);
  color: #FFF;
}
/*FAQ・LINKページ
---------------------------------------------------------------------------*/
.faq{
  padding: 0px 15px;
}
.faq dt{
  color: #000;
  font-weight: bold;
}
.faq dd{
  border-bottom: 2px dotted #0a31b5;
  overflow: hidden;
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop{
  clear: both;
  text-align: right;
}
#pagetop a{
  background-color: rgba(255,255,255,0.7);
  /*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（0.7＝70％）の指定。*/
	color: #0a31b5;
  /*文字色*/
	text-decoration: none;
  text-align: center;
  width: 14em;
  /*ボックスの幅*/
	font-size: 10px;
  /*文字サイズ*/
	letter-spacing: 0.1em;
  /*文字間隔。少し広げる設定。*/
	display: inline-block;
  border-radius: 10px;
/*角丸のサイズ*/
}
#pagetop a:hover{
  background-color: rgba(255,255,255,1);
  /*背景色。左３つの数値はRGBカラーでの色指定。一番右は透明度（1＝100％）の指定。*/
	color: #0a31b5;
}
/*その他
---------------------------------------------------------------------------*/
.look{
  background: rgba(0,38,171,0.5);
}
.mb1em,
.mb15{
  margin-bottom: 1em;
}
.pt15{
  padding-top: 15px;
}
.clear{
  clear: both;
}
ul.disc{
  padding: 0em 25px 1em;
  list-style: disc;
}
.color1{
  color: #ebcd26;
}
.pr{
  font-size: 10px;
}
.btn{
  font-size: 13px;
}
.wl{
  width: 96%;
}
.ws{
  width: 50%;
}
.c{
  text-align: center;
}
figcaption{
  font-size: 11px;
}
img{
  max-width: 100%;
  height: auto;
}
#menubar_hdr{
  display: none;
}
img.fl{
  margin: 0px 10px 10px 0px;
  float: left;
}
img.fr{
  margin: 0px 0px 10px 10px;
  float: left;
}
img.wa{
  max-width: 100%;
  height: auto;
}
/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){
  /*h1タグ設定
---------------------------------------------------------------------------*/
h1{
  display: none;
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
  width: auto;
  margin-right: 6px;
  margin-left: 6px;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
  height: auto;
  position: static;
  text-align: center;
}
/*ロゴの設定*/
header #logo{
  padding-top: 50px;
  text-align: center;
  position: static;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar ul{
  height: auto;
  width: auto;
  position: static;
  top: auto;
  right: auto;
}
/*各メニューの設定*/
nav#menubar ul li a{
  float: none;
}
nav#menubar ul li{
  display: inline-block;
  margin-bottom: 20px;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main{
  width: auto;
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg{
  height: auto;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 20px;
  margin-bottom: 30px;
}
#slide_image{
  height: auto;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 20px;
}
#slide_image2{
  height: auto;
  width: 100%;
  position: absolute;
  left:0px;
  top:0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 20px;
}
/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu{
  font-size: 13px;
}
/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list{
  height: 400px;
  /*ボックスの高さ*/
	width: 45%;
  /*ボックスの幅*/
	margin: 0px 2% 20px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
  width: 96%;
}
}
/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){
  /*h1タグ設定
---------------------------------------------------------------------------*/
h1{
  display: none;
}
/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container{
  width: auto;
  margin-right: 6px;
  margin-left: 6px;
}
/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
  height: auto;
  position: static;
  text-align: center;
}
/*ロゴの設定*/
header #logo{
  padding-top: 50px;
  text-align: center;
  position: static;
}
header #logo img{
  width: 90%;
  height: auto;
}
/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menubar ul{
  height: auto;
  width: auto;
  position: static;
  top: auto;
  right: auto;
}
/*各メニューの設定*/
nav#menubar ul li a{
  float: none;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 5px solid rgba(255,255,255,0.9);
  margin-right: 0;
}
nav#menubar ul li{
  display: inline-block;
  margin-bottom: 20px;
}
/*マウスオン時の設定*/
nav#menubar ul li a:hover{
  border: 5px solid #0a31b5;
}
/*mainコンテンツ
---------------------------------------------------------------------------*/
#main{
  width: auto;
}
/*mainコンテンツのh1タグの設定*/
#main h1{
  padding: 2px 5px 2px 10px;
}
/*mainコンテンツの段落タグ設定*/
#main p{
  padding: 0.5em 5px 1em;
}
/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg{
  height: auto;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 20px;
}
#mainimg img{
  border: 5px solid #FFF;
}
#slide_image{
  height: auto;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
#slide_image2{
  height: auto;
  width: 100%;
  position: absolute;
  left:0px;
  top:0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open{
  background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));
  background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);
  background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);
}
section#new h2.close{
  background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));
  background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#FFF, #e6e6e6);
  background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#FFF, #e6e6e6);
}
/*ブロック全体の設定*/
#new dl{
  height: auto;
  padding-left: 0;
}
/*日付設定*/
#new dt{
  float: none;
  width: auto;
}
/*記事設定*/
#new dd{
  padding-left: 0;
}
/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu{
  text-align: left;
  padding: 10px 0px 10px 20px;
}
ul.navmenu li{
  display: block;
}
/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list{
  height: auto;
  /*ボックスの高さ*/
	width: 100%;
  /*ボックスの幅*/
	float: none;
  margin: 0px 0px 1em;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
  width: 100%;
}
/*テーブル内の右側*/
.ta1 td{
  width: auto;
  padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
  width: 100px;
  padding: 2px;
}
/*COUPONページ
---------------------------------------------------------------------------*/
/*クーポン内の説明文設定*/
#coupon p{
  font-size: 14px;
  position: absolute;
  height: 100px;
  /*ボックスの高さ*/
	width: 100%;
  /*ボックスの幅*/
	top: 0px;
  /*couponブロックに対して上から0pxの位置に配置*/
	left: 0px;
  /*couponブロックに対して左から0pxの位置に配置*/
	padding: 10px;
  background: rgba(0,0,0,0.7);
  color: #FFF;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
/*その他
---------------------------------------------------------------------------*/
/*メニュー折りたたみ設定*/
#top #menubar_hdr{
  display: none;
}
#menubar_hdr{
  display: inline;
  position: absolute;
  top: 0px;
  right: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
  background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
  background-image: linear-gradient(#fbfbfb, #e5e5e5);
  padding: 10px;
  border: 1px solid #cfcfcf;
  border-radius: 0px 0px 6px 6px;
}
}
