@charset "utf-8";


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {width: 100%;height: 100%;}
body {
	color: #333333;/*全体の文字色*/
	background-color: white;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;/*全体の背景色*/
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;/*フォント種類*/
	line-height: 2;
	-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%;}
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;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
a:hover {
	color: #0a8fe4;
	text-decoration: none;
}

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;
	height: 100%;
	padding: 0% 2% 2% 23%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	line-height: 1;
	margin-bottom: 20px;
	color: #ffffff;
	background-color: transparent;
	background-image: url(../images/bg1.png),linear-gradient(#0a8fe4, #0981ce);
	background-repeat: no-repeat,repeat;
	background-attachment: scroll,scroll;
	background-position: right center,0% 0%;
	background-size: auto auto,auto auto;
	background-origin: padding-box,padding-box;
	background-clip: border-box,border-box;
	background: -webkit-linear-gradient(#0a8fe4, #0981ce);
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	font-size: large;
}
/*コンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	line-height: 1;
	margin-bottom: 20px;
	background: #FFF;
	background: -webkit-linear-gradient(#FFF, #eee);
	background: linear-gradient(#FFF, #eee);
	padding: 12px 20px;
	border-bottom: 5px solid #0a8fe4;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
	-webkit-box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}
/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 20px 20px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;
	width: 23%;
	overflow: auto;
	background: #000;
	color: #fff;
	margin-left: 1.5%;
	margin-bottom: 30px;
	border-radius: 6px;
	height: 200px;
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px -2px 3px rgba(0,0,0,0.2);
	box-shadow: 2px -2px 3px rgba(0,0,0,0.2);
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 200px;
	color: #fff;
}

.list a:hover {
	background-color: #0a8fe4;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	color: #ffffff;
}

/*ボックスにリンク指定がされた場合に出る「→」マーク　（※list2も共通）*/
.list a::before,
.list2 a::before {
	content: "→";
	position: absolute;
	right: 0px;
	top: 48px;
	background: #000;
	background: rgba(0,0,0,0.5);
	color: #fff;
	border: 1px solid #fff;
	border-radius: 4px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
/*マウスオン時の「→」マーク　（※list2も共通）*/
.list a:hover::before,
.list2 a:hover::before {
	background: #000;
	width: 40px;
	line-height: 40px;
}
/*ボックス内の画像設定*/
.list .img {
	width: 100%;
	height: auto;
	padding-bottom: 10px;
}
/*ボックス内のh4（見出し）タグ設定　（※list2も共通）*/
.list h4,
.list2 h4 {
	padding-left: 20px;
}
/*ボックス内のp（段落）タグ設定　（※list2も共通）*/
.list p,
.list2 p {
	font-size: 80%;
}

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	background: #fff;
	margin-bottom: 20px;
	border-radius: 6px;
	overflow: hidden;
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
	padding: 40px;
}
.list2 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	padding: 40px;
	margin: -40px;
}
.list2 a:hover {
	background: #fff7a3;
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 30%;
	height: auto;
	float: left;
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-left: 33%;
}

/*インフォメーションリスト*/

ul.infolist1{
	counter-reset: li;
	padding-top: 0.5em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 2em;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.6;
	font-family: 'arial narrow', sans-serif;
	width: 100%;
	list-style-type: none;
	list-style-position: outside;
}
.infolist1 li{
	position: relative;
	padding-top: 13px;
	padding-right: 4px;
	padding-bottom: 10px;
	padding-left: 20px;
	margin-top: 0.8em;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #cccccc;
	font-size: 20px;
	color: #0a8fe4;
	font-weight: bold;
}
 
.infolist1 li:before{
  counter-increment: li;
  content: counter(li);
  position: absolute;    
  z-index: -1;
  left: -5px;
  top: -3px;
  background: #f5f5f5;
  height: 1.5em;
  width: 1.5em;
  border: .1em solid rgba(0,0,0,.05);
  text-align: center;
  font: italic bold 1em/1.3em Georgia, Serif;
  color: #ccc;
  border-radius: 1.5em;
  transition: all .2s ease-out;
}
 
.infolist1 li:hover:before{
  background-color: #ffd797;
  border-color: rgba(0,0,0,.08);
  border-width: .2em;
  color: #444;
  transform: scale(1.5);
}


/*MOS用テーブル-------------------------*/
.mostable{
	float:center;
	width:60%;
	margin:10px auto 10px auto;
	border-collapse:separate;
	border-spacing:5px;
}

.mostable th{
	width:25%;
	line-height:30px;
	background-color:#87cefa;
	padding:0px 8px;
	text-align:center;
	color:#ffffff;
	white-space:nowrap;
}

.mostable td{
	width: 25%;
	line-height: 32px;
	background-color: #fffbc8;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	text-align: center;
	white-space: nowrap;
}

.mostable td:hover {
	background-color: #fffbc8;
	color: black;
}

/*MOS申込ボタン------------------------------------------*/
.mosbutton {
	background-color: #e1ffff;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	margin-bottom: 20px;
	border-top-left-radius: 6px 6px;
	border-top-right-radius: 6px 6px;
	border-bottom-right-radius: 6px 6px;
	border-bottom-left-radius: 6px 6px;
	overflow: hidden;
	line-height: 1.3;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.mosbutton a {
	display: block;
	overflow: auto;
	text-decoration: none;
	padding: 20px;
	margin: -20px;
}
.mosbutton a:hover {
	background: #fff7a3;
}
/*ボックス内の画像設定*/
.mosbutton .img {
	width: 15%;
	height: auto;
	float: left;
}
/*ボックス内のh4タグとpタグ*/
.mosbutton h4,
.mosbutton p {
	margin-left: 17%;
}

/*時間割表-------------------------*/

.timetable{
	float: left;
	width: 25%;
	margin: 0px 8px 8px;
	border-collapse: separate;
	border-spacing: 6px;
	border: solid 1px #ccc;
}

.timetable th,
.timetable td{
	line-height: 32px;
	padding: 0px 8px;
	text-align: center;
	white-space: nowrap;
}
.timetable thead th{
	background-color: #0a8fe4;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	color: #ffffff;
}
.timetable tbody th{
	width: 80px;
	background-color: #c6ffc6;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	color: #000000;
}
.timetable tbody td{
	background-color: #fff7a3;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	color: #000000;
}
.timetable tr.breaktime > *{
	background-color: #ffcae4;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
}

/*MOS試験内容の表-------------------------*/

.mosnaiyou{
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	width: 90%;
	border-collapse: collapse;
}
.mosnaiyou thead th{
text-align: center;
}

.mosnaiyou th{
	padding: 6px;
	vertical-align: top;
	color: #333;
	background-color: #eee;
	border: 1px solid #b9b9b9;
}

.mosnaiyou tbody tr td{
text-align: left;
}

.mosnaiyou tbody tr td:nth-of-type(2){
text-align: left;
}

.mosnaiyou tbody tr td:nth-of-type(3){
text-align: right;
}

.mosnaiyou tbody tr td:nth-of-type(4){
text-align: right;
}

.mosnaiyou td{
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #b9b9b9;
}

.mosnaiyou td:hover {
	background-color: #ffffff;
	color: black;
}

/*漢検試験内容の表-------------------------*/

.kankennaiyou{
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	width: 70%;
	border-collapse: collapse;
}
.kankennaiyou thead th{
	text-align: center;
}

.kankennaiyou th{
	padding: 6px;
	vertical-align: top;
	color: #333;
	background-color: #eee;
	border: 1px solid #b9b9b9;
}

.kankennaiyou tbody tr td{
	text-align: center;
}

.kankennaiyou tbody tr td:nth-of-type(2){
	text-align: left;
}

.kankennaiyou tbody tr td:nth-of-type(3){
	text-align: right;
}

.kankennaiyou td{
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: #b9b9b9;
}

/*コース説明の表-----------------------------*/
.ta1 {
	width: 90%;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
}

.ta1 th {
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	vertical-align: top;
	color: white;
	text-align: center;
	background-color: #666666;
	border-width: 1px;
	border-style: solid;
	border-color: #b9b9b9;
}

.ta1 td {
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	border-width: 1px;
	border-style: solid;
	border-color: #b9b9b9;
}

.ta1 tr td:nth-of-type(1){
	width:30%;
}

.ta1 .img {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	width: auto;
	height: auto;
	float: center;
}

.ta1 td:hover {
	background-color: #ffffff;
	color: black;
}

/*箇条書き（ロボット）-------------------------*/
ul.robotlist{
  padding: 0;
  font: 14px/1.6 'arial narrow', sans-serif;
  width:100%;
  list-style: none;
}
ul.robotlist li{
	position: relative;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-left: 2.3em;
	margin-bottom: 5px;
	color: #0080ff;
	font-size: 18px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(129, 194, 250, 0.5);
}
ul.robotlist li:after,
ul.robotlist li:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
ul.robotlist li:before{
  left: 0.2em;
  width: 17px;
  height: 17px;
  background: rgba(129,194,250,0.5);
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.robotlist li:after{
  top: 1.1em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(129,194,250,0.3);
}

/*箇条書き（コース案内）-------------------------*/
ul.courselist{
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 2;
	font-family: 'arial narrow', sans-serif;
	width: 100%;
	list-style-type: none;
	list-style-position: outside;
	letter-spacing: 0.1rem;
}
h5{
	position: relative;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-left: 2.3em;
	margin-bottom: 5px;
	color: #0080ff;
	font-size: 18px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #81c2fa;
}
h5:after,
h5:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
h5:before{
  left: 0.2em;
  width: 17px;
  height: 17px;
  background: rgba(129,194,250,0.5);
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
h5:after{
  top: 1.1em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(129,194,250,0.3);
}
.courselist li {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #81c2fa;
}
.courselist li::after {
clear: both;
content: "";
display: block;
line-height: 0;
}
.courselist li + li {
margin-top: 10px;
}
.fl {
float: left;
margin-right: 20px;
}
.courselist p {
margin-top: -0.3em;
}



/*アクセスの枠-------------------------*/
.accesstable {
	border-collapse: collapse;
	margin:10px auto 10px auto;
	float:center;
	width:80%;
}
th.t_top {
	border-top-width: 4px;
	width:20%;
	border-top-style: solid;
	border-top-color: #0a8fe4;
}
th {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
	font-weight: normal;
}
td.t_top {
	border-top: #b3b3b3 4px solid;
}
td {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
}
tr:hover {
    color: #0a8fe4;
}

/*中央揃え----------------------------*/
#center{
	text-align: center;
}

#viewport_sw a {
	display: block;
	text-align: center;
	padding-top: 3%;
	padding-right: 0px;
	padding-bottom: 3%;
	padding-left: 0px;
	width: 100%;
	background-color: #666666;
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
	background-size: auto auto;
	background-origin: padding-box;
	background-clip: border-box;
	color: #ffffff;
	font-size: 14px;
	font-size: 4vw;
	position: fixed;
	bottom: 0px;
	z-index: 200;
}

/*サブコンテンツ----------------------------------------*/
#sub {
	position: fixed;
	left: 0px;top: 0px;
	overflow: auto;
	width: 21%;
	height: 100%;
	background: #0a8fe4;
	color: #fff;
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #fff;
}
/*subブロック内の段落タグ*/
#sub p {
	padding: 10px 20px;
}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への設定*/
nav#menubar {
	border-top: 1px solid #fff;
}
/*メニュー１個ごとの設定*/
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 20px;
	border-bottom: 1px solid #fff;
}
/*マウスオン時と現在表示中メニュー(current)*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	background: #eee;
	color: #0a8fe4;
	text-align: right;
}

/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}

#menubar_hdr {
	display: none;
}

#menubar #link a {
	color: #0a8fe4;
}

/*プルダウンメニュー*/
.menu li {
    max-height: 0;
    overflow-y: hidden;
}

#menu_bar:checked ~ #link li{
    max-height: 300px;
    opacity: 1;
}

.menu {
	max-width: 400px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.menu a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #000;
    line-height: 1;
}

label {
	display: block;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	padding-top: 18px;
	padding-right: 20px;
	padding-bottom: 18px;
	padding-left: 20px;
	line-height: 1;
	color: #ffffff;
	cursor: pointer;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: white;
}

input {
    display: none;
}

.menu ul {
    margin: 0;
    padding: 0;
    background : #eee;
    color :#666;
    list-style: none;
}

.menu li {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

#menu_bar:checked ~ #links li{
    max-height: 300px;
    opacity: 1;
}

/*フッターメニュー--------------------*/
#footermenu {
	clear: both;
	text-align: right;
}
#footermenu li {
	display: inline;
	font-size: 75%;
	padding: 0 10px;
}

/*フッター設定------------------*/
footer {
	clear: both;
	text-align: right;
	width: 100%;
	letter-spacing: 0.2em;
	font-size: 12px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*トップページ内「更新情報・お知らせ」ブロック----------------------*/
/*ブロック全体の設定*/
#new dl {
	overflow: visible;
	height: inherit;
	padding-left: 20px;
	margin-bottom: 20px;
}

#new dt {
	font-weight: 550;
	padding-bottom: 5px;
	text-align: left;
}

#new dd {
	font-weight: bold;
	padding-left: 8em;
}

/*よく頂く質問ページ----------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 20px;
}
/*質問の設定*/
.faq dt {
	color: #0a8fe4;
	font-weight: bold;
	padding-top: 15px;
}
/*回答の設定*/
.faq dd {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	overflow: hidden;
	padding-bottom: 15px;
	font-size: small;
}

/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
#pagetop {clear: both;}
#pagetop a {
	clear: both;
	font-size: 20px;
	display: block;
	background: #ccc;
	color: #FFF;
	float: right;
	text-decoration: none;
	line-height: 1;
	padding: 20px;
	border-radius: 50px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
#pagetop a:hover {
	background: #333;
	color: #fff;
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 70%;
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: text-top
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #333;background:rgba(0,0,0,0.6);padding: 3px;border-radius: 3px;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1 {color: #0a8fe4;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.fr {float:right;width: 30%;margin:0 20px 20px;}
.fl {float:left;width: 30%;margin:0 20px 20px;}
.sh {display: none;}



/*画面幅950px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:950px){

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 2% 2% 2% 28%;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	width: 25%;
}

}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ボックス（list2）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list2 {
	padding: 10px;	/*ボックス内の余白*/
}
.list2 a {
	padding: 10px;	/*ボックス内の余白*/
	margin: -10px;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 100%;		/*画像の幅*/
	float: none;
	border-bottom: 1px solid #d9d9d9;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-left: 0;
}


/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;
	margin-left: 0;
	height: auto;
}
.list a {
	height: auto;
}


}



/*画面幅750px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:750px){
.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/
/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;
	margin-top: 3%;
	padding-top: 90px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: static;
	width: auto;
	height: auto;
	background: transparent;
	color: #333;
	border-top: 1px solid #333;	
	border-bottom: 1px solid #333;
	margin-bottom: 20px;
}
/*subブロック内のリンクテキストの色*/
#sub a {
	color: #333;
}
/*subブロック内のinnnerブロック（ロゴ、文字サイズ変更ボタンなど囲むブロック）*/
#sub .inner {
	position: absolute;
	left: 0px;top: 0px;
	z-index: 1;
	width: 100%;
	height: 90px;	
	background: #0a8fe4;
}
#sub #logo img {
	height: 90px;
	float: left;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*大きな端末用(画面幅751px以上)メニューを非表示にする*/
#menubar {
	display: none;
}
/*メニューブロック全体への設定*/
#menubar-s {
	display: block;
	position: absolute;
	left: 0px;
	top: 90px;
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	
	background: #000;
	background: rgba(0,0,0,0.85);
}
/*メニュー１個ごとの設定*/
#menubar-s ul li a {
	display: block;
	text-decoration: none;
	text-align: center;
	line-height: 60px;
	border-bottom: 1px solid #fff;
	color: #fff;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 2;
	top: 18px;
	right: 2%;
	width: 30px;
	border: 1px solid #000;
	padding: 12px 10px 5px;
	background: #fff;
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 3px solid #000;	
	margin-bottom: 7px;
}

}



/*画面幅650px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px){
.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/
}

/*画面幅580px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:580px){

.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/

#new dt {
	float: none;
	width: auto;
}

#new dd {
	padding-left: 0;
}

}



/*画面幅500px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:500px){
.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#0a8fe4, #0981ce);	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  linear-gradient(#0a8fe4, #0981ce);			/*同上*/
}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#0a8fe4, #0981ce);	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  linear-gradient(#0a8fe4, #0981ce);			/*同上*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.fr {float:none;width: 100%;margin:0 0 20px;}
.fl {float:none;width: 100%;margin:0 0 20px;}
.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/

}



/*画面幅410px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:410px){
.sh {display: block;}/*小さな端末でshスタイルを表示*/
.pc {display: none;}/*小さな端末でpcスタイルを非表示*/
}
