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

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
}
.hd {
	padding: 20px 10px 10px
}
.hd_logo {
	display: flex;
	align-content: center;
	align-items: center;
}
.hd_logo a {
	position: relative;
	display: block;
	color: #333;
	text-decoration: none;
}
.hd_logo::before {
	content:  url(../images/logo.png);
	display: inline-block;
}
.hd_logo a span {
	display: block;
	margin: 0 0 0 5px;
}
.hd_logo a .title {
	font-size: 24px;
}
.hd_logo a .title_sub {
	font-size: 0.8em;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	background: #0c6294;
	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
}
.nav_list>li>a {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	display: block;
	padding: 1em 1em 1em 1.5em;
	text-decoration: none;
	position: relative
}
.nav_list>li>a:hover,
.nav_list>li>a.current{
	background-color: rgba(0, 0, 0, 0.2)
}
.nav_list>li>a::after {
	content: attr(data-text);
	display: block
}
.nav_list>li>a img {
	display: none
}
.nav_clist>li>a {
	background-color: rgba(0, 0, 0, 0.4);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 13px;
	padding: 1em 1em 1em 2em;
	text-decoration: none
}
.nav_clist>li>a:hover, .nav_clist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
.nav_glist>li>a {
	background-color: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	display: block;
	font-size: 11px;
	padding: 1em 1em 1em 3em;
	text-decoration: none
}
.nav_glist>li>a:hover, .nav_glist>li>a.current {
	background-color: #000;
	box-shadow: 0 0 4px rgba(255, 0, 0, 0.2)
}
.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: 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.sp_active::after {
	content: 'CLOSE';
	bottom: -25px;
	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 0 0
}
.con_title {
	position: relative;
	padding: 30px 0;
	background: url(../images/i_img.png) no-repeat center center;
	background-size: cover;
}
.con_title:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255, 255, 255, 0.7);
}
.con_title h1, .con_title .archivement_nav {
	position: relative;
	color: #014370;
	font-size: 34px;
	text-align: center;
	letter-spacing: 0.05em;
	z-index: 1;
}
.main {
	margin-bottom: 30px
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: url(../images/ft_bg.jpg) no-repeat center top;
	background-size: cover;
}
.ft {
	padding: 30px 0;
}
.ft_con {
	margin: 0 15px 20px;
	padding: 25px 15px;
	background: rgba(255,255,255,0.8);
	border-radius: 10px;
}
.ft_con h2 {
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}
.ft_con h2 span {
	display: inline-block;
	padding: 0 30px;
	background: -moz-linear-gradient(top, rgba(44,150,220,1) 1%, rgba(12,98,148,1) 100%);
	background: -webkit-linear-gradient(top, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	background: linear-gradient(to bottom, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	color: #fff;
	font-size: 26px;
	letter-spacing: 0.05em;
	border: 2px solid #147abc;
	border-radius: 40px;
	box-shadow: inset 0 0 5px #fff;
}
.ft_con_list div {
    position: relative;
    display: flex;
	align-items: center;
	margin: 0 0 20px;
	padding: 0 0 0 35px;
	color: #015287;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
}
.ft_con_list div:last-of-type {
	margin-bottom: 0;
}
.ft_con_list div:first-of-type::before {
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	margin: 0 0 5px;
	width: 30px;
	height: 30px;
	background: url(../images/icon_ft_01.png) no-repeat left center;
	background-size: contain;
}
.ft_con_list div:nth-of-type(2)::before {
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	margin: 0 0 5px;
	width: 30px;
	height: 30px;
	background: url(../images/icon_ft_02.png) no-repeat left center;
	background-size: contain;
}
.ft_con_list div:last-of-type::before {
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	margin: 0 0 5px;
	width: 30px;
	height: 30px;
	background: url(../images/icon_ft_03.png) no-repeat left center;
	background-size: contain;
}
.ft_con_list div p {
	margin: 0 0 0 5px;
}
.ft_con_list div p span {
	display: block;
	color: #333;
	font-size: 12px;
}
.ft_copy {
	position: relative;
	padding: 30px 0;
	background: #015287;
	color: #fff;
	font-size: 12px;
	text-align: center
}
.ft_copy:before {
	position: absolute;
	top: -20px;
	left: 0;
	content: "";
	width: 100%;
	height: 20px;
	background: url(../images/body_bg_02.png) repeat-x;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background: -moz-linear-gradient(top, rgba(199,206,216,1) 0%, rgba(159,170,183,1) 100%);
	background: -webkit-linear-gradient(top, rgba(199,206,216,1) 0%,rgba(159,170,183,1) 100%);
	background: linear-gradient(to bottom, rgba(199,206,216,1) 0%,rgba(159,170,183,1) 100%);
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 14px;
	height: 14px;
	margin-top: 5px;
	transform: rotate(45deg);
	position: relative;
}
.pt_btn::before,
.pt_btn::after{
	background-color: #FFF;
	content: "";
	display: block;
	top: 0;
	left: 0;
	position: absolute;
}
.pt_btn::before{
	width: 5px;
	bottom: 0;
}
.pt_btn::after{
	height: 5px;
	right: 0;
}
.pt_text {
	display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
}
.index_main h2 {
	display: flex;
	justify-content: center;
	margin: 0 0 20px;
}
.index_main h2 span {
	display: inline-block;
	padding: 0 30px;
	background: -moz-linear-gradient(top, rgba(44,150,220,1) 1%, rgba(12,98,148,1) 100%);
	background: -webkit-linear-gradient(top, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	background: linear-gradient(to bottom, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	color: #fff;
	font-size: 26px;
	letter-spacing: 0.03em;
	border: 2px solid #147abc;
	border-radius: 40px;
	box-shadow: inset 0 0 5px #fff;
}
.index_greet > div {
	padding: 0 10px 40px;
}
.index_research {
	position: relative;
	background:#edf1f4;
}
.index_research::before {
	position: absolute;
	top: -20px;
	left: 0;
	content: "";
	width: 100%;
	height: 20px;
	background: url(../images/body_bg_01.png) repeat-x;
}
.index_research > div {
	padding: 20px 10px 30px;
}
.index_research_list {
}
.index_research_list > a {
	display: block;
	width: 100%;
	margin: 0 0 40px;
}
.index_research_list > a > figure {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 10px;
}
.index_research_list > a > h3 {
	color: #666;
	font-size: 18px;
	text-align: center;
	line-height: 1.4;
}
.index_research_list > a > h3:first-letter {
	color:#147abc;
}
.index_research_btn {
    width: 150px;
    margin: 20px auto 0;
}
.index_research_btn a {
    position: relative;
    display: block;
    padding: 5px 5px 5px 0;
    background: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid #015287;
    border-radius: 20px;
    box-shadow: 0 3px 0 #015287;
}
.index_research_btn a:hover {
	top: 3px;
	box-shadow: none;
}
.index_research_btn a:after {
    position: absolute;
    content: "";
    margin: 7px 0 0 7px;
    display: inline-block;
    border-style: solid;
    border-width: 4px 0 4px 6px;
    border-color: transparent transparent transparent #015287;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.research_list {
	padding: 20px 0;
}
.research_list > div {
	width: 100%;
	margin: 0 0 40px;
}
.research_list > div > figure {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 0 10px;
}
.research_list > div > p {
	color: #666;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
}
.research_list > div > p:first-letter {
	color:#147abc;
}

.field_list img {
    width: 100%;
    height: 220px!important;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}


.field_list figure{
	position: relative;
}

.field_list a:after{
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 0 10px 10px #fff;
}

.archivement_nav{
	margin: 0 auto;
	overflow: hidden;
}

.archivement_nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
}

.archivement_nav_list li{
	font-size: 1.2rem;
	width: 48%;
	margin-bottom: 0.2rem;
}

.archivement_nav_list li a{
	width: 85%;
	text-decoration: none;
	margin-right:1.1rem;
	display: inline-block;
	padding: 5px 12px 0;
	margin-right: 3px;
	background: -moz-linear-gradient(top, rgba(44,150,220,1) 1%, rgba(12,98,148,1) 100%);
	background: -webkit-linear-gradient(top, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	background: linear-gradient(to bottom, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	color: #fff;
	border: 2px solid #147abc;
	border-radius: 40px;
	box-shadow: inset 0 0 5px #fff;
}

.archivement_nav_list li a:hover{
	opacity: 0.7;
}



.archivement_floatR{
	float: right;	
}


/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	padding: 0 10px;
	line-height: 1.6;
	word-wrap: break-word
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h2 {
	display: flex;
	justify-content: center;
	margin: 0 0 10px;
}
.mcon h2 span {
	display: inline-block;
	padding: 0 30px;
	background: -moz-linear-gradient(top, rgba(44,150,220,1) 1%, rgba(12,98,148,1) 100%);
	background: -webkit-linear-gradient(top, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	background: linear-gradient(to bottom, rgba(44,150,220,1) 1%,rgba(12,98,148,1) 100%);
	color: #fff;
	font-size: 26px;
	border: 2px solid #147abc;
	border-radius: 40px;
	box-shadow: inset 0 0 5px #fff;
}
.mcon h3 {
	position: relative;
	margin: 16px 0;
	padding-bottom: .3em;
	font-size: 1.4em;
	border-bottom: 3px solid #ccc;
}
.mcon h3::after {
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 3px;
	background-color: #3498db;
}
.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
}
