@charset "utf-8";


/*フォントの太さの問題を解決するためのコード
----------------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}


/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {width: 100%;height: 100%;}
body {
	color: #000000;		/*全体の文字色*/
	background: #ffffff;	/*全体の背景色*/
	margin: 0px;
	padding: 0px;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;	/*フォント種類*/
	font-size: 17px;	/*文字サイズ*/
	line-height: 1.8;		/*行間*/
	-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;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
a:hover {
	color: #f18405;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ソースコード設定
---------------------------------------------------------------------------*/
pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: auto;
}

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px;	/*最大幅。この行を外せば常にウィンドウ幅に対して100%表示になります。*/
	height: 100%;
	padding: 2% 2% 2% 23%;	/*上、右、下、左への余白。#subのwidthの値を変えた場合はここの23%を調整する。*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	padding-bottom: 30px;
}
/*h2タグの設定*/
#main h2 {
	clear: both;
	line-height: 1.4;
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #0E7AC4;	/*背景色*/
	padding: 15px 20px;	/*上下、左右への余白*/
}

/*コンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	line-height: 1;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 18px;	/*文字サイズ*/
	background: #FFF;	/*背景色*/
	padding: 12px 20px;	/*上下、左右への余白*/
	border-bottom: 5px solid #0E7AC4;	/*下線の幅、線種、色*/
	border-top: 1px solid #999;			/*上の線の幅、線種、色*/
}


/*コンテンツのh6タグの設定*/
#main h6 {
	clear: both;
	line-height: 1;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 16px;	/*文字サイズ*/
	background: #40AAEF;	/*背景色*/
	color: #FFF;		/*文字色*/
	padding: 12px 20px;	/*上下、左右への余白*/
}

#main h6 {
	clear: both;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #40AAEF;	/*背景色*/
	padding: 12px 20px;	/*上下、左右への余白*/
}


/*メインコンテンツのp(段落)タグ設定*/
#main p {
	padding: 0px 20px 0px;	/*上、左右、下への余白*/
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}

/*ボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	/*左に回り込み*/
	width: 31%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 280px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 280px;	/*高さ（上の「.list」の高さと揃える）*/
	color: #fff;	/*文字色*/
}
.list a:hover {
	background: #0E7AC4;	/*マウスオン時の背景色*/
	color: #fff;			/*マウスオン時の文字色*/
}

/*ボックス内の画像設定*/
.list .img, 
.list3 .img {
	width: 100%;	/*画像の幅*/
	height: auto;	/*画像の高さ*/
	padding-bottom: 10px;	/*画像下に空ける余白*/
}
/*ボックス内のh4（見出し）タグ設定　（※list2も共通）*/
.list h4,
.list3 h4,
.list2 h4 {
	padding-left: 20px;
}
/*ボックス内のp（段落）タグ設定　（※list2も共通）*/
.list p,
.list3 p,
.list2 p {
	font-size: 90%;	/*文字サイズを少し小さく*/
}

/*ボックス（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);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	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;	/*リンクなしで使った場合、上のpaddingを相殺する為の設定*/
}
.list2 a:hover {
	background: #fff7a3;	/*マウスオン時の背景色*/
}
/*ボックス内の画像設定*/
.list2 .img {
	width: 30%;		/*画像の幅。ここを変える場合は下のh4とpのmargin-leftの数字も調整。*/
	height: auto;	/*画像の高さ*/
	float: left;	/*左に回り込み*/
}
/*ボックス内のh4タグとpタグ*/
.list2 h4,
.list2 p {
	margin-left: 33%;	/*画像のサイズを変更した場合はここも調整する*/
}



/*ボックス（list3）設定 青
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list3 {
	float: left;	/*左に回り込み*/
	width: 31%;		/*幅*/
	overflow: auto;	/*ボックスから飛び出たらスクロールを出す設定。飛び出た部分を非表示にしたいならautoでなくhiddenにする。*/
	background: #0E7AC4;	/*背景色*/
	color: #fff;		/*文字色*/
	margin-left: 1.5%;	/*ボックス同士の左右間の余白*/
	margin-bottom: 30px;	/*ボックス同士の上下間の余白*/
	border-radius: 6px;		/*角丸のサイズ。この行削除すれば通常の長方形になる。*/
	height: 280px;			/*高さ（下の「.list a」の高さと揃える）*/
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2は透明度20%の事。*/
	box-shadow: 1px 1px 3px rgba(0,0,0,0.2);			/*同上*/
}
.list3 a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 280px;	/*高さ（上の「.list」の高さと揃える）*/
	color: #fff;	/*文字色*/
}
.list3 a:hover {
	background: #f7ae45;	/*マウスオン時の背景色*/
	color: #fff;			/*マウスオン時の文字色*/
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: fixed;	/*画面がスクロールしても移動させない為の設定。スクロールと共に移動させるならこの１行削除。*/
	left: 0px;top: 0px;
	overflow: auto;	/*ウィンドウの高さ以上になった場合はスクロールを出す*/
	width: 21%;		/*幅。ここのサイズを変える場合、#containerの幅の23%の数字を調整する。*/
	height: 100%;
	background: #0E7AC4;	/*背景色*/
	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: 5px 14px;	/*上下、左右へのメニュー内の余白*/
	font-size: 87%;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*マウスオン時と現在表示中メニュー(current)*/
nav#menubar ul li a:hover,
nav#menubar ul li.current a {
	background: #ffffff;	/*背景色*/
	color: #0E7AC4;		/*文字色*/
	font-weight: bold;
}

/*小さい端末用(画面幅480px以下)メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*ページ下バナー
---------------------------------------------------------------------------*/
.topBn li{
	display:inline-block;
	margin:5px 2px;　/*←上下5px、左右2pxのマージン指定の場合*/
}
.topBn li img {
	border:solid 1px #ccc;　/*←画像を1pxのグレーの枠線で囲む指定の場合*/
}


/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;	
}
#footermenu li {
	display: inline;
	font-size: 85%;
	padding: 0 10px;
}

/*フッター設定(copyrightが入った最下部ブロック)
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	
	width: 100%;
	font-size: 15px;	/*文字サイズ*/
}
footer .pr {
	display: block;
	font-size: 85%;
}
footer a {
	text-decoration: none;
}

/*フッター下線
---------------------------------------------------------------------------*/
hr.style-two {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/*リスト吹き出し
---------------------------------------------------------------------------*/
    .defaultlist
    ,.defaultlist li{
    	padding:0px;
    	margin:0px;
    }
     
    .defaultlist li{
    	list-style-type:none !important;
    	list-style-image:none !important;
    	margin: 5px 0px 5px 0px !important;
    }
     
    .list8{
    	counter-reset:li;
    	margin-left:20px !important;
    }
     
    .list8 li{
    	position:relative;
    	display: block;
    	padding:8px 0px 8px 40px; 
    }
     
    li.list8-count:after{
    	counter-increment: li;
    	content: counter(li);
    	position: absolute;	
    	left: -16px;
    	top: 2px;
    	background: #ccc;
    	height: 30px;
    	width: 30px;
    	line-height: 32px;
    	border: 2px solid #aaa;
    	text-align: center;
    	font-weight: bold;
    	border-radius: 30px;
    }
     
    li.list8-count:before{
    	content:''; 
    	display:block; 
    	position:absolute; 
    	box-shadow: 0 0 2px 2px rgba(255,255,255,0.2) inset;
    	top:11px; 
    	left:15px; 
    	height:0; 
    	width:0; 
    	border-top: 8px solid transparent;
    	border-right: 7px solid transparent;
    	border-bottom: 8px solid transparent;
    	border-left: 13px solid #aaa;
    }


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;	/*ブロックの高さ*/
	padding-left: 20px;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.jirei {
	padding: 0px 20px;	/*上下、左右への余白*/
}

/*事例*/
.jirei dt {
	color: #0E7AC4;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*詳細*/
.jirei dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}

/*パンくずリスト
---------------------------------------------------------------------------*/

.breadcrumb {
  margin-left: 0;
  padding-left: 0;
}

.breadcrumb li{
  display:inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after{/* ▶を表示*/
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 3px;
  color: silver;
}

.breadcrumb li:last-child:after{
  content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #888;
}

.breadcrumb li:first-child a:before{/*家アイコン*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: orange;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

/*テーブル　ta1
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 180px;	/*幅*/
	padding: 10px;
	text-align: center;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}

/*テーブル　ta1b 左360px
---------------------------------------------------------------------------*/
.ta1b {
	width: 100%;
	margin-bottom: 20px;
	background: #fff;	/*背景色*/
}
.ta1b, .ta1b td, .ta1b th {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1b th.tamidashi {
	width: auto;
	text-align: left;
	background: #333;	/*背景色（古いブラウザ向け）*/
	background: -webkit-linear-gradient(#666, #333);	/*グラデーション*/
	background: linear-gradient(#666, #333);			/*同上*/
	color: #fff;	/*文字色*/
}
/*テーブル内の左側*/
.ta1b th {
	width: 360px;	/*幅*/
	padding: 10px;
	text-align: left;
}
/*テーブル内の右側*/
.ta1b td {
	padding: 10px;
}

/*テーブル　ta2 上下線のみ
---------------------------------------------------------------------------*/
.ta2 {
	border-collapse: separate;
	border-spacing: 1px;
	text-align: left;
	line-height: 1.5;
	border-top: 1px solid #ccc;
}

.ta2 th {
	width: 180px;	/*幅*/
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}
.ta2 td {
	padding: 10px;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
}

blockquote {
    position: relative;
    padding: 10px 25px;
    box-sizing: border-box;
    font-style: italic;
    color: #464646;
    border: solid 3px #72ccf4;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 0 0 30px;
    vertical-align: middle;
    content: "\f10d";
    font-family: FontAwesome;
    background: #72ccf4;
    color: #FFF;
    font-size: 22px;
    line-height: 1;
}

blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}



/*黒板
---------------------------------------------------------------------------*/
.kokuban {
    color: #fff;
    background-color: #015f31;
    margin: 10px 0 10px 0;
    padding: 15px;
    border: 9px solid #a60;
    border-radius: 3px;
    box-shadow: 2px 2px 4px #666, 2px 2px 2px #111 inset;
    text-shadow: 0px 0px 2px #000;
    line-height: 1.9;
}
.point {
    color: #ffb1b3;
    font-weight: bold;
    border: 3px solid #ffb1b3;
}

.kokuban a.fix, a.fix:visited {
    color: #ffffff; 
}


/*ページの上部へ（↑）ボタン
---------------------------------------------------------------------------*/
#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;
}

/*英語ボタン
---------------------------------------------------------------------------*/
.btn_e{
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.32), 0px 1px 0px #6182ca, 0px 2px 0px #4f6aa7, 0px 3px 0px #5470ad;
}
.btn_e:active {
    top: 2px;
	box-shadow: none;
}

/*トップページの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: #0E7AC4;}
.color2 {color: #ff3399;}
.color3 {color: #ff9d05;}
.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;}

/*サイトマップ
---------------------------------------------------------------------------*/
.sitemap ul li ul {
    margin-top: .5em;
    margin-bottom: .75em;
    margin-left: 58px;
}
     
.sitemap ul li ul li {
    margin-bottom: .25em;
    position: relative;
}
     
.sitemap ul li ul li::before {
    content: "";
    position: absolute;
    top: -0.5em;
    left: -16px;
    width: 10px;
    height: calc(100% + .75em);
    border-left: 1px solid #B7B7B7;
}
     
.sitemap ul li ul li:last-child::before {
     height: calc(1em + .25em);
}
     
.sitemap ul li ul li::after {
    content: "";
    position: absolute;
    top: .75em;
    left: -16px;
    width: 10px;
    border-bottom: 1px solid #B7B7B7;
}


/*文字装飾　追加
---------------------------------------------------------------------------*/
.sample01 {       
    border-bottom: 2px solid #FF5003;  /*下線オレンジ文字を大きく*/
    font-size: 100%; 
    margin-top: 20px;
}

.m_pink {
    background: linear-gradient(transparent 70%, #ff66ff 60%);
}

.m_blue {
    background: linear-gradient(transparent 70%, #66ccff 60%);
}

.m_yellow {
    background: linear-gradient(transparent 70%, #ffff66 60%);
}

.highlight {
    background-color: #364549;
    color: #e3e3e3;
    line-height: 2.7;
}

.fa-gray {color: gray}
.fa-blue {color: 0E7AC4}
.fa-orange {color: #FBA848}
.fa-pink {color: #F27398}


/* 文字囲みBOX　sampleオレンジ知っ得*/
.sample-box-o {
    border: 2px solid #ff9d05;
    border-radius: 4px;
    margin: 2em 0;
    padding: 2em;
    position: relative;
}

.sample-box-o::before {
    background-color: #fff;
    color: #ff9d05;
    content: "知っ得！POINT";
    font-weight: bold;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -1em;
}

/* 文字囲みBOX　sampleオレンジ*/
.sample-box-m {
    border: 2px solid #ff9d05;
    border-radius: 4px;
    margin: 2em 0;
    padding: 2em;
    position: relative;
}

.sample-box-m::before {
    background-color: #fff;
    color: #ff9d05;
    content: "このページの目的 -purpose-";
    font-weight: bold;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -1em;
}
/* 文字囲みBOX　sampleまとめページ用*/
.sample-box-p {
    border: 2px solid #ff9d05;
    border-radius: 4px;
    margin: 2em 0;
    padding: 2em;
    position: relative;
}

.sample-box-p::before {
    background-color: #fff;
    color: #ff9d05;
    content: "授業内容";
    font-weight: bold;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -1em;
}

.think-box {
	clear: both;
	line-height: 1.5;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 16px;	/*文字サイズ*/
	font-weight: bold;
	background: #FFF;	/*背景色*/
	padding: 12px 20px;	/*上下、左右への余白*/
	border-bottom: 5px solid orange;	/*下線の幅、線種、色*/
	border-top: 1px solid #999;			/*上の線の幅、線種、色*/
}

/* 文字囲みBOX　ブルー*/
.box_blue {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #0E7AC4;/*文字色*/
    background: #FFF;
    border: solid 3px #0E7AC4;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.box_blue p {
    margin: 0; 
    padding: 0;
}

/*数字に丸の背景*/
ol.list2-c{
 padding:0 0 0 2.5rem;
 margin-left:1.5rem !important;
 counter-reset:li-c;
}
ol.list2-c li{
 list-style-type:none !important;
 list-style-image:none !important;
 position:relative;
 display: block;
 margin: 5px 0px 5px 0px;
 padding:0 0 0 0.5rem;
}
li.list2-c-count::after{
 counter-increment: li-c;
 content: counter(li-c);
 position: absolute; 
 left: -2.0rem;
 top: -0.1rem;
 color:#fff;
 height: 1.6rem; 
 width: 1.6rem; 
 line-height: 1.6rem;
 text-align: center;
 font-weight: bold;
 font-family: Helvetica,serif;
 border-radius: 50%;
}

/*わたしたちの考えBOX*/
.matome{
position: relative;
color: black;
background: #d0ecff;
 	font-size: 17px;
line-height: 2;
padding: 0.5em 0.5em;
margin: 2em 0 0.5em;
border-radius: 0 5px 5px 5px;
}

.matome:after {/*タブ*/
  position: absolute;
  font-family: FontAwesome,'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c  わたしたちの考え　-Our idea-';
background: #2196F3;
color: #fff;
left: 3px;

bottom: 100%;
border-radius: 5px 5px 0 0;
padding: 3px 7px 1px;
 	font-size: 16px;
 	line-height: 2;
 	letter-spacing: 1.6
  }


/*わたしたちの提案BOX*/
.teian{
position: relative;
color: black;
background: #FFFECC;
 	font-size: 17px;
line-height: 2;
padding: 0.5em 0.5em;
margin: 2em 0 0.5em;
border-radius: 0 5px 5px 5px;
}

.teian:after {/*タブ*/
  position: absolute;
  font-family: FontAwesome,'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c  わたしたちの提案　-Our approach-';
background: #FBA848;
color: #fff;
left: 3px;

bottom: 100%;
border-radius: 5px 5px 0 0;
padding: 3px 7px 1px;
 	font-size: 16px;
 	line-height: 2;
 	letter-spacing: 1.6
  }



/*文字折り返し(長い)
---------------------------------------------------------------------------*/

.word-warp {
  width: 780px; /*※幅を指定する必要あり */
  word-wrap: break-word;
}

/*画面幅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;
}

/*ボックス（list3）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list3 {
	float: none;
	width: auto;
	margin-left: 0;
	height: auto;
}
.list3 a {
	height: auto;
}



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

/*コンテンツ（左右ブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: 3%;	/*余白*/
	margin-top: 3%;
	padding-top: 90px;	/*上にとる余白。下のサブコンテンツのheightと合わせる。*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	position: static;	/*fixed配置をやめる設定*/
	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;	/*下の#sub #logo imgのheightと数字を合わせる。ここを変える場合、下にある#menubar-sのtopの数字も合わせて変更する。*/
	background: #0E7AC4;	/*背景色*/
}
#sub #logo img {
	height: 90px;	/*上の#subのheightと数字を合わせる*/
	float: left;	/*左に回り込み*/
}


/*メインメニュー
---------------------------------------------------------------------------*/
/*大きな端末用(画面幅751px以上)メニューを非表示にする*/
#menubar {
	display: none;
}
/*メニューブロック全体への設定*/
#menubar-s {
	display: block;	/*小さい端末用(画面幅750px以下)メニューを非表示から表示に切り替える*/
	position: absolute;
	left: 0px;
	top: 90px;	/*#subのheightの数字と同じ数字にする*/
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.5);	/*ボックスの影。右へ、左へ、広げる幅。0,0,0は黒のことで0.5は透明度50%のこと。*/
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);			/*同上*/
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.85);		/*背景色。0,0,0は黒のことで0.85が透明度85%のこと。*/
}
/*メニュー１個ごとの設定*/
#menubar-s ul li a {
	display: block;
	text-decoration: none;
	text-align: center;	/*文字をセンタリング*/
	line-height: 60px;	/*高さ*/
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	color: #fff;	/*文字色*/
}

/*日本語・英語モバイル非表示設定*/
@media screen and (max-width: 752px){
.spNone { display: none;}
}


/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	z-index: 2;
	top: 18px;	/*上から18pxの場所に配置*/
	right: 2%;	/*右から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;	/*バー同士の余白*/
}

}


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


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

}


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

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#0E7AC4, #0981ce);	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,  linear-gradient(#0E7AC4, #0981ce);			/*同上*/
}
#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  -webkit-linear-gradient(#0E7AC4, #0981ce);	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,  linear-gradient(#0E7AC4, #0981ce);			/*同上*/
}

/*テーブル１ モバイル設定
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th {
	width: 100px;
	padding: 2px;
}

/*テーブル2 モバイル設定
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
/*テーブル内の右側*/
.ta2 td {
	width: auto;
	display: block;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta2 th {
	width: auto;
	display: block;
	padding: 2px;
}

/*ビデオ　モバイル設定
---------------------------------------------------------------------------*/
video {
    max-width: 100%;
    height: auto;
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.fr {float:none;width: 100%;margin:0 0 20px;}
.fl {float:none;width: 100%;margin:0 0 20px;}

}

.word-warp {
  width: 320px; /*※幅を指定する必要あり */
  word-wrap: break-word;
}


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

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
#fsize {
	margin: 10px 30px 0 30px;	/*ボックスの外側にとる余白。上、右、下、左の順。*/
	padding: 0;
}


}

