/******************************************************************************
******************************************************************************
**
** 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;
}
body {
	padding-top: 65px;
}
.w_base {
	margin: 0 auto;
	width: 1120px;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	padding: 0 40px;
}
.hd_logo a {
	display: inline-block;
	padding: 20px;
}
.hd_logo img {
	width: auto;
	height: 25px;
}
.hd_lang {
	position: absolute;
	right: 0;
	top: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg {
	background: url(../images/nav_bg_bg.png) repeat-x #000;
	margin-bottom: 30px;
}
.nav {
	background: url(../images/nav_bg.png) no-repeat;
	overflow: visible;
}
.nav_list {
	display: flex;
	width: 100%;
}
.nav_list>li {
	position: relative;
	z-index: 1000;
	width: 150px;
}
.nav_list>li:nth-last-child(1) {
	width: 80px;
}
.nav_list>li::before {
	border-left: 1px solid #999;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	transform: rotate(10deg);
}
.nav_list>li:nth-last-child(1)::after {
	border-left: 1px solid #999;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	transform: rotate(10deg);
}
.nav_list>li>a {
	color: #111;
	font-weight: bold;
	font-size: 14px;
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 0.6em 0;
}
.nav_list>li>a:hover, .nav_list>li>a.current {
	color: #FF0C0C;
}
.nav_list>li>a::before, .nav_list>li>a::after {
	position: absolute;
	right: 10px;
	bottom: -2px;
	left: 10px;
	z-index: 2;
	content: '';
	transition: all .3s;
}
.nav_list>li>a::before {
	border-bottom: 2px solid #FF0C0C;
	transform: scale(0, 1);
}
.nav_list>li>a:hover::after, .nav_list>li>a:hover::before {
	transform: scale(1);
}
.nav_list>li:hover .nav_clist {
	display: block;
	animation: nav_active 1s ease 0s 1 alternate
}
.nav_list>li:nth-last-child(1)>a {
	color: #25396D!important;
}
.nav_list>li:nth-last-child(1)>a::before {
	border-bottom-color: #25396D!important;
}
.en_nav_list>li {
	width: auto!important;
}
.en_nav_list>li>a {
	padding: 0.6em 2em!important;
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
	background: url(../images/con_bg.png) no-repeat;
}
.con {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 0;
}
.main {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	padding-bottom: 80px;
}
.side {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 230px;
}
.side h3 {
	background-color: #EEE;
	color: #111;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 8px;
	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;
	padding: 12px 10px;
	text-decoration: none
}
.side_nav_list li a:hover, .side_nav_list li a.current {
	text-decoration: underline
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: url(../images/ft_bg_bg.png) no-repeat;
}
.ft {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}
.ft_adrs {
	font-size: 12px;
}
.ft_copy {
	font-size: 10px;
	text-align: right;
}
.ft_contact {
	background-color: #E7E7E7;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 200px 0 160px;
}
.ft_contact h2 {
	color: #666;
	text-shadow: 0 0 5px #FFF;
	font-size: 26px;
	text-align: center;
	margin-bottom: 40px;
}
.ft_contact_item {
	display: flex;
	margin-bottom: 30px;
}
.ft_contact_item_ttl {
	color: #666;
	font-size: 14px;
	width: 200px;
}
.ft_contact_item_ttl span.ff_en {
	display: block;
	font-size: 12px;
}
.ft_contact_item_con {
	width: 400px;
}
.ft_contact_form_text, .ft_contact_form_textarea {
	background: #fff;
	color: #111;
	font-size: 18px;
	line-height: 1.6;
	border: none;
	padding: 15px 25px;
	width: 100%;
	border-radius: 0;
}
.ft_contact_form_textarea {
	height: 200px;
}
.ft_contact_item_02 {
	margin-top: 60px;
}
.ft_contact_item_02 p {
	font-size: 12px;
	margin-bottom: 30px;
	text-align: center;
}
.ft_contact_item_02_btn {
	text-align: center;
}
.ft_contact_item_02_btn button {
	border: 1px solid #111;
	background: #333!important;
	color: #FFF;
	font-weight: bold;
	padding: 13px 80px;
}
.ft_contact_item_02_btn button:hover {
	background: #111!important;
}
.ft_nav_list {
	display: flex;
	margin-bottom: 10px;
}
.ft_nav_list li {
	margin-left: 10px;
	position: relative;
	padding: 0 3px;
}
.ft_nav_list a {
	color: #333;
	font-size: 11px;
	text-decoration: none;
}
.ft_nav_list li::before {
	border-left: 1px solid #999;
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
	left: -5px;
	transform: rotate(10deg);
}
.ft_nav_list li:nth-last-child(1)::after {
	border-left: 1px solid #999;
	content: "";
	position: absolute;
	top: 2px;
	bottom: 0;
	right: -5px;
	transform: rotate(10deg);
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #25396D;
	bottom: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	right: 30px;
	position: fixed;
	width: 60px;
	z-index: 100;
}
.pt:hover {
	opacity: 0.6;
}
.pt_btn {
	cursor: pointer;
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 8px;
	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: 7px;
	bottom: 0;
}
.pt_btn::after {
	height: 7px;
	right: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
}
.index_research_support {
	background: url(../images/index_research_support_bg.jpg) no-repeat center #E8ECF7;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	padding: 200px 0 160px;
	min-height: 100vh;
}
.index_research_support h2 {
	color: #25396D;
	text-shadow: 0 0 5px #FFF;
	font-size: 30px;
	text-align: center;
	margin-bottom: 40px;
}
.index_research_support > p {
	font-size: 16px;
	text-shadow: 0 0 5px #FFF;
	text-align: center;
}
.index_research_support_list {
	display: flex;
	justify-content: center;
	margin-top: 140px;
}
.index_research_support_list a {
	display: block;
	color: #111;
	text-decoration: none;
}
.index_research_support_list h3 {
	color: #25396D;
	font-size: 17px;
	text-align: center;
	margin-bottom: 10px;
}
.index_research_support_list h3 span {
	display: block;
	font-size: 13px;
}
.index_research_support_list p {
	font-size: 13px;
}
.index_research_support_list li {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	background-color: #FFF;
	width: 320px;
	margin: 0 20px;
	padding: 80px 20px 20px;
	position: relative;
}
.index_research_support_list li:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.index_research_support_list_thum {
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	border-radius: 26px;
	position: absolute;
	top: -80px;
	left: calc(50% - 75px);
}
.index_research_support_list_thum img {
	width: 150px;
	height: auto;
}
.index_it {
	background-image: url(../images/index_it_bg.png);
	background-repeat: no-repeat;
	background-color: #F2F2FF;
	background-size: cover;
	background-position: left top;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 200px 0 160px;
	min-height: 100vh;
}
.index_it h2 {
	color: #25396D;
	text-shadow: 0 0 5px #FFF;
	margin-bottom: 40px;
	font-size: 30px;
}
.index_it > p {
	font-size: 16px;
	text-shadow: 0 0 5px #FFF;
	text-align: center;
	margin-bottom: 80px;
}
.index_it_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 0;
	position: relative;
	margin: 0px auto;
	width: 1120px;
}
.index_it_tbl {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	display: flex;
	margin: 0px 10px 20px;
	width: calc( 50% - 20px);
}
.index_it_tbl_th {
	background-color: #EDF0F8;
	color: #25396D;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	padding: 16px 8px;
	width: 240px;
	margin-right: 1px;
}
.index_it_tbl_td {
	background-color: #FFF;
	display: flex;
	align-items: center;
	font-size: 14px;
	padding: 16px;
	width: 100%;
}
.index_it_tbl_td ul li {
	display: inline-block;
	margin-right: 16px;
}
.index_news {
	border: 1px solid #FFF;
	border-radius: 30px;
	color: #FFF;
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 480px;
	padding: 0.5em 2em;
	position: absolute;
	bottom: 40px;
	left: calc(50% - 200px);
}
.index_news_h {
	font-size: 16px;
}
.index_news_date {
	font-size: 12px;
	margin: 0 1em 0 2em;
}
.index_news_ttl {
	font-size: 12px;
}
.index_slider_bg {
	max-height: 90vh!important;
	overflow: hidden;
	position: relative;
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */

.index_slider img {
	width: 100%;
	height: 90vh!important;
	-o-object-fit: cover!important;
	object-fit: cover;
	font-family: 'object-fit: cover!important;'
}
.index_slider_iframe {
	width: 100vw;
	height: 56.25vw;
	-webkit-filter: blur( 4px);
	filter: blur( 4px);
}
.index_slider_movie::after {
	background: url(../images/index_slider_movie_bg.png) ;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.company_h1_bg {
	background-image: url(../images/company_h1_bg.png)!important;
}
.company_tbl td, .company_tbl th {
	padding: 1em 0.5em!important;
}
.rs_cs {
	color: #aaa;
	display: flex;
	font-size: 40px;
	justify-content: center;
	align-items: center;
	height: 50vh;
	margin-top: -80px;
}
.research_support_h1_bg {
	background-image: url(../images/research_support_h1_bg.png)!important;
}
.system_h1_bg {
	background-image: url(../images/system_h1_bg.png)!important;
}
.system_box, .system_box_02 {
	margin-top: 96px;
}
.system_box h2, .system_box_02 h2 {
	margin-top: 0!important;
	margin-bottom: 24px!important;
}
.system_box_thum img {
	height: auto;
	width: 500px!important;
	max-width: none!important;
}
.system_box_02 .system_box_thum {
	order: 2;
	z-index: 0;
	position: relative;
}
.system_box_con {
	background-color: rgba(255,255,255,0.8);
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	padding: 30px;
	margin: 30px -60px 0;
	opacity: 0.8;
	z-index: 10;
	position: relative;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	word-wrap: break-word;
	font-size: 15px;
}
.mcon a img:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.mcon h1 {
	background: #EDF0F8 no-repeat right;
	background-size: cover;
	color: #25396D;
	font-size: 28px;
	font-weight: normal;
	margin-left: calc( -50vw + 50% );
	margin-right: calc( -50vw + 50% );
	margin-bottom: 80px;
	padding: 80px 0 64px;
	text-align: center;
}
.mcon h1 span {
	display: block;
	visibility: hidden;
}
.mcon h2 {
	color: #25396D;
	display: flex;
	align-items: center;
	font-size: 20px;
	margin-bottom: 40px;
	margin-top: 64px;
}
.mcon h2::before {
	border-top: 1px solid #25396D;
	content: "";
	display: inline;
	flex-grow: 1;
	margin-right: 1em;
}
.mcon h2::after {
	border-top: 1px solid #25396D;
	content: "";
	display: inline;
	flex-grow: 1;
	margin-left: 1em;
}
.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 {
	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 {
	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
}
