@charset "UTF-8";

/* 見出し
------------------------------------- */
.hdg-d {
	color: #000;
}
h2.hdg-d {
	margin-bottom: 30px;
	color: #0563c1;
}

/* ボタン
------------------------------------- */
.btn-style-a, .btn-style-b, .btn-style-c {
	position: relative;
	display: inline-block;
	padding: 8px 22px 7px;
	text-align: center;
	line-height: 1.4;
	text-decoration: none !important;
	border-radius: 100vh;
	transition: background .2s;
}
.btn-style-a {
	color: #fff;
	border: 1px solid #fff;
}
.btn-style-a:hover {
	color: #transparent;
	background: #fff;
}
.btn-style-b {
	color: #fff;
	background: #0563c1;
	border: 1px solid #0563c1;
}
.btn-style-b:hover {
	color: #0563c1;
	background: transparent;
}
.btn-style-c {
	color: #0563c1;
	border: 1px solid #0563c1;
}
.btn-style-c:hover {
	color: #fff;
	background: #0563c1;
}
.lyt-btn-a .btn-style-a,
.lyt-btn-a .btn-style-b,
.lyt-btn-a .btn-style-c {
	min-width: 340px;
	padding: 10px 24px;
	font-size: 2.4rem;
}
.lyt-btn-b .btn-style-a,
.lyt-btn-b .btn-style-b,
.lyt-btn-b .btn-style-c {
	font-size: 1.4rem;
}
@media only screen and (max-width: 480px) {
	.hero-area-b .lyt-btn-a .btn-style-a {
		min-width: auto;
		width: 100%;
	}
	.lyt-btn-a .btn-style-a,
	.lyt-btn-a .btn-style-b,
	.lyt-btn-a .btn-style-c {
		min-width: auto;
		font-size: 2rem;
		width: 100%;
	}
	.lyt-btn-b .btn-style-a,
	.lyt-btn-b .btn-style-b,
	.lyt-btn-b .btn-style-c {
		font-size: 2rem;
		width: 100%;
	}
}


/* ヒーローエリア
------------------------------------*/
.lf-hero-a {
	display: flex;
	max-height: 420px;
	position: relative;
	overflow: hidden;
}
.lf-hero-contents {
	display: flex;
	width: 50%;
	color: #fff;
	align-items: center;
	justify-content: flex-end;
	background: #2a63bb ;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: left top;
}
.lf-hero-visual {
	width: 50%;
	height: 420px;
	position: relative;
	overflow: hidden;
}
.lf-hero-visual img {
	width: 100%;
	height: auto;
	min-width: 100%;
	max-width: none;
	max-width: initial;
	min-height: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.lf-hero-contents-inner {
	width: 640px;/* 365px */
	/* margin-right: 275px; */
}
.lf-hero-hdg {
	font-size: 4.5rem;
	line-height: 1.3;
	font-weight: 700;
	min-height: 0vw;
	width: 100%;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
.breadcrumb-wrapper + #main .lf-hero-a {
	margin-top: 16px;
}

@media only screen and (max-width:1600px) {
	.lf-hero-visual img {
		width: auto;
		right: 50%;
		transform: translateX(50%) translateY(-50%);
	}
}
@media only screen and (max-width:1280px) {
	.lf-hero-visual img {
		height: 100%;
	}
	.lf-hero-contents-inner {
		width: 100%;
		/* margin-right: calc(275vw*100/1280); */
		padding-left: 8px;
	}
	.lf-hero-hdg {
		font-size: calc(45vw*100/1280);
	}
}
@media only screen and (max-width:1000px) {
	.lf-hero-a {
		max-height: calc(420vw*100/1000);
	}
	.lf-hero-contents-inner {
		padding-left: 16px;
	}
	.lf-hero-visual {
		height: calc(420vw*100/1000);
	}
}
@media only screen and (max-width:767px) {
	.lf-hero-a {
		flex-direction: column;
		max-height: none;
		max-height: initial;
	}
	.lf-hero-a::after {
		width: calc(336vw*100/767);
		height: calc(266vw*100/767);
		margin-left: calc(-144vw*100/767);
		bottom: calc(83vw*100/767);
		z-index: 1;
		transform: none;
	}
	.lf-hero-contents {
		display: block;
		width: 100%;
	}
	.lf-hero-visual {
		width: 100%;
		height: 0;
		padding-top: 56.25%;
	}
	.lf-hero-visual img {
		top: 0;
		right: 50%;
		transform: translateX(50%);
	}
	.lf-hero-contents-inner {
		margin-right: 0;
		padding: 20px 16px;
	}
	.lf-hero-hdg {
		font-size: 3.5rem;
	}
}

/* ページ内リンク
------------------------------------- */
.lf-hero-a + .section .section-inner {
	padding-top: 30px !important;
	padding-bottom: 20px !important;
}
.page-link {
	display: flex;
	justify-content: space-between;
	margin: 0 0 -16px -16px;
}
.page-link > * {
	width: 100%;
	padding: 0 0 16px 16px;
}
.page-link a {
	padding: 6px 10px 6px 20px;
	border: 2px solid #bfbfbf;
	text-decoration: none;
	font-size: 1.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.2s;
}
.page-link a:hover {
	background: #bfbfbf;
	color: #fff;
}
.page-link a:hover svg {
	fill: #fff;
}
@media only screen and (max-width: 767px) {
	.lf-hero-a + .section .section-inner {
		padding-top: 16px !important;
		padding-bottom: 40px !important;
	}
	.page-link {
		flex-direction: column;
		margin: 0;
	}
	.page-link > * {
		width: 100%;
		padding: 0;
		margin-bottom: 4px;
	}
}


.main-contents .section +.section .section-inner {
	padding-top: 56px !important;
}
@media only screen and (max-width: 767px) {
	.main-contents .section +.section .section-inner {
		padding-top: 0 !important;
	}
}


/* 資料ダウンロード
------------------------------------- */
.lyt-col-a.download .title {
	margin-top: 10px !important;
	font-size: 1.8rem;
}
.lyt-col-a.download .lyt-btn-b {
	margin-top: 16px;
	justify-content: center;
}
@media only screen and (max-width: 767px) {
	.lyt-col-a.download > * {
		margin-bottom: 40px;
	}
	.lyt-col-a.download > * .visual img {
		width: 100%;
	}
}
@media only screen and (max-width: 480px) {
 	.lyt-btn-b .btn-style-a, .lyt-btn-b .btn-style-b, .lyt-btn-b .btn-style-c {
		font-size: 1.6rem;
	}
}

/* お問い合わせ
------------------------------------- */
.section.contact .list-contact-a>li {
	flex-grow: 1;
}

.section.contact .list-contact-a a::before {
	display: none;
}

.section.contact .list-contact-a a {
	flex-direction: column;
	padding: 14px 24px 14px;
	width: 100%;
}

.list-contact-a a .contact-inner {
	margin-top: 20px !important;
	margin-left: 26px;
	position: relative;
	font-size: 3rem;
}

.list-contact-a a .contact-inner::before {
	display: block;
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	margin-top: -10px;
	left: -1em;
	top: 50%;
	background-image: url(//www.fujitsu.com/imgv5/common/icon/sprite2.png);
	background-position: -50px -50px;
}

@media only screen and (max-width: 767px) {
	.list-contact-a a .contact-inner {
		position: relative;
		font-size: 2rem;
	}

	.list-contact-a a .contact-inner::before {
		left: -1.2em;
	}
}