/******************************************************************************
******************************************************************************
**
** 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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	position: relative;	
	/* サイト全体のフォントを変える場合にはこちらの先頭にフォント名を追加してください */
	/* 例) font-family:'MS 明朝' , "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
	font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
	background-color: #052D5D;
	margin-bottom: 5px;
}
.hd {
	position: relative;
	height: 100px;
}
.hd_l{
	height: 100px;
}
.hd_logo {
	padding: 10px 12px 12px;
}
.hd_logo a {
	color: #fff;
	text-decoration: none;
	position: relative;
	font-size: 15px;
	font-weight: normal;
}
.hd_logo a span.ttl{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	margin-top: 13px;
}
.hd_logo a span.en{
	font-family: 'Arial';
	font-size: 12px;
	display: block;
	width: 200px;
	line-height: 1.2rem;
	position: absolute;
	top: 25px;
	left: 8rem;
}
.lang a{
	display: block;
	width: 100px;
	height: 16px;
	text-align: center;
	padding: 0px 5px 5px 23px;
	margin: 0 0 0 auto;
	background-color: #052D5D;
	border-left: 1px solid #052D5D;
	font-weight: normal;
	color: #fff;
	text-decoration: none;
	position: relative;
}
.lang a:before{
	content: "";
	display: block;
	width: 30px;
	height: 21px;
	background-color: #fff;
	transform: skewX(40deg);
	position: absolute;
	top: 0;
	left: -21px;
}
.lang a:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #fff;
	position: absolute;
	top: 3%;
	left: 20px;
}
.lang span{
	position: absolute;
	top: -4px;
	right: 12px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	background: #052D5D;
	color: #fff;
	height: calc(100% + 500px);
	padding-bottom: 500px;
	z-index: 110;
	width: 70%;
	overflow-x: none;
	overflow-y: auto;
	top: 0px;
	right: -70%;
	position: fixed;
	transition: All 0.5s ease
}
.nav_list>li>a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 1em 1em 1em 1.5em;
	text-decoration: none;
	position: relative;
	background: #052D5D;

}
.nav_list>li>a:hover {
	background: rgba(255, 255, 255, 0.2);
}

.nav_list li span{
	font-size: 0.8em;
	font-weight: normal;
}

.sp_nav_open {
	right: 0 !important
}
.sp_nav_trigger {
	cursor: pointer;
	z-index: 1000;
	position: fixed !important;
	top: 25px;
	right: 15px;
	margin-top: -5px;
	width: 36px;
	height: 45px;
	background-color: #052D5D;
	box-shadow: 0 0 0 5px #052D5D;
	border-radius: 2px;
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
	transition: all .4s;
	box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
	top: 2px
}
.sp_nav_trigger span:nth-of-type(2) {
	top: 12px
}
.sp_nav_trigger span:nth-of-type(3) {
	top: 22px
}
.sp_nav_trigger::after {
	position: absolute;
	left: 0;
	bottom: -2px;
	content: 'MENU';
	display: block;
	width: 100%;
	padding-top: 20px;
	color: #fff;
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
	content: 'CLOSE';
	bottom: -2px;
	color: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
	opacity: 0;
	background: #fff
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
	background: #fff
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con {
	padding: 20px 10px 30px
}
.main {
	margin-bottom: 30px
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft {
	background-color: #E5E5E5;
	padding: 30px 70px;
}

.ft_copy {
	font-size: 10px;
	text-align: center
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 4px;
	background-color: #052D5D;
	bottom: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 62px;
	right: 10px;
	position: fixed;
	width: 45px;
	font-size: 10px;
	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 {
	margin-bottom: 20px;
}
.index_greet{
	margin-bottom: 30px;
}
.index_greet p{
	font-size: 15px;
}

.index_news h2 {
	background-color: #052D5D;
	height: 40px;
	color: #fff;
	margin: 0 0 10px 10px;
	padding-left: 4rem;
	padding-top: 0.7rem;
	position: relative;
	font-size: 15px;
	font-weight: bold;
}
.index_news h2:before{
	content: url(../images/i_icon.png);
	position: absolute;
	top: -3px;
	left: -15px;
}

.index_news h2 span{
	font-size: 15px;
	font-weight: normal;
}

.index_news_item {
	border-bottom: 1px dotted #052D5D;
	align-content: space-between;
	padding: 10px;
	width: 100%;
}
.index_news_item_date {
	color: #052D5D;
	font-weight: bold;
}

.index_news_item_ttl {
	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_slider_bg{
	height: auto;
	margin-top: 25px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word;
	/* コンテンツ部分全体のフォントを変える場合には下記のコメントアウトを外し、先頭にフォント名を追加してください */
	/* 	font-family:"ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
	/* コンテンツ部分全体のフォントサイズを変える場合には下記のコメントアウトを外し、数値を変更してください */
	font-size: 13px;
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h2 {
	background-image: url(../images/h2_bg.png);
	width: 100%;
	height: 71px;
	color: #005479;
	font-size: 23px;
	font-weight: bold;
	padding-top: 20px;
	padding-left: 100px;
	margin-bottom: 10px;
	border-right: 1px solid #0080A0;
}
.mcon h2 span{
	font-size: 1.1em;
	font-weight: normal;
	padding-left: 1rem;
}

.mcon h3 {
	background-color: #052D5D;
	color: #fff;
	margin-bottom: 20px;
	padding: 10px 1rem;
	position: relative;
}
.mcon h4 {
	font-size: 1.1em;
	font-weight: bold;
	position: relative;
	padding-left: 2.6rem;
}
.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: 1rem;
}
.mcon h4:after{
	content: "";
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 3px;
	border: 1px solid #052D5D;
	background-color: #E5E5E5;
	position: absolute;
	bottom: -5px;
	left: 0;
}
.mcon h4.member_staff{
	margin-bottom: 1rem;
}

.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 {
	line-height: 1.7rem;
	margin-bottom: 1.1em;
	padding: 0 1rem;
}
.mcon ul {
	margin-top: 1em;
	margin-bottom: 2em
}
.mcon ul li {
	list-style-type: none;
	margin-left: 1em;
	margin-bottom: 1em
}
.staff{
	margin-bottom: 2.2rem;
}
.member_box .staff_img{
	text-align: center;
	margin: 0 1rem 1rem;
}
.research section{
	margin-bottom: 2.5rem;
}
.activity section{
	margin-bottom: 50px;
}
.activity ul{
	margin: 0 1rem;
}
.activity ul li{
	list-style: disc;
}