/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- 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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	position: relative;
	/* サイト全体のフォントを変える場合にはこちらの先頭にフォント名を追加してください */
	/* 例) font-family:'MS 明朝' , 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif; */
	font-family:'ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
.w_base {
	margin: 0 auto;
	width: 100%;
	max-width: 1300px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	background-color: #052D5D;
	height: 130px;
}
.hd_l{
	height: 130px;
}
.hd {
	position: relative;
}
.hd_logo {
	position: absolute;
	top: 15px;
	left: 0px ;
}
.hd_logo a {
	color: #fff;
	text-decoration: none;
	position: relative;
	font-size: 1.3em;
	font-weight: normal;
}
.hd_logo a span.ttl{
	display: inline-block;
	font-size: 1.3em;
	font-weight: normal;
	margin-top: 8px;
}
.hd_logo a span.en{
	font-family: 'Arial';
	font-size: 0.6em;
	display: block;
	width: 270px;
	line-height: 1.2rem;
	position: absolute;
	top: 32px;
	left: 10.5rem;
}
.lang a{
	display: block;
	box-sizing: border-box;
	border: 1px solid #fff;
	font-weight: normal;
	padding: 8px 10px;
	color: #fff;
	margin-top: 49px;
	text-decoration: none;
	transition: 0.3s;
}
.lang a:hover{
	color: #052D5D;
	background-color: #fff;
}


/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	position: absolute;
	top: 49px;
	right: 10%;
}
.nav_list {
	display: flex;
	justify-content: space-between;
}
.nav_list li{
	font-size: 1em;
	font-weight: bold;
}
.nav_list li span{
	font-size: 0.8em;
	font-weight: normal;
}
.nav_list a {
	transition: All 0.5s ease;
	position: relative;
}
.nav_list li a:hover:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid #fff;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.nav_list>li>a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
}
.nav_list li a.current:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 8px solid #fff;
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background-color: #E5E5E5;
	height: 90px;
	margin-top: 80px;
}
.ft {
	padding: 30px 0;
}
.ft_copy {
	font-size: 0.8em;
	text-align: center
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 4px;
	background-color: #052D5D;
	bottom: 142px;
	cursor:s pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 62px;
	right: 64px;
	position: fixed;
	width: 45px;
	font-size: 0.8em;
	color: #fff;
	text-align: center;
	line-height: 1rem;
	padding-top: 1.2rem;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}

.pt:before,
.pt:after{
	content: "";
	display: block;
	position: absolute;
}

.pt:before{
	width: 2px;
	height: 15px;
	background-color: #fff;
	top: 11%;
	left: 47%;
}

.pt:after{
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: rotate(45deg);
	top: 11%;
	left: 40%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
.index_greet{
	margin: 50px 0 40px;
}
.index_greet p{
	font-size: 1.1em;
}
.index_news{
	margin: 0;
}

.index_news h2 {
	background-color: #052D5D;
	height: 40px;
	color: #fff;
	margin-bottom: 30px;
	margin-left: 15px;
	padding-left: 4rem;
	padding-top: 0.7rem;
	position: relative;
	font-size: 1em;
}
.index_news h2:before{
	content: url(../images/i_icon.png);
	position: absolute;
	top: -3px;
	left: -15px;
}

.index_news_item {
	border-bottom: 1px dotted #052D5D;
	display: flex;
	align-content: space-between;
	padding: 10px;
	width: 100%;
}
.index_news_item_date {
	width: 130px;
	color: #052D5D;
	font-weight: bold;
}

.index_news_item_ttl {
	width: calc(100% - 140px);
	color: #052D5D;
	font-weight: bold;
}
.index_news_item_ttl ul{
	color: black;
	font-weight: normal;
	padding-left: 1.5rem;
}
.index_news_item_ttl ul li{
	margin: 5px 0 10px; 
	position: relative;
}
.index_news_item_ttl ul li:before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background-color: #052D5D;
	position: absolute;
	top: 4px;
	left: -17px;
}

.index_news_item_icon_new {
	display: inline-block;
	color: #C00;
	font-size: 0.9em;
	font-weight: bold;
	margin-left: 0.3em
}
.index_news_item_icon_new:before {
	content: "NEW"
}
.index_news_scrl {
	max-height: 350px;
	overflow: auto
}
.index_slider_bg {
	margin-top: 30px;
}
.index_slider img{
	margin: 0 auto;
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
*/

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word
	/* コンテンツ部分全体のフォントを変える場合には下記のコメントアウトを外し、先頭にフォント名を追加してください */
	/* 	font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif; */
	/* コンテンツ部分全体のフォントサイズを変える場合には下記のコメントアウトを外し、数値を変更してください */
	font-size: 1em;
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h2 {
	background-image: url(../images/h2_bg.png);
	width: 100%;
	max-width: 1300px;
	height: 71px;
	text-align: center;
	color: #005479;
	font-size: 1.4em;
	font-weight: bold;
	padding-top: 20px;
	margin-bottom: 30px;
	margin-top: 30px;
	border-right: 1px solid #0080A0;

}
.mcon h2 span{
	font-size: 1em;
	font-weight: normal;
	padding-left: 1rem;
}

.mcon h3 {
	background-color: #052D5D;
	height: 40px;
	color: #fff;
	margin-bottom: 20px;
	padding: 10px 25px;
	position: relative;
	font-size: 1em;
}
.mcon h4 {
	font-size: 1.2em;
	font-weight: bold;
	position: relative;
	padding-left: 0.5rem;
	margin: 40px 0 20px 0;
}
.mcon h4:before{
	content: "";
	display: block;
	box-sizing: border-box;
	width: 14px;
	height: 14px;
	</* border-radius: 14px; */>
	border: 3px solid #052D5D; 
	position: absolute;
	top: 4px;
	left: 12px;
}
.mcon h4:after{
	content: "";
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 1300px;
	height: 3px;
	border: 1px solid #052D5D;
	background-color: #E5E5E5;
	position: absolute;
	bottom: -5px;
	left: 0;
}

.mcon h4.member_staff{
	margin-top: 10px;
}
.mcon h4.member_staff:after{
	width: 100%;
}
.mcon h5{
	font-size: 1.1em;
	margin-left: 0.5rem;
}

.mcon h6 {
	font-size: 1.1em;
	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 {
	line-height: 1.7rem;
	margin-bottom: 1.1em;
	padding: 0 10px;
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 3.6em
}
.mcon ul li {
	list-style-type: none;
	margin-left: 1em;
	margin-bottom: 1.5em
}
.staff{
	margin-bottom: 3.5rem;
}
.staff .staff_img{
	margin-top: 5px;
}

.staff p{
	margin-bottom: 15px;
}
.member_box{
	display: flex;
	justify-content: flex-start;
	margin: 0 0 1rem 0;
}
.member_box_con{
	margin-left: 1rem;
	padding: 0.5rem 0;
	width: 80%;
}
.m_kougi{
	margin-bottom: 20px!important;
}

.research section{
	margin-bottom: 3.5rem;
}
.research section p{
	padding: 0;
}

.activity section{
	margin-bottom: 50px;
}
.activity ul{
	margin: 0 1rem;
}
.activity ul li{
	list-style: disc;
}

.access section p{
	padding: 0;
}.mcon.research section img {
    text-align: center;
}
.wi {
}
.lb {
}
