@charset "UTF-8";

:root {
	--header-height: 60px;
	@media only screen and (min-width: 1300px) {
		--header-height: 100px;
	}
}
header,
footer {
	box-sizing: border-box;
	font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif !important;
}
body.is-nav-open {
	overflow: hidden;
}
/*********************************
header
*********************************/
.l-header {
	position: fixed;
	z-index: 99;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	top: 0;
	left: 0;
	background: #fff;
	height: var(--header-height);
}
.l-header .logo {
	margin: 0;
}
.l-header .l-nav,
.l-header .modal,
.l-header .l-nav .nav,
.l-header .iconList {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}
.headerInner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.l-header .logo {
	margin: 0;
	width: 100%;
	max-width: 90px;
}
.l-header .l-nav .nav {
}
.l-header .nav li a {
	pointer-events: auto !important;
}
.l-header .iconList {
	margin-top: 1em;
}
.l-header .iconList .iconLi {
	width: auto;
	margin: 0;
	transition: 0.3s;
}
.l-header .iconList .iconLi:hover {
	opacity: 0.8;
}
.l-header .iconList .iconLi .iconLink {
	width: auto;
	display: flex;
	flex-direction: row;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	position: relative;
}
.l-header .iconList .iconLi .iconLink::after {
	background-color: #ffffff;
	background-image: radial-gradient(circle, #1b2850 0.5px, transparent 0.5px);
	background-position: 0 0;
	background-size: 3px 3px;
	mix-blend-mode: multiply;
	opacity: 0.1;
	width: 100%;
	height: 100%;
	z-index: 0;
	top: 0;
	left: 0;
	position: absolute;
	content: '';
}
.l-header .iconList .iconLi .txt {
	display: flex;
	align-items: center;
	gap: 0.8em;
	flex-direction: column;
	padding: 0.7em;
	min-width: 9rem;
	z-index: 1;
	font-size: 1em;
}
.l-header .iconList .iconLi .txt small {
	font-size: 0.9em;
}
.l-header .iconList .iconLi .icon {
	width: auto;
	display: flex;
	align-items: center;
	flex-direction: row;
	padding: 0.7em;
	justify-content: center;
	z-index: 1;
}
.l-header .iconList .iconLi.h_mail .icon {
	background: #1b2850;
}
.l-header .iconList .iconLi.h_dl .icon {
	background: #0046b4;
}
.l-header .iconList .iconLi.h_consultant .icon {
	background: #0078e6;
}
.l-header .iconList .iconLi.h_mail,
.l-footer__cta__button dl.contact {
	background: #323c64;
	background: -webkit-linear-gradient(90deg, rgba(50, 60, 100, 1) 0%, rgba(27, 40, 80, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(50, 60, 100, 1) 0%, rgba(27, 40, 80, 1) 100%);
	background: linear-gradient(90deg, rgba(50, 60, 100, 1) 0%, rgba(27, 40, 80, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#323C64",
  endColorstr="#1B2850",
  GradientType=1
);
}
.l-header .iconList .iconLi.h_dl,
.l-footer__cta__button dl.download {
	background: #005ac8;
	background: -webkit-linear-gradient(90deg, rgba(0, 90, 200, 1) 0%, rgba(0, 70, 180, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 90, 200, 1) 0%, rgba(0, 70, 180, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 90, 200, 1) 0%, rgba(0, 70, 180, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#005AC8", endColorstr="#0046B4", GradientType=1);
}
.l-header .iconList .iconLi.h_consultant,
.l-footer__cta__button dl.consultation {
	background: #008cfa;
	background: -webkit-linear-gradient(90deg, rgba(0, 140, 250, 1) 0%, rgba(0, 120, 230, 1) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 140, 250, 1) 0%, rgba(0, 120, 230, 1) 100%);
	background: linear-gradient(90deg, rgba(0, 140, 250, 1) 0%, rgba(0, 120, 230, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#008CFA", endColorstr="#0078E6", GradientType=1);
}
.l-header__ham {
	position: relative;
	width: 30px;
	height: 15px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 100;
	padding: 0;
	margin: 0;
}
.l-header__ham span {
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #1b2850;
	transition: 0.3s;
}
.l-header__ham span:nth-child(1) {
	top: 0;
}
.l-header__ham span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
	width: 70%;
}
.l-header__ham span:nth-child(3) {
	bottom: 0;
	width: 35%;
}
.l-header__ham.is-active span:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.l-header__ham.is-active span:nth-child(2) {
	opacity: 0;
}
.l-header__ham.is-active span:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}
.l-header__ham.is-active span:nth-child(1),
.l-header__ham.is-active span:nth-child(2),
.l-header__ham.is-active span:nth-child(3) {
	width: 100%;
}
@media only screen and (max-width: 768px) {
	.l-header .headerInner {
		padding: 0 1em 0 1.5em !important;
		height: var(--header-height);
	}
	.l-header .iconList .iconLi .icon {
		padding: 0.5em;
		min-width: 3rem;
	}
	.mobile_wrap5 a {
		padding: 0.5em !important;
		color: #fff !important;
		width: auto !important;
	}
	.l-header .l-nav {
		height: calc(100% - (var(--header-height)));
		top: var(--header-height);
	}
	.l-header .l-nav .modal {
		width: 85%;
		max-width: 400px;
		padding: 0;
		background: #1b2850;
		color: #fff;
		overflow-y: auto;
	}
	.l-header .l-nav .modal .nav {
		padding: 0;
		width: 100%;
	}
	.l-header .l-nav .modal .nav li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	}
	.l-header .l-nav .modal .nav li a {
		color: #fff;
		font-size: 1.1em;
		padding: 1em 1.5em;
		width: 100%;
		letter-spacing: 0.03em;
		font-weight: 600;
	}
	.l-header .iconList {
		margin-top: 0;
		padding: 1.5em;
		width: 100%;
	}
	.l-header .iconList .iconLi {
		width: 100%;
		border: 1px solid rgba(255, 255, 255, 0.5);
		max-width: 250px;
	}
	.l-header .iconList .iconLi:not(:last-child) {
		border-bottom: none;
	}
	.l-header .iconList .iconLi .txt {
		gap: 0.5em;
		padding: 1em;
		min-width: auto;
		font-size: 1.1em;
		text-align: left;
		align-items: flex-start;
	}
}
@media only screen and (min-width: 769px) {
	.l-header__ham {
		display: none;
	}
	.l-header .logo {
		max-width: 5rem;
	}
	.l-header .logo.is-small {
		width: 100%;
		max-width: 5rem;
	}
	.headerInner {
		padding: 0 0 0 2vw;
	}
	.l-header .l-nav .nav {
		margin-right: 1em;
		gap: 1em 2em;
	}
	.l-header .nav li a {
		display: flex;
		align-items: center;
		font-size: 0.9em;
	}
	.l-header .l-nav,
	.l-header .modal,
	.l-header .l-nav .nav,
	.l-header .iconList {
		flex-direction: row;
	}
	.l-header .nav li a,
	.l-header .iconList,
	.l-header .iconList .iconLi,
	.l-header .iconList .iconLi .iconLink,
	.l-header .iconList .iconLi .icon {
		height: var(--header-height);
	}
	.l-header .iconList {
		margin-top: 0;
	}
	.l-header .iconList .iconLi .iconLink {
		align-items: center;
	}
	.l-header .iconList .iconLi .txt {
		min-width: auto;
		font-size: 0.7em;
	}
	.l-header .iconList .iconLi .icon {
		padding: 0.2em;
	}
	.l-header .iconList .iconLi .icon img {
		max-width: 60%;
	}
	.l-header .l-nav,
	.l-header .modal,
	.l-header .l-nav .nav,
	.l-header .iconList {
		align-items: center;
		justify-content: center;
	}
}
@media only screen and (min-width: 1025px) {
	.l-header .l-nav .nav {
		margin-right: 2em;
		gap: 1em 2em;
	}
	.l-header .iconList .iconLi .txt {
		min-width: 6rem;
		font-size: 0.8em;
	}
}
@media only screen and (min-width: 1300px) {
	.headerInner {
		padding: 0 0 0 5vw;
	}
	.l-header .logo {
		max-width: 8rem;
	}
	.l-header .logo.is-small {
		width: 100%;
		max-width: 8rem;
	}
	.l-header .l-nav .nav {
		margin-right: 3em;
		gap: 1em 3em;
	}
	.l-header .nav li a {
		font-size: 1.1em;
	}
	.l-header .iconList .iconLi .txt {
		min-width: 9rem;
		font-size: 1em;
	}
	.l-header .iconList .iconLi .icon {
		padding: 0.7em;
	}
	.l-header .iconList .iconLi .icon img {
		max-width: 100%;
	}
}
/*********************************
footer
*********************************/
.l-footer {
	overflow: hidden;
	background: none;
	display: flex;
	flex-direction: column;
	padding: 0 !important;
}
.l-footer__cta {
	background: url('../img/f_cta_bg.jpg') no-repeat center / cover;
	color: #fff;
	padding: 4em 0;
}
.l-footer__cta__button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 360px;
	margin-inline: auto;
}
.l-footer__cta__button dl {
	padding: 2.5em 2em;
	flex: 1;
}
.l-footer__cta__button dl dt {
	font-size: 1.2em;
	font-weight: 600;
	text-align: center;
}
.l-footer__cta__button .border-button {
	max-width: 280px;
	margin: 2em auto 0;
}
.l-footer__cta__button .border-button .list-button-link {
	max-width: 280px;
	border: none;
	padding: 1.8em 3em;
	font-size: 1.05em;
}
.l-footer__cta__button .list-button-link:hover {
	text-decoration: none;
}
.l-footer__cta__button .border-button .list-button-link:hover {
	background: #fff;
	color: #1b2850;
}
.l-footer__cta__button .border-button.list-button:hover .arrowBox .arrow::before,
.l-footer__cta__button .border-button.list-button:hover .arrowBox .arrow::after,
.l-footer__cta__button .border-button.list-button .list-button-link:hover .arrowBox .arrow::before,
.l-footer__cta__button .border-button.list-button .list-button-link:hover .arrowBox .arrow::after {
	background-color: #1b2850;
}
.l-footer__cta__button dl dd .icon {
	position: absolute;
	left: 1.5em;
}
.l-footer__nav {
	background: #1b2850;
	padding: 3em 0;
}
.l-footer__nav .inner {
	display: flex;
	flex-direction: column;
}
.l-footer__nav__list {
	flex: 1;
}
.l-footer__nav__list li {
}
.l-footer__nav__list li a {
	color: #fff;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	display: block;
	width: 100%;
	padding: 1em 0;
	font-size: 1.05em;
}
.l-footer__nav__list__sub {
	margin-top: 0.7em;
}
.l-footer__nav__list__sub li a {
	opacity: 0.5;
	border-bottom: none;
	padding: 0.7em 0;
	font-size: 1em;
}
.l-footer__copyright {
	color: #fff;
	padding: 2em 0;
	background: #222;
	text-align: center;
}
.l-footer__copyright small {
	font-size: 0.8em;
}
.l-footer .m-inner {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	max-width: 1140px;
}
@media only screen and (min-width: 769px) {
	.l-footer__cta {
		padding: 7em 0;
	}
	.l-footer__cta__button {
		flex-direction: row;
		max-width: 100%;
	}
	.l-footer__cta__button dl {
	}
	.l-footer__cta__button dl dt {
		font-size: 1.5em;
	}
	.l-footer__nav {
		padding: 5em 0;
	}
	.l-footer__nav .inner {
		flex-direction: row;
		gap: 3em;
	}
}
/*********************************
button
*********************************/
@-webkit-keyframes animateButtonArrowShort {
	0% {
		width: 0px;
	}
	100% {
		width: 25px;
	}
}
@keyframes animateButtonArrowShort {
	0% {
		width: 0px;
	}
	100% {
		width: 25px;
	}
}
.list-buttons {
	max-width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1em;
	margin-top: 2em;
}
.list-buttons .list-button.border-button {
	margin: 0;
}
.list-button {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: 2em;
}
.list-button-link {
	color: #1b2850;
	text-decoration: none;
}
.list-button .arrowBox {
	width: 60px;
	position: relative;
	margin-left: 10px;
}
.list-button .arrowBox .arrow {
	position: absolute;
	top: 0;
	left: 0;
	width: 60px;
}
.list-button .arrowBox .arrow::before,
.list-button .arrowBox .arrow::after {
	content: '';
	display: block;
	background-color: #1b2850;
	position: absolute;
	top: 50%;
}
.list-button .arrowBox .arrow::before {
	left: 0;
	height: 1px;
	width: 100%;
	transform: translateY(-50%);
}
.list-button .arrowBox .arrow::after {
	right: 2px;
	height: 1px;
	width: 10px;
	transform: rotate(40deg) translateY(-5px);
}
.list-button:hover .arrowBox .arrow {
	-webkit-animation: animationButtonArrow 0.5s;
	animation: animationButtonArrow 0.5s;
}
.border-button {
	justify-content: center;
	max-width: 400px;
	width: 100%;
	margin: 2em auto 0;
	position: relative;
}
.border-button .list-button-link {
	width: 100%;
	max-width: 400px;
	border: 1px solid #1b2850;
	background: #fff;
	text-align: center;
	padding: 1em 3em 0.9em;
	margin: auto;
	font-weight: 600;
	border-radius: 5px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	transition: 0.3s;
}
.border-button.list-button .arrowBox {
	width: 25px;
	position: absolute;
	margin-left: 0;
	right: 15px;
}
.border-button.list-button .arrowBox .arrow {
	width: 25px;
}
.border-button .list-button-link:hover {
	background: #1b2850;
	color: #fff;
}
.border-button.list-button:hover .arrowBox .arrow {
	-webkit-animation: animateButtonArrowShort 0.5s;
	animation: animateButtonArrowShort 0.5s;
}
.border-button.list-button:hover .arrowBox .arrow::before,
.border-button.list-button:hover .arrowBox .arrow::after,
.border-button.list-button .list-button-link:hover .arrowBox .arrow::before,
.border-button.list-button .list-button-link:hover .arrowBox .arrow::after {
	background-color: #fff;
}
@media screen and (min-width: 1025px) {
	.border-button {
		margin: 4em auto 0;
	}
}
@media screen and (min-width: 769px) {
	.list-buttons {
		flex-direction: row;
		gap: 2em;
		margin-top: 3em;
	}
}
/*********************************
content
*********************************/
.innerpage_wrapper,
main {
	margin-top: var(--header-height) !important;
}
.innerpage_wrapper .inner.m-inner,
.m-inner {
	margin-left: auto !important;
	margin-right: auto !important;
}
.l-header .m-inner,
.l-footer .m-inner {
	padding: 0 !important;
}
