@charset "utf-8";

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

/*全体の設定
---------------------------------------------------------------------------*/
body,html,#mainimg {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	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,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: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #8b0000;		/*リンクテキストの色*/
	text-decoration: none;
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #ffcc00;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定*/
}

/*header
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	overflow: hidden;z-index: 1;
	position: fixed;	/*スクロールしても固定表示させる指定*/
	top: 0px;		/*上からの配置場所*/
	left: 0px;		/*左からの配置場所*/
	width: 100%;		/*幅*/
	padding: 5px 0;	/*上下、左右へのブロック内の余白*/
	background: #fff;	/*背景色*/
	border-top: 3px solid #000;	/*線の幅、線種、色 */
}
/*トップページでのheaderブロックの追加設定*/
.home header {
	background: transparent;
	border: none;
}
/*ロゴ画像*/
header #logo {
	width: 450px;	/*幅*/
	float: left;	/*左に回り込み*/
	margin-left: 40px;	/*左側に空けるスペース*/
	margin-right: 50px;	/*右側に空けるスペース*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	overflow: hidden;
	float: left;
	width: auto;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;		/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
}
#menubar li a {
	color: #000;
	display: block;
	text-decoration: none;
	padding: 17px 12px 2px;	/*上、左右、下へのメニュー内余白*/
	font-family:Hiragino Sans, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Helvetica, Arial, sans-serif;
/*	font-weight: bold;*/
	/*font-family:"ＭＳ Ｐゴシック", "MS PGothic","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;*/
}
#menubar li a:hover {
	color: #ffcc00;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定*/
}
/*現在表示中(current)のメニュー設定*/
#menubar li.current a {
	color: #ff3300;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*headerアイコン
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	float: right;		/*右側に回り込み*/
	margin-right: 30px;	/*右側に空けるスペース*/
	margin-top: 8px;	/*上側に空けるスペース*/
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 100px;		/*画像の幅*/
	margin-left: 3px;	/*画像同士の余白*/
}
/*マウスオン時*/
header .icon a:hover {
	opacity: 0.7;		/*色が70%だけついた状態にする*/
}

/*contents（headerとfooter以外のメインとなるブロック。）
---------------------------------------------------------------------------*/
/*contentsブロック*/
#contents {
	clear: both;margin: 0 auto;
	padding: 95px 10%;	/*上下、左右へのブロック内の余白*/
	max-width: 1400px;	/*最大幅。これ以上広がらない。*/
}
/*見出し(h2)タグ*/
#contents h2 {
	margin-bottom: 20px;
	font-size: 40px;	/*文字サイズ*/
	border-bottom: 1px solid #fff;	/*枠線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}
/*見出し(h2)タグ内のspanタグ。小文字の設定。*/
#contents h2 span {
	 margin-bottom: 10px;
	 display: block;
	 font-size: 13px;		/*文字サイズ*/
	 letter-spacing: 0.5em;	/*文字間隔を少しだけ広くとる設定*/
	 margin-top: -10px;		/*大きな文字との余白が広すぎるので、ちょっと詰める。*/
}
#contents h2.sml {
	margin-bottom: 20px;
	font-size: 28px;	/*文字サイズ*/
	border-bottom: 1px solid #fff;	/*枠線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}

/*見出し(h3)タグ*/
#contents h3 {
	margin-bottom: 20px;
	font-size: 20px;	/*文字サイズ*/
	background: url(../images/arrow1.png) no-repeat left center / 18px;	/*背景画像の読み込み。18pxは画像の幅。*/
	padding: 0 30px;	/*上下、左右への余白*/
}
/*段落(p)タグ*/
#contents p {
	padding: 0 30px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}
#contents section + section {
	clear: both;
	padding-top: 40px;
}

/*メンバーボックス設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list_m {
	position: relative;overflow: hidden;
	margin-bottom: 10px;	/*ボックス同士の上下間の余白*/
	margin-left: 3%;	/*ボックス左の余白*/
	margin-right: 3%;	/*ボックス右の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白。変更する際は、下の「#main .list_m a」のmarginとpaddingの数字も変更する。*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
	box-shadow: 0px 2px 5px #ccc;	/*影の設定。右・下・ぼかし幅・色の設定*/
}
.list_m a {
	overflow: hidden;display: block;text-decoration: none;
	color: #666666;
	margin: -10px;	/*ボックス内の余白。変更する際は、上の「#main .list_m」のpaddingの数字も変更する。※必ずマイナス記号をつけておく。*/
	padding: 10px;	/*ボックス内の余白。変更する際は、上の「#main .list_m」のpaddingの数字も変更する。*/
	background: linear-gradient(#FFF, #eee);	/*グラデーション*/
}
/*マウスオン時設定*/
.list_m a:hover {
	background: #FFD24D; /*マウスオン時の背景色*/
	color: #000000;
}
/*ボックスにリンク指定がされた場合に出る「→」マーク*/
.list_m a::before {
	content: "→";	/*この文字を出す。他の文字に変えても可だが機種依存文字は化けるので使わない。*/
	position: absolute;
	right: 20px;	/*ボックスの右から20pxの場所に配置*/
	top: 5px;		/*ボックスの上からの場所に配置*/
	background: #999;	/*背景色*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	border-radius: 4px;		/*角丸のサイズ*/
	width: 30px;		/*幅*/
	line-height: 30px;	/*高さ*/
	text-align: center;
}
.list_m a:hover::before {
	background: #000;	/*マウスオン時の「→」マークの背景色*/
}

/*ボックス内のh4（見出し）タグ設定*/
.list_m h4 {
	font-size: 16px;	/*文字サイズ*/
	color: #333333;		/*文字色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	font-weight: bold;	/*太字にする設定*/
}

/*ボックス内のp（段落）タグ設定*/
#mem .list_m p {
	padding: 0px;
	margin-left: 10px;
	margin-top: 10px;
}


/*listブロック
---------------------------------------------------------------------------*/
/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 30%;			/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: #000;	/*背景色*/
}
.list a {
	display: block;
        color: #fff;
	text-decoration: none;
}
/*マウスオン時*/
.list a:hover {
	color: #fff;	/*文字色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力します。*/
	position: absolute;
	right: 10px;	/*右からの配置場所指定*/
	top: 10px;		/*上からの配置場所指定*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 30px;	/*行間。下のwidthと揃えて下さい。*/
	width: 30px;		/*幅。上のline-heightと揃えて下さい。*/
	border-radius: 50%;	/*角丸の指定。円形になります。*/
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 0.6;	/*リンクを指定した際は60%だけ色を出す。*/
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 1;		/*リンクを指定した際のマウスオン時に色を100%出す。*/
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;	/*下からの配置場所指定。*/
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	background: #000;	/*背景色*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px 0;	/*上下、左右への余白*/
}

/*footerブロック
---------------------------------------------------------------------------*/
/*footerブロック*/
footer {
	clear: both;
	text-align: center;
	background: #000;
	color: #fff;	/*文字色*/
}
footer a {
text-decoration: none;
color: #fff;
}

footer p {
	font-size: 12px;
}

footer .pr {display: block;}

/*news.html
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	padding: 0px 30px;		/*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
	float: left;	/*左に回り込み*/
	width: 9em;	/*dtの幅*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる設定*/
}
/*記事設定*/
#new dd {
	padding-left: 9em;	/*左側に空ける余白*/
	border-bottom: 1px solid #333;	/*下線の幅、線種、色*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブルの見出し（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブルの見出し（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	vertical-align: top;
}
/*ta1の左側ボックス*/
.ta1 th {
	/*width: 140px;		幅*/
	text-align: center;	/*センタリング*/
	background: #333333;
	color: #FFFFFF;
}
.ta1 td.brk{
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background: #eeeeee;
}

/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	outline: none;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #111;	/*背景色（古いブラウザ用）*/
	background: linear-gradient(#222, #000);/*背景グラデーション*/
	color: #ccc;	/*文字色*/
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #e8da00;
	color:#000;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #000;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
	display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;/*z-index: 100;*/position: fixed;animation-name: scroll;animation-duration: 1s;animation-fill-mode: forwards;
	width: 40px;		/*ボタンの幅*/
	line-height: 40px;	/*ボタンの高さ*/
	bottom: 20px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 3%;			/*ウィンドウの右から3%の場所に配置*/
	background: #555;	/*背景色*/
	color: #fff;
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
}
/*マウスオン時の背景色*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

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

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

/*見出し
---------------------------------------------------------------------------*/
.midashi_b1 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	padding: 5px 20px;		/*上下、左右への余白*/
	background: #333;	/*背景色*/
	color: #FFF;		/*文字色*/
	border-radius: 4px;	/*角丸のサイズ*/
}

.midashi_b1::first-letter {
	border-left: 3px solid rgba(255,255,255,0.5);	/*左側の線の幅、線種、色。255,255,255は白の事で0.5は透明度50%の事。*/
	padding-left: 20px;	/*線とテキストとの余白*/
}

.midashi_b2 {
	font-size: 18px;	/*文字サイズ*/
	padding: 5px 20px;	/*文字の上下 左右の余白*/
	background: linear-gradient(#f9f9f9, #eee);	/*グラデーション*/
	border-left: solid 5px #333333;/*左線*/
	border-bottom: solid 1px #d7d7d7;/*下線*/
	margin-bottom: 20px;
}

.midashi_w1 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下にとるスペース*/
	font-size: 18px;	/*文字サイズ*/
	padding: 6px 20px;		/*上下、左右への余白*/
	background: linear-gradient(#fff, #eee);	/*グラデーション*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
}

.midashi_line {
	color: #364e96;/*文字色*/
	padding: 0.5em 0;/*上下の余白*/
	border-top: solid 3px #364e96;/*上線*/
	border-bottom: solid 3px #364e96;/*下線*/
	margin-bottom: 10px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #222;padding: 5px 10px;border-radius: 4px;border: 1px solid #333;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #ffcc00 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.dn {display: none;}
.sh {display: none;}

img.center_m {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

img.center_s {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 25%;
}

/* 研究内容
---------------------------------------------------------------------------*/

img.img_r_ss {
	margin-left: 30px;
	float: right;
	width: 18%;
}

img.img_r_s {
	margin-left: 30px;
	float: right;
	width: 33%;
}
img.img_r {
	margin-left: 30px;
	float: right;
	width: 35%;
}


div.clear{
	clear: both;
	margin: 0 0 10px 0;
}


/* 研究内容　flex
---------------------------------------------------------------------------*/

.items {
  display: flex;
}
.items .item-img-tan {
  width: 33%;
}
.items .item-body-tan {
  width: 67%;
}
.items .item-img-nis {
  width: 18%;
}
.items .item-body-nis {
  width: 64%;
}
.items .item-img-pom {
  width: 35%;
}
.items .item-body-pom {
  width: 64%;
}



/* 業績ブロック
---------------------------------------------------------------------------*/

img.float_r {
	margin-left: 30px;
	float: right;
	width: 35%;
}
img.float_r_s {
	margin-left: 30px;
	float: right;
	width: 18%;
}

div.achievements_inner{
	margin-bottom:20px;
}

div.achievements_inner div{
	background-color:#FFFFFF;
	position:relative;
	padding:20px 0;
	padding-left:50px;
	border-bottom:1px #666666 solid;
	overflow:auto;
}

div.achievements_inner div span{
	position:absolute;top:20px;left:2px;
	width:38px;
	text-align:right;
	display:block;
	font-weight: bold;
}

div.achievements_inner div p{
	font-size: 14px;
	line-height:1.5;
	padding:0 15px;
	/* border-left:1px #CCCCCC solid;*/
}

div.achievements_inner div img{
	display: block;
	max-width:40%;
	margin: 0 auto;
	margin-left: 20px;
	margin-right: auto;
}


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

/*contentsブロック*/
#contents {
	padding: 120px 10%;	/*上下、左右へのブロック内の余白*/
}

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

/*contentsブロック*/
#contents {
	padding: 150px 10%;	/*上下、左右へのブロック内の余白*/
}

}

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

/*header
---------------------------------------------------------------------------*/
/*headerブロック*/
header {
	position: absolute;
	text-align: center;
}
/*ロゴ画像*/
header #logo {
	float: none;
	margin: 0 auto 10px;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
/*@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;
	z-index: 3;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;		/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 10px 3%;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 10px;/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 18px;		/*上からの配置場所*/
	right: 10px;	/*右からの配置場所*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;
	border: 1px solid #fff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: rgba(0,0,0,0.5) url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*headerアイコン
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	float: none;
	margin-right: 0;
}

/*contents（headerとfooter以外のメインとなるブロック。）
---------------------------------------------------------------------------*/
/*contentsブロック*/
#contents {
	padding: 120px 3% 50px;	/*上下、左右へのブロック内の余白*/
}

/*news.html
---------------------------------------------------------------------------*/
/*日付設定*/
#new dt {
	float: none;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 28px;}
.sh {display:block;}
.pc {display:none;}


/* 研究内容　flex
---------------------------------------------------------------------------*/
.items {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.items .item-img-tan{
	width: 85%;
}
.items .item-body-tan {
	width: 100%;
}
.items .item-img-nis {
	width: 50%;
}
.items .item-body-nis {
	width: 100%;
}
.items .item-img-pom{
	width: 85%;
}
.items .item-body-pom {
	width: 100%;
}

}

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

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 305px;	/*画像幅*/
	margin-left: 3px;	/*左側に空けるスペース*/
}

/*アイコン画像の設定*/
header .icon img {
	width: 80px;		/*画像の幅*/
	margin-left: 3px;	/*画像同士の余白*/
}

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;
	font-size: 2.93vw;
}

/*contents（headerとfooter以外のメインとなるブロック。）
---------------------------------------------------------------------------*/
/*見出し(h2)タグ*/
#contents h2 {
	font-size: 22px;	/*文字サイズ*/
	letter-spacing: normal;
}
/*見出し(h2)タグ内のspanタグ。小文字の設定。*/
#contents h2 span {
	font-size: 11px;
	letter-spacing: 0.2em;
}
#contents h2.sml {
	font-size: 20px;	/*文字サイズ*/
	letter-spacing: normal;
}
/*見出し(h3)タグ*/
#contents h3 {
	font-size: 18px;	/*文字サイズ*/
	background: url(../images/arrow1.png) no-repeat 8px center / 14px;
	padding: 0 10px 0 25px;	/*上、右、下、左への余白*/
}
/*段落(p)タグ*/
#contents p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}
#contents section + section {
	padding-top: 20px;
}

footer p {
	font-size: 9px;
}

div.achievements_inner div p{
	font-size: 12px;
	line-height:1.5;
	padding:0 15px;
}

.list_m h4 {
	font-size: 14px;	/*文字サイズ*/
	color: #333333;		/*文字色*/
	border-bottom: 1px solid #d2d2d2;	/*下の線の幅、線種、色*/
	font-weight: bold;	/*太字にする設定*/
}

/*listブロック（works.htmlで使用）
---------------------------------------------------------------------------*/
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	right: 2px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	line-height: 20px;	/*行間。下のwidthと揃えて下さい。*/
	width: 20px;		/*幅。上のline-heightと揃えて下さい。*/
}
/*h4タグ*/
.list h4 {
	padding: 0;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/

/*テーブルの見出し（※caption）*/
.ta1 caption {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: left;		/*文字を左寄せ*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブルの見出し（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1設定*/
.ta1 {
	table-layout: fixed;
	width: 380px;
	margin: 0 auto 5px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 5px;	/*ボックス内の余白*/
vertical-align: top;
}
/*ta1の左側ボックス*/
.ta1 th {
	/*width: 140px;		幅*/
	text-align: center;	/*センタリング*/
	background: #333333;
	color: #FFFFFF;
}
.ta1 td.brk{
	text-align: center;	/*センタリング*/
	font-weight: bold;
	background: #eeeeee;
}


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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 20px;}

img.center_m {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
}

img.center_s {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 40%;
}


/* 研究内容
---------------------------------------------------------------------------*/

img.img_r_ss {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 40%;
}

img.img_r_s {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
}
img.img_r {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
}

}