/******************************************************************************
******************************************************************************
**
** 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 {
	background: url(../images/hd_bg_bg.png) repeat-x top left
}
.hd {
	padding: 20px 10px
}
.hd_logo {
	width: 160px;
}
.hd_logo img {
	height: auto;
	max-width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
	background: #25396D;
	color: #fff;
	height: calc(100% + 500px);
	padding-top: 80px;
	padding-bottom: 500px;
	z-index: 100;
	width: 90%;
	overflow-x: none;
	overflow-y: auto;
	top: 0px;
	right: -90%;
	position: fixed;
	transition: All 0.5s ease;
}
.nav_list>li>a {
	border-top: 1px solid rgba(255,255,255, 0.15);
	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: 16px;
	right: 16px;
	margin-top: -5px;
	width: 36px;
	height: 24px
}
.sp_nav_trigger span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #25396D;
	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: #25396D;
	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
******************************************************************************
----------------------------------------------------------------------------*/
.main {
	padding: 0 10px 30px
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
	background: url(../images/ft_bg_bg.png) no-repeat;
}
.ft {
	padding: 20px 10px 60px;
}
.ft_adrs{
	font-size: 14px;
	margin-bottom: 16px;
}
.ft_copy {
	font-size: 10px;
	text-align: right;
}
.ft_contact {
	background-color: #E7E7E7;
	padding: 30px 10px;
}
.ft_contact h2 {
	color: #666;
	text-shadow: 0 0 5px #FFF;
	font-size: 20px;
	text-align: center;

}
.ft_contact_item {}
.ft_contact_item_ttl {
	color: #666;
	font-size: 18px;
	margin-bottom: 8px;
	margin-top: 16px;
}
.ft_contact_item_ttl span.ff_en {
	display: inline-block;
	margin-left: 10px;
	font-size: 12px;
}
.ft_contact_item_con {}
.ft_contact_form_text, .ft_contact_form_textarea {
	background: #fff;
	color: #111;
	font-size: 16px;
	line-height: 1.6;
	border: none;
	padding: 8px;
	width: 100%;
	border-radius: 0;
}
.ft_contact_form_textarea {
	height: 30vw;
}
.ft_contact_item_02 {
	margin-top: 4vw;
}
.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{
	margin-top: 20px;
}
.ft_nav_list {
	margin-bottom: 10px;
}
.ft_nav_list li {
	border-bottom: 1px dotted #CCC;
	margin-bottom: 5px;
}
.ft_nav_list a {
	color: #666;
	font-size: 14px;
	display: block;
	text-decoration: none;
	padding: 4px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
	border-radius: 50%;
	background-color: #25396D;
	bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	right: 10px;
	position: fixed;
	width: 40px;
	z-index: 99;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_research_support {
	background: #E8ECF7;
	flex-direction: column;
	justify-content: center;
	padding: 32px 10px;
}
.index_research_support h2 {
	color: #25396D;
	text-shadow: 0 0 5px #FFF;
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}
.index_research_support > p {
	text-shadow: 0 0 5px #FFF;
	text-align: center;
	margin-bottom: 20px;
}
.index_research_support_list a{
	display: block;
	color: #111;
	text-decoration: none;
}
.index_research_support_list h3 {
	color: #25396D;
	font-size: 18px;
	margin-bottom: 10px;
}
.index_research_support_list h3 span {
	display: inline-block;
	font-size: 14px;
}
.index_research_support_list p {
	font-size: 14px;
}
.index_research_support_list li {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	background-color: #FFF;
	margin: 10px 0;
	min-height: 80px;
	padding: 1em 1em 1em 5em;
	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: 16px;
	left: 16px;
}
.index_research_support_list_thum img {
	width: 52px;
	height: auto;
}
.index_it {
	background-color: #F2F2FF;
	padding: 30px 10px;
}
.index_it h2 {
	color: #25396D;
	text-shadow: 0 0 5px #FFF;
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}
.index_it > p {
	text-shadow: 0 0 5px #FFF;
	text-align: center;
	margin-bottom: 20px;
}
.index_it_tbl {
	margin-bottom: 10px;
}
.index_it_tbl_th {
	background-color: #EDF0F8;
	color: #25396D;
	font-size: 18px;
	font-weight: bold;
	padding: 1em;
}
.index_it_tbl_td {
	background-color: #FFF;
	color: #25396D;
	padding: 1em;
}
.index_slider_bg {
	height: 56.25vw!important;
	overflow: hidden;
}
/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */

.index_slider img {
	width: 100%;
	height: 56.25vw!important;
	-o-object-fit: cover!important;
	object-fit: cover;
	font-family: 'object-fit: cover!important;'
}
.index_slider_iframe{
	width: 100vw;
	height: 56.25vw;
}
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.company_tbl,
.company_tbl th,
.company_tbl td,
.company_tbl tr{
	display: block;
}
.company_tbl th{
	padding: 10px 10px 0!important;
}
.company_tbl td{
	padding: 0 10px 10px!important;
}
.company_map_iframe{
	width: 100%;
	height: 60vh;
}
.system_box,
.system_box_02{
	margin-top: 32px;
}
.system_box_thum img{
	width: 100%;
	height: auto;
}
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
	line-height: 1.6;
	word-wrap: break-word;
}
.mcon a img:hover {
	opacity: 0.8;
	transition: all 0.3s ease
}
.mcon h1 {
	background: #EDF0F8 no-repeat right;
	color: #25396D;
	font-size: 1.8em;
	font-weight: normal;
	margin-left: calc( -50vw + 50% );
	margin-right: calc( -50vw + 50% );
	margin-bottom: 30px;
	padding: 6vw 10px 5vw;
	text-align: center;
}
.mcon h1 span {
	display: block;
	visibility: hidden;
}
.mcon h2 {
	border-bottom: 2px solid #CCC;
	color: #25396D;
	font-size: 1.4em;
	margin-bottom: 1em;
	margin-top: 1.2em;
	padding-bottom: 0.2em;
	position: relative;
}
.mcon h2::after {
	content: "";
	width: 30%;
	border-bottom: 2px #25396D solid;
	position: absolute;
	bottom: -2px;
	left: 0;
}
.mcon h3 {
	color: #25396D;
	font-size: 1.2em;
	margin-bottom: 0.5em;
	margin-top: 1em;
}
.mcon h4 {
	font-size: 1.1em;
	margin-bottom: 0.5em;
	margin-top: 1em;
}
.mcon h5, .mcon h6 {
	margin-bottom: 0.2em;
	margin-top: 0.5em;
}
.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
}
