@charset "utf-8";
body {
	overflow: hidden;
}
/* ==================================
改行
===================================== */
.br-pc {
	display: inline;
}
.br-sp {
	display: none;
}

/* ==================================
アンカーリンク
===================================== */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 8.8rem;
}
/* ==================================
グラデーション
===================================== */
.grad-color {
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background: -webkit-linear-gradient(90deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(90deg, #0A52A0 0%, #46B1D1 100%);
	display: inline-block;
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

/* ==================================
背景画像を設定したい時
===================================== */
.bg_image {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* ==================================
黒透過
===================================== */
.bg-black-shadow {
	position: relative;
}
.bg-black-shadow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

/* ==================================
白透過
===================================== */
.bg-white-shadow {
	position: relative;
}
.bg-white-shadow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 690px) {
	/* ==================================
	改行
	===================================== */
	.br-sp {
		display: inline;
	}
	.br-pc {
		display: none;
	}
	/* ==================================
	アンカーリンク
	===================================== */
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 6.4rem;
	}
}
/* ==================================
COMMON
===================================== */
.page-title {
	/* margin-top: 80px; */
	/* padding: 80px 0; */
	padding: 40px 0;
	/* background-color: #092A93; */
	background-color: transparent;
	/* color: #fff; 
	margin-bottom: 30px;*/
}
.page-notice .page-title,
.page-managementinformation .page-title,
.page-financialinformation .page-title,
.page-stockinformation .page-title,
.page-governance .page-title {
	padding-bottom: 0;
}
.heading-29 {
	display: inline-block;
	position: relative;
	margin: calc(3.5em / 2) 0 calc(3.5em / 4) calc(3.5em / 2);
	color: #333333;
	line-height: 1;
}
.heading-29::before {
	position: absolute;
	bottom: calc(-3.5em / 4);
	left: calc(-3.5em / 2);
	z-index: -1;
	width: 3.5em;
	height: 3.5em;
	border-radius: 50%;
	background: #BEE5FF;
	content: '';
}

.float-btn-wrapper {
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	position: fixed;
	top: 20%;
	right: 0;
	z-index: 10;
}
.float-btn a {
	font-size: 2.4rem;
	font-weight: bold;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding: 20px 20px 40px 20px;
	width: 80px;
	color: #fff;
	border-radius: 10px 0 0 10px;
	text-decoration: none;
	background: url(../img/mail.png) 50% 95% / 20px no-repeat;
}
.float-btn a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: linear-gradient(292deg, #0A52A0 0%, #46B1D1 100%);
	background: -webkit-linear-gradient(292deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
	border-radius: 10px 0 0 10px;
}
.float-btn a::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	background: linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	z-index: -2;
	border-radius: 10px 0 0 10px;
}
.float-btn a:hover:before {
	opacity: 0;
}
.page-title h1 {
	line-height: 1;
}
.page-title h1 {
	/*display: inline-block;
	background: linear-gradient(292deg, #0A52A0 0%, #46B1D1 100%);
	background: -webkit-linear-gradient(292deg, #0A52A0 0%, #46B1D1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;*/
	position: relative;
	padding-bottom: 3.6rem;
	z-index: 2;
}
.page-title h1::after {
	display: block;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 10rem;
	height: 1px;
	background-color: #0A52A0;
}
.page-sub-title {
	font-size: 1.6rem;
}
.breadcrumbs {
	padding: 20px 0;
	/* margin-bottom: 60px; */
	margin-top: 80px;
	font-size: 1.2rem;
}

@media only screen and (max-width: 820px){
	.page-title {
		/* margin-top: 50px; */
		/* margin-bottom: 30px; */
		padding: 40px 0;
	}
	.breadcrumbs {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 690px){
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 6.4rem;
	}
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline;
	}
	.page-title h1 {
		font-size: 2.4rem;
	}
	.float-btn-wrapper {
		top: auto;
		right: 50%;
		bottom: 10px;
		transform: translateX(50%);
		width: 60%;
	}
	.float-btn a {
		display: block;
		font-size: 2rem;
		text-align: center;
		-ms-writing-mode: inherit;
		writing-mode: inherit;
		padding: 16px 40px 16px 16px;
		width: 100%;
		background: url(../img/mail.png) 90% / 20px no-repeat;
		border-radius: 10px;
	}
	.float-btn a::before, .float-btn a::after {
		border-radius: 10px;		
	}
	.sp-w100-btn .dlb_btn_w40 {
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
	}
}

/*========================================
header
========================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100vw;
	background-color: #ffffff;
	-webkit-box-shadow: 0 0 10px 3px rgb(0 0 0 / 10%);
	box-shadow: 0 0 10px 3px rgb(0 0 0 / 10%);
}
#header_area {
	margin: auto;
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#header_logo {
	margin-left:16px;
	margin-right: 16px;
}
header #header_logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
header #header_logo img {
	max-width: none;
	width: auto;
	height: 40px;
}
header .gnavi_area {
	margin-left: auto;
	height: 100%;
	display: block;
}
header .gnavi_area nav {
	height: 100%;
}
#header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	height: 100%;
}
#header-menu li {
	position: relative;
	margin-right: 26px;
	list-style: none;
	height: 100%;
	line-height: 1.5;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (min-width: 1081px) {

#header-menu > li {
	margin-right:0;
	padding:0 13px;
}
#header-menu > li:first-child{
	padding-left:0;
}
#header-menu > li:nth-last-child(-n+5){
	padding:0 7px
}
#header-menu > li:nth-last-child(5){
	padding-left:13px;
}
	
}

#header-menu li a {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 8px 0;
	position: relative;
	font-weight: bold;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	font-size: 1.4rem;
	text-align: center;
	color: #333;
}
#header-menu li a:hover {
	text-decoration: none;
	color: #092A93;
}
header .gnavi_btn_sp {
	display: none;
}
#header-menu li.header-tel-menu a .header-tel {
	font-size: 2rem;
	padding-left: 16px;
	background: url(../img/tel-icon-black.png) no-repeat;
	background-size: 16px;
	background-position: left;
}
#header-menu li.header-tel-menu a .tel-sub {
	font-size: 1rem;
}
#header-menu li.header-tel-menu a:hover {
	color: #092A93;
}
.header-container {
	height: 100%;
}
#header-menu li.header-tel-menu a {
	line-height: 1;
}
header .current-menu-item a {
	position: relative;
	color: #092A93;
}
header .current-menu-item a::before {
	content: "";
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 2px;
	background-color: #092A93;
}
header .current-menu-item li a::before, header .current-menu-item.header-products a::before, header .current-menu-item.header-report a::before {
	display: none;
}
#header-menu li.header-products, #header-menu li.header-report, #header-menu li.header-search, #header-menu li.header-contact, #header-menu li.header-language {
/* 	margin-right: 16px;	 */
}
#header-menu li.header-products a, #header-menu li.header-report a {
	border-radius: 100px;
	padding: 5px 16px;
	background-color: #14278E;
	color: #fff;
	height: auto;
	border: 1px solid #14278E;
}
#header-menu li.header-report a {
	background-color: #1EB8D4;
	border: 1px solid #1EB8D4;
}
#header-menu li.header-products a:hover {
	text-decoration: none;
	background-color: #fff;
	color: #14278E;
}

#header-menu li.header-products li a {
	background-color: transparent;
	border: none;
}
#header-menu li.header-products:hover li a {
	background-color: transparent;
}

#header-menu li.header-report a:hover {
	text-decoration: none;
	background-color: #fff;
	color: #1EB8D4;
}
#header-menu li.header-report li a {
	background-color: transparent;
	border: none;
}
#header-menu li.header-report:hover li a {
	background-color: transparent;
}

#header-menu li.header-search a, #header-menu li.header-contact a {
	position: relative;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	padding: 20px;
	border-radius: 100px;
	height: auto;
}
#header-menu li.header-search a {
	background: url(../img/search.png) center / 20px no-repeat;
}
#header-menu li.header-contact a {
	background: url(../img/mail.png) center / 20px no-repeat;
}
#header-menu li.header-search a::before, #header-menu li.header-contact a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
	border: none;
}
#header-menu li.header-search a::after, #header-menu li.header-contact a::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	background: linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	z-index: -2;
}
#header-menu li.header-search a:hover:before, #header-menu li.header-contact a:hover:before {
	opacity: 0;
}
#header-menu li.header-language, #header-menu li.header-search {
	cursor: pointer
}
#header-menu li.header-language a {
	background: #C8C8C8;
	color: #fff;
	border-radius: 100px;
	height: auto;
	width: 40px;
	height: 40px;
	padding-top: 20px;
	font-size: 12px;
	pointer-events:none;
	text-align: center;
}
#header-menu li.header-language a::before{
	content: "";
	position: absolute;
	background: url(../img/language.png) 0 0px / 17px no-repeat;
	height: 30px;
	width: 17px;
	top: 5px;
	left: 50%;
	transform: translatex(-50%);
	border: none;
}
header li.header-contact.current-menu-item a::before, header li.header-search.current-menu-item a::before, header li.header-language.current-menu-item a::before {
	display: none;
}
html:lang(ja) #header-menu li.header-language .en, html:lang(ja) #header-menu li.header-language .zh {
	display: none;
}
html:lang(en-US) #header-menu li.header-language .ja, html:lang(en-US) #header-menu li.header-language .zh {
	display: none;
}
html:lang(zh-CN) #header-menu li.header-language .ja, html:lang(zh-CN) #header-menu li.header-language .en {
	display: none;
}
#header-menu li.header-language ul:not(.selected),
#header-menu li.header-language ul:not(.selected) * {
	pointer-events:none;
}
#header-menu li.header-language ul {
	visibility: hidden;
	box-shadow: none;
	position: absolute;
	top: -120%;
	margin: 0;
	opacity: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	left: 50%;
	transform: translateX(-50%);
	transition-delay:.3s;
}
#header-menu li.header-language:hover ul {
	top: 100%;
	visibility: visible;	
	opacity: 1;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	transition-delay:.3s;
}
#header-menu li.header-language ul li {
	background-color: transparent;
}
#header-menu li.header-language ul li a {
	color: #333;
	width: auto;
	height: auto;
	background: transparent;
	padding: 5px;
	pointer-events: auto;
	font-size: 14px;
	cursor: pointer;
}
#header-menu li.header-language ul li:hover a {
	color: #1EB8D4;
}
#header-menu li.header-language ul li a::before, .sp-header__menu, .sp-header-contact {
	display: none !important;
}

.mm_btn, .mm_btn_2 {
	position: absolute;
	display: none;
	width: 30px;
	height: 30px;
	top: 15px;
	right: 10px;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.mm_btn.active, .mm_btn_2.is-active {
	top: 0;
	transform: rotate(-180deg);
}
.mm_btn::before, .mm_btn_2::before {
	position: absolute;
	display: block;
	content: '';
	width: 13px;
	height: 3px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	background-color: #fff;
}
.mm_btn::after, .mm_btn_2::after {
	position: absolute;
	display: block;
	content: '';
	width: 3px;
	height: 13px;
	top: 50%;
	right: 18px;
	transform: translateY(-50%) rotate(45deg);
	background-color: #fff;
}
.mm_btn_2::before, .mm_btn_2::after {
	background-color: #142A91;
}
.page-companyinfomation .news-item__time-cate {
	display: none !important
}

@media only screen and (max-width: 1080px) {
	#header_area {
		height: 50px;
	}
	header .gnavi_area {
		display: none;
	}
	header .gnavi_btn_sp {
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		width: 56px;
		height: 56px;
		text-align: center;
		line-height: 1;
		z-index: 1000;
		transform: translatey(-50%);
	}
	header .gnavi_btn_sp_in {
		position: relative;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 2;
		top: 50%;
		transform: translateY(-50%);
	}
	header .gnavi_btn_sp_in, header .gnavi_btn_sp_in span {
		display: inline-block;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	header .gnavi_btn_sp_in span {
		position: absolute;
		left: 0;
		width: 70%;
		height: 4px;
		background-color: #092A93;
		border-radius: 6px;
	}
	header .gnavi_btn_sp_in span:nth-of-type(1) {
		top: 14px;
	}
	header .gnavi_btn_sp_in span:nth-of-type(2) {
		top: 24px;
	}
	header .gnavi_btn_sp_in span:nth-of-type(3) {
		top: 34px;
	}
	header .gnavi_btn_sp_in .menu {
		position: absolute;
		top: 34px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 2rem;
		color: #092A93;
		font-weight: bold;
	}
	header .gnavi_btn_sp.active .gnavi_btn_sp_in span:nth-of-type(1) {
		-webkit-transform: translateY(-50%) rotate(-25deg);
		-ms-transform: translateY(-50%) rotate(-25deg);
		transform: translateY(-50%) rotate(-25deg);
		top: 50%;
	}
	header .gnavi_btn_sp.active .gnavi_btn_sp_in span:nth-of-type(2) {
		display: none;
	}
	header .gnavi_btn_sp.active .gnavi_btn_sp_in span:nth-of-type(3) {
		-webkit-transform: translateY(-50%) rotate(25deg);
		-ms-transform: translateY(-50%) rotate(25deg);
		transform: translateY(-50%) rotate(25deg);
		top: 50%;
	}
	header .gnavi_area.panelactive {
		display: block;
		margin: 0;
	}
	header .gnavi_area.panelactive #site-navigation {
		top: 50px;
		overflow-x: scroll;
		height: 100%;
	}
	header .gnavi_area #site-navigation {
		position: fixed;
		z-index: 999;
		top: -120%;
		left: 0;
		width: 100%;
		height: auto;
		/*background: #fff;*/
		-webkit-transition: all .3s ease 0s;
		-o-transition: all .3s ease 0s;
		transition: all .3s ease 0s;
	}
	#header-menu {
		display: block;
		height: auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	#header-menu li {
		margin: 0;
		display: block;
		width: 100%;
		border-bottom: 1px solid #d9d9d9;
		background-color: #142A91;
	}
	#header-menu li a {
		text-align: left;
		display: block;
		position: relative;
		height: auto;
		width: 100%;
		font-size: 2rem;
		color: #fff;
		padding: 10px;
	}
	header #header-menu li.current-menu-item a, #header-menu li a:hover {
		color: #fff;
	}
	#header-menu li.header-products a:hover,
	#header-menu li.header-report a:hover {
	    background-color: transparent;
	    color: #fff;
	}
	#header-menu li a::before {
		content: '';
		width: 13px;
		height: 13px;
		border: 0px;
		border-width: 3px 3px 0 0;
		border-style: solid;
		transform: rotate(45deg);
		position: absolute;
		top: calc(50% - 5px);
		right: 1.5em;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		border-color: #fff;
		left: auto;
		bottom: auto;
	}
	header .gnavi_area ul li a:hover:after {
		display: none;
	}
	#header-menu li.header-tel-menu {
		border-bottom: none;
	}
	#header-menu li.header-tel-menu a {
		text-align: center;
		padding-top: 20px;
	}
	#header-menu li.header-tel-menu a::before {
		display: none;
	}
	header #header_logo img {
		width: auto;
		height: 40px;
	}
	#header_logo {
		margin: 0;
	}
	header .gnavi_btn_sp_in .menu {
		font-size: 1.6rem;
		top: 30px;
	}
	header .mega-menu.current-menu-item a::before {
		display: none;
	}
	#header-menu.sp-header__menu {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex !important;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		margin-left: auto;
		margin-right: 40px;
	}
	#header-menu.sp-header__menu li.header-search, #header-menu.sp-header__menu li.header-contact, #header-menu.sp-header__menu li.header-language {
		background-color: transparent;
		width: auto;
		border: none;
		margin-right: 5px;
		padding:0;
	}
	#header-menu.sp-header__menu li.header-language a {
		pointer-events: none;
		padding-top: 30px;
	}
	#header-menu.sp-header__menu li.header-language:hover > li a {
		pointer-events: auto;
	}
	#header-menu li.sp-header-contact {
		display: block !important;
		background-color: transparent;
	}
	#header-menu li.sp-header-contact a {
		text-align: center;
		border-radius: 0;
		padding:  16px 0;
		position: relative;
	}
	#header-menu li.sp-header-contact a::before {
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
		background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
		z-index: -1;
		border: none;
		transform: none;
		border-radius: 0;
	}
	#header-menu li.sp-header-contact a::after {
		display: block !important;
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		background: -webkit-linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
		background: linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
		z-index: -2;
		border-radius: 0;
	}
	#header-menu li.sp-header-contact a:hover:before {
		opacity: 0;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
	}

	.mm_btn, .mm_btn_2 {
		display: block;
		width: 45px;
		height: 45px;
		top: 0;
		right: .5rem;
	}
}

@media only screen and (max-width: 690px) {
	#header-menu li a {
		font-size: 1.6rem;
	}
	header #header_logo {
		margin-right: 10px;
	}
	header #header_logo img {
		height: 30px;
	}
	header .gnavi_area.panelactive #site-navigation {
		height: 80%;
	}

	/*   873行目に移動 
	.mm_btn, .mm_btn_2 {
	display: block;
	width: 45px;
	height: 45px;
	top: 0;
	right: .5rem;
} 
	*/

	#header-menu.sp-header__menu {
		margin-right: 50px;
	}
}


/*========================================
Megamenu
========================================*/
.mega-menu__content {
	width: 100%;
	position: absolute;
	/* top: -100%; */
	top:-100vh;
	left: 0;
	color: #333;
	background: rgba(213, 213, 213, .8);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	z-index: -1;
	transition-delay:.3s;
}
#header-menu li.mega-menu {
	position: static;
}
#header-menu li.mega-menu:hover .mega-menu__content {
	top: 100%;
	visibility: visible;
	opacity: 1;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	transition-delay:.3s;
}
	#header-menu .mega-menu__content:not(.selected) {
		pointer-events:none;
	}


@media only screen and (min-width: 1061px) {
	/**pcメニューのみ**/
	#header-menu .mega-menu__content:not(.selected) {
		pointer-events:none;
	}
}
.mega-menu__inner {
	position: relative;
}
.mega-menu__list {
	/* 	min-height: 500px; */
	min-height: 372px;
	min-width: 200px;
	width:250px;
	background-color: #fff;
	display: inline-block;
}
#header-menu .mega-menu__list li {
	position: static;
	height: auto;
	border-bottom: 1px solid #B9B9B9;
	margin: 0;	
	background: url(../img/arrow-on.png) no-repeat 90% / 16px auto;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
#header-menu .mega-menu__list li a,  #header-menu .mega-menu__list li.selected a {
	padding: 20px;
	padding-right: 50px;
	display: block;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
#header-menu .mega-menu__list li a,  #header-menu .mega-menu__lis > li > a {
	width:100%;
	text-align:left;
}
#header-menu .mega-menu__list li:hover, #header-menu .mega-menu__list li.selected {
	background: #14278E  url(../img/arrow.png) no-repeat 90% / 16px auto;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
#header-menu .mega-menu__list li a:hover, #header-menu .mega-menu__list li.selected > a {
	color: #fff;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
#header-menu .mega-menu__list-menu {
	position: absolute;
	top: 0;
	left: 250px;
	opacity: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;	
	/*     padding: 20px 100px; */
	padding: 10px 100px;
	width: max-content;
	margin: 0;
	pointer-events:none;
}
@media only screen and (max-width: 1080px) {
	#header-menu .mega-menu__list-menu {
		pointer-events: auto;
	}
}

#header-menu .mega-menu__list-menu.selected {
	opacity: 1;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	pointer-events:all;
}
#header-menu .mega-menu__list-menu li {
	margin: 0;
	height: auto;
	display: block;
	background: transparent !important;
	border: none !important;
}
#header-menu .mega-menu__list-menu li a {
	text-align: left;
	display: block;
	color: #333 !important;
	padding: 10px !important;
	font-size: 16px;
}
#header-menu .mega-menu__list-menu li a:hover {
	color: #092A93 !important;
}
header .mega-menu__list li.current-menu-item a::before, header .mega-menu__list-menu li.current-menu-item a::before {
	display: none;
}
#header-menu li.header-search.mega-menu .mega-menu__content a {
	background: url(../img/arrow.png) no-repeat 60% / 16px auto;	
}
#header-menu li.header-search.mega-menu .mega-menu__content {
	padding: 100px 0;
}
#header-menu li.header-search a {
	/* 	pointer-events: none; */
}
#header-menu li.header-search p {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
#header-menu li.header-search #s-box {
	border-radius: 10px;
	height: 80px;
	font-size: 20px;
}
.sp-menu__list-menu {
	display: none;
}

@media only screen and (max-width: 1080px) {
	.mega-menu__inner {
		width: 100%;
	}
	#site-navigation #header-menu li.mega-menu .mega-menu__content {
		z-index: 10001;
		background: #fff;
		display: none;
		position: relative;
		top: 100%;
		visibility: visible;
		opacity: 1;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
	}
	.sp-menu__list-menu {
		display: block;
	}
	#header-menu.menu li.header-search, #header-menu.menu li.header-contact, #header-menu.menu li.header-language {
		display: none;
	}
	#header-menu li.header-products, #header-menu li.header-report {
		margin: 0;
	}
	#header-menu li.header-products a, #header-menu li.header-report a {
		text-align: left;
		display: block;
		position: relative;
		height: auto;
		width: 100%;
		font-size: 2rem;
		color: #fff;
		padding: 10px;
		border-radius: 0;
	}
	#header-menu li.header-report a {
		background-color: #14278E;
		border-color: #14278E;		
	}
	#header-menu li.header-search p {
		font-size: 16px;
	}
	#header-menu li.header-search #s-box {
		height: 60px;
		font-size: 16px;
	}
	#header-menu li.mega-menu a::before {
		display: none;
	}
	#header-menu li.mega-menu {
		position: relative;
	}
	.mega-menu__list {
		min-height: auto;
		min-width: auto;
		width: 100%;
		display: block;
		background-color: transparent;		
	}
	#header-menu .mega-menu__list li:hover, #header-menu .mega-menu__list li.selected, #header-menu .mega-menu__list li {
		background: transparent;
	}
	#header-menu .mega-menu__list li a:hover, #header-menu .mega-menu__list li.selected a, #header-menu .mega-menu__list li a, #header-menu .mega-menu__list-menu li a:hover {
		color: #142A91 !important;
		padding: 10px;
	}
	#header-menu .mega-menu__list li {
		position: relative;
	}
	#header-menu .mega-menu__list .mega-menu__list-menu {
		position: relative;
		padding: 0;
		left: 0;
		width: 100%;	
		display: none;
		opacity: 1;
	}
	#header-menu .mega-menu__list .mega-menu__list-menu a {
		font-size: 16px;
	}
	#header-menu .mega-menu__list .mega-menu__list-menu li a {
		padding-left: 20px !important;	
		color: #333 !important;
	}
	#header-menu.sp-header__menu li.header-search {
		position: static;
		z-index: 10001;
	}
	#header-menu li.header-search.mega-menu .mega-menu__content {
		position: absolute;
		display: inherit;
		background: rgba(213, 213, 213, .8);
		padding: 40px 20px;
	}
}

@media only screen and (max-width: 690px) {
	#header-menu li.header-products a, #header-menu li.header-report a, #header-menu .mega-menu__list .mega-menu__list-menu a, #header-menu .mega-menu__list-menu li a {
		font-size: 1.4rem;
	}
	#header-menu li.header-products > a, 
	#header-menu li.header-report > a,
	#header-menu li.header-products .mega-menu__item > a,
	#header-menu li.header-report .mega-menu__item > a {
		font-size: 1.6rem;
	}
}


/*========================================
footer
========================================*/
footer {
	padding-top: 40px;
}
footer .inner {
	max-width: 1200px;
}
#footer-nav {
	padding-bottom: 40px;
}
@media only screen and (min-width: 992px) {
	.footer-left {
		width: 22%;
	}
}
#footer_logo {
	margin-bottom: 20px;
}
.footer-address {
	margin-bottom: 40px;
}
.footer-language img, .footer-search img {
	margin: 0;
	margin-right: 20px;
}
.footer-language a {
	color: #333;
	text-decoration: none;
}
.footer-language a:hover {
	color: #1EB8D4;
}
.footer-right {
	width: 75%;
}
#footer-menu li {
	list-style: none;
	margin-bottom: 30px;
	border-top: 1px solid #C4C4C4;
	position: relative;
}
#footer-menu li::before {
	content: "";
	position: absolute;
	width: 60px;
	height: 2px;
	top: -1.5px;
	left: 0;
	z-index: 1;
	background-color: #0F5AA5;
}
#footer-menu #footer-3 li::before, #footer-menu #footer-4 li::before {
	background-color: #1EB8D4;
}
#footer-menu li a {
	color: #333;
	text-decoration: none;
	display: block;
	padding: 10px 0;
	font-size: 1.6rem;
}
#footer-menu li a:hover, #footer-menu li.menu-item-has-children ul.sub-menu li a:hover {
	color: #1EB8D4;
}
#footer-menu li ul.sub-menu li {
	margin-bottom: 0;
	border: none;
	list-style: disc;
	line-height: 1.4;
	color: #6D6D6D;
	font-size: 10px;
	list-style-type: "▸ ";
}
#footer-menu li ul.sub-menu li::marker {
	font-size: 1.4rem;
}
#footer-menu li ul.sub-menu li::before {
	display: none;
}
#footer-menu li.menu-item-has-children ul.sub-menu li a {
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	color: #6D6D6D;
}
.copyright {
	border-top: 1px solid #f5f5f5;
	padding: 10px 0;
	color: #fff;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
}
.copyright a {
	color: #fff;	
}
.menu-footer-1-container, .menu-footer-2-container, .menu-footer-3-container, .menu-footer-4-container {
	margin-right: 20px;
}
/* .footer-search #s-box {
box-shadow: none;
padding: 10px;	
} */
.footer-search #s-box::placeholder {
	color: #333;
}
@media only screen and (max-width: 1200px){
	.menu-footer-1-container, .menu-footer-2-container, .menu-footer-3-container, .menu-footer-4-container {
		width: calc(50% - 20px);
	}
}
@media only screen and (max-width: 991px){
	.footer-left, .footer-right {
		width: 100%;
	}
	.footer-left {
		margin-bottom: 60px;
	}
	.copyright-link {
		text-align: center;
		margin-top: 10px;
		width: 100%;
		margin-bottom: 20px;
		line-height: 2;
	}
	.copyright .d-flex{
		flex-direction: column-reverse !important;
	}
}
@media only screen and (max-width: 690px){
	#footer-nav {
		padding: 0 0 40px;
	}
	.copyright {
		text-align: center;
		padding-bottom: 80px;
	}
	.footer-left {
		margin-bottom: 30px;
	}
	.copyright-link {
		text-align: left;
	}
	.footer-language, .footer-search {
		width: 50%;
	}
	.footer-language img, .footer-search img {
		width: 30px;
		margin-right: 5px;
	}
	.footer-address {
		margin-bottom: 20px;
	}
	#footer-menu {
		display: grid !important;
		grid-template-columns: 1fr 1fr;		
	}
	.menu-footer-1-container, .menu-footer-3-container {
		order: 1;		
	}
	.menu-footer-2-container, .menu-footer-4-container {
		order: 2;		
	}
	#footer_logo img {
		width: 200px;
	}
	.menu-footer-1-container, .menu-footer-2-container, .menu-footer-3-container, .menu-footer-4-container {
		width: calc(100% - 20px);
	}

}
/****************************************************************/
/* CTA */
/***************************************************************/
.footer-contact {
	background-color: #F2F2F2;
}
/* 「新卒採用」「先輩社員の声」でCTA非表示 */
.page-recruit .footer-contact,
.page-recruitnew .footer-contact{
	display: none;
}
.footer-contact-link, .footer-download-link {
	width: 100%;
	position: relative;
	padding: 50px 20px 50px 50px;
	cursor: pointer;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.footer-contact-link {
	padding-left: 0;
}
.footer-contact-link .title, .footer-download-link .title {
	position: relative;
	z-index: 10;
	pointer-events: none;
	padding-right: 70px;
}
.footer-contact-link .title::before, .footer-download-link .title::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	z-index:1;
	background: url(../img/arrow.png) no-repeat 90% / 16px auto;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.footer-contact-link .title::after, .footer-download-link .title::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index:0;
	padding: 20px;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.footer-contact-link .title.active::before, .footer-download-link .title.active::before {
	background: url(../img/arrow-on.png) no-repeat 90% / 16px auto;	
}
.footer-contact-link .title.active::after, .footer-download-link .title.active::after, .footer-contact-link .title.active .grad-color, .footer-download-link .title.active .grad-color {
	background: #fff;
}
.contact-link, .download-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;	
	z-index: 10;
}
.download-link {
	left: auto;
	right: 0;
}
.contact-link::before, .download-link::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	opacity: 0;
	z-index: 10;
}
.download-link::before {
	left: auto;
	right: 0;
}
.contact-link:hover:before, .download-link:hover:before {
	opacity: 1;
}
.footer-contact-link span, .footer-download-link span {
	margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
	.footer-contact-link span.top-title, .footer-download-link span.top-title {
		font-size: 3rem;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 820px) {
	.footer-contact-link, .footer-download-link {
		padding: 30px;
	}
	.footer-contact .br-sp {
		display: inline;
	}
	.footer-contact-link .title::before, .footer-download-link .title::before  {
		right: 0px;
	}
	.footer-contact-link .title::after, .footer-download-link .title::after {
		right: -10px;
	}
	.footer-contact-link .title, .footer-download-link .title {
		padding-right: 30px;
	}
}
@media only screen and (max-width: 767px) {
	.contact-link, .download-link {
		width: 100%;
		height: 50%;
	}
	.download-link {
		top: auto;
		bottom: 0;
	}
	.contact-link::before, .download-link::before {
		width: 100%;
	}
	.download-link::before {
		top: auto;
		bottom: 0;
	}
	.footer-contact-link .title, .footer-download-link .title {
		display: grid;
	}
	.footer-contact-link .title::after, .footer-download-link .title::after {
		right: 0px;
	}
	.footer-contact-link .title::before, .footer-download-link .title::before {
		right: 10px;
	}
}


/****************************************************************/
/* ふわっと */
/****************************************************************/
.scroll-up {
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.scroll-up.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}


/****************************************************************/
/* ページトップ */
/****************************************************************/
/*リンクの形状*/
#page-top a{
	position: relative;
	display: block;
	background: #0A52A0;
	border: 1px solid #0A52A0;
	border-radius: 100px;
	width: 60px;
	height: 60px;
	text-transform: uppercase; 
	text-decoration: none;
	font-size: 1rem;
	color: #fff;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	padding-top: 5px;
}
#page-top a::after {
	content: "";
	position: absolute;
	top: 60%;
	left: 50%;
	display: inline-block;
	width: 16px;
	height: 16px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg) translate(-10%, -50%);
	transform: rotate(-45deg) translate(-10%, -50%);
}
#page-top a:hover{
	background: #fff;
	border: 1px solid #0A52A0;
	color: #0A52A0;
}
#page-top a:hover:after {
	border-color: #0A52A0;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}
@media only screen and (max-width: 690px) {
	#page-top {
		right: 10px;
		bottom: 10px;
	}	
}

/* ==================================
TOP
===================================== */
.top .top_mv {
	/*position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;*/
	margin-top: 80px;
	height: calc(90vh - 80px);
	overflow: hidden;
	position: relative;
}
.top .top_mv::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(87, 87, 87);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(87, 87, 87, 0.25)), to(rgba(87, 87, 87, 0.25)));
	background: linear-gradient(180deg, rgba(87, 87, 87, 0.25) 0%, rgba(87, 87, 87, 0.25) 100%);
	z-index: 1;
	pointer-events: none;
}
.top_mv .inner {
	position: relative;	
	height: 100%;
	z-index: 1;
}
.top_mv .catchcopy h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	line-height: 1.2;
	font-size: 5rem;
	color: #fff;
	text-align: center;
	width: 96%;
}
.top .top_mv_rail_wrapper {
	position: absolute;
	top: 0;
	left: 15%;
	width: 120%;
	height: 110vh;
	/*-webkit-transform: translateX(-50%);
	transform: translateX(-50%);*/
	pointer-events: none;
}
@media screen and (max-width: 1200px) {
	.top .top_mv_rail_wrapper {
		width: 130%;
		left: 0;
	}
}
@media (max-width: 1000px) {
	.top .top_mv_rail_wrapper {
		width: 160%;
	}
}
@media screen and (max-width: 690px) {
	.top .top_mv_rail_wrapper {
		width: 180%;
		left: -10%;
	}
}
.top .top_mv_rail {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
}
@media screen and (max-width: 690px) {
	.top .top_mv_rail {
		height: 100%;
	}
}
.top .top_mv_rail_inner {
	margin-top: -20rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(25% - 10px);
	height: 200%;
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}
.top .top_mv_rail_inner.active {
	-webkit-animation: railUp 40s linear infinite;
	animation: railUp 40s linear infinite;
}
@media screen and (max-width: 767px) {
	.top .top_mv_rail_inner {
		width: calc(25% - 6px);
	}
}
@media screen and (max-width: 690px) {
	.top .top_mv_rail_inner {
		margin-top: 0;
	}
}
.top .top_mv_rail_inner.top_mv_rail_inner_down {
	will-change: transform;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
}
.top .top_mv_rail_inner.top_mv_rail_inner_down.active {
	-webkit-animation: railDown 40s linear infinite;
	animation: railDown 40s linear infinite;
}
.top ._tile {
	margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
	.top ._tile {
		margin-bottom: 8px;
	}
}
@-webkit-keyframes railUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}
}
@keyframes railUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}
}
@-webkit-keyframes railDown {
	from {
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes railDown {
	from {
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.top-title {
	font-size: 3.6rem;
	margin-bottom: 30px;
	font-weight: 800;
}

@media only screen and (max-width: 1080px) {
	.top .top_mv {
		margin-top: 50px;
	}
}

@media only screen and (max-width: 690px) {
	.top_mv .catchcopy h1 {
		font-size: 3rem;		
	}
	.top-title {
		font-size: 2.4rem;
	}
	.page-index .top-title {
		font-size: 3.2rem;
		margin-bottom: 50px;
	}
}
.top-search {
	background-color: #F2F2F2;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	padding: 24px 48px;
}
.top-search .top-title {
	margin: 0;
	margin-right: 10%;
}
.products-title-search {
	margin-bottom: 30px;
}
.products-search {
	min-width: 300px;
}
#s-btn.dlb_btn a {
	padding: 16px;
	background-position: center;
}
.products-category li {
	width: 29%;
	margin: 0 20px 20px;
	list-style: none;
	text-align: center;
}
.products-category li a {
	display: block;
	border-radius: 100px;
	padding: 5px 10px;
	background-color: #fff;
	color: #092A93;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.products-category li:hover a {
	background-color: #092A93;
	color: #fff;
}

@media only screen and (max-width: 1024px) {
	.top-search {
		padding: 30px;
	}
	.products-category li {
		width: 30%;
		margin: 0 10px 20px;
	}
}

@media only screen and (max-width: 690px) {
	.top-search {
		padding: 30px 10px;
	}
	.top-search .top-title {
		margin-bottom: 20px;
	}
	.products-search {
		width: 90%;
		margin: auto;
	}
	#s-btn.dlb_btn a {
		width: 20px;
		min-width: auto;		
	}
	.products-category li {
		width: calc(50% - 10px);
		margin: auto;
		margin-bottom: 10px;
	}
	.products-category li a {
		padding: 5px;
	}
}


.top-news-tablist {
	width: 15%;	
}
.top-news-tabcontent {
	width: 80%;
	padding: 0;
	border: none;
}
.top-news-tablist .tablist {
	display: block;
}
.top-news-tablist .tablist li {
	margin-bottom: 20px;
	text-align: center;
	font-size: 16px;
}
.top-news-tablist .tablist li a {
	border-radius: 100px;
	background-color: #D8D8D8;
	border: none;
	padding: 10px;
	color: #fff;
	position: relative;
	z-index: 0;
}
.top-news-tablist .tablist li a::before {
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	opacity: 0;
}
.top-news-tablist .tablist li.active a::before, .top-news-tablist .tablist li:hover a::before {
	opacity: 1;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.top-news .news-item__time-cate {
	width: 28%;
}
.top-news .news-title-txt {
	width: 72%;
}
/*.top-news-tabcontent .tabcon.active {
animation-name: fadeUpAnime;
animation-duration: 1s;
animation-fill-mode: forwards;
opacity: 0;
animation-delay: 0.3s;
}

@keyframes fadeUpAnime {
0% { 
opacity: 0;
transform: translateY(100px);
}
100% { 
opacity: 1;
transform: translateY(0);
}
}*/

@media only screen and (max-width: 1024px) {
	.top-news-tablist {
		width: 20%;
	}
	.top-news-tabcontent {
		width: 75%;
	}
	.top-news .news-item__time-cate {
		width: 35%;
	}
}

@media only screen and (max-width: 820px) {
	.top-news .news-item__time-cate {
		width: 50%;
	}
}

@media only screen and (max-width: 690px) {
	.top-news-tablist, .top-news .news-item__time-cate, .top-news .news-title-txt, .top-news-tabcontent {
		width: 100%;
	}
	.top-news-tablist {
		margin-bottom: 30px;
	}
	.top-news-tablist .tablist li {
		width: calc(47% - 10px);
	}
	.news-item {
		border-bottom: 1px solid #C4C4C4;
	}
}

.top-about {
	position: relative;
	padding: 80px 0 0;
}
.top-about::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: #F2F2F2;
	z-index: -10;
}
.top-about .dlb_subtitle4_01 {
	line-height: 1.6;
	margin-bottom: 30px;
}
.top-about .dlb_subtitle4_01 .font-big {
	font-size: 28px;
}

@media only screen and (max-width: 1024px) {
	.top-about .col2_m_221 .col {
		width: 60%;
	}
	.top-about .col2_m_221 .col:first-child {
		width: calc(40% - 40px);
	}
}
@media only screen and (max-width: 820px) {
	.top-about .dlb_subtitle4_01 .font-big {
		font-size: 24px;
	}
}
@media only screen and (max-width: 690px) {
	.top-about {
		padding: 40px 0 0;
	}
	.top-about .col2_m_221 .col, .top-about .col2_m_221 .col:first-child {
		width: 100%;
	}
	.top-about .dlb_btn_w50 {
		max-width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.top-about-4colum .dlb_btn {
		max-width: 60%;
		margin: auto;
	}
	.top-about::before {
		height: 102%;
	}
}


.slider-font-wrap {
	padding: 120px 0 0;
	overflow: hidden;
	position: relative;
}
.slider-font-top {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
.slider-font-top .slider-font {
	position: absolute;
	top: 0;
	left:0;
	width: 6.2em;
	height: auto;
	color: #F1F1F1;
	font-size: 100px;
	line-height: 1;
	text-align: center;
	z-index: -1;
	white-space: nowrap;
	font-weight: 600;
}
.slider-font-top .slider-font.txt1 {
	left: 0;
	animation: flowimg 20s linear infinite;
}
.slider-font-top .slider-font.txt2 {
	left: 6.2em;
	animation: flowimg 20s linear infinite;
}
.slider-font-top .slider-font.txt3 {
	left: 12.2em;
	animation: flowimg 20s linear infinite;
}
.slider-font-top .slider-font.txt4 {
	left: 18.2em;
	animation: flowimg 20s linear infinite;
}
@keyframes flowimg {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}
@media only screen and (max-width: 690px) {
	.slider-font-top .slider-font {
		top: 40px;
		font-size: 80px;
	}
}

/*.top-link {
width: 100%;
height: 600px;
position: relative;
overflow: hidden;
}
.top-link-item-list {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
.top-link .inview.animate {
opacity: 1;
top: 0;
}
.top-link .inview {
opacity: 0;
position: relative;
top: 40px;
-webkit-transition: all 1.3s cubic-bezier(.165,.84,.44,1) .3s,opacity 1.3s cubic-bezier(.165,.84,.44,1) .3s;
transition: all 1.3s cubic-bezier(.165,.84,.44,1) .3s,opacity 1.3s cubic-bezier(.165,.84,.44,1) .3s;
}
.top-link-item-list .item {
height: 100%;
border-right: 1px solid rgba(255,255,255,.3);
-ms-flex: 1 1 0%;
-webkit-flex: 1 1 0%;
flex: 1 1 0%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.top-link-item-list .item a {
color: #fff !important;
display: block;
width: 100%;
height: 100%;
position: relative;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.top-link {
width: 100%;
height: 600px;
position: relative;
overflow: hidden;
}
.top-link:before {
opacity: 1 !important;
z-index: 1;
margin: 0 auto;
content: '';
display: block;
width: 1150px;
height: 600px;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
position: absolute;
top: 0;
left: 50%;
-ms-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.top-link-item-list {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
.top-link-item-list .item {
height: 100%;
border-right: 1px solid rgba(255, 255, 255, .3);
-ms-flex: 1 1 0%;
-webkit-flex: 1 1 0%;
flex: 1 1 0%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
.top-link-item-list .item:last-of-type {
border-right: none;
}
.top-link-item-list a {
color: #fff !important;
display: block;
width: 100%;
height: 100%;
position: relative;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.top-link-item-list .item a:after {
width: 100%;
height: 100%;
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, .5);
z-index: 1;
opacity: 0;
-webkit-transition: opacity .2s ease;
transition: opacity .2s ease;
}
.top-link-item-list .item.active a:after {
opacity: 1;
}
.top-link-img-list {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.top-link-img-list .image {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
opacity: 0;
-webkit-transition: all .5s ease;
transition: all .5s ease;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.top-link-img-list .image.active {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.top-link-img-list .image .overlay {
width: 100%;
height: 100%;
}
.top-link .inview {
opacity: 0;
position: relative;
top: 40px;
-webkit-transition: all 1.3s cubic-bezier(.165, .84, .44, 1) .3s, opacity 1.3s cubic-bezier(.165, .84, .44, 1) .3s;
transition: all 1.3s cubic-bezier(.165, .84, .44, 1) .3s, opacity 1.3s cubic-bezier(.165, .84, .44, 1) .3s;
}
.top-link .inview.animate {
opacity: 1;
top: 0;
}
.top-link .top-link-item-list.inview, .top-link .top-link-img-list.inview {
position: absolute;
}
*/
.top-link {
	width: 100%;
	height: 500px;
	position: relative;
	overflow: hidden;
}
.top-link-item-list {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 2;
	transform: translatex(-50%);
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}
.top-link-item-list .item {
	height: 100%;
	border-right: 1px solid rgba(255, 255, 255, .3);
	-ms-flex: 1 1 0%;
	-webkit-flex: 1 1 0%;
	flex: 1 1 0%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.top-link-item-list .item:last-of-type {
	border-right: none;
}
.top-link-item-list .item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(135, 135, 135, 0.5);
	z-index: 0;
}
.top-link-item-list .item.active {
	position: relative;
}
.top-link-item-list .item.active::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	opacity: 0.5;
}
.top-link-item-list a {
	color: #fff !important;
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.top-link-item-list .item a:after {
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity .2s ease;
	transition: opacity .2s ease;
}
.under-line-title {
	position: relative;
	font-size: 30px;
	white-space: pre;
}
.under-line-title::before {
	position: absolute;
	content: "";
	width: 80%;
	height: 6px;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	left: 50%;
	bottom: -10px;
	transform: translatex(-50%);
}
.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.top-link-item-list.active {
	z-index: 100;
}
.top-link-item-list.top-link-01 {
	background:url(../img/top06.jpg) no-repeat center / cover;
}
.top-link-item-list.top-link-02 {
	background:url(../img/top07.jpg) no-repeat center / cover;
}
.top-link-item-list.top-link-03 {
	background:url(../img/top08.jpg) no-repeat center / cover;
}
.top-link-item-list.top-link-04 {
	background:url(../img/top09.jpg) no-repeat center / cover;
}
.top-link-item-list.top-link-05 {
	background:url(../img/top10.jpg) no-repeat center / cover;
}
.o-link a::after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/kohjin-bio/wp-content/uploads/2024/03/o-link.png);
	background-size: contain;
	vertical-align: middle;
	margin-left: 10px;
	background-repeat: no-repeat;
}
.f-o-link a::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background-image: url(/kohjin-bio/wp-content/uploads/2024/03/o-link.png);
	background-size: contain;
	vertical-align: middle;
	margin-left: 10px;
	background-repeat: no-repeat;
}


@media only screen and (max-width: 820px) {
	.under-line-title {
		font-size: 24px;
	}
}
@media only screen and (max-width: 690px) {
	.top-link{
		height: auto;
	}
	.top-link-item-list {
		position: relative;
	}
	.top-link-item-list .item {
		height: 160px;	
	}
	.item.top-link-01 {
		background:url(../img/top06.jpg) no-repeat center / cover;
	}
	.item.top-link-02 {
		background:url(../img/top07.jpg) no-repeat center / cover;
	}
	.item.top-link-03 {
		background:url(../img/top08.jpg) no-repeat center / cover;
	}
	.item.top-link-04 {
		background:url(../img/top09.jpg) no-repeat center / cover;
	}
	.item.top-link-05 {
		background:url(../img/top10.jpg) no-repeat center / cover;
	}
}



/* ==================================
新卒採用
===================================== */
.recruit-img img {
	margin-left: -10px;
	width: 80%;
	aspect-ratio: 2 / 1;
	object-fit: cover;
	object-position: 70%;
	max-height: 600px;
}
@media (min-width: 767px) {
	.recruit-img img {
		aspect-ratio: 6 / 1;
	}
}
.step-title {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.flow-block img {
	width: auto;
	height: 60px;
}
.recruit-table {
	position: relative;
}
.recruit-table::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5%;
	background-color: #F2F9FE;
	border-radius: 0 50px 50px 0;
	width: 90%;
	height: 98%;
	z-index: -1;
}

@media only screen and (max-width: 690px) {
	.recruit-img img {
		width: 90%;
	}
	.recruit-table::before {
		top: 3%;
		height: 96%;
	}
}

/* ==================================
お問い合わせ窓口
===================================== */
.contact-info-in {
	position: relative;
	z-index: 0;
}
.rounded-20 {
	border-radius: 20px;
}
.contact-info img {
	width: auto;
	height: 80px;
}


/* ==================================
サイトマップ
===================================== */
.sitemap-block ul.wsp-pages-list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}
.sitemap-block ul.wsp-pages-list li {
	list-style: none;
	width: calc(33% - 20px);
	border-top: 1px solid #ccc;
	margin-bottom: 30px;
}
.sitemap-block ul.wsp-pages-list li a {
	display: block;
	padding: 20px 10px;
	position: relative;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	padding-right: 50px;
}
.sitemap-block ul.wsp-pages-list li a:hover {
	background-color: #f5f5f5;
}
.sitemap-block ul.wsp-pages-list li a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	z-index: 1;
	background: url(../img/arrow.png) no-repeat 90% / 16px auto;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.sitemap-block ul.wsp-pages-list li a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: 0;
	padding: 20px;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}
.sitemap-block ul li.page_item_has_children a {
	border-bottom: 1px solid #ccc;
}
.sitemap-block ul.children li {
	width: 100%;
	border: none;
	margin-bottom: 0;
}
.sitemap-block ul.children li a {
	font-size: 16px;
	padding: 10px;
	padding-right: 50px;
}
.sitemap-block ul.children li a::after {
	display: none;
}

.sitemap-block ul.children li a::before {
	background: url(../img/arrow-on.png) no-repeat 90% / 16px auto;	
}
@media only screen and (max-width: 690px) {
	.sitemap-block ul.wsp-pages-list li {
		width: 100%;
	}
}

/* ==================================
お知らせ
===================================== */
.news-block {
	margin-bottom: 40px;
}
.news-item {
	padding: 16px 0;
	/*border-top: 1px solid #f5f5f5;*/
}
.news-item:last-child {
	/*border-bottom: 1px solid #f5f5f5;*/
}
.news-item time {
	color: #333;
	font-size: 14px;
	margin-right: 3rem;
}
.news-cate {
	margin-right: 3rem;
	white-space: nowrap;
	width: 100%;
}
.news-cate a {
	background-color: #D2D2D2;
	color: #fff;
	padding: 5px 10px;
	font-size: 1.2rem;
	border-radius: 100px;
	display: block;
	text-align: center;
	text-decoration: none;
	position: relative;
	z-index :1;
}
.news-cate a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	opacity: 0;
	z-index: -1;
}
.news-cate a:hover:before {
	opacity: 1;
}
@media only screen and (max-width: 690px) {
	.news-cate {
		width: auto;
		min-width: 100px;
	}
}


/* ==================================
お知らせ一覧
===================================== */
.archive-news .top-news-tablist .tablist li a {
	width: 160px;
}
.single-news .news-cate {
	font-size: 14px;
	border-radius: 100px;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	border: none;
	padding: 6px 10px;
	color: #fff;
	text-align: center;
	width: auto;
	min-width: 150px;
	margin-right: 2rem;
	display: inline-block;
}
.archive-news .news-cate {
	font-size: 14px;
	border-radius: 100px;
	border: none;
	color: #fff;
	text-align: center;
	width: auto;
	min-width: 130px;
	margin-right: 1rem;
	display: inline-block;
}
.archive-news .news-item {
	border-bottom: 1px solid #707070;
	margin-bottom: 20px;
	padding: 20px 0;
}
.archive-news .news-item__title {
	margin-top: 10px;
	margin-bottom: 10px;
}
.archive-news .news-main .news-item__title a {
	font-size: 1.8rem;
}
.archive-news .news-main .news-item__title a:hover {
	color: #1EB8D4;
}
.archive-news .tabcontent {
	border: none;
	padding: 0;
}
.news-main, .search-contents {
	width: calc(70% - 20px);
}
.sidebar {
	width: 25%;
}
.news-main .news-item__title a {
	font-size: 1.6rem;
	text-decoration: none;
}
.news-main .news-item__title a:hover {
	color: #092A93;
}
@media only screen and (max-width: 1024px) {
	.sidebar {
		width: 30%;
	}
}
@media only screen and (max-width: 979px) {
	.news-main, .sidebar,  .search-contents {
		width: 100%;
	}
	.news-main,  .search-contents {
		margin-bottom: 80px;
	}
}

/* ==================================
お知らせ詳細
===================================== */
.single-title .top-title {
	position: relative;
	padding-bottom: 3.6rem;
	z-index: 2;
}
.single-title .top-title::before {
	display: block;
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 10rem;
	height: 1px;
	background-color: #0A52A0;
}
.single-news time {
	font-size: 14px;
	margin-bottom: 10px;
}
.thumbnails-img img {
	width: 100%;
	height: auto;
}
.single-news-title {
	margin-bottom: 20px;
}
@media only screen and (max-width: 690px) {
	.single-news-title {
		font-size: 1.6em;
	}
	.single-title .top-title {	
		line-height: 1.5;
	}
}


/* ==================================
ページネーション
===================================== */
.navigation {
	margin-top: 50px;
}
.navigation .nav-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.navigation .nav-links .page-numbers {
	background-color: #14278E;
	border: 1px solid #14278E;
	border-radius: 100px;
	font-size: 1.6rem;
	width: 30px;
	height: 30px;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 5px;
	color: #fff;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.navigation .nav-links .page-numbers:hover {
	background-color: #fff;
	color: #14278E;	
	text-decoration: none;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.navigation .prev-arrow::before {
	border-color: #14278E;
}
.next-arrow, .prev-arrow {
	position: relative;
}
.next-arrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	position: absolute;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	border-color: #14278E;
	top: 50%;
	left: -5px;
	transform: translateY(-50%) rotate(45deg);
}
.prev-arrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border: 0px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	position: absolute;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	border-color: #fff;
	top: 50%;
	left: -2px;
	transform: translateY(-50%) rotate(-135deg);	
}
.navigation .nav-links .page-numbers:hover .next-arrow::before, .navigation .nav-links .page-numbers:hover .prev-arrow::before {
	border-color: #14278E;
}

/* 追記 */
.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
	background: transparent !important;
	margin: 0 !important;
	color: #092A93!important;
}
.page-numbers.dots:hover,
.page-numbers.next:hover,
.page-numbers.prev:hover {
	background: #092A93 !important;
	color: #fff!important;
}


/* ==================================
サイドバー
===================================== */
.widget_search #form {
	padding: 10px;
}
.widget_search #form #s-box, .widget_search #form #s-btn-area {
	position: relative;
}
.widget_recent_entries ul, .widget_categories ul, .widget_archive ul  {
	padding: 10px;
}
.widget_recent_entries li, .widget_categories li, .widget_archive li {
	padding: 5px;
	list-style: none;
}
.wp-block-search__button {
	font-size: 1.2rem;
	padding: 5px;
	width: 20%;
	margin: 0;
	border-radius: 0;
	border: none;
}
.wp-block-search__input {
	border-radius: 0;
}
.wp-block-search__inside-wrapper {
	padding: 20px 10px;
	border: 1px solid #f5f5f5;
}

.widget-title {
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	color: #fff;
	padding: 10px;
	text-align: center;
	font-size: 1.6rem;
	display: block;
	border-radius: 10px;
}
.widget #form {
	border: 1px solid #333;
}
.widget #form input::placeholder {
	color: #333;
}
.widget #form #s-btn-area {
	right: 0;
	width: 50px;
	height: 100%;
	display: block;
}
#side-btn {
	width: 50px;
	height: 100%;
	display: block;
}
#side-btn a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: url(../img/search.png) center / 30px no-repeat;
}
#side-btn a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
}
#side-btn a:hover:before {
	opacity: 0;
}
#side-btn a::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background: -webkit-linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	background: linear-gradient(130deg, #46B1D1 0%, #0A52A0 100%);
	z-index: -2;
}
.side-news {
	padding: 20px 0 10px;
}
.side-news .thumbnails-img {
	width: calc(33% - 10px);
	margin-right: 10px;
}
.side-news .news-title-txt {
	width: calc(66% - 10px);
}
.date-list li {
	list-style: none;
	margin-bottom: 10px;
}
.date-list li a {
	padding-left: 14px;
	position: relative;
}
.date-list li a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-webkit-transform: rotate(45deg) translateX(-50%);
	transform: rotate(45deg) translateX(-50%);
}
.news-category-list, .date-list {
	padding: 20px 10px 10px;
}
.news-category-list li {
	list-style: none;
	min-width: 100px;
	margin-bottom: 10px;
	width: calc(50% - 10px);
}
.news-category-list li a {
	border-radius: 100px;
	background-color: #D8D8D8;
	border: none;
	padding: 5px;
	color: #fff;
	position: relative;
	z-index: 0;
	font-size: 14px;
	min-width: 100px;
	display: block;
	text-align: center;
	text-decoration: none;
}
.news-category-list li a::before {
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 100px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	opacity: 0;
}
.news-category-list li a:hover {
	color: #fff;
}
.news-category-list li a:hover:before {
	opacity: 1;
}
.side-btn {
	border-radius: 10px;
}
.side-btn a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}
.side-btn a::before {
	background: -webkit-linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	background: linear-gradient(130deg, #0A52A0 0%, #46B1D1 100%);
	z-index: -1;
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 10px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	opacity: 0;
}
.side-btn a:hover {
	color: #fff;
}
.side-btn a:hover:before {
	opacity: 1;
}
@media only screen and (max-width: 1024px) {
	.news-category-list li {
		width: 100%;
	}
}
@media only screen and (max-width: 1024px) {
	.sidebar .news-category-list li {
		width: calc(33% - 20px);
	}
}
@media only screen and (max-width: 690px) {
	.sidebar .news-category-list li {
		width: 100%;
	}
}

/* =============================================
お問い合わせ
============================================= */
.contact-fields {
	max-width: 100vw;
	padding: 20px 0 15px;
	border-bottom: #e2e2e2 1px solid;
}
#contact-form {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin: 0;
}
#contact-form dt {
	box-sizing: border-box;
	width: 260px;
	padding: 11px 16px 11px 4px;
}
#contact-form dd {
	box-sizing: border-box;
	width: calc(100% - 260px);
	margin-left: 0;
	padding-right: 5px;
	padding-left: 5px;
}
.required {
	margin-right: 10px;
	display: inline-block !important;
	padding: 2px 5px;
	background-color: #ce052c;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	text-align: center;
	vertical-align: middle;
}
.optional {
	margin-right: 10px;
	display: inline-block !important;
	padding: 2px 5px;
	background-color: #777;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	text-align: center;
	vertical-align: middle;
}
.mw_wp_form input[type="text"], .mw_wp_form input[type="email"] {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 38px;
	padding: 8px 12px;
	border: 1px solid #bebebe;
	background: #f5f5f5;
	font-size: 16px;
	line-height: 32px;
	text-indent: 5px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.mwform-tel-field input[type="text"] {
	width: auto;
	display: inline;
}
.mw_wp_form textarea {
	box-sizing: border-box;
	width: 100% !important;
	padding: 8px;
	border: 1px solid #bebebe;
	background: #f5f5f5;
}
.mw_wp_form a {
	color: #092A93;
}
.mw_wp_form input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-width: 240px;
	margin-right: 5px;
	padding: 16px 48px;
	border: solid 1px #329bd2;
	border-radius: 4px;
	background-color: #329bd2;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
	margin-bottom: 20px;
}
.mw_wp_form input[type="submit"]:active, .mw_wp_form input[type="submit"]:hover {
	outline: none;
	background-color: #2886b9;
}
.contact-btn #contact-form {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.contact-btn {
	text-align: center;
	margin: 40px auto 0;
}
.contact-btn #contact-form{
	flex-flow: column;
}
@media screen and (max-width: 690px) {
	#contact-form {
		display: block;
	}
	#contact-form dt {
		width: 100%;
		padding: 11px 0;
	}
	#contact-form dd {
		width: 100%;
		margin-left: 0;
	}
	.mwform-tel-field input[type="text"] {
		padding: revert;
	}
}
/*==================
#loading
==================*/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 99999;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(-45deg, #379AC5 0%, #1A6CAD 100%);
	background: linear-gradient(-45deg, #379AC5 0%, #1A6CAD 100%);
}
#loading_box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}
.loading-txt {
	color: #fff;
	line-height: 1.2;
	font-size: 5rem;
	font-weight: bold;
}
.loading-txt span {
	text-transform: uppercase;
	animation: rotate 1s infinite linear;
	display: inline-block;
}
@keyframes rotate {
	10% {
		transform: scale(1.1);
	}
}
.loading-txt span:nth-child(2) {
	animation-delay: 0.1s;
}
.loading-txt span:nth-child(3) {
	animation-delay: 0.2s;
}
.loading-txt span:nth-child(4) {
	animation-delay: 0.3s;
}
.loading-txt span:nth-child(5) {
	animation-delay: 0.4s;
}
.loading-txt span:nth-child(6) {
	animation-delay: 0.5s;
}
.loading-txt span:nth-child(7) {
	animation-delay: 0.6s;
}
.loading-txt span:nth-child(8) {
	animation-delay: 0.7s;
}
.loading-txt span:nth-child(9) {
	animation-delay: 0.8s;
}
.loading-txt span:nth-child(10) {
	animation-delay: 0.9s;
}
.loading-txt span:nth-child(11) {
	animation-delay: 1s;
}
.loading-txt span:nth-child(12) {
	animation-delay: 1.1s;
}
.loading-txt span:nth-child(13) {
	animation-delay: 1.2s;
}
.loading-txt span:nth-child(14) {
	animation-delay: 1.3s;
}
.loading-txt span:nth-child(15) {
	animation-delay: 1.4s;
}
.loading-txt span:nth-child(16) {
	animation-delay: 1.5s;
}
@media only screen and (max-width: 690px) {
	.loading-txt {
		font-size: 3rem;		
	}
}

/*==================
これまでの歩み、歴史
==================*/
.history-h2 {
	background-color: #14278E;
	position: relative;
	color: #fff;
	padding: 2%;
	text-align: center;
	font-size: 26px;
}
.history-h2::after {
	position: absolute;
	content: '';
	top: 100%;
	left: 50%;
	border: 40px solid transparent;
	border-top: 36px solid #14278E;
	width: 0;
	height: 0;
	margin-left: -40px;
}
.history-waku {
	background-color: #f5fdff;
	padding: 60px 0;
}
dl.history {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
dl.history dt {
	font-family: "Poppins", "Noto Sans JP", sans-serif !important;
	padding: 0em 0.5em 0em 1.0em;
	position: relative;
	color: #14278E;
	font-size: 36px;
	line-height: 1;
	width: 25%;
}
dl.history dt::after {
	content: '●';
	position: absolute;
	right: -0.6em;
	top: 12px;
	font-size: 12px;
	color: #14278e;
}
dl.history dt span {
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 18px;
}
dl.history dd {
	width: 75%;
	font-size: 16px;
	padding: 0.2em 1em 2em;
	border-left: 2px solid #14278E;
}
dl.history dd h2 {
	font-size: 22px;
	font-weight: bold;
	margin: 0 0 5px;
}
.history-right {
	width: 90%;
	margin-top: 100px;
	border-left: 1px solid #14278E;
}
.history-right h3 {
	background-color: #14278E;
	color: #fff;
	padding: 2%;
	text-align: center;
	font-size: 18px;
}
.history-right .h4 {
	font-family: "Poppins", "Noto Sans JP", sans-serif !important;
	padding: 1em 0.5em 0em 1.0em;
	color: #14278E;
	font-size: 20px;
	line-height: 1;
}
.history-right span {
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 16px;
}
.history-right p {
	padding-left: 1.2em;
}

@media only screen and (max-width: 690px) {
	.history-waku .flex-sp {
		display: flex;
		flex-flow: column;
	}
	.order-1 { order: 1;}
	.order-2 { order: 2;}
	.history-right {
		margin: auto;
		margin-top: 50px;
	}
	.history-waku {
		padding: 20px 0;
	}
	.history-h2::after {
		top: 90%;
	}
	.history-h2 {
		font-size: 18px;
	}
	dl.history dt {
		padding: 0em 0.5em 0em 0.5em;
		font-size: 16px;
	}
	dl.history dt span {
		font-size: 14px;
	}
	dl.history dt {
		padding: 0.2em 0.5em 0em 0.5em;
		font-size: 20px;
		width: 30%;
	}
	dl.history dd {
		width: 70%;
		font-size: 14px;
	}
}




