/******************************************************************************
******************************************************************************
**
** style.cssにおいて
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	background: #EAF2F5;
	color: #333;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif!important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
}
#hd {
	padding: 10px 5px;
	background: -moz-linear-gradient(left, #0c7cbb 0%, #2b96ca 100%);
	background: -webkit-linear-gradient(left, #0c7cbb 0%,#2b96ca 100%);
	background: linear-gradient(to right, #0c7cbb 0%,#2b96ca 100%);
}
#hd h1 {
	padding: 0 0 0 50px;
	background: url(../images/logo_sp.png) no-repeat;
	background-size: 45px;
}
#hd h1 a {
	color: #FFF;
	font-size: 13px;
	text-decoration: none;
	text-shadow: 1px 0px 1px #333;
}
#hd h1 #hd_sp span {
	display: block;
	font-size: 24px;
	font-weight: bold;
}
#hd h1 img {
	display: none;
}
#hd_right{
	display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
#menu {
	box-shadow: inset 0 0 5px 5px #0a2b46;
	background: #04375f;
	color: #fff;
	height: calc(100% + 500px);
	padding-bottom: 500px;
	z-index: 100;
	width: 70%;
	overflow-x: none;
	overflow-y: auto;
	top: 0px;
	right: -70%;
	position: fixed;
	transition: All 0.5s ease;
}
#menu>ul>li>a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 1em 1.5em;
	text-decoration: none;
	position: relative
}
#menu>ul>li>a:hover {
	box-shadow: inset 0 0 10px 2px rgba(0, 0, 0, 0.3)
}
#menu>ul>li>a::after {
	content: attr(data-text);
	display: block
}
#menu>ul>li>a img {
	display: none
}
.sp_nav_open {
	right: 0 !important
}
.sp_nav_trigger {
	cursor: pointer;
	z-index: 1000;
	position: fixed !important;
	top: 20px;
	right: 15px;
	margin-top: -5px;
	width: 36px;
	height: 24px
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	transition: all .4s;
	box-sizing: border-box
}
.sp_nav_trigger span:nth-of-type(1) {
	top: 0
}
.sp_nav_trigger span:nth-of-type(2) {
	top: 10px
}
.sp_nav_trigger span:nth-of-type(3) {
	bottom: 0
}
.sp_nav_trigger::after {
	position: absolute;
	left: 0;
	bottom: -20px;
	content: 'MENU';
	display: block;
	width: 100%;
	padding-top: 20px;
	color: #000;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s
}
.sp_nav_trigger.active::after {
	content: 'CLOSE';
	bottom: -25px;
	color: #fff
}
.sp_nav_trigger.active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	background: #fff
}
.sp_nav_trigger.active span:nth-of-type(2) {
	opacity: 0;
	background: #fff
}
.sp_nav_trigger.active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
	background: #fff
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
#contents {
	padding: 20px 10px 15px;
	background: #FFF;
	font-size: 14px;
}
#contents h2{
	padding: 10px;
	background: url(../images/h2.gif) #107EBD;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	border-bottom: 5px solid #64C3E1;
}
#contents h3 {
    font-size: 16px;
    font-weight: bold;
    color: #0E81C0;
    margin-top: 10px;
    margin-bottom: 10px;
}
.main {
	margin-bottom: 30px
}
.side_head {
	background-color: #EEE;
	color: #111;
	font-size: 1.6em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 10px;
	text-align: center
}
.side_nav_list li a {
	background: url(../images/icon_arrow_gray.png) no-repeat left center;
	border-bottom: 1px solid #CCC;
	color: #111;
	display: block;
	font-size: 1.4em;
	padding: 12px 10px;
	text-decoration: none
}
.side_nav_list li a:hover {
	text-decoration: underline
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
#footer {
	padding-top: 30px;
	padding-bottom: 30px;
	color: #64C3E1;
	font-size: 12px;
	text-align: center
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pagetop {
	margin: 20px 0 0;
}
.pagetop a {
    display: block;
    padding: 15px 0;
    background: #ddd;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
#oshirase {
	margin: 0 0 20px;
	background: #EAF2F5;
	border: 1px solid #CCC;
}
#oshirase h2 {
	padding: 10px;
	background: -moz-linear-gradient(left, #0c7cbb 0%, #2b96ca 100%);
	background: -webkit-linear-gradient(left, #0c7cbb 0%,#2b96ca 100%);
	background: linear-gradient(to right, #0c7cbb 0%,#2b96ca 100%);
	color:  #FFF;
	font-size: 18px;
}
#oshirase>div {
	padding: 15px;
	font-size: 14px;
}

#news img {
	width: 100%;
	height: auto;
}
.news_scroll {
	position: relative;
	width: 100%;
	height: 30vh;
	overflow: scroll;
	-webkit-overflow-scrolling:touch !important;
}
.news_scroll iframe {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
}

.index_main {
	margin-bottom: 20px;
}
.index_side {
}
.index_bnr_list li { margin-bottom:4px }
.index_bnr_list a {
	padding:16px 16px 16px 42px;
	border:1px solid #000000;
	border-radius:3px;
	display:block;
	text-decoration:none;
	background:url(../images/icon_elink_black.png) no-repeat 16px center;
	color:#000000;
}
.index_bnr_list a:hover {
	background-color:#000;
	background-image:url(../images/icon_elink_white.png);
	color:#FFF
}
.index_greet h2 {
	margin-top: 0px
}
.index_news h2 {
	margin-bottom: 0px
}
.index_news_tbl { 
	display: flex;
	flex-wrap: wrap;
}
.index_news_tbl tr{ 
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	width: 100%;
}
.index_news_tbl_date {
	background:url(../images/icon_circle_arrow_green.gif) no-repeat 0 2px;
	display: flex;
	margin-bottom: 3px;
	padding-left: 15px;
	width:100%;
}
.index_news_tbl_ttl {
	border-bottom:1px dotted #999;
	display: flex;
	padding-bottom: 10px;
}
.index_news_tbl_icon_new {
	display:inline-block;
	color:#C00;
	font-weight:bold;
	margin-left:0.5em
}
.index_news_tbl_icon_new:before { content:"NEW" }
.index_news_scrl {
	max-height: 50vh;
	overflow:auto
}
.index_slide {
	margin-bottom: 20px
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
#members>img {
	width: 100%;
	height: auto;
	margin: 0 0 20px;
}
#members .member td {
	display: block;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px solid #CCC;
}
#members .member td strong {
    color: #6CC5DF;
}

#research_01 tr {
	display: flex;
	justify-content: space-between;
}
#research_01 td {
	width: calc(100% / 3 - 10px);
}
#research_01 td img {
	width: 100%;
	height: auto;
}
#research_01 p {
	font-size: 13px;
}
#research_02,
#research_03 {
	font-size: 14px;
}
#research_02 div:first-of-type,
#research_03 div:first-of-type {
	margin: 0 0 25px;
}
#research_02 div>a>img,
#research_03 div>img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

dl.publications{
	_zoom: 1;
    overflow: hidden;
	margin: 0 0 20px;
}
dl.publications dt,
dl.publications dd{
	margin-top: -1px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(../images/line.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}
dl.publications dd>dl.publications{
	margin: 10px 0 0;
}
dl.publications dd>dl.publications dd{
	padding-bottom: 0;
	background-image: none;
}
ul.publications{
	_zoom: 1;
    overflow: hidden;
}
ul.publications li{
	margin-top: -1px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(../images/line.gif);
	background-repeat: repeat-x;
	background-position: left top;
}
ul.teaching{
	font-size: 14px;
}
ul.teaching li{
	background-image: url(../images/list_005_a-trans.png);
	background-repeat: no-repeat;
	padding-left: 15px;
	background-position: 2px 12px;
	padding-top: 5px;
	padding-bottom: 5px;
}
ul.teaching li ul{}
ul.teaching li ul li{
	background-image: url(../images/list_007_a-trans.png);
	background-position: 3px center;
	padding-left: 18px;
}

.scroll_box{
	overflow: auto;
	white-space: nowrap;
}
.scroll_box::-webkit-scrollbar{
	 height: 5px;
}
.scroll_box::-webkit-scrollbar-track{
	 background: #F1F1F1;
}
.scroll_box::-webkit-scrollbar-thumb {
	 background: #BCBCBC;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h1 {
	font-size: 20px;
	margin-bottom: 20px;
}
.mcon h2 {
	font-size: 18px;
	margin-bottom: 10px;
	margin-top: 20px;
}
.mcon h3 {
	font-size: 16px;
	margin-bottom: 8px;
	margin-top: 16px;
}
.mcon h4 {
	font-size: 1.2em;
	margin-bottom: 5px;
	margin-top: 5px;
}
.mcon h5, .mcon h6 {
	margin-bottom: 2px;
	margin-top: 5px;
}
.mcon hr {
	border: none;
	border-top: 1px dotted #000
}
.mcon iframe {
	max-width: 100%
}
.mcon img {
	max-width: 100%;
	height: auto
}
.mcon ol {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ol li {
	margin-left: 2em;
	margin-bottom: 0.5em
}
.mcon p {
	margin-bottom: 1em
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 0.5em
}
.mcon ul li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}
