@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Work+Sans:wght@600;700&display=swap";

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	content: '';
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

@keyframes swing1 {
	0% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}

	35% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: rotate(5deg) translateY(-10px);
	}

	50% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}

	85% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: rotate(-5deg) translateY(-10px);
	}

	100% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}
}

@keyframes swing2 {
	0% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}

	35% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: rotate(-5deg) translateY(-10px);
	}

	50% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}

	85% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: rotate(5deg) translateY(-10px);
	}

	100% {
		animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
		transform: rotate(0deg) translateY(0);
	}
}

@keyframes bounce {

	from,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: translate3d(0, 0, 0);
	}

	40%,
	43% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		animation-timing-function: cubic-bezier(.165, .84, .44, 1);
		transform: translate3d(0, -4px, 0);
	}
}

.slide-in {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity .6s cubic-bezier(.39, .575, .565, 1), transform 1.2s cubic-bezier(.165, .84, .44, 1);
}

.slide-in.is-inview {
	opacity: 1;
	transform: translateY(0);
}

.rotate-in {
	opacity: 0;
	transform: rotate(-15deg) translate(-15px, 15px);
	transform-origin: right bottom;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1), transform .6s cubic-bezier(.175, .885, .32, 1.275);
}

.rotate-in.is-inview {
	opacity: 1;
	transform: rotate(0deg) translate(0, 0);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img,
svg {
	vertical-align: top;
}

html {
	font-size: 10px;
}

@media screen and (max-width:768px) {
	html {
		font-size: 1.30208vw;
	}
}

body {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: normal;
	line-break: strict;
	height: 100vh;
	color: #000;
	background: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", Yu Gothic Medium, "游ゴシック", Yu Gothic, "メイリオ", sans-serif;
	/*font-size: 1.5rem;*/
	font-size: 16px;
	letter-spacing: .05em;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

@media screen and (max-width:768px) {
	body {
		font-size: 16px;
	}
}

@media screen and (max-width:768px) {
	body.is-show-nav {
		overflow: hidden;
	}
}

a {
	color: #000;
	text-decoration: underline;
	-webkit-tap-highlight-color: transparent;
}

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

	a:hover,
	a:active {
		text-decoration: none;
	}
}

img {
	max-width: 100%;
}

::selection {
	background: #000;
	color: #fff;
}

@media screen and (max-width:768px) {
	.only-pc {
		display: none !important;
	}
}

@media screen and (min-width:769px) {
	.only-sp {
		display: none !important;
	}
}

.js-fit-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	font-family: 'object-fit: cover;';
}

.js-disabled {
	pointer-events: none;
	opacity: .15;
}

.nallow-spacing {
	letter-spacing: -.05em;
}

.font-family-en {
	font-family: Work Sans, sans-serif;
}

.align-center,
.alignCenter {
	text-align: center;
}

.align-right {
	text-align: right;
}

.margin_t20 {
	margin-top: 2rem;
}

.layout-container {
	position: relative;
	overflow: hidden;
	min-width: 124rem;
	padding-top: 7rem;
}

@media screen and (max-width:768px) {
	.layout-container {
		min-width: 0;
		padding-top: 10rem;
	}
}

.is-scrolled-down .layout-container {
	padding-top: 0;
}

@media screen and (max-width:768px) {
	.is-scrolled-down .layout-container {
		padding-top: 10rem;
	}
}

.layout-content {
	overflow: hidden;
}

.layout-content__footer {
	padding: 10rem 0;
}

.layout-content__container {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 9rem 0 10rem;
}

@media screen and (max-width:768px) {
	.layout-content__container {
		display: block;
		padding: 6rem 3rem 10rem;
	}
}

.layout-content__container+.layout-content__footer {
	padding-top: 4rem;
}

.layout-content__main {
	width: 81rem;
}

@media screen and (max-width:768px) {
	.layout-content__main {
		width: 100%;
	}
}

.layout-content__main>:first-child {
	margin-top: 0 !important;
}

.layout-content__sidebar {
	width: 24rem;
}

@media screen and (max-width:768px) {
	.layout-content__sidebar {
		width: 100%;
		margin-top: 10rem;
	}
}

.layout-content__sidebar>:first-child {
	margin-top: 0 !important;
}

.layout-footer {
	position: relative;
	padding: 8rem 0;
	color: #fff;
	background: #1b2024;
}

@media screen and (max-width:768px) {
	.layout-footer {
		padding: 8rem 3rem 6rem;
	}
}

.layout-footer__inner {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

@media screen and (max-width:768px) {
	.layout-footer__inner {
		display: block;
	}
}

.layout-footer__primary {
	width: 42rem;
	margin-right: 8rem;
}

@media screen and (max-width:768px) {
	.layout-footer__primary {
		width: 100%;
	}
}

.layout-footer__secondary {
	width: 64rem;
}

@media screen and (max-width:768px) {
	.layout-footer__secondary {
		width: 100%;
	}
}

.layout-footer-contact {
	text-align: center;
}

.layout-footer__tertiary {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 8rem;
}

.layout-footer__tertiary-contact {
	display: block;
	width: 45rem;
	text-align: center;
	margin: 0 auto;
}

.layout-footer__tertiary a {
	font-size: 1.1rem;
}

@media screen and (max-width:768px) {
	.layout-footer__tertiary {
		display: block;
		margin-top: 5rem;
	}

	.layout-footer__tertiary a {
		font-size: inherit;
	}
}

.layout-footer__tertiary-contact .list-sub-menu {
	margin: 1rem auto;
}

.layout-header {
	width: 100%;
	height: 7rem;
	position: fixed;
	top: 0;
	left: 0;
	min-width: 124rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	z-index: 9999;
	transition: transform .2s cubic-bezier(.39, .575, .565, 1);
	will-change: transform;
}

@media screen and (max-width:768px) {
	.layout-header {
		min-width: 0;
		height: 10rem;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.is-scrolled-down .layout-header {
	transform: translateY(-100%);
}

@media screen and (max-width:768px) {
	.is-scrolled-down .layout-header {
		transform: translateY(0);
	}
}

@media screen and (max-width:768px) {
	.is-scrolled-down.is-show-nav .layout-header {
		transform: translateY(0);
	}
}

.layout-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 99999;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 1;
	pointer-events: auto;
	transition: opacity .6s cubic-bezier(.39, .575, .565, 1);
}

.is-loaded .layout-loading {
	opacity: 0;
	pointer-events: none;
}

.agree-form {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.agree-form {
		margin-top: 6rem;
	}
}

.agree-form__inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.agree-form__inner input {
	margin-right: .5rem;
}

.agree-form.is-required .agree-form__inner:after {
	content: '※';
	margin-left: 5px;
	color: #e60000;
	font-size: 1.2rem;
	font-weight: 700;
}

.archive-case {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -2.3rem;
	margin-left: -2.3rem;
}

@media screen and (max-width:768px) {
	.archive-case {
		margin-right: -2rem;
		margin-left: -2rem;
	}
}

.archive-case__item {
	width: 24rem;
	margin-right: 2.3rem;
	margin-left: 2.3rem;
}

@media screen and (max-width:768px) {
	.archive-case__item {
		width: 33.4rem;
		margin-right: 2rem;
		margin-left: 2rem;
	}
}

.archive-case__item a {
	display: block;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.archive-case__item a.is-on {
	opacity: .6;
}

.archive-case__item:nth-of-type(n+5) {
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.archive-case__item:nth-of-type(n+3) {
		margin-top: 4rem;
	}
}

.archive-case__category {
	position: relative;
	margin-top: 2rem;
	padding-left: 2.5rem;
	font-size: 1.3rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.archive-case__category {
		font-size: 2rem;
	}
}

.archive-case__category:before {
	width: 2rem;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	.archive-case__category:before {
		height: 1px;
		top: 50%;
	}
}

.archive-case__category.is-alog {
	color: #0f6e5a;
}

.archive-case__category.is-alog:before {
	background: #0f6e5a;
}

.archive-case__category.is-nac {
	color: #4482ac;
}

.archive-case__category.is-nac:before {
	background: #4482ac;
}

.archive-case__heading {
	margin-top: 1rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.archive-case__heading {
		line-height: 1.6;
	}
}

.archive-case__company {
	margin-top: 1rem;
	color: #a0a0a0;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.archive-case__company {
		font-size: 2rem;
	}
}

.archive-download {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 2rem;
	margin-right: -.8rem;
	margin-left: -.8rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.archive-download {
		margin-top: 3rem;
		margin-right: -1rem;
		margin-left: -1rem;
	}
}

.archive-download__item {
	position: relative;
	width: 35.6rem;
	margin-right: .8rem;
	margin-left: .8rem;
	padding: 0 1.8rem 11.5rem;
	background: #fff;
}

.wallpaper_list .archive-download {
	margin-top: 60px;
	margin-bottom: 60px;
}

.wallpaper_list .archive-download__item {
	margin-bottom: 40px;
}

@media screen and (max-width:768px) {
	.archive-download__item {
		width: 34.4rem;
		margin-right: 1rem;
		margin-left: 1rem;
		padding: 0 2rem 11.5rem;
	}

	.wallpaper_list .archive-download__item {
		width: 100%;
	}

	.wallpaper_list .button-basic--full {
		font-size: 2rem;
	}

	.wallpaper_list .button-basic .icon--download {
		top: calc(50% - 1.4rem);
		width: 2.8rem;
	}

	.wallpaper_list .button-basic .icon {
		left: 1.5rem;
	}
}

.archive-download__item:nth-of-type(n+4) {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.archive-download__item:nth-of-type(n+4) {
		margin-top: 3rem;
	}
}

@media screen and (max-width:768px) {
	.archive-download__item:nth-of-type(n+3) {
		margin-top: 3rem;
	}
}

.archive-download__heading {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 11rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

@media screen and (max-width:768px) {
	.archive-download__heading {
		height: 12rem;
		font-size: 2.7rem;
	}
}

.archive-download__heading small {
	display: block;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.archive-download__heading small {
		font-size: 2rem;
	}
}

.archive-download__image {
	max-width: 192px;
	max-height: 192px;
	margin-top: 10px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.archive-download__image img {
	max-width: 192px;
	max-height: 192px;
}

.archive-download__caption {
	margin-top: 2rem;
	flex-grow: 1;
}

@media screen and (max-width:768px) {
	.archive-download__caption {
		font-size: 2rem;
	}
}

.archive-download__button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 1.8rem 1.8rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.archive-download__button {
		padding: 0 2rem 2rem;
		font-size: 2rem;
	}
}

.archive-download__button a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 7.3rem;
	padding-bottom: .3rem;
	color: #fff;
	box-shadow: 0 -.3rem 0 0 rgba(0, 0, 0, .4) inset;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.archive-download__button a {
		padding-left: 1rem;
	}
}

.archive-download__button a:before {
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	background: rgba(0, 0, 0, .2);
	z-index: 1;
	transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.archive-download__button a.is-on:before {
	bottom: 0;
	top: auto;
	height: 100%;
}

.archive-download__button span {
	position: relative;
	display: inline-block;
	z-index: 9;
}

.archive-download__button .icon {
	position: absolute;
	top: calc(50% - 1.6rem);
	left: 2rem;
	width: 3.2rem;
	height: 3.2rem;
	fill: #fff;
	z-index: 9;
	transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.archive-download--alog .archive-download__heading {
	color: #0f6e5a;
}

.archive-download--alog .archive-download__button a {
	background: #0f6e5a;
}

.archive-download--nac .archive-download__heading {
	color: #4482ac;
}

.archive-download--nac .archive-download__button a {
	background: #4482ac;
}

.archive-download--bg-gray .archive-download__item {
	background: #f7f8f9;
}

.archive-press__item {
	background: #f4f4f4;
}

.archive-press__item a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	padding: 2rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.archive-press__item a {
		display: block;
		padding: 3rem;
	}
}

.archive-press__item a.is-on {
	opacity: .6;
}

.archive-press__item a.is-on .archive-seminar__title {
	text-decoration: none;
}

.archive-press__item:nth-of-type(n+2) {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.archive-press__item:nth-of-type(n+2) {
		margin-top: 3rem;
	}
}

.archive-press__date {
	width: 10rem;
}

@media screen and (max-width:768px) {
	.archive-press__date {
		width: auto;
	}
}

.archive-press__title {
	width: calc(100% - 20.3rem);
	margin-left: 1.5rem;
}

@media screen and (max-width:768px) {
	.archive-press__title {
		width: auto;
		margin: 2rem 0 0;
	}
}

@media screen and (max-width:768px) {
	.archive-press .icon-category-press {
		position: absolute;
		top: 3rem;
		right: 3rem;
	}
}

.archive-seminar {
	margin-top: 4rem;
}

.archive-seminar__item {
	background: #f4f4f4;
}

.archive-seminar__item a {
	position: relative;
	display: block;
	padding: 2rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.archive-seminar__item a {
		padding: 3rem;
	}
}

.archive-seminar__item a.is-on {
	opacity: .6;
}

.archive-seminar__item a.is-on .archive-seminar__title {
	text-decoration: none;
}

.archive-seminar__item:nth-of-type(n+2) {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.archive-seminar__item:nth-of-type(n+2) {
		margin-top: 3rem;
	}
}

.archive-seminar__body {
	margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
	.archive-seminar__body {
		margin-top: 2rem;
	}
}

.archive-seminar__company {
	color: #a0a0a0;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.archive-seminar__company {
		font-size: 2rem;
	}
}

.archive-seminar__title {
	margin-top: .8rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	text-decoration: underline;
}

@media screen and (max-width:768px) {
	.archive-seminar__title {
		font-size: 3rem;
	}
}

.archive-seminar__title small {
	display: block;
	margin-top: .3rem;
	font-size: 1.6rem;
}

@media screen and (max-width:768px) {
	.archive-seminar__title small {
		margin-top: 1rem;
		font-size: 2.4rem;
	}
}

.article-case {
	position: relative;
}

.article-case:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 12rem);
	content: '';
	display: block;
	background: #f7f8f9;
}

.article-case__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
}

.article-case__header {
	position: relative;
	z-index: 9;
	padding: 8rem 0 10rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.article-case__header {
		padding: 8rem 3rem 10rem;
	}
}

.article-case__body {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
	margin-top: 10rem;
}

@media screen and (max-width:768px) {
	.article-case__body {
		padding: 0 3rem;
	}
}

.article-case__footer {
	position: relative;
	z-index: 9;
	margin-top: 10rem;
}

.article-message {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	padding: 10rem 0;
}

.article-message__header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}

.article-message__body {
	margin-top: 5rem;
}

.article-press__footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 6rem;
}

.article-seminar__footer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 6rem;
}

.aside-case {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:768px) {
	.aside-case {
		padding: 0 3rem;
	}
}

.aside-case__heading {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.aside-case__heading {
		font-size: 3.2rem;
	}
}

.aside-case__body {
	margin-top: 4rem;
}

.aside-press {
	position: relative;
	padding: 10rem 0;
}

.aside-press:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 16rem);
	content: '';
	display: block;
	background: #f7f8f9;
}

.aside-press__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.aside-press__inner {
		padding: 0 3rem;
	}
}

.aside-press__heading {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.aside-press__heading {
		font-size: 3.6rem;
	}
}

.aside-press__heading+* {
	margin-top: 0 !important;
}

.aside-press__text {
	margin-top: 3rem;
	line-height: 2;
}

.aside-press__notes {
	margin-top: 3rem;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.aside-press__notes {
		margin-top: 3.5rem;
		font-size: 2rem;
	}
}

.banner-recruit {
	margin-bottom: 9.5rem;
	text-align: center;
}

.box-border {
	margin-top: 3rem;
	padding: 2.5rem 4rem;
	border: 1px solid #1b3f5c;
}

.box-border__heading--center {
	text-align: center;
}

.box-border__text {
	margin-top: 2rem;
}

.box-border>:first-child {
	margin-top: 0 !important;
}

.box-border--gray {
	border-color: #dcdcdc;
}

.box-border--margin-top-narrow {
	margin-top: 2rem;
}

.button-back {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

.button-basic {
	width: 20rem;
	height: 5.1rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	/*	color:#fff;*/
	color: #1b3f5c;
	/*	border:solid 1px #fff;*/
	border: solid 1px #1b3f5c;
	background: none;
	outline: none;
	font-family: inherit;
	font-size: 1.3rem;
	letter-spacing: .1em;
	text-decoration: none;
	cursor: pointer;
	transition: color .3s cubic-bezier(.39, .575, .565, 1) .2s;
}

.section-statement .button-basic,
.group-conversion-case .button-basic {
	color: #fff;
	border: solid 1px #fff;
}


@media screen and (max-width:768px) {
	.button-basic {
		width: 40rem;
		height: 10.2rem;
		font-size: 2.4rem;
	}
}

.button-basic:before {
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	display: block;
	/*	background:#fff;*/
	background: #1b3f5c;
	z-index: 1;
	transition: width .5s cubic-bezier(.77, 0, .175, 1);
}

.button-basic:after {
	width: 3rem;
	height: 1px;
	position: absolute;
	top: calc(50% - 1px);
	left: calc(100% - 1.9rem);
	content: '';
	display: block;
	/*	background:#fff;*/
	background: #1b3f5c;
	z-index: 1;
	transition: width .5s cubic-bezier(.77, 0, .175, 1);
}

.section-statement .button-basic:before,
.section-statement .button-basic:after,
.group-conversion-case .button-basic:before,
.group-conversion-case .button-basic:after {
	background: #fff;
}

@media screen and (max-width:768px) {
	.button-basic:after {
		left: calc(100% - 4rem);
		width: 6rem;
	}
}

.button-basic span {
	position: relative;
	display: inline-block;
	z-index: 9;
}

.button-basic .icon {
	position: absolute;
	left: 1.5rem;
	/*	fill:#fff;*/
	fill: #1b3f5c;
	z-index: 9;
	transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.button-basic:hover use {
	fill: #fff;
	transition: .3s;
}

.button-basic:hover span {
	color: #fff;
	transition: .3s;
}

.section-statement .button-basic .icon,
.group-conversion-case .button-basic .icon {
	fill: #fff;
}

.section-statement .button-basic:hover use,
.group-conversion-case .button-basic:hover use {
	fill: #1b3f5c;
}

.section-statement .button-basic:hover span,
.group-conversion-case .button-basic:hover span {
	color: #1b3f5c;
}


@media screen and (max-width:768px) {
	.button-basic .icon {
		left: 3rem;
	}
}

.button-basic .icon--download {
	top: calc(50% - 1.3rem);
	width: 2.6rem;
}

@media screen and (max-width:768px) {
	.button-basic .icon--download {
		top: calc(50% - 2.6rem);
		width: 5.4rem;
	}
}

.button-basic .icon--contact {
	top: calc(50% - 1rem);
	width: 2.9rem;
}

@media screen and (max-width:768px) {
	.button-basic .icon--contact {
		left: 2.8rem;
		top: calc(50% - 2rem);
		width: 5.8rem;
	}
}

.button-basic .icon--trial {
	top: calc(50% - 1rem);
	width: 2rem;
}

@media screen and (max-width:768px) {
	.button-basic .icon--trial {
		left: 2.8rem;
		top: calc(50% - 2rem);
		width: 5.8rem;
	}
}

.button-basic.is-on {
	color: #000;
}

.button-basic.is-on:before {
	left: 0;
	right: auto;
	width: 100%;
}

.button-basic.is-on:after {
	right: -1.1rem;
	left: auto;
	width: 0;
}

@media screen and (max-width:768px) {
	.button-basic.is-on:after {
		right: -2rem;
	}
}

.button-basic.is-on .icon {
	fill: #000;
}

.button-basic--black {
	color: #000;
	border-color: #000;
}

.button-basic--black:before {
	background: #000;
}

.button-basic--black:after {
	background: #000;
}

.button-basic--black.is-on {
	color: #fff;
}

.button-basic--full {
	width: 100%;
	font-size: 1.5rem;
}

@media screen and (max-width:768px) {
	.button-basic--full {
		font-size: 2.8rem;
	}
}

.button-basic--wide {
	width: 40rem;
}

@media screen and (max-width:768px) {
	.button-basic--wide {
		width: 64.8rem;
	}
}

@keyframes buttonBasicLine {
	0% {
		right: -1.1rem;
		left: auto;
		width: 3rem;
	}

	40% {
		right: -1.1rem;
		left: auto;
		width: 0;
	}

	60% {
		right: auto;
		left: calc(100% - 1.9rem);
		width: 0;
	}

	100% {
		right: auto;
		left: calc(100% - 1.9rem);
		width: 3rem;
	}
}

.button-form {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.button-form {
		display: block;
		margin-top: 8rem;
	}
}

.button-form__item {
	text-align: center;
}

@media screen and (max-width:768px) {
	.button-form__item {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.button-form__item:nth-of-type(n+2) {
	margin-left: 4rem;
}

@media screen and (max-width:768px) {
	.button-form__item:nth-of-type(n+2) {
		margin-top: 4rem;
		margin-left: auto;
	}
}

.button-more {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.button-more {
		margin-top: 6rem;
	}
}

.button-more--margin-narrow {
	margin-top: 1rem;
}

@media screen and (max-width:768px) {
	.button-more--margin-narrow {
		margin-top: 3rem;
	}
}

.button-more--margin-top-narrow {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.button-more--margin-top-narrow {
		margin-top: 3rem;
	}
}

.button-pagetop {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	line-height: 0;
	font-size: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.button-pagetop {
		bottom: 3rem;
		right: 2rem;
	}
}

.button-pagetop a {
	width: 4.5rem;
	height: 4.5rem;
	border-radius: 100%;
	display: block;
	background: rgba(0, 0, 0, .4) url(../../images/en/common/arw_small_white.svg) no-repeat center center;
	background-size: .5rem auto;
	transform: rotate(-90deg);
}

@media screen and (max-width:768px) {
	.button-pagetop a {
		width: 7rem;
		height: 7rem;
		border-radius: 100%;
		background-image: url(../../images/en/common/arw_white.svg);
		background-size: 1rem 1.8rem;
	}
}

.is-scrolled .button-pagetop {
	opacity: 1;
	pointer-events: auto;
}

.button-recruitment {
	width: 100%;
	max-width: 50rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 7.5rem;
}

@media screen and (max-width:768px) {
	.button-recruitment {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.carousel-banner {
	padding: 3rem 0;
	background: #121212;
}

.carousel-banner__inner {
	width: 100%;
	max-width: 97rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:768px) {
	.carousel-banner__inner {
		width: 100%;
		max-width: 63.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.carousel-banner__item {
	padding: 0 .5rem;
	vertical-align: top;
}

.carousel-banner__item img {
	width: 100%;
}

.carousel-banner .slick-slide {
	width: 19.4rem;
}

@media screen and (max-width:768px) {
	.carousel-banner .slick-slide {
		width: 21.2rem;
	}
}

.carousel-banner .slick-arrow {
	width: 6.5rem;
	height: 100%;
	position: absolute;
	top: 0;
	padding: 0;
	outline: none;
	border: none;
	background: url(../../images/en/common/arw_white.svg) no-repeat center center;
	background-size: .8rem auto;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.carousel-banner .slick-arrow {
		background-size: 1rem 1.8rem;
	}
}

.carousel-banner .slick-prev {
	left: -6.5rem;
	transform: rotate(180deg);
}

.carousel-banner .slick-next {
	right: -6.5rem;
}

.carousel-case {
	margin-top: 4rem;
}

.carousel-case__item {
	width: 41.6rem;
	padding: 0 1.8rem;
	vertical-align: top;
}

.carousel-case__item a {
	display: block;
	width: 38rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.carousel-case__item a.is-on {
	opacity: .6;
}

.carousel-case__category {
	position: relative;
	margin-top: 2rem;
	padding-left: 2.5rem;
	font-size: 1.3rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.carousel-case__category {
		margin-top: 2.4rem;
		padding-left: 5rem;
		font-size: 2.2rem;
	}
}

.carousel-case__category:before {
	width: 2rem;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	.carousel-case__category:before {
		width: 4rem;
		height: 1px;
		top: 50%;
	}
}

.carousel-case__category.is-alog {
	color: #0f6e5a;
}

.carousel-case__category.is-alog:before {
	background: #0f6e5a;
}

.carousel-case__category.is-nac {
	color: #4482ac;
}

.carousel-case__category.is-nac:before {
	background: #4482ac;
}

.carousel-case__heading {
	margin-top: 1rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.carousel-case__heading {
		margin-top: 1.2rem;
		font-size: 2.6rem;
		line-height: 1.8;
	}
}

.carousel-case__company {
	margin-top: 1rem;
	color: #a0a0a0;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.carousel-case__company {
		font-size: 2.2rem;
	}
}

.carousel-logo {
	margin-top: 4rem;
}

.carousel-logo__inner {
	margin-top: 1rem;
}

.carousel-logo__item {
	width: 20rem;
	padding: 0 1rem;
}

.carousel-logo__item img {
	width: 18rem;
}

.carousel-verona-result {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	border: solid 1px #dcdcdc;
}

.carousel-verona-result__item {
	vertical-align: top;
}

.carousel-verona-result .slick-slide {
	vertical-align: top;
}

.carousel-verona-result .slick-arrow {
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 2.4rem);
	padding: 0;
	outline: none;
	border: solid 1px #4482ac;
	background: #fff url(../../images/en/common/arw_small_nac.svg) no-repeat center center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 0;
	line-height: 0;
	z-index: 9;
	cursor: pointer;
}

.carousel-verona-result .slick-prev {
	left: -2.4rem;
	transform: rotate(180deg);
}

.carousel-verona-result .slick-next {
	right: -2.4rem;
}

.cover-case {
	height: 24rem;
	background: #1b3f5c;
	text-align: center;
}

.cover-case img {
	max-width: 128rem;
}

.group-case-nac {
	padding: 6rem 12rem;
	background: #fff;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-case-nac {
		padding: 5rem 3rem;
	}
}

.group-case-nac>:first-child {
	margin-top: 0;
}

.group-case-solutions {
	padding: 3rem 5rem;
	background: #fff;
}

.group-case-solutions--border {
	border: solid 1px #dcdcdc;
}

.group-case-solutions__header {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width:768px) {
	.group-case-solutions__header {
		display: block;
	}
}

.group-case-solutions__image {
	width: 53rem;
	margin-right: 4.5rem;
}

@media screen and (max-width:768px) {
	.group-case-solutions__image {
		width: 100%;
		max-width: 53rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.group-case-solutions__title {
	width: calc(100% - 57.5rem);
}

@media screen and (max-width:768px) {
	.group-case-solutions__title {
		width: auto;
		margin-top: 3rem;
	}
}

.group-case-solutions__category span {
	display: inline-block;
	padding: .5rem 1rem;
	color: #fff;
	background: #1e5078;
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.group-case-solutions__category span {
		font-size: 2rem;
	}
}

.group-case-solutions__sub-heading {
	margin-top: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-case-solutions__sub-heading {
		font-size: 2.4rem;
	}
}

.group-case-solutions__heading {
	margin-top: .3rem;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-case-solutions__heading {
		margin-top: .6rem;
		font-size: 3rem;
	}
}

.group-case-solutions__body {
	margin-top: 2rem;
}

.group-case-solutions__text {
	line-height: 2;
}

.group-case-vclient {
	padding: 7rem 5rem;
	background: #f7f8f9;
}

@media screen and (max-width:768px) {
	.group-case-vclient {
		padding: 5rem 3rem;
	}
}

.group-case-vclient+.group-case-vclient {
	margin-top: 3rem;
}

.group-case-vclient__title {
	color: #1b3f5c;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-case-vclient__title {
		font-size: 3.6rem;
	}
}

.group-case-vclient__lead {
	margin-top: 1rem;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-case-vclient__lead {
		font-size: 2.4rem;
	}
}

.group-case-vclient__item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.group-case-vclient__item {
		display: block;
	}
}

.group-case-vclient__heading {
	width: 10rem;
	height: 10rem;
	border-radius: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 4rem;
	color: #62a4cf;
	border: solid 1px #62a4cf;
	background: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

.group-case-vclient__body {
	width: calc(100% - 14rem);
}

@media screen and (max-width:768px) {
	.group-case-vclient__body {
		width: auto;
		margin-top: 2rem;
	}
}

.group-case-vclient__body>:first-child {
	margin-top: 0;
}

.group-case-vclient__sub-heading {
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-case-vclient__sub-heading {
		font-size: 3rem;
	}
}

.group-case-vclient__text {
	margin-top: .5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.group-case-vclient__text {
		font-size: 2.4rem;
	}
}

.group-case-vclient__image {
	margin-top: 4rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-case-vclient__image {
		margin-top: 3rem;
	}
}

.group-company-data {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 1rem;
}

.group-company-data__image {
	width: 28rem;
	padding: 1rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-company-data__image {
		width: 20rem;
	}
}

.group-company-data__body {
	width: calc(100% - 28rem);
}

@media screen and (max-width:768px) {
	.group-company-data__body {
		width: calc(100% - 20rem);
	}
}

.group-company-data__table {
	width: 100%;
}

@media screen and (max-width:768px) {
	.group-company-data__table {
		font-size: 2rem;
	}
}

.group-company-data__table th,
.group-company-data__table td {
	border-bottom: 1px solid #dcdcdc;
}

.group-company-data__table th {
	width: 20rem;
	padding: 2rem;
}

@media screen and (max-width:768px) {
	.group-company-data__table th {
		padding: 2rem 1rem;
	}
}

.group-company-data__table td {
	width: calc(100% - 20rem);
	padding: 2rem 0;
}

.group-company-data__table a {
	color: #0068bd;
}

.group-contact-press {
	margin-top: 6rem;
	background: #fff;
	text-align: center;
}

.group-contact-press+.group-contact-press {
	margin-top: 3rem;
}

.group-contact-press__heading {
	padding: .5rem;
	color: #fff;
	background: #1b3f5c;
	font-size: 2.4rem;
}

@media screen and (max-width:768px) {
	.group-contact-press__heading {
		font-size: 3rem;
	}
}

.group-contact-press__text {
	padding: 2.5rem;
	line-height: 2;
}

.group-conversion-case {
	width: 140rem;
	margin: 6rem -15rem 0;
	padding-bottom: 4rem;
}

@media screen and (max-width:768px) {
	.group-conversion-case {
		width: auto;
		margin: 6rem 0 0;
	}
}

.group-conversion {
	width: 100%;
	max-width: 140rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 24rem;
	/*	color:#fff;*/
	color: #1b3f5c;
	background-color: #1b3f5c;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin: -20px auto;
}

.article-case__footer .group-conversion {
	background-color: #fff;
}

.group-conversion-case .group-conversion {
	color: #fff;
}

@media screen and (max-width:768px) {
	.group-conversion {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		display: block;
		height: auto;
		padding: 5rem 5rem 7rem;
	}
}

.group-conversion__heading {
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.group-conversion__heading {
		font-size: 3.4rem;
		text-align: center;
	}
}

.group-conversion__heading span {
	font-family: Work Sans, sans-serif;
	font-size: 3rem;
}

@media screen and (max-width:768px) {
	.group-conversion__heading span {
		font-size: 5rem;
	}
}

.group-conversion__sub-heading {
	margin-top: 1rem;
}

@media screen and (max-width:768px) {
	.group-conversion__sub-heading {
		font-size: 2.7rem;
		text-align: center;
	}
}

.group-conversion__list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.group-conversion__list {
		display: block;
		margin-top: 4rem;
	}
}

.group-conversion__list--left {
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.group-conversion__item {
	width: 30rem;
}

.group-conversion__line {
	width: 30rem;
	margin: 20px auto 0;
}

.doc_download .archive-download__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 1.8rem 2rem;
}

@media screen and (max-width:768px) {
	.group-conversion__item {
		width: 100%;
	}

	.group-conversion__line .button-basic .icon--download {
		top: calc(50% - 1.5rem);
		left: 1rem;
		width: 3rem;
	}

	.group-conversion__line .button-basic {
		height: 7rem;
	}

	.group-conversion__line span {
		font-size: 1.5rem;
	}

	.doc_download .archive-download__item {
		padding: 0 2rem 2rem;
	}
}

.group-conversion__item:nth-of-type(n+2) {
	margin-left: 4rem;
}

.group-conversion__footer {
	width: 30rem;
	margin: 4rem auto 0;
}

@media screen and (max-width:768px) {
	.group-conversion__item:nth-of-type(n+2) {
		margin: 4rem 0 0;
	}
}

.group-conversion__image {
	width: 14.1rem;
	margin-right: 6rem;
}

@media screen and (max-width:768px) {
	.group-conversion__image {
		width: 100%;
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.group-conversion__image--wide {
	width: 22rem;
}

@media screen and (max-width:768px) {
	.group-conversion__body {
		margin-top: 3rem;
	}
}

/*.group-conversion--alog{
	background-image:url(../../images/en/solutions/alog/bg_conversion.jpg);
}*/
.group-conversion--alog {
	background: #fff;
}

/*.group-conversion--nac{
	background-image:url(../../images/en/solutions/nac/bg_conversion.jpg);
}*/
.group-conversion--nac {
	background: #fff;
}

.group-conversion--case-alog {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: url(../../images/en/case/bg_conversion_alog.jpg);
}

.group-conversion--case-verona {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: url(../../images/en/case/bg_conversion_alog.jpg);
}

.group-conversion--case-hypersonix {
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: url(../../images/en/case/bg_conversion_alog.jpg);
}

.group-download__heading {
	padding-bottom: 3rem;
	color: #1b3f5c;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-download__heading {
		padding-bottom: 5rem;
		font-size: 4rem;
	}
}

.group-download__heading span {
	position: relative;
	display: inline-block;
}

.group-download__body {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.group-download__body:before {
	border-style: solid;
	border-width: 2.8rem 2.7rem 0;
	border-color: #fff transparent transparent;
	position: absolute;
	top: 0;
	left: calc(50% - 2.7rem);
	width: 0;
	height: 0;
	content: '';
	display: block;
}

.group-download--alog .group-download__body {
	background-image: url(../../images/en/solutions/bg/bg_download.jpg);
}

.group-download--nac .group-download__body {
	background-image: url(../../images/en/solutions/bg/bg_download.jpg);
}

.group-environment {
	padding: 6rem 12rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.group-environment {
		padding: 6rem 3rem;
	}
}

.group-environment>:first-child {
	margin-top: 0;
}

.group-environment--gray {
	background: #f7f8f9;
}

.group-environment__table {
	width: 100%;
	margin-top: 3rem;
	letter-spacing: 0;
}

@media screen and (max-width:768px) {
	.group-environment__table {
		margin-top: 4rem;
		font-size: 2rem;
	}
}

.group-environment__table caption {
	margin-bottom: 1rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: left;
}

@media screen and (max-width:768px) {
	.group-environment__table caption {
		font-size: 2.4rem;
	}
}

.group-environment__table th,
.group-environment__table td {
	padding: 1rem 2rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 2;
}

@media screen and (max-width:768px) {

	.group-environment__table th,
	.group-environment__table td {
		padding: 1rem;
	}
}

.group-environment__table th {
	width: 18rem;
	background: #f4f4f4;
}

.group-environment__table th a {
	color: #0068bd;
	font-size: 1.8rem;
	font-weight: 700;
}

.group-environment__table th a.fontsize-nomal {
	font-size: 100%;
}

.group-environment__table td {
	width: calc(100% - 18rem);
}

.group-environment__table td a {
	color: #0068bd;
}

.group-environment__table--vertical {
	table-layout: fixed;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.group-environment__table--vertical {
		font-size: 1.6rem;
	}
}

.group-environment__table--vertical th {
	width: auto;
	text-align: center;
	vertical-align: middle;
}

.group-environment__table--vertical th+th {
	border-left: 1px solid #dcdcdc;
}

.group-environment__table--vertical td {
	width: auto;
	text-align: center;
	vertical-align: middle;
}

.group-environment__table--vertical td+td {
	border-left: 1px solid #dcdcdc;
}

.group-environment__table--vertical td.align-right {
	text-align: right;
}

.group-environment__table--vertical td.word-break-keep {
	word-break: keep-all;
}

@media screen and (min-width:769px) {
	.group-environment__table--vertical td.word-break-keep-pc {
		word-break: keep-all;
	}
}

.group-environment__table--mix {
	table-layout: fixed;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.group-environment__table--mix {
		font-size: 1.6rem;
	}
}

.group-environment__table--mix th {
	width: auto;
	text-align: center;
	vertical-align: middle;
}

.group-environment__table--mix th+th,
.group-environment__table--mix th+td {
	border-left: 1px solid #dcdcdc;
}

.group-environment__table--mix td {
	width: auto;
	text-align: center;
	vertical-align: middle;
}

.group-environment__table--mix td+td {
	border-left: 1px solid #dcdcdc;
}

.group-environment__table--mix td.align-right {
	text-align: right;
}

.group-faq {
	margin-top: 6rem;
	padding: .1rem 12rem 6rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.group-faq {
		padding: .1rem 3rem 6rem;
	}
}

.group-feature-hypersonix {
	width: 140rem;
	margin: 9rem -15rem 0;
	padding: 10rem 15rem;
	background: #f7f8f9;
}

@media screen and (max-width:768px) {
	.group-feature-hypersonix {
		width: auto;
		margin: 9rem 0 0;
		padding: 6rem 3rem;
	}
}

.group-feature-hypersonix__heading {
	margin-bottom: 4rem;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-feature-hypersonix__heading {
		margin-bottom: 4rem;
		font-size: 3.6rem;
	}
}

.group-feature-hypersonix__message {
	margin-top: 6rem;
	font-size: 4.6rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-feature-hypersonix__message {
		margin-top: 4rem;
	}
}

.group-feature+.group-feature {
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.group-feature+.group-feature {
		margin-top: 3rem;
	}
}

.group-feature__header {
	position: relative;
	padding: 1rem;
	color: #fff;
	background: #1b3f5c;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-feature__header {
		padding: 2rem 1rem;
	}
}

.group-feature__number {
	position: absolute;
	top: 0;
	left: 0;
	width: 15.5rem;
	height: 100%;
	overflow: hidden;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 1.5rem;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-feature__number {
		width: 12rem;
		padding-right: 1.5rem;
		font-size: 2rem;
	}
}

.group-feature__number:before {
	position: absolute;
	top: 0;
	left: -1.5rem;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: #32536d;
	transform: skewX(-25deg);
}

@media screen and (max-width:768px) {
	.group-feature__number:before {
		transform: skewX(-20deg);
	}
}

.group-feature__number span {
	position: relative;
	display: inline-block;
}

.group-feature__heading {
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-feature__heading {
		padding-left: 12rem;
		text-align: left;
	}
}

.group-feature__body {
	padding: 4rem 5rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.group-feature__body {
		padding: 4rem 3rem 5rem;
	}
}

.group-feature__body>:first-child {
	margin-top: 0;
}

.group-functions-solutions {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 4rem;
}

@media screen and (max-width:768px) {
	.group-functions-solutions {
		padding-bottom: 3rem;
	}
}

.group-functions-solutions+.group-functions-solutions {
	margin-top: 4rem;
	padding-top: 4rem;
}

@media screen and (max-width:768px) {
	.group-functions-solutions+.group-functions-solutions {
		margin-top: 3rem;
		padding-top: 3rem;
	}
}

.group-functions-solutions+.group-functions-solutions:before {
	position: absolute;
	top: 0;
	left: -5rem;
	width: calc(100% + 10rem);
	height: 1px;
	content: '';
	display: block;
	background: #e8eaed;
}

.group-functions-solutions__heading {
	width: 19rem;
	height: 6rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #1b3f5c;
	border: solid 2px #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-functions-solutions__heading {
		width: 16rem;
		height: 6rem;
	}
}

.group-functions-solutions__heading span {
	font-size: 3.6rem;
}

.group-functions-solutions__list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	width: calc(100% - 19rem);
}

@media screen and (max-width:768px) {
	.group-functions-solutions__list {
		width: calc(100% - 16rem);
	}
}

.group-functions-solutions__list--3step {
	padding-left: 2rem;
}

.group-functions-solutions__item {
	position: relative;
}

.group-functions-solutions__item:nth-of-type(n+2):before {
	border-style: solid;
	border-width: 1.8rem 0 1.8rem 1.8rem;
	border-color: transparent transparent transparent #0f6e5a;
	position: absolute;
	top: calc(50% - 1.8rem);
	left: -4rem;
	width: 0;
	height: 0;
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	.group-functions-solutions__item:nth-of-type(n+2):before {
		border-style: solid;
		border-width: .9rem 0 .9rem .9rem;
		border-color: transparent transparent transparent #0f6e5a;
		position: absolute;
		top: calc(50% - .9rem);
		left: -1rem;
	}
}

.group-functions-solutions__image {
	position: relative;
	text-align: center;
}

.group-functions-solutions__text {
	position: absolute;
	bottom: -4rem;
	left: 0;
	width: 100%;
	font-size: 1.8rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.group-functions-solutions__text {
		bottom: -3rem;
		letter-spacing: 0;
	}
}

.group-functions-solutions__text--after {
	color: #0f6e5a;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.group-functions-solutions__text--after {
		font-size: 2rem;
	}
}

.group-horizontal {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width:768px) {
	.group-horizontal {
		display: block;
	}
}

.group-horizontal__image {
	display: block;
	width: 26.6rem;
	margin-right: 2rem;
}

@media screen and (max-width:768px) {
	.group-horizontal__image {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

.group-horizontal__text {
	width: calc(100% - 28.6rem);
}

@media screen and (max-width:768px) {
	.group-horizontal__text {
		width: auto;
		margin-top: 3rem;
	}
}

.group-horizontal a {
	color: #1b3f5c;
}

.group-horizontal--vedge {
	margin-top: 5rem;
	padding: 0 7rem;
}

@media screen and (max-width:768px) {
	.group-horizontal--vedge {
		padding: 0;
	}
}

.group-horizontal--vedge .group-horizontal__image {
	display: block;
	width: 48.6rem;
	margin-right: 5rem;
}

@media screen and (max-width:768px) {
	.group-horizontal--vedge .group-horizontal__image {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.group-horizontal--vedge .group-horizontal__text {
	width: calc(100% - 53.6rem);
	line-height: 2;
}

@media screen and (max-width:768px) {
	.group-horizontal--vedge .group-horizontal__text {
		width: auto;
	}
}

.group-isms {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width:768px) {
	.group-isms {
		display: block;
	}
}

.group-isms__image {
	width: 15.6rem;
}

@media screen and (max-width:768px) {
	.group-isms__image {
		margin: 0 auto;
	}
}

.group-isms__text {
	width: 80.4rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.group-isms__text {
		width: auto;
		margin-top: 4rem;
	}
}

.group-receiver {
	margin-top: 3rem;
	padding: 5rem;
	background: #fff;
}

.group-receiver__slogan {
	color: #0f6e5a;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.group-receiver__heading {
	margin-top: 1rem;
	color: #0f6e5a;
	font-family: Work Sans, sans-serif;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
}

.group-receiver__image {
	margin-top: 2.5rem;
}

.group-share-alog {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.5rem;
}

.group-share-alog__image {
	text-align: center;
}

.group-share-alog__notes {
	margin-top: 2.5rem;
	font-size: 1.2rem;
	text-align: right;
}

.group-ssl {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.group-ssl__image {
	width: 12.8rem;
}

.group-ssl__text {
	width: 84rem;
	line-height: 2;
}

.group-ssl__text a {
	color: #0068bd;
}

.group-stetment {
	text-align: center;
}

.group-stetment__heading {
	margin-bottom: 5.5rem;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.7;
}

.group-stetment__text {
	margin-top: 4rem;
	line-height: 2.666;
}

@media screen and (max-width:768px) {
	.group-stetment__text {
		font-size: 2.4rem;
	}
}

.group-stetment__text strong {
	display: inline-block;
	margin-top: 1rem;
	font-family: Work Sans, sans-serif;
	font-size: 3rem;
	letter-spacing: .1em;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.group-stetment__text strong {
		font-size: 3.6rem;
	}
}

.group-summary-solutions {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 8rem;
}

.group-summary-solutions>:first-child {
	margin-top: 0;
}

.group-summary-solutions__check {
	position: relative;
	padding: 0 0 1.5rem 3.2rem;
	border-bottom: 2px solid #1b3f5c;
	font-size: 1.7rem;
	line-height: 1;
}

.group-summary-solutions__check:before {
	position: absolute;
	top: -.3rem;
	left: 0;
	width: 2rem;
	height: 2rem;
	content: '';
	display: block;
	box-sizing: border-box;
	border: solid 1px #dcdcdc;
	background: url(../../images/en/common/icn_check_alog.svg) no-repeat center center;
	background-size: 1.6rem auto;
}

.group-summary-solutions__heading {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

.group-summary-solutions__lead {
	margin-top: 10px;
	font-size: 1.7rem;
	line-height: 2;
	text-align: center;
}

.group-summary-solutions__image {
	margin-top: 5rem;
	text-align: center;
}

.group-summary-solutions__image--margin-top-narrow {
	margin-top: 2rem;
}

.group-support-link {
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.group-support-link__button a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 1rem;
	border: 1px solid #dcdcdc;
	text-decoration: none;
}

.group-support-link__button a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: .5rem .9rem;
	transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

.group-support-link__button a.is-on {
	opacity: .6;
}

.group-support-link__button a.is-on:after {
	right: .7rem;
}

.group-support-link__image {
	margin-right: 2rem;
}

.group-support-link__text {
	margin-top: 4rem;
	font-size: 1.3rem;
	text-align: center;
}

.heading-article {
	margin-top: 9rem;
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	color: #000;
	border-bottom: 2px solid #1b3f5c;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.heading-article {
		margin-top: 8rem;
		padding-bottom: 2rem;
		font-size: 3.2rem;
	}
}

.heading-article+* {
	margin-top: 3rem !important;
}

.heading-case {
	margin-top: 9rem;
	padding-bottom: 1rem;
	color: #1b3f5c;
	border-bottom: 2px solid #1b3f5c;
	font-size: 3rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.heading-case {
		margin-top: 8rem;
		padding-bottom: 2rem;
		font-size: 3.6rem;
	}
}

.heading-case+* {
	margin-top: 2rem !important;
}

@media screen and (max-width:768px) {
	.heading-case+* {
		margin-top: 4rem !important;
	}
}

.heading-download {
	margin-top: 8rem;
	padding: 1rem;
	color: #fff;
	background: #1b3f5c;
	font-size: 2.4rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.heading-download {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		font-size: 3.2rem;
	}
}

.heading-form {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 2.4rem;
	color: #1b3f5c;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
	text-align: center;
}

@media screen and (max-width:768px) {
	.heading-form {
		padding-bottom: 3rem;
		font-size: 4rem;
	}
}

.heading-form:after {
	width: 6rem;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 3rem);
	content: '';
	display: block;
	background: #1b3f5c;
}

@media screen and (max-width:768px) {
	.heading-form:after {
		width: 8rem;
		left: calc(50% - 4rem);
	}
}

.heading-history {
	width: 14rem;
	color: #1b3f5c;
	font-family: Work Sans, sans-serif;
	font-size: 5rem;
	line-height: 1;
}

.heading-seminar {
	margin-top: 9rem;
	padding-bottom: 1.5rem;
	color: #1b3f5c;
	border-bottom: 2px solid #1b3f5c;
	font-size: 3rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.heading-seminar {
		margin-top: 8rem;
		padding-bottom: 2rem;
		font-size: 3.2rem;
	}
}

.heading-sidebar {
	margin-top: 5rem;
	padding-bottom: 1.5rem;
	color: #000;
	border-bottom: 2px solid #1b3f5c;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.heading-sidebar {
		font-size: 3.2rem;
	}
}

.heading-verona {
	margin-bottom: 4rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.heading-verona {
		margin-bottom: 3rem;
	}
}

.heading-verona__en {
	font-family: Work Sans, sans-serif;
	font-size: 5rem;
	letter-spacing: .14em;
}

.heading-verona small {
	display: block;
}

.icon-category-press {
	width: 10rem;
	height: 2rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0;
}

@media screen and (max-width:768px) {
	.icon-category-press {
		width: 20rem;
		height: 4rem;
		font-size: 2rem;
	}
}

.icon-category-press.is-news {
	background: #1b3f5c;
}

.icon-category-press.is-pr {
	background: #82509b;
}

.icon-category-seminar {
	width: 7rem;
	height: 2rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0;
}

@media screen and (max-width:768px) {
	.icon-category-seminar {
		width: 14rem;
		height: 4rem;
		font-size: 2rem;
	}
}

.icon-category-seminar.is-event {
	background: #1b3f5c;
}

.icon-category-seminar.is-seminar {
	background: #82509b;
}

.image-article {
	margin-top: 3rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.image-article {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		margin-top: 4rem;
	}
}

.image-article--right {
	float: right;
	width: 30rem;
}

@media screen and (max-width:768px) {
	.image-article--right {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		float: none;
		margin-top: 4rem;
	}
}

.image-case-verona {
	margin-bottom: 9rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.image-case-verona {
		margin-bottom: 4rem;
	}
}

.image-case {
	margin-top: 7rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.image-case {
		margin-top: 6rem;
	}
}

.image-centering {
	text-align: center;
}

.image-global {
	margin-top: -1.5rem;
	text-align: center;
}

.image-message {
	width: 48rem;
}

.image-message span {
	display: block;
}

.image-platform-alog {
	width: 100%;
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.image-platform-alog:after {
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	top: 7.1rem;
	height: 28rem;
	background: url(../../images/en/solutions/bg/bg_current_platform.png);
	background-size: 1px auto;
	mix-blend-mode: color-dodge;
	animation: current-platform 1s cubic-bezier(.39, .575, .565, 1) infinite;
}

@media screen and (max-width:768px) {
	.image-platform-alog:after {
		top: 5.2rem;
		height: 20.7rem;
	}
}

.image-platform-alog--converter:after {
	left: 0;
	width: 31.8rem;
}

@media screen and (max-width:768px) {
	.image-platform-alog--converter:after {
		width: 23.4rem;
	}
}

.image-platform-alog--db:after {
	left: 33rem;
	width: 20.2rem;
}

@media screen and (max-width:768px) {
	.image-platform-alog--db:after {
		left: 24.2rem;
		width: 14.8rem;
	}
}

.image-platform-alog--eva:after {
	left: 54.5rem;
	width: 41.5rem;
}

@media screen and (max-width:768px) {
	.image-platform-alog--eva:after {
		left: 40.1rem;
		width: 30.5rem;
	}
}

@keyframes current-platform {
	0% {
		opacity: 0;
	}

	50% {
		opacity: .6;
	}

	100% {
		opacity: 0;
	}
}

.information-press {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
	.information-press {
		padding-bottom: 3rem;
	}
}

.information-press__date {
	margin-left: 1.5rem;
}

.information-seminar {
	position: relative;
	padding-bottom: 1.3rem;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
	.information-seminar {
		padding-bottom: 2rem;
	}
}

.information-seminar__primary {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width:768px) {
	.information-seminar__primary {
		display: block;
	}
}

.information-seminar__secondary {
	display: -ms-flexbox;
	display: flex;
	margin-top: 1rem;
}

@media screen and (max-width:768px) {
	.information-seminar__secondary {
		margin-top: 2rem;
	}
}

.lead-recruitment {
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width:768px) {
	.lead-recruitment {
		font-size: 2.7rem;
	}
}




.list-access {
	margin-top: 1.5rem;
}

.list-access__item {
	padding: 2.5rem 1rem;
	border-bottom: 1px solid #dcdcdc;
}

.list-access__heading {
	color: #1b3f5c;
	font-size: 1.6rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-access__heading {
		font-size: 2.7rem;
	}
}

.list-access__text {
	line-height: 2;
}

.list-area-alog {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 98rem;
	margin: 0 auto;
}

.list-area-alog:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: url(../../images/en/solutions/common/img_area_arrow.png) no-repeat center top;
	background-size: contain;
	pointer-events: none;
}

@media screen and (max-width:768px) {
	.list-area-alog {
		width: 90%;
		margin: 0 auto;
	}

	.list-area-alog:after {
		display: none;
	}
}

.list-area-alog__item {
	width: 41rem;

}

@media screen and (max-width:768px) {
	.list-area-alog__item {
		width: 100%;
	}

	.list-area-alog__item img {
		width: 100%;
	}
}

.list-area-alog__item:nth-of-type(3),
.list-area-alog__item:nth-of-type(4) {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {

	.list-area-alog__item:nth-of-type(3),
	.list-area-alog__item:nth-of-type(4) {
		margin-top: 2rem;
	}
}

.list-area-alog__item:nth-of-type(1) {
	width: 41rem;
}

.evaArea {
	width: 40rem;
	height: 39.3rem;
	margin-left: 10px;
}

.dbArea {
	margin-top: 4rem;
	width: 40rem;
	height: 16rem;
	margin-left: 10px;
}

@media screen and (max-width:768px) {
	.list-area-alog__item:nth-of-type(1) {
		width: 100%;
	}

	.list-area-alog__item:nth-of-type(1) img {
		width: 100%;
	}

	.evaArea {
		width: 100%;
		height: auto;
		margin-top: 2rem;
		margin-left: 0px;
	}

	.dbArea {
		width: 100%;
		height: auto;
		margin-top: 2rem;
		margin-left: 0px;
	}

	.evaArea img {
		width: 100%;
	}

	.dbArea img {
		width: 100%;
	}
}

.list-area-alog__item:nth-of-type(3),
.list-area-alog__item:nth-of-type(4) {
	width: 48rem;
}

@media screen and (max-width:768px) {

	.list-area-alog__item:nth-of-type(3),
	.list-area-alog__item:nth-of-type(4) {
		width: 100%;
	}

	.list-area-alog__item:nth-of-type(3) img,
	.list-area-alog__item:nth-of-type(4) img {
		width: 100%;
	}

}

.list-area-alog__item a {
	position: relative;
	display: block;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-area-alog__item a:after {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 3.1rem;
	height: 3.1rem;
	border-radius: 100%;
	content: '';
	display: block;
	box-sizing: border-box;
	border: solid 1px #0f6e5a;
	background: url(../../images/en/common/arw_small_alog.svg) no-repeat center center;
	background-size: .5rem auto;
}

@media screen and (max-width:768px) {
	.list-area-alog__item a {
		width: 100%;
	}

	.list-area-alog__item a:after {
		width: 5.1rem;
		height: 5.1rem;
		border-radius: 100%;
		top: 2rem;
		right: 2rem;
		background-image: url(../../images/en/common/arw_alog.svg);
		background-size: .8rem 1.5rem;
	}
}

.list-area-alog__item a.is-on {
	opacity: .6;
}

.list-banner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: -.8rem;
	margin-left: -.8rem;
}

@media screen and (max-width:768px) {
	.list-banner {
		margin-right: -2rem;
		margin-left: -2rem;
	}
}

.list-banner__item {
	width: 35.6rem;
	margin-right: .8rem;
	margin-left: .8rem;
}

@media screen and (max-width:768px) {
	.list-banner__item {
		width: 33.4rem;
		margin-right: 2rem;
		margin-left: 2rem;
	}
}

@media screen and (max-width:768px) {
	.list-banner__item:nth-of-type(n+3) {
		margin-top: 4rem;
	}
}

.list-banner__item--blog {
	background: #f4f4f4;
}

.list-banner__item--facebook {
	background: #3a5e91;
}

.list-banner__item--youtube {
	border: solid 1px #a0a0a0;
	background: #fff;
}

.list-bullets {
	margin: 2rem 0 0 2.5rem;
	list-style-type: disc;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-bullets {
		margin-left: 3.5rem;
	}
}

.list-bullets--font-small {
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.list-bullets--font-small {
		font-size: 2rem;
	}
}

.list-bullets--margin-top-0 {
	margin-top: 0;
}

.list-bullets__item strong {
	color: #e60012;
}

.list-card {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -1rem;
	margin-left: -1rem;
}

@media screen and (max-width:768px) {
	.list-card {
		margin-right: -2rem;
		margin-left: -2rem;
	}
}

.list-card__item {
	width: 32rem;
	margin-right: 1rem;
	margin-left: 1rem;
}

@media screen and (max-width:768px) {
	.list-card__item {
		width: 33.4rem;
		margin-right: 2rem;
		margin-left: 2rem;
	}
}

.list-card__item:nth-of-type(n+4) {
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.list-card__item:nth-of-type(n+3) {
		margin-top: 4rem;
	}
}

.list-card__heading {
	margin-top: 2rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-card__heading {
		font-size: 3rem;
	}
}

.list-card__text {
	margin-top: 1rem;
	line-height: 2;
}

.list-case-hypersonix {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.list-case-hypersonix__item {
	width: 47rem;
	margin-right: 6rem;
	text-align: center;
}

.list-case-hypersonix__item:nth-of-type(2n) {
	margin-right: 0;
}

.list-case-hypersonix__item:nth-of-type(n+3) {
	margin-top: 4.5rem;
}

.list-case-hypersonix__item a {
	text-decoration: none;
}

.list-case-hypersonix__heading {
	margin-top: 2rem;
	font-size: 2rem;
	font-weight: 700;
}

.list-case-vedge {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	line-height: 1;
	text-align: center;
}

.list-case-vedge__item {
	position: relative;
	width: 35.6rem;
	margin: 1.6rem 1.6rem 0 0;
	padding: 3rem 3rem 4rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.list-case-vedge__item {
		width: 33.4rem;
		margin: 3rem 4rem 0 0;
		padding: 3rem 2rem;
	}
}

.list-case-vedge__item:nth-of-type(3n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	.list-case-vedge__item:nth-of-type(3n) {
		margin-right: 4rem;
	}
}

@media screen and (max-width:768px) {
	.list-case-vedge__item:nth-of-type(2n) {
		margin-right: 0;
	}
}

.list-case-vedge__icon {
	position: absolute;
	top: 1rem;
	left: 1rem;
	width: 6rem;
	height: 6rem;
	border-radius: 100%;
	overflow: hidden;
	content: '';
	display: block;
	background: #1e5078;
}

.list-case-vedge__heading {
	color: #1e5078;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-case-vedge__heading {
		font-size: 2.8rem;
	}
}

.list-case-vedge__sub-heading {
	margin-top: 4.5rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-case-vedge__sub-heading {
		margin-top: 3rem;
		font-size: 2rem;
	}
}

.list-case-vedge__number {
	margin-top: 1.5rem;
	color: #1e5078;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-case-vedge__number {
		font-size: 2.4rem;
	}
}

.list-case-vedge__number strong {
	font-size: 6rem;
}

.list-case-vedge__button {
	margin-top: 5rem;
}

@media screen and (max-width:768px) {
	.list-case-vedge__button {
		margin-top: 3rem;
	}
}

.list-check-text {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 2rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-check-text {
		display: block;
		margin-top: 4rem;
		font-size: 2.7rem;
	}
}

.list-check-text__item {
	width: 48rem;
	height: 4.4rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1rem;
	padding-left: 5rem;
	position: relative;
	background: #f7f8f9;
}

@media screen and (max-width:768px) {
	.list-check-text__item {
		width: 100%;
		height: 8rem;
		margin-top: 2rem;
		padding-left: 9rem;
	}
}

.list-check-text__item:before {
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	top: calc(50% - 1.1rem);
	left: 1.5rem;
	box-sizing: border-box;
	content: '';
	display: block;
	border: 1px solid #dcdcdc;
	background: url(../../images/en/common/icn_check_alog.svg) no-repeat center center;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.list-check-text__item:before {
		width: 4rem;
		height: 4rem;
		top: calc(50% - 2rem);
		left: 3rem;
	}
}

.list-check {
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.list-check {
		display: block;
	}
}

.list-check__item {
	width: calc(33.333% - 3.2rem);
	margin: 3rem 4.8rem 0 0;
}

@media screen and (max-width:768px) {
	.list-check__item {
		width: auto;
		margin: 4rem 0 0;
	}
}

.list-check__item:nth-of-type(3n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	.list-check__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-check__image {
	margin-bottom: 3rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-check__image {
		width: 100%;
		max-width: px2rewm(600px);
		margin-left: auto;
		margin-right: auto;
	}
}

.list-check__heading {
	position: relative;
	padding-left: 3.2rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-check__heading {
		padding-left: 5rem;
		font-size: 2.8rem;
		line-height: 1.5;
	}
}

.list-check__heading:before {
	position: absolute;
	top: -.3rem;
	left: 0;
	width: 2rem;
	height: 2rem;
	content: '';
	display: block;
	box-sizing: border-box;
	border: solid 1px #dcdcdc;
	background: url(../../images/en/common/icn_check_alog.svg) no-repeat center center;
	background-size: 1.6rem auto;
}

@media screen and (max-width:768px) {
	.list-check__heading:before {
		width: 3.6rem;
		height: 3.6rem;
		top: .4rem;
		background-size: 2.8rem auto;
	}
}

.list-check__text {
	margin-top: 1.5rem;
	line-height: 2;
}

.list-customer-voice__item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 3rem 5rem;
	background: #f7f8f9;
}

@media screen and (max-width:768px) {
	.list-customer-voice__item {
		padding: 3rem;
	}
}

.list-customer-voice__item:nth-of-type(n+2) {
	margin-top: 1rem;
}

@media screen and (max-width:768px) {
	.list-customer-voice__item:nth-of-type(n+2) {
		margin-top: 3rem;
	}
}

.list-customer-voice__image {
	width: 10rem;
	text-align: center;
}

.list-customer-voice__image span {
	display: block;
	background: #fff;
}

.list-customer-voice__body {
	width: calc(100% - 13rem);
}

.list-customer-voice__body--full {
	width: auto;
}

.list-customer-voice__heading {
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-customer-voice__heading {
		font-size: 3.2rem;
	}
}

.list-customer-voice__name {
	margin-top: .5rem;
	color: #1b3f5c;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.list-customer-voice__name {
		font-size: 2.4rem;
	}
}

.list-customer-voice__text {
	margin-top: 1rem;
	line-height: 2;
}

.list-customer-voice__text strong {
	color: #e60012;
}

.list-customer-voice--bg-white .list-customer-voice__item {
	background: #fff;
}

.list-customer-voice--vclient {
	margin-top: 7rem;
}

.list-customer-voice--vclient .list-customer-voice__item {
	padding: 0;
	background: none;
}

.list-customer-voice--margin-top {
	margin-top: 4.5rem;
}

.list-data-seminar {
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.list-data-seminar {
		font-size: 2.4rem;
	}
}

.list-data-seminar__item:nth-of-type(n+2) {
	margin-left: 1.5rem;
}

.list-definition-horizontal {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.list-definition-horizontal {
		display: block;
	}
}

.list-definition-horizontal__item {
	width: calc(33.333% - 2rem);
	margin-right: 3rem;
}

@media screen and (max-width:768px) {
	.list-definition-horizontal__item {
		width: auto;
		margin-right: 0;
	}
}

.list-definition-horizontal__item:nth-of-type(3n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	.list-definition-horizontal__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-definition-horizontal__item>:first-child {
	margin-top: 0;
}

@media screen and (max-width:768px) {
	.list-definition-horizontal__image {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.list-definition-horizontal__heading {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-definition-horizontal__heading {
		margin-top: 3rem;
		font-size: 3rem;
	}
}

.list-definition-horizontal__text {
	margin-top: 1rem;
	line-height: 2;
}

.list-definition {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.list-definition {
		margin-top: 3rem;
	}
}

.list-definition__heading {
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-definition__heading {
		font-size: 2.8rem;
	}
}

.list-definition__heading:nth-of-type(n+2) {
	margin-top: 3rem;
}

.list-definition__text {
	margin-top: .5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-definition__text {
		margin-top: .5rem;
		font-size: 2.4rem;
		line-height: 1.6;
	}
}

.list-definition--border {
	padding: 1.5rem 2rem 1.2rem;
	border: solid 2px #1b3f5c;
}

.list-definition--point .list-definition__heading {
	color: #1b3f5c;
	font-family: Work Sans, sans-serif;
}

.list-download {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 6rem 0 8rem;
}

@media screen and (max-width:768px) {
	.list-download {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		display: block;
		padding: 4rem 0 6rem;
	}
}

.list-download--alog .list-download__heading {
	color: #0f6e5a;
}

.list-download--alog .list-download__button a {
	background: #0f6e5a;
}

.list-download--nac .list-download__heading {
	color: #1e5078;
}

.list-download--nac .list-download__button a {
	background: #4482ac;
}

.list-download__item {
	position: relative;
	width: 54rem;
	margin: 2rem 2rem 0 0;
	padding: 3rem 3rem 5rem;
	background: #fff;
	display: flex;
	flex-direction: column;
}

@media screen and (max-width:768px) {
	.list-download__item {
		width: 100%;
		margin: 2rem 0 0;
		padding: 3rem 3rem 14rem;
	}
}

.list-download__item:nth-of-type(2n) {
	margin-right: 0;
}

.list-download__inner {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-around;
	align-items: center;
	flex: 1 0 auto;
}

.list-download__image {
	max-width: 18rem;
	max-height: 18rem;
	text-align: center;
}

.list-download__image img {
	max-width: 18rem;
	max-height: 18rem;
}

.list-download__body {
	width: calc(100% - 22.2rem);
}

.list-download__heading {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1.4;
}

@media screen and (max-width:768px) {
	.list-download__heading {
		font-size: 3.2rem;
	}
}

.list-download__heading small {
	display: block;
	margin-bottom: .3rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-download__heading small {
		margin-bottom: .3rem;
		font-size: 2.4rem;
	}
}

.list-download__text {
	margin-top: 1rem;
}

@media screen and (max-width:768px) {
	.list-download__text {
		font-size: 2.4rem;
	}
}

.list-download__button {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 0 3rem 1.5rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-download__button {
		padding: 0 3rem 2rem;
		font-size: 2.8rem;
	}
}

.list-download__button a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 7.3rem;
	padding-bottom: .3rem;
	color: #fff;
	box-shadow: 0 -.3rem 0 0 rgba(0, 0, 0, .4) inset;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.list-download__button a {
		height: 10rem;
		padding-bottom: .6rem;
		box-shadow: 0 -.6rem 0 0 rgba(0, 0, 0, .4) inset;
	}
}

.list-download__button a:before {
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	background: rgba(0, 0, 0, .2);
	z-index: 1;
	transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.list-download__button a.is-on:before {
	bottom: 0;
	top: auto;
	height: 100%;
}

.list-download__button span {
	position: relative;
	display: inline-block;
	z-index: 9;
}

.list-download__button .icon {
	position: absolute;
	top: calc(50% - 1.6rem);
	left: 2rem;
	width: 3.2rem;
	height: 3.2rem;
	fill: #fff;
	z-index: 9;
	transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.list-faq {
	position: relative;
	margin-top: 3rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-faq {
		margin-top: 2rem;
		padding-top: 6rem;
	}
}

.list-faq__button {
	position: absolute;
	top: -7rem;
	right: 0;
	padding: .5rem 4rem .5rem .5rem;
	font-size: 1.3rem;
	line-height: 1;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.list-faq__button {
		top: 0;
		padding: .5rem 3rem .5rem .5rem;
		font-size: 2rem;
	}
}

.list-faq__button:before,
.list-faq__button:after {
	position: absolute;
	top: calc(50% - 1px);
	right: 2rem;
	width: 1.3rem;
	height: 1px;
	content: '';
	display: block;
	background: #000;
	transition: transform .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {

	.list-faq__button:before,
	.list-faq__button:after {
		width: 2.5rem;
		height: 1px;
		top: 50%;
		right: 0;
	}
}

.list-faq__button:after {
	transform: rotate(90deg);
}

.list-faq__button.is-show:before {
	transform: rotate(45deg);
}

.list-faq__button.is-show:after {
	transform: rotate(135deg);
}

.list-faq__item {
	padding: 0 1rem;
	background: #f7f8f9;
	box-shadow: 0 .3rem 0 0 #dadada;
	transition: background .2s cubic-bezier(.39, .575, .565, 1), box-shadow .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.list-faq__item {
		padding: 0 1.5rem;
		box-shadow: 0 .6rem 0 0 #dadada;
	}
}

.list-faq__item:nth-of-type(n+2) {
	margin-top: 1.3rem;
}

@media screen and (max-width:768px) {
	.list-faq__item:nth-of-type(n+2) {
		margin-top: 2.6rem;
	}
}

.list-faq__item.is-show {
	background: #eff4f5;
	box-shadow: 0 .3rem 0 0 #a5c3c9;
}

@media screen and (max-width:768px) {
	.list-faq__item.is-show {
		box-shadow: 0 .6rem 0 0 #a5c3c9;
	}
}

.list-faq__item.is-show .list-faq__q:before {
	transform: rotate(45deg);
}

.list-faq__item.is-show .list-faq__q:after {
	transform: rotate(135deg);
}

.list-faq__q {
	position: relative;
	padding: 1rem;
	color: #1b3f5c;
	font-size: 1.7rem;
	font-weight: 700;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.list-faq__q {
		padding: 2rem 6rem 2rem 1.5rem;
		font-size: 2.7rem;
		line-height: 1.5;
	}
}

.list-faq__q:before,
.list-faq__q:after {
	position: absolute;
	top: 50%;
	right: 1rem;
	width: 1.3rem;
	height: 1px;
	content: '';
	display: block;
	background: #000;
	transition: transform .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {

	.list-faq__q:before,
	.list-faq__q:after {
		width: 2.5rem;
		height: 1px;
	}
}

.list-faq__q:after {
	transform: rotate(90deg);
}

.list-faq__a {
	display: none;
	padding: 2.5rem 1rem;
	border-top: 1px solid #a5c3c9;
}

@media screen and (max-width:768px) {
	.list-faq__a {
		padding: 2rem 1.5rem;
		font-size: 2.4rem;
	}
}

.list-feature-verona {
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.list-feature-verona {
		display: block;
	}
}

.list-feature-verona__item {
	position: relative;
	width: 32rem;
	margin-right: 2rem;
}

@media screen and (max-width:768px) {
	.list-feature-verona__item {
		width: auto;
		margin-right: 0;
	}
}

.list-feature-verona__item:nth-of-type(3n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	.list-feature-verona__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-feature-verona__category {
	position: absolute;
	top: -1rem;
	left: -1rem;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	background: #4482ac;
}

@media screen and (max-width:768px) {
	.list-feature-verona__category {
		top: -1.5rem;
		left: -1.5rem;
	}
}

.list-feature-verona__heading {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-feature-verona__heading {
		margin-top: 3rem;
		font-size: 3rem;
	}
}

.list-feature-verona__text {
	margin-top: 1rem;
	line-height: 2;
}

.list-flow {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-flow {
		display: block;
	}
}

.list-flow__item {
	width: calc(50% - 4.8rem);
	margin: 5rem 4.8rem 0 0;
}

@media screen and (max-width:768px) {
	.list-flow__item {
		width: auto;
		margin: 4rem 0 0;
	}
}

.list-flow__item:nth-of-type(2n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	.list-flow__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-flow__heading {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 4.4rem;
	padding: 0 5.4rem;
}

@media screen and (max-width:768px) {
	.list-flow__heading {
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding: 0 0 0 6rem;
	}
}

.list-flow__number {
	position: absolute;
	top: calc(50% - 2.2rem);
	left: 0;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #1b3f5c;
	border: solid 1px #1b3f5c;
}

.list-flow__image {
	margin-top: 2rem;
}

.list-flow--column3 .list-flow__item {
	width: calc(33.333% - 3.2rem);
}

@media screen and (max-width:768px) {
	.list-flow--column3 .list-flow__item {
		width: auto;
	}
}

.list-flow--column3 .list-flow__item:nth-of-type(2n) {
	margin-right: 4.8rem;
}

@media screen and (max-width:768px) {
	.list-flow--column3 .list-flow__item:nth-of-type(2n) {
		margin-right: 0;
	}
}

.list-flow--column3 .list-flow__item:nth-of-type(3n) {
	margin-right: 0;
}

.list-form-horizontal {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: 5rem;
}

.list-form-horizontal__item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.list-form-horizontal__item:nth-of-type(n+2) {
	margin-left: 3rem;
}

.list-form-vertical__item:nth-of-type(n+2) {
	margin-top: 1rem;
}


.list-form-horizontal--size {
	display: block;
}

.contact_form--size {
	display: block;
}

.contact_form--size:nth-of-type(n+2) {
	margin-left: 0rem;
}

.contact_form--size:nth-of-type(n+2) {
	margin-top: 1rem;
}



.list-form-zipcode {
	display: -ms-flexbox;
	display: flex;
}

.list-form-zipcode__item {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.list-form-zipcode__item:nth-of-type(1) {
	width: 9rem;
}

.list-form-zipcode__item:nth-of-type(2) {
	width: 14.4rem;
	padding-left: 2.4rem;
}

.list-form-zipcode__item:nth-of-type(2):before {
	position: absolute;
	top: 50%;
	left: .7rem;
	width: 1rem;
	height: 1px;
	content: '';
	display: block;
	background: #dcdcdc;
}

.list-guideline {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.list-guideline__item {
	width: 22rem;
}

@media screen and (max-width:768px) {
	.list-guideline__item {
		width: 33.4rem;
	}
}

.list-guideline__item:nth-of-type(1) .list-guideline__icon svg {
	width: 10.6rem;
}

.list-guideline__item:nth-of-type(2) .list-guideline__icon svg {
	width: 8.9rem;
}

.list-guideline__item:nth-of-type(3) .list-guideline__icon svg {
	width: 9.4rem;
}

.list-guideline__item:nth-of-type(4) .list-guideline__icon svg {
	width: 8.9rem;
}

@media screen and (max-width:768px) {
	.list-guideline__item:nth-of-type(n+3) {
		margin-top: 4rem;
	}
}

.list-guideline__icon {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 9.3rem;
}

.list-guideline__icon svg {
	fill: #1b3f5c;
}

.list-guideline__heading {
	margin-top: 2rem;
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-guideline__heading {
		font-size: 3rem;
	}
}

.list-guideline__text {
	margin-top: 1.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-guideline__text {
		font-size: 2.4rem;
	}
}

.list-history {
	position: relative;
	width: calc(100% - 14rem);
	padding-top: .6rem;
}

@media screen and (max-width:768px) {
	.list-history {
		padding-top: 0;
	}
}

.list-history--recruit {
	width: 100%;
	margin-top: 6rem;
}

.list-history:before {
	position: absolute;
	top: -5rem;
	left: 14.1rem;
	width: 2px;
	height: calc(100% + 10rem);
	content: '';
	display: -ms-flexbox;
	display: flex;
	background: #1b3f5c;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.list-history:before {
		left: 16.1rem;
	}
}

.list-history__item {
	display: -ms-flexbox;
	display: flex;
}

.list-history__item:nth-of-type(n+2) {
	margin-top: 2.5rem;
}

.list-history__month {
	position: relative;
	width: 18rem;
	padding-right: 8rem;
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: right;
}

@media screen and (max-width:768px) {
	.list-history__month {
		width: 20rem;
		font-size: 3rem;
	}
}

.list-history__month:after {
	position: absolute;
	top: 1rem;
	right: 3rem;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 100%;
	content: '';
	display: -ms-flexbox;
	display: flex;
	background: #1b3f5c;
}

@media screen and (max-width:768px) {
	.list-history__month:after {
		top: 1.4rem;
	}
}

.list-history__text {
	width: calc(100% - 18rem);
	padding-top: .3rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-history__text {
		width: calc(100% - 20rem);
		line-height: 1.6;
	}
}

.list-horizontal {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.list-horizontal {
		display: block;
		margin-top: 6rem;
	}
}

.list-horizontal__item {
	width: calc(50% - 2rem);
	margin-right: 4rem;
}

@media screen and (max-width:768px) {
	.list-horizontal__item {
		width: auto;
		margin-right: 0;
	}
}

.list-horizontal__item:nth-of-type(2n) {
	margin-right: 0;
}

.list-horizontal__item:nth-of-type(n+3) {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.list-horizontal__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-horizontal__item>:first-child {
	margin-top: 0;
}

.list-horizontal__heading {
	padding: .5rem;
	background: #d6d6d6;
	text-align: center;
}

.list-horizontal__heading--bg-navy {
	color: #fff;
	background: #1b3f5c;
}

.list-horizontal__heading--bg-nac {
	color: #fff;
	background: #62a4cf;
}

.list-horizontal__heading--font-large {
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-horizontal__heading--font-large {
		font-size: 3.2rem;
	}
}

.list-horizontal__large-heading {
	margin-top: 3.5rem;
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-horizontal__large-heading {
		margin-top: 4rem;
		font-size: 3.2rem;
	}
}

.list-horizontal__image {
	margin-top: 2rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-horizontal__image {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		margin-top: 3rem;
	}
}

.list-horizontal__text {
	margin-top: 2rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-horizontal__text {
		margin-top: 3rem;
	}
}

.list-horizontal__text--center {
	text-align: center;
}

.list-horizontal__button {
	margin-top: 2rem;
}

.list-horizontal__button--center {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
}

@media screen and (max-width:768px) {
	.list-horizontal__button {
		margin-top: 4rem;
	}
}

.list-horizontal--column3 .list-horizontal__item {
	width: calc(33.333% - 1.4rem);
	margin-right: 2.1rem;
}

@media screen and (max-width:768px) {
	.list-horizontal--column3 .list-horizontal__item {
		width: auto;
		margin-right: 0;
	}
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(2n) {
	margin-right: 2.1rem;
}

@media screen and (max-width:768px) {
	.list-horizontal--column3 .list-horizontal__item:nth-of-type(2n) {
		margin-right: 0;
	}
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(3n) {
	margin-right: 0;
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(n+3) {
	margin-top: 0;
}

@media screen and (max-width:768px) {
	.list-horizontal--column3 .list-horizontal__item:nth-of-type(n+3) {
		margin-top: 6rem;
	}
}

.list-link {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-size: 1.4rem;
}

@media screen and (max-width:768px) {
	.list-link {
		display: block;
		font-size: 2rem;
	}
}

.list-link__item {
	width: 48rem;
	margin-right: 4rem;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
	.list-link__item {
		width: 100%;
		margin-right: 0;
	}
}

.list-link__item:nth-of-type(2n) {
	margin-right: 0;
}

.list-link__item a {
	position: relative;
	display: block;
	padding: 2rem 3rem 2rem 0;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-link__item a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: .5rem .9rem;
	transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.list-link__item a:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		background-image: url(../../images/en/common/arw_black.svg);
		background-size: 1rem 1.8rem;
	}
}

.list-link__item a.is-on {
	opacity: .6;
}

.list-link__item a.is-on:after {
	right: .7rem;
}

.list-media {
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.list-media {
		margin-top: 6rem;
	}
}

.list-media__item {
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.list-media__item {
		display: block;
	}
}

.list-media__item:nth-of-type(n+2) {
	margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
	.list-media__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-media__image {
	margin-right: 4rem;
}

@media screen and (max-width:768px) {
	.list-media__image {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}

.list-media__image--width-300 {
	width: 30rem;
}

@media screen and (max-width:768px) {
	.list-media__image--width-300 {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.list-media__image--width-300+.list-media__body {
	width: calc(100% - 34rem);
}

@media screen and (max-width:768px) {
	.list-media__image--width-300+.list-media__body {
		width: auto;
	}
}

@media screen and (max-width:768px) {
	.list-media__body {
		margin-top: 4rem;
	}
}

.list-media__heading {
	color: #1b3f5c;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-media__heading {
		font-size: 3rem;
	}
}

.list-notes {
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.list-notes {
		font-size: 2rem;
	}
}

.list-notes__item {
	text-indent: -1em;
	padding-left: 1em;
}

.list-notes--margin-top {
	margin-top: 1.5rem;
}

.list-notes--indent-2 {
	padding-left: 2em;
}

.list-order {
	margin: 2rem 0 0 2.5rem;
	list-style-type: decimal;
	line-height: 2;
}



.list-officer {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.list-officer.head {
	margin-bottom: 20rem;
}

.list-officer+.list-officer {
	margin-top: 6rem;
}


@media screen and (max-width:768px) {
	.list-officer+.list-officer {
		margin-top: 6rem;
	}
}

.list-officer__item {
	display: -ms-flexbox;
	display: flex;
	width: 48rem;
}

.list-officer__item_w {
	display: -ms-flexbox;
	display: flex;
	width: 28rem;
}

@media screen and (max-width:768px) {
	.list-officer__item {
		display: block;
		width: 32.4rem;
	}

	.list-officer__item_w {
		display: block;
		width: 32.4rem;
	}
}

.list-officer__item:nth-of-type(2n) {
	margin-left: 4rem;
}

@media screen and (max-width:768px) {
	.list-officer__item:nth-of-type(2n) {
		margin-left: 6rem;
	}
}

.list-officer__item:nth-of-type(n+3) {
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.list-officer__item:nth-of-type(n+3) {
		margin-top: 6rem;
	}
}

.list-officer__item--large {
	display: block;
}

@media screen and (max-width:768px) {
	.list-officer__item--large {
		/*width:70.8rem;*/
		width: 32.4rem;
	}
}

@media screen and (max-width:768px) {
	.list-officer__item--large:nth-of-type(2n) {
		margin-left: 0;
	}
}

@media screen and (max-width:768px) {
	.list-officer__item--large+.list-officer__item--large {
		margin-top: 5rem;
	}
}

.list-officer__item--large .list-officer__image {
	width: 100%;
}

.list-officer__item--large .list-officer__box {
	width: 100%;
	padding: 1.7rem 0 0;
}

@media screen and (max-width:768px) {
	.list-officer__item--large .list-officer__box {
		padding: 3.2rem 0 3rem;
	}
}

.list-officer__item--large .list-officer-table {
	margin-top: 1.2rem;
}

@media screen and (max-width:768px) {
	.list-officer__item--large .list-officer-table {
		margin-top: 2rem;
	}
}

.list-officer__item--large .list-officer-table__head {
	width: 9rem;
}

@media screen and (max-width:768px) {
	.list-officer__item--large .list-officer-table__head {
		width: 16.2rem;
	}
}



.list-officer__image {
	width: 18rem;
}

@media screen and (max-width:768px) {
	.list-officer__image {
		width: 100%;
	}
}

.list-officer__box {
	width: 30rem;
	padding: .6rem 0 0 2rem;
}

@media screen and (max-width:768px) {
	.list-officer__box {
		width: 100%;
		padding: 3.4rem 0 0;
	}
}

.list-officer__position {
	font-size: 1.5rem;
}

@media screen and (max-width:768px) {
	.list-officer__position {
		font-size: 2.6rem;
	}
}

.list-officer__heading {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: .8rem;
}

@media screen and (max-width:768px) {
	.list-officer__heading {
		font-size: 4rem;
		margin-top: .2rem;
	}
}

.list-officer-table {
	margin-top: 1.6rem;
	font-size: 1.3rem;
	line-height: 1.69231;
	text-align: justify;
	text-justify: inter-ideograph;
	font-feature-settings: "palt";
}

@media screen and (max-width:768px) {
	.list-officer-table {
		font-size: 2.4rem;
		line-height: 1.66667;
	}
}

.list-officer-table__head {
	width: 8rem;
	letter-spacing: .02em;
	text-align: left;
}

@media screen and (max-width:768px) {
	.list-officer-table__head {
		width: 12.7rem;
		letter-spacing: -.06em;
	}
}

.list-officer-table__data {
	letter-spacing: 0;
}

@media screen and (max-width:768px) {
	.list-officer-table__data {
		letter-spacing: -.06em;
	}
}

.list-officer--sikkou {
	padding-bottom: 2.2rem;
}

@media screen and (max-width:768px) {
	.list-officer--sikkou {
		padding-bottom: 1rem;
	}
}

.list-officer--sikkou .list-officer__item {
	display: block;
	width: 18rem;
}

@media screen and (max-width:768px) {
	.list-officer--sikkou .list-officer__item {
		width: 32.4rem;
	}
}

@media screen and (min-width:769px) {
	.list-officer--sikkou .list-officer__item:nth-of-type(n+2) {
		margin-left: 22.4rem;
	}
}

.list-officer--sikkou .list-officer__item:nth-of-type(n+3) {
	margin-top: 0;
}

@media screen and (max-width:768px) {
	.list-officer--sikkou .list-officer__item:nth-of-type(n+3) {
		margin-top: 6rem;
	}
}

.list-officer--sikkou .list-officer__box {
	width: 100%;
	padding: 1.8rem 0 0;
}

@media screen and (max-width:768px) {
	.list-officer--sikkou .list-officer__box {
		padding: 3.4rem 0 0;
	}
}

.list-order {
	margin: 2rem 0 0 2.5rem;
	list-style-type: decimal;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-order {
		margin-left: 5rem;
	}
}

.list-photo {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 6rem;
}

.list-photo__item {
	width: 48rem;
}

@media screen and (max-width:768px) {
	.list-photo__item {
		width: 33.4rem;
	}
}

.list-photo__item:nth-of-type(n+3) {
	margin-top: 2rem;
}

.list-policy {
	font-size: 1.8rem;
	font-weight: 700;
}

.list-policy__item {
	position: relative;
	padding: 0 0 1rem 3.5rem;
	border-bottom: 2px solid #1b3f5c;
}

.list-policy__item:before {
	position: absolute;
	top: .3rem;
	left: 0;
	width: 2rem;
	height: 2rem;
	content: '';
	display: block;
	background: #fff url(../../images/en/common/icn_check_navy.svg) no-repeat center center;
	background-size: 1.7rem auto;
}

.list-policy__item:nth-of-type(n+2) {
	margin-top: 3.5rem;
}

.list-product-seminar {
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.list-product-seminar {
		margin-top: 2rem;
	}
}

.list-product-seminar__item {
	position: relative;
	padding-left: 2.5rem;
	font-size: 1.3rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-product-seminar__item {
		font-size: 1.6rem;
	}
}

.list-product-seminar__item:nth-of-type(n+2) {
	margin-left: 2rem;
}

.list-product-seminar__item:before {
	width: 2rem;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	.list-product-seminar__item:before {
		top: 50%;
		height: 1px;
	}
}

.list-product-seminar__item.is-alog {
	color: #0f6e5a;
}

.list-product-seminar__item.is-alog:before {
	background: #0f6e5a;
}

.list-product-seminar__item.is-nac {
	color: #4482ac;
}

.list-product-seminar__item.is-nac:before {
	background: #4482ac;
}

.list-product-seminar--vertical {
	display: block;
	margin-top: 1.5rem;
}

.list-product-seminar--vertical .list-product-seminar__item {
	margin-top: 1rem;
}

.list-product-seminar--vertical .list-product-seminar__item:nth-of-type(n+2) {
	margin-left: 0;
}

.list-reason-solutions {
	text-align: center;
}

.list-reason-solutions__item {
	padding: 5rem;
	background: #fff;
}

.list-reason-solutions__item:nth-of-type(n+2) {
	margin-top: 3rem;
}

.list-reason-solutions__number {
	color: #0f6e5a;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-reason-solutions__number {
		font-size: 2.8rem;
	}
}

.list-reason-solutions__heading {
	margin-top: 2.5rem;
	font-size: 2.6rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.list-reason-solutions__heading {
		margin-top: 2rem;
		font-size: 3.2rem;
	}
}

.list-reason-solutions__text {
	margin-top: 1.5rem;
	line-height: 2;
}

.list-reason-solutions__image {
	margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
	.list-reason-solutions__image {
		margin-top: 3rem;
	}
}

.list-reason-solutions--nac {
	margin-top: 10rem;
}

.list-reason-solutions--nac .list-reason-solutions__item {
	padding: 0;
}

.list-reason-solutions--nac .list-reason-solutions__item:nth-of-type(n+2) {
	margin-top: 10rem;
}

.list-reason-solutions--nac .list-reason-solutions__number {
	color: #4482ac;
}

.list-scene-case {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: -3rem;
	margin-left: -3rem;
}

@media screen and (max-width:768px) {
	.list-scene-case {
		margin-right: -2rem;
		margin-left: -2rem;
	}
}

.list-scene-case__item {
	width: 38rem;
	margin-right: 3rem;
	margin-left: 3rem;
}

@media screen and (max-width:768px) {
	.list-scene-case__item {
		width: 33.4rem;
		margin-right: 2rem;
		margin-left: 2rem;
	}
}

.list-scene-case__item:nth-of-type(n+3) {
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.list-scene-case__item:nth-of-type(n+3) {
		margin-top: 4rem;
	}
}

.list-scene-case__image {
	width: 100%;
	height: 22rem;
}

.list-scene-case__image img {
	object-fit: contain;
	font-family: 'object-fit: contain;';
}

.list-scene-case__text {
	margin-top: 1.2rem;
	font-size: 1.3rem;
	line-height: 1.8;
}

@media screen and (max-width:768px) {
	.list-scene-case__text {
		margin-top: 2rem;
		font-size: 2rem;
	}
}

.list-series-alog {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

@media screen and (max-width:768px) {
	.list-series-alog {
		display: block;
	}
}

.list-series-alog__item {
	display: -ms-flexbox;
	display: flex;
	width: 50%;
}

@media screen and (max-width:768px) {
	.list-series-alog__item {
		width: auto;
	}
}

.list-series-alog__item:nth-of-type(n+3) {
	margin-top: 8rem;
}

@media screen and (max-width:768px) {
	.list-series-alog__item:nth-of-type(n+3) {
		margin-top: 6rem;
	}
}

@media screen and (max-width:768px) {
	.list-series-alog__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-series-alog__image {
	width: 12.8rem;
	margin-right: 3.2rem;
}

.list-series-alog__body {
	width: calc(100% - 16rem);
}

.list-series-alog__category {
	color: #0f6e5a;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-series-alog__category {
		font-size: 2.4rem;
	}
}

.list-series-alog__heading {
	margin-top: .8rem;
	color: #0f6e5a;
	font-family: Work Sans, sans-serif;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-series-alog__heading {
		font-size: 4rem;
	}
}

.list-series-alog__text {
	margin-top: 1.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-series-alog__text {
		font-size: 2.2rem;
	}
}

.list-series-alog__button {
	width: 25rem;
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.list-series-alog__button {
		width: 50rem;
	}
}

.list-series-nac__item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width:768px) {
	.list-series-nac__item {
		display: block;
	}
}

.list-series-nac__item:nth-of-type(n+2) {
	margin-top: 10rem;
}

.list-series-nac__logo {
	width: 31rem;
}

@media screen and (max-width:768px) {
	.list-series-nac__logo {
		width: 100%;
		max-width: 31rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.list-series-nac__body {
	margin-top: -.5rem;
	width: 69rem;
}

@media screen and (max-width:768px) {
	.list-series-nac__body {
		width: auto;
		margin-top: 3rem;
	}
}

.list-series-nac__text {
	line-height: 2;
}

.list-series-nac__button {
	margin-top: 2.5rem;
	width: 28rem;
}

@media screen and (max-width:768px) {
	.list-series-nac__button {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
		margin-top: 4rem;
	}
}

.list-series-nac__image {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.list-series-nac__image {
		margin-top: 5rem;
	}
}

.list-series-verona {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 6rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-series-verona {
		display: block;
		margin-top: 4rem;
	}
}

.list-series-verona__item {
	width: 50%;
}

@media screen and (max-width:768px) {
	.list-series-verona__item {
		width: auto;
	}
}

.list-series-verona__item:nth-of-type(n+3) {
	margin-top: 8rem;
}

@media screen and (max-width:768px) {
	.list-series-verona__item:nth-of-type(n+3) {
		margin-top: 6rem;
	}
}

@media screen and (max-width:768px) {
	.list-series-verona__item:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

.list-series-verona__image {
	text-align: center;
}

.list-series-verona__body {
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	.list-series-verona__body {
		margin-top: 3rem;
	}
}

.list-series-verona__category {
	color: #4482ac;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-series-verona__category {
		font-size: 2.4rem;
	}
}

.list-series-verona__heading {
	margin-top: .8rem;
	color: #4482ac;
	font-family: Work Sans, sans-serif;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.list-series-verona__heading {
		margin-top: 1.5rem;
		font-size: 3.6rem;
	}
}

.list-series-verona__text {
	margin-top: 1.5rem;
	line-height: 2;
}

.list-series-verona__button {
	width: 100%;
	max-width: 25rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.list-series-verona__button {
		width: 100%;
		max-width: 60rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.list-step {
	display: -ms-flexbox;
	display: flex;
	color: #9fa6b1;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-step {
		display: block;
		font-size: 2.4rem;
	}
}

.list-step__item {
	width: 33.333%;
	height: 6rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width:768px) {
	.list-step__item {
		width: auto;
		height: 6rem;
		background: #e8eaed;
	}
}

.list-step__item:before {
	position: absolute;
	top: 50%;
	left: 2rem;
	transform: translateY(-50%);
	font-size: 3rem;
	line-height: 1;
}

.list-step__item:nth-of-type(1):before {
	content: '1';
}

.list-step__item:nth-of-type(2):before {
	content: '2';
	left: 3rem;
}

@media screen and (max-width:768px) {
	.list-step__item:nth-of-type(2):before {
		left: 2rem;
	}
}

.list-step__item:nth-of-type(3):before {
	content: '3';
	left: 3rem;
}

@media screen and (max-width:768px) {
	.list-step__item:nth-of-type(3):before {
		left: 2rem;
	}
}

@media screen and (max-width:768px) {
	.list-step__item:nth-of-type(n+2) {
		margin-top: 1rem;
	}
}

.list-step--1 {
	background-image: url(../../images/en/form/bg_step01.svg);
}

@media screen and (max-width:768px) {
	.list-step--1 {
		background: none;
	}
}

.list-step--1 .list-step__item:nth-of-type(1) {
	color: #fff;
}

@media screen and (max-width:768px) {
	.list-step--1 .list-step__item:nth-of-type(1) {
		background: #1b3f5c;
	}
}

.list-step--2 {
	background-image: url(../../images/en/form/bg_step02.svg);
}

@media screen and (max-width:768px) {
	.list-step--2 {
		background: none;
	}
}

.list-step--2 .list-step__item:nth-of-type(2) {
	color: #fff;
}

@media screen and (max-width:768px) {
	.list-step--2 .list-step__item:nth-of-type(2) {
		background: #1b3f5c;
	}
}

.list-step--3 {
	background-image: url(../../images/en/form/bg_step03.svg);
}

@media screen and (max-width:768px) {
	.list-step--3 {
		background: none;
	}
}

.list-step--3 .list-step__item:nth-of-type(3) {
	color: #fff;
}

@media screen and (max-width:768px) {
	.list-step--3 .list-step__item:nth-of-type(3) {
		background: #1b3f5c;
	}
}

.list-tab {
	position: relative;
	background: #fff;
}

@media screen and (max-width:768px) {
	.list-tab {
		margin-left: -3rem;
		margin-right: -3rem;
		padding: 0 3rem;
	}
}

.list-tab__item {
	display: none;
}

.list-tab__item.is-active {
	display: block;
}

.list-text-horizontal {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 1.2rem;
}

@media screen and (max-width:768px) {
	.list-text-horizontal {
		display: block;
		margin-top: 2rem;
	}
}

.list-text-horizontal--font-small {
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.list-text-horizontal--font-small {
		font-size: 2.4rem;
	}
}

.list-text-horizontal__item {
	width: 50%;
	margin-top: .8rem;
	padding-left: 1rem;
}

@media screen and (max-width:768px) {
	.list-text-horizontal__item {
		width: auto;
		margin-top: 1rem;
		padding-left: 0;
	}
}

.list-topicpath {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	display: -ms-flexbox;
	display: flex;
	margin-top: 1.5rem;
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.list-topicpath {
		display: none;
	}
}

.list-topicpath__item {
	position: relative;
}

.list-topicpath__item:nth-of-type(n+2) {
	margin-left: .8rem;
	padding-left: 1.2rem;
}

.list-topicpath__item:nth-of-type(n+2):before {
	width: .4rem;
	height: .7rem;
	position: absolute;
	top: calc(50% - .4rem);
	left: 0;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_topicpath.svg) no-repeat center center;
	background-size: .4rem .7rem;
}

.list-topicpath__item a {
	text-decoration: none;
}

.list-v8 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width:768px) {
	.list-v8 {
		display: block;
	}
}

.list-v8--gray .list-v8__item {
	background: #f7f8f9;
}

.list-v8__item {
	width: calc(33.333% - 1.2rem);
	padding: 3rem 2rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.list-v8__item {
		width: auto;
		padding: 5rem 3rem;
	}
}

.list-v8__item:nth-of-type(n+2) {
	margin-top: 3rem;
}

.list-v8__item--full {
	width: 100%;
	padding: 5rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-v8__item--full {
		padding: 5rem 3rem;
	}
}

.list-v8__heading {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
}

@media screen and (max-width:768px) {
	.list-v8__heading {
		font-size: 3.6rem;
	}
}

.list-v8__text {
	margin-top: 2rem;
	padding: 0 1rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-v8__text {
		text-align: left;
	}
}

.list-v8__notes {
	margin-top: 1.5rem;
	font-size: 1.2rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-v8__notes {
		font-size: 2rem;
		text-align: left;
	}
}

.list-v8__image {
	margin-top: 5rem;
}

.list-v8__image+* {
	margin-top: 10rem !important;
}

@media screen and (max-width:768px) {
	.list-v8__image+* {
		margin-top: 8rem !important;
	}
}

.logo-verona-result {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
}

.logo-verona-result__item {
	width: 13.4rem;
	margin-left: -.2rem;
	border: solid 1px #dcdcdc;
	vertical-align: top;
	cursor: pointer;
	opacity: .5;
}

@media screen and (max-width:768px) {
	.logo-verona-result__item {
		width: 17rem;
		margin-left: -.4rem;
	}
}

@media screen and (max-width:768px) {
	.logo-verona-result .slick-list {
		padding-bottom: 1px;
	}
}

.logo-verona-result .slick-slide {
	width: 13.8rem;
	outline: none;
	padding: 0 .2rem;
	vertical-align: top;
}

@media screen and (max-width:768px) {
	.logo-verona-result .slick-slide {
		width: 17.8rem;
		padding: 0 .4rem;
	}
}

.logo-verona-result .slick-current .logo-verona-result__item {
	opacity: 1;
	border: solid 1px #1b3f5c;
}

.map-access {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	height: 50rem;
	margin-top: 6rem;
}

.map-access iframe {
	width: 100%;
	height: 100%;
}

.map-access__loader {
	height: 100%;
}

.nav-anchor-sub {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 5rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.nav-anchor-sub {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.nav-anchor-sub__item {
	position: relative;
	width: calc(25% - .8rem);
	margin-top: 1rem;
	margin-right: 1rem;
	background: #f4f4f4;
}

@media screen and (max-width:768px) {
	.nav-anchor-sub__item {
		width: 100%;
		margin-top: 2rem;
		margin-right: 0;
	}
}

.nav-anchor-sub__item:nth-of-type(4n) {
	margin-right: 0;
}

.nav-anchor-sub__item a {
	position: relative;
	display: block;
	padding: 1rem;
	text-decoration: none;
	text-align: center;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-anchor-sub__item a {
		padding: 2rem;
		text-align: left;
	}
}

.nav-anchor-sub__item a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1.5rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: .5rem .9rem;
	transform: rotate(90deg);
	transition: top .1s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-anchor-sub__item a:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .8rem);
		right: 2rem;
		background-image: url(../../images/en/common/arw_black.svg);
		background-size: 1rem 1.8rem;
	}
}

.nav-anchor-sub__item a.is-on {
	opacity: .6;
}

.nav-anchor-sub__item a.is-on:after {
	top: calc(50% - 1px);
}

.nav-anchor-sub--bg-white .nav-anchor-sub__item {
	background: #fff;
}

.nav-anchor-sub--column2 .nav-anchor-sub__item {
	width: calc(50% - .5rem);
}

@media screen and (max-width:768px) {
	.nav-anchor-sub--column2 .nav-anchor-sub__item {
		width: 100%;
	}
}

.nav-anchor-sub--column2 .nav-anchor-sub__item:nth-of-type(4n) {
	margin-right: 1rem;
}

.nav-anchor-sub--column2 .nav-anchor-sub__item:nth-of-type(2n) {
	margin-right: 0;
}

.nav-anchor-sub--column3 .nav-anchor-sub__item {
	width: calc(33.333% - .7rem);
}

@media screen and (max-width:768px) {
	.nav-anchor-sub--column3 .nav-anchor-sub__item {
		width: 100%;
	}
}

.nav-anchor-sub--column3 .nav-anchor-sub__item:nth-of-type(4n) {
	margin-right: 1rem;
}

.nav-anchor-sub--column3 .nav-anchor-sub__item:nth-of-type(3n) {
	margin-right: 0;
}

.nav-anchor {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -2rem;
	margin-bottom: 3rem;
	background: #fff;
}

.nav-anchor img {
	height: 3rem;
	max-width: 16rem;
}

@media screen and (max-width:768px) {
	.nav-anchor {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0;
		font-size: 2rem;
	}

	.nav-anchor img {
		height: 5rem;
		max-width: 25rem;
	}
}

.nav-anchor__item {
	position: relative;
	width: 25%;
	margin-bottom: -1px;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
	.nav-anchor__item {
		width: 50%;
	}
}

.nav-anchor__item:after {
	position: absolute;
	top: calc(50% - 1.5rem);
	right: 0;
	width: 1px;
	height: 3rem;
	content: '';
	display: block;
	background: #dcdcdc;
}

.nav-anchor__item:nth-of-type(4n):after {
	display: none;
}

@media screen and (max-width:768px) {
	.nav-anchor__item:nth-of-type(4n):after {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.nav-anchor__item:nth-of-type(2n):after {
		display: none;
	}
}

.nav-anchor__item a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 4.2rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-anchor__item.logo a {
	height: 6rem;
}

@media screen and (max-width:768px) {
	.nav-anchor__item a {
		-ms-flex-pack: start;
		justify-content: flex-start;
		height: 6rem;
		padding: 0 2rem;
	}

	.nav-anchor__item.logo a {
		justify-content: center;
		height: 8rem;
	}
}

.nav-anchor__item a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1.5rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: .5rem .9rem;
	transform: rotate(90deg);
	transition: top .1s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-anchor__item a:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		right: 2rem;
		background-image: url(../../images/en/common/arw_black.svg);
		background-size: 1rem 1.8rem;
	}
}

.nav-anchor__item a.is-on {
	opacity: .6;
}

.nav-anchor__item a.is-on:after {
	top: calc(50% - 1px);
}

.nav-anchor__item--link a:after {
	transform: rotate(0);
	transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-anchor__item--link a.is-on {
	opacity: .6;
}

.nav-anchor__item--link a.is-on:after {
	top: calc(50% - .4rem);
	right: 1.2rem;
}

.nav-anchor--column2 .nav-anchor__item {
	width: 50%;
}

.nav-anchor--column2 .nav-anchor__item:nth-of-type(4n):after {
	display: block;
}

.nav-anchor--column2 .nav-anchor__item:nth-of-type(2n):after {
	display: none;
}

.nav-anchor--column3 .nav-anchor__item {
	width: 33.333%;
}

.nav-anchor--column3 .nav-anchor__item:nth-of-type(4n):after {
	display: block;
}

.nav-anchor--column3 .nav-anchor__item:nth-of-type(3n):after {
	display: none;
}

@media screen and (max-width:768px) {
	.nav-anchor--column3 .nav-anchor__item.logo {
		width: 100%;
	}
}

.nav-local {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: -2rem;
	margin-bottom: 3rem;
	background: #fff;
}

@media screen and (max-width:768px) {
	.nav-local {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 0;
		font-size: 2rem;
	}
}

.nav-local__item {
	position: relative;
	width: 25%;
	margin-bottom: -1px;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
	.nav-local__item {
		width: 50%;
	}
}

.nav-local__item:after {
	position: absolute;
	top: calc(50% - 1.5rem);
	right: 0;
	width: 1px;
	height: 3rem;
	content: '';
	display: block;
	background: #dcdcdc;
}

.nav-local__item:nth-of-type(4n):after {
	display: none;
}

@media screen and (max-width:768px) {
	.nav-local__item:nth-of-type(4n):after {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.nav-local__item:nth-of-type(2n):after {
		display: none;
	}
}

.nav-local__item a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 4.2rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-local__item a {
		-ms-flex-pack: start;
		justify-content: flex-start;
		height: 6rem;
		padding: 0 2rem;
	}
}

.nav-local__item a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1.5rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: .5rem .9rem;
	transition: right .1s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-local__item a:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		right: 2rem;
		background-image: url(../../images/en/common/arw_black.svg);
		background-size: 1rem 1.8rem;
	}
}

.nav-local__item a.is-on {
	opacity: .6;
}

.nav-local__item a.is-on:after {
	right: 1.2rem;
}

.nav-local--column3 .nav-anchor__item {
	width: 33.333%;
}

.nav-local--column3 .nav-anchor__item:nth-of-type(4n):after {
	display: block;
}

.nav-local--column3 .nav-anchor__item:nth-of-type(3n):after {
	display: none;
}

.nav-sidebar {
	margin-top: .6rem;
}

.nav-sidebar__item {
	border-bottom: 1px solid #dcdcdc;
}

.nav-sidebar__item a {
	position: relative;
	display: block;
	padding: 1rem 2.5rem 1rem .5rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-sidebar__item a:after {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .5rem);
	right: 1rem;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_navy.svg) no-repeat center center;
	background-size: contain;
	transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-sidebar__item a:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		right: 1rem;
		background-image: url(../../images/en/common/arw_navy.svg);
	}
}

.nav-sidebar__item a.is-on {
	opacity: .6;
}

.nav-sidebar__item a.is-on:after {
	right: .7rem;
}

.nav-tab {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	padding: 0 7rem;
	color: #aaa;
	font-size: 1.6rem;
	line-height: 1.3;
	text-align: center;
}

@media screen and (max-width:768px) {
	.nav-tab {
		margin-left: -3rem;
		margin-right: -3rem;
		padding: 0 1rem;
		letter-spacing: 0;
	}
}

.nav-tab:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	display: block;
	background: #0f6e5a;
}

.nav-tab__item {
	width: 100%;
	height: 6rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 2px;
	cursor: pointer;
	z-index: 9;
}

.nav-tab__item.is-active {
	padding-top: 0;
	color: #0f6e5a;
	border-left: solid 2px #0f6e5a;
	border-top: solid 2px #0f6e5a;
	border-right: solid 2px #0f6e5a;
	background: #fff;
}

@media screen and (max-width:768px) {
	.nav-tab__item--sp-text-narrow {
		letter-spacing: -.1em;
	}
}

@media screen and (max-width:768px) {
	.nav-tab--sp-height70 .nav-tab__item {
		width: 100%;
		height: 7rem;
	}
}

.nav-tab--nac:before {
	background: #4482ac;
}

.nav-tab--nac .nav-tab__item.is-active {
	color: #4482ac;
	border-left: solid 2px #4482ac;
	border-top: solid 2px #4482ac;
	border-right: solid 2px #4482ac;
}

.recaptcha-form {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 6rem;
}

.section-content {
	position: relative;
	padding: 10rem 0;
}

.section-content:first-child {
	padding-top: 8rem;
}

.section-content__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.section-content__inner {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-content__inner>:first-child {
	margin-top: 0 !important;
}

.section-content__inner--narrow {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:768px) {
	.section-content__inner--narrow {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-content__inner--wide {
	width: 100%;
	max-width: 124rem;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width:768px) {
	.section-content__inner--wide {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-content__body {
	margin-top: 6rem;
}

.section-content__body>:first-child {
	margin-top: 0 !important;
}

.section-content__body--narrow {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
}

.section-content__body--margin-top-wide {
	margin-top: 16rem;
}

.section-content__footer {
	position: relative;
	margin-top: 10rem;
	z-index: 9;
}

.section-content__heading {
	position: relative;
	padding-bottom: 2.4rem;
	color: #1b3f5c;
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
	text-align: center;
}

.section-content__heading.sub {
	font-size: 2.8rem;
}

@media screen and (max-width:768px) {
	.section-content__heading {
		padding-bottom: 3rem;
		font-size: 4rem;
	}
}

.section-content__heading:after {
	width: 6rem;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 3rem);
	content: '';
	display: block;
	background: #1b3f5c;
}

@media screen and (max-width:768px) {
	.section-content__heading:after {
		width: 8rem;
		left: calc(50% - 4rem);
	}
}

.section-content__heading>span {
	position: relative;
	display: inline-block;
}

.section-content__heading>span>small {
	display: inline-block;
	margin-left: -3.8rem;
	margin-right: 1rem;
	padding-top: .3rem;
	color: #000;
	font-size: 2rem;
	font-weight: 700;
	vertical-align: top;
}

@media screen and (max-width:768px) {
	.section-content__heading>span>small {
		margin-left: -4.8rem;
		font-size: 2.4rem;
	}
}

.section-content__heading .sub-heading {
	display: block;
	margin: 0 0 1.5rem;
	padding-top: 0;
	color: #1b3f5c;
	font-size: 1.5rem;
}

.section-content__sub-heading {
	margin-top: 8rem;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.section-content__sub-heading {
		font-size: 3.6rem;
	}
}

.section-content__sub-heading--small {
	font-size: 1.7rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.section-content__sub-heading--small {
		font-size: 2.4rem;
	}
}

.section-content__sub-heading--margin-top-narrow {
	margin-top: 5rem;
}

.section-content__small-heading {
	margin-top: 6rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid #1b3f5c;
	font-size: 2rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.section-content__small-heading {
		margin-top: 8rem;
		padding-bottom: 2rem;
		font-size: 3.2rem;
	}
}

.section-content__small-heading strong {
	color: #e60012;
}

.section-content__small-heading--margin-top-wide {
	margin-top: 10rem;
}

.section-content__small-heading--font-small {
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.section-content__small-heading--font-small {
		font-size: 2.4rem;
		line-height: 1.5;
	}
}

.section-content__check-heading {
	position: relative;
	margin-top: 6rem;
	padding: 0 0 1.4rem 3.2rem;
	border-bottom: 2px solid #1b3f5c;
	font-size: 1.7rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	.section-content__check-heading {
		margin-top: 8rem;
		padding: 0 0 2rem 5rem;
		font-size: 2.8rem;
		line-height: 1.5;
	}
}

.section-content__check-heading:before {
	position: absolute;
	top: -.3rem;
	left: 0;
	width: 2rem;
	height: 2rem;
	content: '';
	display: block;
	box-sizing: border-box;
	border: solid 1px #dcdcdc;
	background: url(../../images/en/common/icn_check_alog.svg) no-repeat center center;
	background-size: 1.6rem auto;
}

@media screen and (max-width:768px) {
	.section-content__check-heading:before {
		width: 3.6rem;
		height: 3.6rem;
		top: .4rem;
		background-size: 2.8rem auto;
	}
}

.section-content__check-heading--margin-top-wide {
	margin-top: 10rem;
}

.section-content__lead {
	margin-top: 2rem;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width:768px) {
	.section-content__lead {
		margin-top: 2.4rem;
	}
}

.section-content__lead--strong {
	margin-top: 4rem;
	color: #485b6f;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

.section-content__text {
	margin-top: 2rem;
	line-height: 2;
}

.section-content__text--center {
	text-align: center;
}

.section-content__text--signature {
	margin-top: 3rem;
	text-align: right;
}

.section-content__text--large {
	color: #1b3f5c;
	font-size: 2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.section-content__text--large {
		font-size: 3rem;
	}
}

.section-content__text--large a {
	color: #1b3f5c;
}

.section-content__text--margin-top-wide {
	margin-top: 4rem;
}

.section-content__text--margin-top-narrow {
	margin-top: 1rem;
}

.section-content__text--margin-top-0 {
	margin-top: 0;
}

.section-content__text--font-small {
	font-size: 1.2rem;
}

.section-content__image {
	margin-top: 5rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	.section-content__image {
		margin-top: 6rem;
	}
}

.section-content__image--margin-top-narrow {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.section-content__image--margin-top-narrow {
		margin-top: 4rem;
	}
}

.section-content__video {
	text-align: center;
}

.section-content__video iframe {
	width: 80rem;
	height: 45rem;
}

@media screen and (max-width:768px) {
	.section-content__video iframe {
		width: 70.8rem;
		height: 39.8rem;
	}
}

.section-content__notes {
	margin-top: 6rem;
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.section-content__notes {
		margin-top: 4rem;
		font-size: 2rem;
	}
}

.section-content__notes--margin-top-narrow {
	margin-top: 3rem;
}

.section-content--narrow {
	width: 100%;
	max-width: 140rem;
	margin-left: auto;
	margin-right: auto;
}

.section-content--narrow:last-child {
	margin-bottom: 10rem;
}

.section-content--case:before {
	position: absolute;
	top: 53rem;
	left: calc(50% - 70rem);
	width: 140rem;
	height: 75rem;
	content: '';
	display: block;
	background: #f7f8f9;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.section-content--case:before {
		top: 76rem;
		height: 85rem;
	}
}

.section-content--case2:before {
	position: absolute;
	top: 40rem;
	left: calc(50% - 70rem);
	width: 140rem;
	height: calc(100% - 40rem);
	content: '';
	display: block;
	background: #f7f8f9;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.section-content--case2:before {
		top: 50rem;
		height: calc(100% - 50rem);
	}
}

.section-content--case3:before {
	position: absolute;
	top: 46rem;
	left: calc(50% - 70rem);
	width: 140rem;
	height: 60rem;
	content: '';
	display: block;
	background: #fff;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.section-content--case3:before {
		top: 76rem;
		height: 85rem;
	}
}

.section-content--case4 {
	padding-bottom: 20rem;
}

.section-content--case4:before {
	position: absolute;
	top: 40rem;
	left: calc(50% - 70rem);
	width: 140rem;
	height: calc(100% - 50rem);
	content: '';
	display: block;
	background: #f7f8f9;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.section-content--case4:before {
		top: 50rem;
		height: calc(100% - 60rem);
	}
}

.section-content--video:before {
	position: absolute;
	top: 40rem;
	left: calc(50% - 70rem);
	width: 140rem;
	height: calc(100% - 40rem);
	content: '';
	display: block;
	background: #e8eaed;
	z-index: 0;
}

.section-content--white {
	background: #fff;
}

.section-content--white-broken {
	padding-bottom: 0;
}

.section-content--white-broken:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 12rem);
	content: '';
	display: block;
	background: #fff;
	z-index: 0;
}

.section-content--gray {
	background: #f7f8f9;
}

.section-content--gray-broken {
	padding-bottom: 0;
}

.section-content--gray-broken:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 12rem);
	content: '';
	display: block;
	background: #f7f8f9;
	z-index: 0;
}

.section-content--dark-gray {
	background: #e8eaed;
}

.section-content--dark-gray-broken {
	padding-bottom: 0;
}

.section-content--dark-gray-broken:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 12rem);
	content: '';
	display: block;
	background: #e8eaed;
	z-index: 0;
}

@media screen and (max-width:768px) {
	.section-content--dark-gray-broken:before {
		height: calc(100% - 19rem);
	}
}

.section-content--alternate:nth-of-type(2n) {
	background: #f7f8f9;
}

.section-content--margin-top {
	margin-top: 10rem;
}

.section-history {
	padding: 5rem 0;
}

.section-history__inner {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (max-width:768px) {
	.section-history__inner {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.section-history:nth-of-type(2n) {
	background: #f7f8f9;
}

.section-history:first-child {
	margin-top: 8rem;
}

.sub-heading-article {
	margin-top: 5rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.sub-heading-article {
		font-size: 3rem;
	}
}

.sub-heading-case {
	margin-top: 5rem;
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.sub-heading-case {
		margin-top: 4rem;
		font-size: 3rem;
	}
}

.summary-case {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
	.summary-case {
		display: block;
		margin-top: 4rem;
	}
}

.summary-case__image {
	width: 24rem;
}

@media screen and (max-width:768px) {
	.summary-case__image {
		width: 100%;
		max-width: 24rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.summary-case__text {
	width: calc(100% - 30rem);
	line-height: 2;
}

@media screen and (max-width:768px) {
	.summary-case__text {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		margin-top: 2rem;
	}
}

.summary-document__frame {
	border: solid 1px #1b3f5c;
	margin-bottom: 6rem;
}

.summary-document {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: 3rem;
}

@media screen and (max-width:768px) {
	.summary-document__frame {
		margin-bottom: 4rem;
	}

	.summary-document {
		padding: 3rem 2rem;
	}
}

.summary-document__image {
	width: 25rem;
	margin-right: 3rem;
}

@media screen and (max-width:768px) {
	.summary-document__image {
		width: 20rem;
		margin-right: 2rem;
	}
}

.summary-document__body {
	width: calc(100% - 20rem);
}

.summary-document__heading {
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-document__heading {
		font-size: 3rem;
	}
}

.summary-document__lead {
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-document__lead {
		font-size: 2rem;
	}
}

.summary-document__sub-heading {
	margin-top: 2rem;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-document__sub-heading {
		margin-top: 2rem;
		font-size: 2.4rem;
	}
}

.summary-document__list {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: .5rem;
	padding-left: 2rem;
	list-style-type: disc;
}

@media screen and (max-width:768px) {
	.summary-document__list {
		padding-left: 3rem;
		font-size: 2rem;
	}
}

.summary-document__item {
	margin-top: .5rem;
	width: 33.333%;
}

@media screen and (max-width:768px) {
	.summary-document__item {
		width: 50%;
	}
}

.wp_dlRecommend_sv {
	background: #f5f5f5;
	padding: 1rem 3rem 3rem;
}

@media screen and (max-width:768px) {}

.summary-message {
	width: 47rem;
}

.summary-message__text {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2;
}

.summary-message__name {
	margin-top: 3rem;
	font-size: 1.3rem;
	text-align: right;
}

.summary-message__name span {
	margin-left: 1rem;
	font-size: 2.2rem;
	font-weight: 700;
}

.summary-press {
	margin-top: 2rem;
}

.summary-press__title {
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-press__title {
		font-size: 3.6rem;
	}
}

.summary-press__title small {
	display: block;
	margin-top: .3rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.summary-press__title small {
		margin-top: 1rem;
		font-size: 3rem;
	}
}

.summary-press__lead {
	margin-top: 4rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.summary-press__lead {
		margin-top: 5rem;
		font-size: 3rem;
	}
}

.summary-press__text {
	margin-top: 2.5rem;
	line-height: 2;
}

.summary-press__button {
	margin-top: 3rem;
	font-size: 1.8rem;
}

@media screen and (max-width:768px) {
	.summary-press__button {
		font-size: 3rem;
	}
}

.summary-press__button a {
	color: #0068bd;
}

.summary-press__button a.is-on {
	text-decoration: none;
}

.summary-seminar {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.summary-seminar {
		margin-top: 2.5rem;
	}
}

.summary-seminar__company {
	color: #a0a0a0;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.summary-seminar__company {
		font-size: 2rem;
	}
}

.summary-seminar__title {
	margin-top: 1.5rem;
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-seminar__title {
		font-size: 3.6rem;
	}
}

.summary-seminar__title small {
	display: block;
	margin-top: .3rem;
	font-size: 2rem;
}

@media screen and (max-width:768px) {
	.summary-seminar__title small {
		margin-top: 1rem;
		font-size: 3rem;
	}
}

.summary-seminar__text {
	margin-top: 1.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.summary-seminar__text {
		margin-top: 3rem;
	}
}

.summary-seminar__text h2 {
	margin-top: 1.5rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-seminar__text h2 {
		margin-top: 3rem;
	}
}

.summary-seminar__text table {
	width: 100%;
	margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
	.summary-seminar__text table {
		margin-top: 2rem;
		font-size: 2rem;
	}
}

.summary-seminar__text table th,
.summary-seminar__text table td {
	padding: 1rem 2rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

.summary-seminar__text table th {
	width: 18rem;
	background: #f4f4f4;
}

.summary-seminar__text table th a {
	color: #0068bd;
	font-size: 1.8rem;
	font-weight: 700;
}

.summary-seminar__text table td {
	width: calc(100% - 18rem);
	line-height: 2;
}

.summary-seminar__text table td a {
	color: #0068bd;
}

.summary-seminar__text .title {
	color: #1b3f5c;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.summary-seminar__text .title {
		font-size: 2.4rem;
	}
}

.summary-seminar__text .fontbold {
	font-weight: 700;
}

.summary-seminar__text .txt_right {
	display: block;
	margin-top: 1rem;
	font-size: 1.3rem;
	text-align: right;
}

@media screen and (max-width:768px) {
	.summary-seminar__text .txt_right {
		font-size: 2rem;
		text-align: left;
	}
}

.summary-seminar__button a {
	width: 48rem;
	height: 7rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 3.5rem auto 0;
	color: #fff;
	background: #1b3f5c;
	font-size: 1.8rem;
	text-decoration: none;
	box-shadow: 0 .3rem 0 0 #0b273d;
}

@media screen and (max-width:768px) {
	.summary-seminar__button a {
		width: 60rem;
		height: 10.2rem;
		margin-top: 5rem;
		font-size: 2.6rem;
	}
}

.summary-seminar__button a:before {
	width: 100%;
	height: 0;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	background: #355792;
	z-index: 1;
	transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.summary-seminar__button a:after {
	width: 2.2rem;
	height: 2.2rem;
	position: absolute;
	top: calc(50% - 1.1rem);
	left: 2rem;
	box-sizing: border-box;
	content: '';
	display: block;
	border: 1px solid #fff;
	background: url(../../images/en/common/icn_check_white.svg) no-repeat center center;
	z-index: 9;
}

@media screen and (max-width:768px) {
	.summary-seminar__button a:after {
		width: 3.2rem;
		height: 3.2rem;
		top: calc(50% - 1.6rem);
		left: 3rem;
		background-size: 2.2rem auto;
	}
}

.summary-seminar__button a.is-on:before {
	bottom: 0;
	top: auto;
	height: 100%;
}

.summary-seminar__button span {
	position: relative;
	display: block;
	z-index: 9;
}

.summary-seminar__alert {
	margin-top: 3.5rem;
	color: #c00;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.summary-seminar__alert {
		margin-top: 5rem;
		font-size: 3rem;
	}
}

.table-article {
	width: 100%;
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	.table-article {
		margin-top: 8rem;
		font-size: 2rem;
	}
}

.table-article th,
.table-article td {
	padding: 1rem 2rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 2;
}

@media screen and (max-width:768px) {

	.table-article th,
	.table-article td {
		padding: 1rem;
	}
}

.table-article th {
	width: 24rem;
	background: #f4f4f4;
}

.table-article th a {
	color: #0068bd;
	font-size: 1.8rem;
	font-weight: 700;
}

.table-article td {
	width: calc(100% - 24rem);
}

.table-article td a {
	color: #0068bd;
}

.table-case {
	width: 100%;
	margin-top: 8rem;
}

@media screen and (max-width:768px) {
	.table-case {
		font-size: 2rem;
	}
}

.table-case caption {
	margin-bottom: 3rem;
	padding-bottom: .8rem;
	font-size: 2rem;
	font-weight: 700;
	border-bottom: 2px solid #1b3f5c;
	text-align: left;
}

@media screen and (max-width:768px) {
	.table-case caption {
		padding-bottom: 2rem;
		font-size: 3.2rem;
	}
}

.table-case th,
.table-case td {
	padding: 1rem 2rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 2;
}

@media screen and (max-width:768px) {

	.table-case th,
	.table-case td {
		padding: 10px;
	}
}

.table-case th {
	width: 18rem;
	background: #e8eaed;
}

.table-case td {
	width: calc(100% - 18rem);
}

.table-case td a {
	color: #0068bd;
}

.table-form {
	width: 100%;
	margin-top: 4.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {

	.table-form tbody,
	.table-form tr,
	.table-form th,
	.table-form td {
		display: block;
	}
}

@media screen and (max-width:768px) {
	.table-form tr+tr {
		margin-top: 3rem;
	}
}

.table-form th {
	width: 30rem;
	padding: 1.5rem 1.5rem 1.5rem 0;
	font-size: 1.4rem;
	font-weight: 700;
	vertical-align: top;
}

@media screen and (max-width:768px) {
	.table-form th {
		width: auto;
		padding: 0;
		font-size: 2.7rem;
	}
}

.table-form th span {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: 5rem;
}

@media screen and (max-width:768px) {
	.table-form th span {
		min-height: 0;
	}
}

/*.table-form th.is-required span:after{
	content:'※';
	margin-left:5px;
	color:#e60000;
	font-size:1.2rem;
}*/

.table-form th span:before {
	content: 'Any';
	display: inline-block;
	padding: 0.1rem 0.7rem;
	background-color: #818d93;
	margin-right: 10px;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: 4px;
	letter-spacing: -.05em;
}

.table-form th.is-required span:before {
	content: 'Required';
	display: inline-block;
	padding: 0.1rem 0.7rem;
	background-color: #b20000;
	margin-right: 10px;
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 500;
	border-radius: 4px;
	letter-spacing: -.05em;
}


.table-form td {
	width: calc(100% - 30rem);
	padding: 1.5rem 0;
	vertical-align: top;
}

@media screen and (max-width:768px) {
	.table-form td {
		width: auto;
		padding: 0;
		font-size: 3.2rem;
	}
}

.table-form td input[type=text] {
	width: 100%;
	height: 5rem;
	padding: 1rem;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media screen and (max-width:768px) {
	.table-form td input[type=text] {
		height: 7rem;
		font-size: 3.2rem;
	}
}

.table-form td select {
	width: 100%;
	height: 5rem;
	padding: 1rem;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media screen and (max-width:768px) {
	.table-form td select {
		height: 7rem;
		font-size: 3.2rem;
	}
}

.table-form td textarea {
	width: 100%;
	height: 24rem;
	padding: 1rem;
	border: 1px solid #dcdcdc;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media screen and (max-width:768px) {
	.table-form td textarea {
		font-size: 3.2rem;
	}
}

.table-form td .select-form {
	position: relative;
}

.table-form td .select-form:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .8rem .5rem 0;
	border-color: #1b2024 transparent transparent;
	position: absolute;
	top: calc(50% - .4rem);
	right: 1.5rem;
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	.table-form td .select-form:after {
		border-style: solid;
		border-width: 1.2rem .8rem 0;
		border-color: #1b2024 transparent transparent;
		top: calc(50% - .2rem);
	}
}

.table-form__confirm {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	min-height: 5rem;
}

@media screen and (max-width:768px) {
	.table-form__confirm {
		min-height: 7rem;
	}
}

.table-form--area {
	padding: 2rem;
	margin-top: 4.5rem;
	background-color: #f2f2f2;
}

.table-horizontal {
	width: 100%;
	margin-top: 6rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.table-horizontal {
		font-size: 2rem;
	}
}

.table-horizontal th,
.table-horizontal td {
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

.table-horizontal th table,
.table-horizontal td table {
	width: 100%;
}

.table-horizontal th td,
.table-horizontal th th,
.table-horizontal td td,
.table-horizontal td th {
	border-top: none;
	border-bottom: none;
	padding: 0;
}

.table-horizontal th {
	width: 30rem;
	padding: 2rem;
}

@media screen and (max-width:768px) {
	.table-horizontal th {
		padding: 1rem;
	}
}

.table-horizontal td {
	width: calc(100% - 30rem);
	padding: 2rem 0;
}

@media screen and (max-width:768px) {
	.table-horizontal td {
		padding: 1rem 0;
	}
}

.table-horizontal td a {
	color: #0068bd;
}

.table-patent {
	width: 100%;
	max-width: 100rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 2;
}

.table-patent th,
.table-patent td {
	border-bottom: 1px solid #dcdcdc;
}

.table-patent th {
	width: 20rem;
	padding: 2rem;
}

@media screen and (max-width:768px) {
	.table-patent th {
		padding: 1rem;
	}
}

.table-patent td {
	width: calc(100% - 20rem);
	padding: 2rem 0;
}

@media screen and (max-width:768px) {
	.table-patent td {
		padding: 1rem 0;
	}
}

.table-patent td a {
	color: #0068bd;
	font-weight: 700;
	text-decoration: none;
}

.table-patent td a.is-on {
	text-decoration: underline;
}

.table-patent tr:first-child th,
.table-patent tr:first-child td {
	padding-top: 0;
	border-bottom: 2px solid #1b3f5c;
}

.table-patent tr:first-child td {
	color: #1b3f5c;
	font-weight: 700;
}

.table-patent+.table-patent {
	margin-top: 5rem;
}

.table-recruitment {
	width: 100%;
	margin-top: 4rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.table-recruitment {
		font-size: 2rem;
	}
}

.table-recruitment th,
.table-recruitment td {
	border-bottom: 1px solid #dcdcdc;
}

.table-recruitment th {
	width: 20rem;
	padding: 2rem;
}

@media screen and (max-width:768px) {
	.table-recruitment th {
		padding: 1rem;
	}
}

.table-recruitment td {
	width: calc(100% - 20rem);
	padding: 2rem 0;
}

@media screen and (max-width:768px) {
	.table-recruitment td {
		padding: 1rem 0;
	}
}

.table-recruitment td strong {
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.table-recruitment td strong {
		font-size: 2.7rem;
	}
}

.table-recruitment tr:first-child th,
.table-recruitment tr:first-child td {
	padding-top: 0;
}

.table-recruitment tr:last-child th,
.table-recruitment tr:last-child td {
	padding-bottom: 0;
	border-bottom: none;
}

.table-seminar {
	width: 100%;
	margin-top: 8rem;
}

@media screen and (max-width:768px) {
	.table-seminar {
		font-size: 2rem;
	}
}

.table-seminar caption {
	margin-bottom: 3rem;
	padding-bottom: .8rem;
	font-size: 2rem;
	font-weight: 700;
	border-bottom: 2px solid #1b3f5c;
	text-align: left;
}

.table-seminar th,
.table-seminar td {
	padding: 1rem 2rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {

	.table-seminar th,
	.table-seminar td {
		padding: 1rem;
	}
}

.table-seminar th {
	width: 18rem;
	background: #f4f4f4;
}

.table-seminar th a {
	color: #0068bd;
	font-size: 1.8rem;
	font-weight: 700;
}

.table-seminar td {
	width: calc(100% - 18rem);
	line-height: 2;
}

.table-seminar td a {
	color: #0068bd;
}

.table-seminar--product th {
	width: 22rem;
}

.table-seminar--product td {
	width: calc(100% - 22rem);
}

.table-vertical {
	table-layout: fixed;
	width: 100%;
	margin-top: 3rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.table-vertical {
		font-size: 2rem;
	}
}

.table-vertical th,
.table-vertical td {
	padding: .6rem 1rem;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	line-height: 2;
	vertical-align: middle;
}

@media screen and (max-width:768px) {

	.table-vertical th,
	.table-vertical td {
		padding: 1rem;
	}
}

.table-vertical th {
	background: #f4f4f4;
	text-align: center;
}

.table-vertical th+th {
	border-left: 1px solid #dcdcdc;
}

.table-vertical th a {
	color: #0068bd;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.table-vertical th a {
		font-size: 2rem;
	}
}

.table-vertical td+td {
	border-left: 1px solid #dcdcdc;
}

.table-vertical td a {
	color: #0068bd;
}

.table-vertical--font-small {
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	.table-vertical--font-small {
		font-size: 2rem;
	}
}

.table-vertical--margin-top-narrow {
	margin-top: 1.5rem;
}

.text-article {
	overflow: hidden;
	margin-top: 1.5rem;
	line-height: 2;
}

.text-case {
	margin-top: 1.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.text-case {
		margin-top: 2rem;
	}
}

.text-form {
	line-height: 2;
	text-align: center;
}

.text-form:nth-of-type(n+2) {
	margin-top: 5rem;
}

@media screen and (max-width:768px) {
	.text-form:nth-of-type(n+2) {
		margin-top: 2rem;
	}
}

.text-form span {
	color: #e60000;
}

.text-introduction {
	margin-top: 10rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
}

@media screen and (max-width:768px) {
	.text-introduction {
		width: 100%;
		max-width: 70.8rem;
		margin-left: auto;
		margin-right: auto;
		font-size: 2.7rem;
	}
}

.text-message {
	width: 100%;
	line-height: 2;
	min-width: 0;
	overflow-wrap: break-word;
	word-break: break-all;
}

.text-message:nth-of-type(n+2) {
	margin-top: 3rem;
}

@media screen and (max-width:768px) {
	.text-message:nth-of-type(n+2) {
		margin-top: 4rem;
	}
}

.text-message--signature {
	font-size: 1.3rem;
	text-align: right;
}

@media screen and (max-width:768px) {
	.text-message--signature {
		font-size: 2rem;
	}
}

.text-message--signature:nth-of-type(n+2) {
	margin-top: 5rem;
}

.text-message--signature span {
	margin-left: 1rem;
	font-size: 2.2rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.text-message--signature span {
		font-size: 3rem;
	}
}

.text-motto {
	font-size: 5rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1;
	text-align: center;
}

.text-notes {
	margin-top: 6rem;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 2;
}

.text-notes a {
	color: #0068bd;
}

.text-notes--font-small {
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.text-notes--font-small {
		font-size: 1.6rem;
	}
}

.text-notes--margin-top-narrow {
	margin-top: 1rem;
}

.text-philosophy {
	font-family: Work Sans, sans-serif;
	font-size: 5rem;
	letter-spacing: .1em;
	line-height: 1;
	text-align: center;
}

.text-statement {
	margin-top: 8rem;
	line-height: 1;
	text-align: center;
}

.text-statement__en {
	display: block;
	font-family: Work Sans, sans-serif;
	font-size: 5rem;
	letter-spacing: .1em;
}

.text-statement__jp {
	display: block;
	margin-top: 2rem;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .1em;
}

@media screen and (max-width:768px) {
	.text-statement__jp {
		font-size: 2.2rem;
	}
}

.title-case {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.title-case {
		font-size: 4rem;
	}
}

.title-content {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 22rem;
	padding-bottom: 1rem;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #1b2024;
	line-height: 1;
	text-align: center;
}

.title-content__ja {
	display: block;
	font-size: 1.8rem;
}

.title-content__en {
	display: block;
	margin-top: 1.6rem;
	font-family: Work Sans, sans-serif;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: .2em;
}

.title-content--alog {
	background-image: url(../../images/en/solutions/bg/bg_title_content01.jpg);
}

.title-content--nac {
	background-image: url(../../images/en/solutions/bg/bg_title_content02.png);
}

.title-content--vision {
	background-image: url(../../images/en/corporate/bg/bg_title_content01.jpg);
}

.title-content--message {
	background-image: url(../../images/en/corporate/bg/bg_title_content02.jpg);
}

.title-content--profile {
	background-image: url(../../images/en/corporate/bg/bg_title_content03.jpg);
}

.title-content--history {
	background-image: url(../../images/en/corporate/bg/bg_title_content04.jpg);
}

.title-content--global {
	background-image: url(../../images/en/corporate/bg/bg_title_content05.jpg);
}

.title-content--innovation {
	background-image: url(../../images/en/corporate/bg/bg_title_content06.jpg);
}

.title-content--access {
	background-image: url(../../images/en/corporate/bg/bg_title_content07.jpg);
}

.title-content--officer {
	background-image: url(../../images/en/corporate/bg/bg_title_content08.jpg)
}

.title-content--case {
	background-image: url(../../images/en/case/bg/bg_title_content01.jpg);
}

.title-content--case-detail {
	height: 18rem;
	color: #1b3f5c;
	background: #fff;
}

.title-content--seminar {
	background-image: url(../../images/en/seminar/bg/bg_title_content01.jpg);
}

.title-content--press {
	background-image: url(../../images/en/press/bg_title_content01.jpg);
}

.title-content--doc-download {
	background-image: url(../../images/en/documents/bg_title_content01.jpg);
}

.title-content--recruit {
	background-image: url(../../images/en/recruitment/bg/bg_title_content01.jpg);
}

.title-content--recruitment {
	background-image: url(../../images/en/recruitment/bg/bg_title_content01.jpg);
}

.title-content--siteinfo {
	background-image: url(../../images/en/siteinfo/bg/bg_title_content01.jpg);
}

.title-content--contact {
	background-image: url(../../images/en/form/bg_title_content_form.jpg);
}

.title-sub-case {
	margin-top: 8rem;
	color: #1b3f5c;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}

@media screen and (max-width:768px) {
	.title-sub-case {
		font-size: 3.2rem;
	}
}

.group-company-information__heading {
	font-size: 2rem;
}

@media screen and (max-width:768px) {
	.group-company-information__heading {
		font-size: 4rem;
	}
}

.group-company-information__text {
	margin-top: 1rem;
	line-height: 1.5;
	margin-bottom: 2rem;
	font-size: 1.4rem;
}

.group-company-information__text a {
	display: block;
	color: #ffffff;
	text-decoration: none;
}

.group-company-information__text span {
	font-size: 1.4rem;
	line-height: 1.0;
}

@media screen and (max-width:768px) {
	.group-company-information__text {
		font-size: 2.6rem;
	}
}

.group-sitemap {
	line-height: 1.2;
}

@media screen and (max-width:768px) {
	.group-sitemap {
		display: none;
	}
}

.group-sitemap__sub-heading {
	position: relative;
	margin-top: 2rem;
	padding-left: 1.1rem;
	border-left: .4rem solid #fff;
}

.group-sitemap__body+.group-sitemap__heading {
	margin-top: 4.5rem;
}

.group-sitemap__body+.group-sitemap__sub-heading {
	margin-top: 4.5rem;
}

.group-sitemap a {
	color: #fff;
	text-decoration: none;
}

.list-official-sns {
	display: -ms-flexbox;
	display: flex;
	font-size: 3.2rem;
}

@media screen and (max-width:768px) {
	.list-official-sns {
		font-size: 6.4rem;
	}
}

.list-official-sns__item:nth-of-type(n+2) {
	margin-left: 2rem;
}

@media screen and (max-width:768px) {
	.list-official-sns__item:nth-of-type(n+2) {
		margin-left: 3rem;
	}
}

.list-official-sns__item a {
	color: #fff;
	text-decoration: none;
}

.list-relation-menu {
	margin-top: 4.5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.list-relation-menu {
		margin-top: 7rem;
		font-size: 2.6rem;
	}
}

.list-relation-menu__item a {
	color: #fff;
	text-decoration: none;
}

.list-sitemap-child {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -1rem;
	padding-left: 3rem;
	font-size: 1.1rem;
	line-height: 1;
}

.list-sitemap-child__item {
	margin-top: 1.5rem;
	margin-right: 1rem;
	padding-right: 1rem;
	border-right: solid 1px #fff;
}

.list-sitemap-child__item a {
	color: #fff;
	text-decoration: none;
}

.list-sitemap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0 10rem 0 3rem;
	font-size: 1.3rem;
	line-height: 1;
}

.list-sitemap__item {
	width: 50%;
	margin-top: 1.5rem;
}

.list-sitemap__item a {
	color: #fff;
	text-decoration: none;
}

.list-sitemap-child+.list-sitemap {
	margin-top: 1rem;
}

.list-sub-menu {
	display: -ms-flexbox;
	display: flex;
	font-size: 1.3rem;
	line-height: 1;
	flex: 1 0 auto;
}

@media screen and (max-width:768px) {
	.list-sub-menu {
		display: block;
		font-size: 2.6rem;
	}
}

@media screen and (max-width:768px) {
	.list-sub-menu__item {
		border-bottom: 1px solid #585858;
	}
}

.list-sub-menu__item:nth-of-type(n+2) {
	margin-left: 1.2rem;
	padding-left: 1.2rem;
	border-left: solid 1px #fff;
}

@media screen and (max-width:768px) {
	.list-sub-menu__item:nth-of-type(n+2) {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
	}
}

.list-sub-menu__item a {
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	.list-sub-menu__item a {
		position: relative;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: center;
		align-items: center;
		height: 10rem;
	}

	.list-sub-menu__item a:after {
		width: 1rem;
		height: 1.8rem;
		position: absolute;
		top: calc(50% - .9rem);
		right: 1rem;
		content: '';
		display: block;
		background: url(../../images/en/common/arw_white.svg) no-repeat center center;
		background-size: contain;
	}
}

.text-copyright-contact {
	display: block;
	width: 100%;
	text-align: center;
	margin: 1rem 0;
}

.text-copyright {
	display: block;
	width: 100%;
	text-align: center;
	font-family: Work Sans, sans-serif;
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: .1em;
	margin: 0.5rem;
}

@media screen and (max-width:768px) {
	.text-copyright {
		margin-top: 6rem;
		font-size: 2.4rem;
		text-align: center;
	}
}

.button-hamburger {
	display: none;
}

@media screen and (max-width:768px) {
	.button-hamburger {
		width: 10rem;
		height: 10rem;
		position: relative;
		display: block;
		background: #1b3f5c;
		z-index: 999;
	}
}

.button-hamburger__line {
	position: absolute;
	top: 50%;
	left: calc(50% - 2rem);
	width: 4rem;
	height: 1px;
	background: #fff;
	transition: top .2s cubic-bezier(.39, .575, .565, 1) .2s, transform .2s cubic-bezier(.39, .575, .565, 1), opacity .2s cubic-bezier(.39, .575, .565, 1) .2s;
}

.button-hamburger__line:nth-of-type(1) {
	top: calc(50% - 1rem);
}

.button-hamburger__line:nth-of-type(3) {
	top: calc(50% + 1rem);
}

.is-show-nav .button-hamburger__line {
	transition: top .2s cubic-bezier(.39, .575, .565, 1), transform .2s cubic-bezier(.39, .575, .565, 1) .2s, opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.is-show-nav .button-hamburger__line:nth-of-type(1) {
	top: 50%;
	transform: rotate(45deg);
}

.is-show-nav .button-hamburger__line:nth-of-type(2) {
	opacity: 0;
}

.is-show-nav .button-hamburger__line:nth-of-type(3) {
	top: 50%;
	transform: rotate(-45deg);
}

.list-conversion {
	display: -ms-flexbox;
	display: flex;
	margin-left: 1rem;
}

@media screen and (max-width:768px) {
	.list-conversion {
		margin: 3rem 0 0;
	}
}

.list-conversion__item:nth-of-type(n+2) {
	margin-left: 1rem;
}

@media screen and (max-width:768px) {
	.list-conversion__item:nth-of-type(n+2) {
		margin-left: 2rem;
	}
}

.list-conversion__item a {
	width: 20rem;
	height: 5rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 2rem;
	color: #fff;
	border-radius: .8rem;
	background: linear-gradient(to right, #183260 0, #355792 100%);
	text-decoration: none;
	transition: opacity .4s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.list-conversion__item a {
		width: 34.4rem;
		height: 10rem;
		padding-left: 4rem;
		border-radius: 1.6rem;
	}
}

.list-conversion__item a.is-on {
	opacity: .6;
}

.list-conversion__item a .icon {
	position: absolute;
	top: 50%;
	left: 1.5rem;
	fill: #fff;
	z-index: 9;
	transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

@media screen and (max-width:768px) {
	.list-conversion__item a .icon {
		left: 3rem;
	}
}

.list-conversion__item a .icon--download {
	top: calc(50% - .9rem);
	width: 1.8rem;
	height: 1.8rem;
}

@media screen and (max-width:768px) {
	.list-conversion__item a .icon--download {
		top: calc(50% - 1.8rem);
		width: 3.6rem;
		height: 3.6rem;
	}
}

.list-conversion__item a .icon--contact {
	top: calc(50% - .7rem);
	width: 2rem;
	height: 1.3rem;
}

@media screen and (max-width:768px) {
	.list-conversion__item a .icon--contact {
		top: calc(50% - 1.4rem);
		width: 4rem;
		height: 2.6rem;
	}
}

.list-dropdown {
	padding-left: 4rem;
}

@media screen and (max-width:768px) {
	.list-dropdown {
		padding-left: 5.2rem;
	}
}

.list-dropdown__item:nth-of-type(n+2) {
	margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
	.list-dropdown__item:nth-of-type(n+2) {
		margin-top: 3rem;
	}
}

.list-dropdown__item a {
	position: relative;
	text-decoration: none;
}

.list-dropdown__item a:after {
	width: 0;
	height: 1px;
	position: absolute;
	top: calc(50% + 1.4rem);
	right: 0;
	content: '';
	display: block;
	background: #000;
	transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

@media screen and (max-width:768px) {
	.list-dropdown__item a:after {
		top: calc(50% + 2.4rem);
	}
}

.list-dropdown__item a.is-on:after {
	left: 0;
	right: auto;
	width: 100%;
}

.list-dropdown__child {
	margin-top: 1.5rem;
	padding-bottom: .5rem;
}

@media screen and (max-width:768px) {
	.list-dropdown__child {
		margin-top: 3rem;
		padding-bottom: 1rem;
	}
}

.list-dropdown__child .list-dropdown__item {
	position: relative;
	padding-left: 2rem;
	font-size: 1.2rem;
}

@media screen and (max-width:768px) {
	.list-dropdown__child .list-dropdown__item {
		padding-left: 3.6rem;
		font-size: 2.4rem;
	}
}

.list-dropdown__child .list-dropdown__item:before {
	position: absolute;
	top: 50%;
	left: .8rem;
	width: .4rem;
	height: 1px;
	content: '';
	display: block;
	background: #000;
}

@media screen and (max-width:768px) {
	.list-dropdown__child .list-dropdown__item:before {
		width: 1rem;
	}
}

.list-dropdown__child .list-dropdown__item a:after {
	top: calc(50% + 1.2rem);
}

@media screen and (max-width:768px) {
	.list-dropdown__child .list-dropdown__item a:after {
		top: calc(50% + 2rem);
	}
}

.list-menu-child {
	position: fixed;
	top: 7rem;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: 0 3rem;
	background: #1b2024;
}

@media screen and (max-width:1400px) {
	.list-menu-child {
		font-size: 1.3rem;
	}
}

@media screen and (max-width:768px) {
	.list-menu-child {
		display: none;
	}
}

.list-menu-child a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	height: 4.4rem;
	color: #fff;
	text-decoration: none;
}

.list-menu-child a:after {
	width: 0;
	height: .4rem;
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	display: block;
	background: #000;
	transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

.list-menu-child a.is-on:after {
	left: 0;
	right: auto;
	width: 100%;
}

.list-menu-child__heading {
	font-weight: 700;
}

.list-menu-child__inner {
	display: -ms-flexbox;
	display: flex;
}

.list-menu-child__item {
	position: relative;
	margin-left: 3rem;
}

.list-menu-child__item--left-spacer {
	margin-left: 6rem;
}

.list-menu-child__dropdown {
	position: absolute;
	top: 4.4rem;
	left: calc(50% - 12rem);
	width: 24rem;
	background: #4482ac;
	font-size: 1.3rem;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-menu-child__dropdown.is-show {
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width:1366px) {
	.list-menu-child__dropdown {
		font-size: 1.1rem;
	}
}

.list-menu-child__dropdown .list-menu-child__item {
	margin-left: 0;
}

.list-menu-child__dropdown a {
	-ms-flex-pack: center;
	justify-content: center;
	transition: background .2s cubic-bezier(.39, .575, .565, 1);
}

.list-menu-child__dropdown a:after {
	display: none;
}

.list-menu-child__dropdown a.is-on {
	background: #62a4cf;
}

.list-menu-child .is-current a:after {
	width: 100%;
}

.list-menu-child--alog a:after {
	background: #0f6e5a;
}

.list-menu-child--nac a:after {
	background: #4482ac;
}

.list-menu {
	display: -ms-flexbox;
	display: flex;
}

.list-menu__item {
	font-size: 90%;
}

@media screen and (max-width:768px) {
	.list-menu {
		display: block;
	}
}

.list-menu__item {
	position: relative;
}

@media screen and (max-width:768px) {
	.list-menu__item {
		border-bottom: 1px solid #dcdcdc;
	}
}

.list-menu__item:nth-of-type(n+2) {
	margin-left: 3rem;
}

@media screen and (max-width:768px) {
	.list-menu__item:nth-of-type(n+2) {
		margin-left: 0;
	}
}

.list-menu__item>a,
.list-menu__item>span {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 7rem;
	color: #000;
	text-decoration: none;
	cursor: pointer;
	z-index: 9;
}

@media screen and (max-width:768px) {

	.list-menu__item>a,
	.list-menu__item>span {
		display: block;
		height: auto;
		padding: 2.4rem 0;
	}
}

.list-menu__item>a:after,
.list-menu__item>span:after {
	width: 0;
	height: 2px;
	position: absolute;
	top: calc(50% + 1.5rem);
	right: 0;
	content: '';
	display: block;
	background: #000;
	transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

@media screen and (max-width:768px) {

	.list-menu__item>a:after,
	.list-menu__item>span:after {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		right: 1rem;
		background: url(../../images/en/common/arw_black.svg) no-repeat center center;
		background-size: contain;
		transition: right .2s cubic-bezier(.39, .575, .565, 1);
	}
}

.list-menu__item>a.is-on:after,
.list-menu__item>span.is-on:after {
	left: 0;
	right: auto;
	width: 100%;
}

@media screen and (max-width:768px) {

	.list-menu__item>a.is-on:after,
	.list-menu__item>span.is-on:after {
		left: auto;
		right: 0;
		width: 1rem;
	}
}

@media screen and (max-width:768px) {
	.list-menu__item>span:after {
		transform: rotate(90deg);
		transition: top .2s cubic-bezier(.39, .575, .565, 1);
	}
}

@media screen and (max-width:768px) {
	.list-menu__item>span.is-on:after {
		top: calc(50% - .3rem);
		right: 1rem;
	}
}

.list-menu__item.is-current>a:after,
.list-menu__item.is-current>span:after {
	left: 0;
	right: auto;
	width: 100%;
}

@media screen and (max-width:768px) {

	.list-menu__item.is-current>a:after,
	.list-menu__item.is-current>span:after {
		left: auto;
		right: 1rem;
		width: 1rem;
	}
}

.logo-amiya {
	width: 15rem;
	padding-left: 3rem;
}

@media screen and (max-width:768px) {
	.logo-amiya {
		width: 18rem;
	}
}

.nav-dropdown {
	position: fixed;
	top: 7rem;
	left: 0;
	overflow: hidden;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 0;
	padding: 0;
	background: #fff;
	border-top: 1px solid #dcdcdc;
	z-index: 9;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-dropdown {
		position: static;
		display: none;
		height: auto;
		padding: 0 0 4rem;
		opacity: 1;
		pointer-events: auto;
	}
}

.nav-dropdown.is-show {
	height: auto;
	padding: 4rem 4rem 4rem 19rem;
	opacity: 1;
	pointer-events: auto;
}

@media screen and (max-width:768px) {
	.nav-dropdown__item {
		margin-top: 4rem;
	}
}

.nav-dropdown__item:nth-of-type(n+2) {
	margin-left: 10rem;
}

@media screen and (max-width:768px) {
	.nav-dropdown__item:nth-of-type(n+2) {
		margin: 5rem 0 0;
	}
}

.nav-dropdown__heading {
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	.nav-dropdown__heading {
		font-size: 2.8rem;
		line-height: 1.2;
	}
}

.nav-dropdown__heading a {
	position: relative;
	display: inline-block;
	padding-left: 4rem;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	.nav-dropdown__heading a {
		padding-left: 5.2rem;
	}
}

.nav-dropdown__heading a:before {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 1.3rem);
	left: 0;
	box-sizing: border-box;
	content: '';
	display: block;
	border: solid 1px #1b2024;
	background-image: url(../../images/en/common/arw_small_navy.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: .5rem auto;
}

@media screen and (max-width:768px) {
	.nav-dropdown__heading a:before {
		width: 3.7rem;
		height: 3.7rem;
		border-radius: 100%;
		top: calc(50% - 1.6rem);
		background-size: .7rem auto;
	}
}

.nav-dropdown__heading a.is-on {
	opacity: .6;
}

.nav-dropdown__heading small {
	font-size: 1.5rem;
}

@media screen and (max-width:768px) {
	.nav-dropdown__heading small {
		font-size: 2rem;
	}
}

.nav-dropdown__heading--alog a {
	color: #0f6e5a;
}

.nav-dropdown__heading--alog a:before {
	border: solid 1px #0f6e5a;
	background-image: url(../../images/en/common/arw_small_alog.svg);
}

.nav-dropdown__heading--nac a {
	color: #4482ac;
}

.nav-dropdown__heading--nac a:before {
	border: solid 1px #4482ac;
	background-image: url(../../images/en/common/arw_small_nac.svg);
}

.nav-dropdown__heading--ubiquiti a {
	color: #224faa;
}

.nav-dropdown__heading--ubiquiti a:before {
	border: solid 1px #224faa;
	background-image: url(../../images/en/common/arw_small_ubiquiti.svg);
}

.nav-dropdown__body {
	margin-top: 2rem;
}

@media screen and (max-width:768px) {
	.nav-dropdown__body {
		margin-top: 3rem;
	}
}

.nav-global {
	width: calc(100% - 15rem);
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width:768px) {
	.nav-global {
		position: absolute;
		top: 10rem;
		left: 0;
		width: 100%;
		height: calc(100vh - 10rem);
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-ms-flex-pack: end;
		justify-content: flex-end;
		padding: 4rem 3rem 8rem;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
	}
}

.nav-global__primary {
	height: 100%;
	padding-left: 4rem;
}

@media screen and (max-width:768px) {
	.nav-global__primary {
		overflow: auto;
		-webkit-overflow-scrolling: touch;
		height: auto;
		padding-left: 0;
		margin-top: 3rem;
	}
}

.nav-global__secondary {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	padding-right: 1rem;
}

@media screen and (max-width:768px) {
	.nav-global__secondary {
		display: block;
		height: auto;
		padding-right: 0;
	}
}

@media screen and (max-width:768px) {
	.is-show-nav .nav-global {
		opacity: 1;
		pointer-events: auto;
	}
}

.select-lang {
	position: relative;
	display: block;
	padding-left: 1rem;
	letter-spacing: .2em;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.select-lang {
		width: 13rem;
		padding-left: 4rem;
		border-radius: 1rem;
		background: #f4f4f4;
	}
}

.select-lang:before {
	width: .5rem;
	height: .9rem;
	position: absolute;
	top: calc(50% - .5rem);
	left: 0;
	box-sizing: border-box;
	content: '';
	display: block;
	background: url(../../images/en/common/arw_small_black.svg) no-repeat center center;
	background-size: contain;
	transform: rotate(90deg);
}

@media screen and (max-width:768px) {
	.select-lang:before {
		width: 1rem;
		height: 1.8rem;
		top: calc(50% - .9rem);
		left: 3rem;
		background-image: url(../../images/en/common/arw_black.svg);
	}
}

.select-lang__list {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 1rem;
	border: none;
	outline: none;
	background: none;
	font: inherit;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.select-lang__list {
		padding: 2.4rem;
	}
}

#home .heading-section {
	position: relative;
	padding-bottom: 2.6rem;
	color: #1b3f5c;
	line-height: 1;
	text-align: center;
}

@media screen and (max-width:768px) {
	#home .heading-section {
		padding-bottom: 3rem;
	}
}

#home .heading-section:after {
	width: 6rem;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 3rem);
	content: '';
	display: block;
	background: #1b3f5c;
}

@media screen and (max-width:768px) {
	#home .heading-section:after {
		left: calc(50% - 4rem);
		width: 8rem;
		font-size: 2.4rem;
	}
}

#home .heading-section__ja {
	display: block;
}

@media screen and (max-width:768px) {
	#home .heading-section__ja {
		font-size: 2.4rem;
	}
}

#home .heading-section__en {
	display: block;
	margin-top: 2.5rem;
	font-family: Work Sans, sans-serif;
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: .1em;
}

@media screen and (max-width:768px) {
	#home .heading-section__en {
		font-size: 4.7rem;
	}
}

#home .heading-section--white {
	color: #fff;
}

#home .heading-section--white:after {
	background: #fff;
}

#home .lead-section {
	margin-top: 4.5rem;
	font-size: 1.8rem;
	letter-spacing: .01em;
	text-align: center;
}

@media screen and (max-width:768px) {
	#home .lead-section {
		font-size: 3rem;
		line-height: 1.875;
	}
}

#home .section-hero {
	overflow: hidden;
	position: relative;
	background: #000;
}

#home .player-hero {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#home .text-hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	background: rgba(0, 0, 0, .1);
	text-align: center;
}

#home .text-hero__en {
	font-family: Work Sans, sans-serif;
	font-size: 6rem;
	letter-spacing: .2em;
	line-height: 1;
}

@media screen and (max-width:768px) {
	#home .text-hero__en {
		font-size: 4.6rem;
	}
}

#home .text-hero__en span {
	display: inline-block;
	opacity: 0;
	transform: translateY(4rem);
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1), transform 2s cubic-bezier(.165, .84, .44, 1);
}

#home .text-hero__ja {
	margin-top: 23px;
	font-size: 1.8rem;
	letter-spacing: .2em;
	line-height: 2.3;
	opacity: 0;
	transform: translateY(4rem);
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1), transform 2s cubic-bezier(.165, .84, .44, 1);
	transition-delay: .4s;
}

@media screen and (max-width:768px) {
	#home .text-hero__ja {
		margin-top: 3rem;
		font-size: 3rem;
	}
}

#home .text-hero.is-started .text-hero__en span {
	opacity: 1;
	transform: translateY(0);
}

#home .text-hero.is-started .text-hero__en span:nth-of-type(2) {
	transition-delay: .1s;
}

#home .text-hero.is-started .text-hero__en span:nth-of-type(3) {
	transition-delay: .2s;
}

#home .text-hero.is-started .text-hero__ja {
	opacity: 1;
	transform: translateY(0);
}

#home .button-scrolldown {
	position: absolute;
	right: 3rem;
	bottom: 0;
	font-family: Work Sans, sans-serif;
	font-size: 1.3rem;
	letter-spacing: .3em;
	line-height: 1;
	text-align: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

@media screen and (max-width:768px) {
	#home .button-scrolldown {
		font-size: 2rem;
	}
}

#home .button-scrolldown a {
	position: relative;
	display: inline-block;
	padding-bottom: 13rem;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	#home .button-scrolldown a {
		padding-bottom: 15rem;
	}
}

#home .button-scrolldown a:after {
	position: absolute;
	top: 3rem;
	left: 50%;
	width: 1px;
	height: calc(100% - 3rem);
	content: '';
	display: block;
	background: #fff;
	animation: scrolldown 2s cubic-bezier(.77, 0, .175, 1) infinite;
}

@media screen and (max-width:768px) {
	#home .button-scrolldown a:after {
		top: 12rem;
		height: calc(100% - 12rem);
		animation: scrolldownSp 2s cubic-bezier(.77, 0, .175, 1) infinite;
	}
}

@keyframes scrolldown {
	0% {
		top: 8rem;
		bottom: auto;
		height: 0;
	}

	40% {
		top: 8rem;
		bottom: auto;
		height: calc(100% - 8rem);
	}

	60% {
		top: auto;
		bottom: 0;
		height: calc(100% - 8rem);
	}

	100% {
		top: auto;
		bottom: 0;
		height: 0;
	}
}

@keyframes scrolldownSp {
	0% {
		top: 12rem;
		bottom: auto;
		height: 0;
	}

	40% {
		top: 12rem;
		bottom: auto;
		height: calc(100% - 12rem);
	}

	60% {
		top: auto;
		bottom: 0;
		height: calc(100% - 12rem);
	}

	100% {
		top: auto;
		bottom: 0;
		height: 0;
	}
}

#home .section-statement {
	position: relative;
	padding: 5rem 0;
	color: #fff;
	background: #1b2024;
}

@media screen and (max-width:768px) {
	#home .section-statement {
		padding: 10rem 0;
	}
}

#home .section-statement__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	padding: 0 5rem;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .section-statement__inner {
		display: block;
		padding: 0 3rem 18rem;
	}
}

#home .section-statement__primary {
	width: 50%;
	padding-top: 3.5rem;
}

@media screen and (max-width:768px) {
	#home .section-statement__primary {
		width: 100%;
		padding-top: 0;
	}
}

#home .section-statement__secondary {
	width: 50%;
}

@media screen and (max-width:768px) {
	#home .section-statement__secondary {
		width: 100%;
		margin-top: 6rem;
	}
}

#home .heading-statement {
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 2.083;
}

@media screen and (max-width:768px) {
	#home .heading-statement {
		font-size: 4rem;
		letter-spacing: .15em;
		line-height: 1.875;
	}
}

#home .text-statement {
	text-align: justify;
	text-justify: inter-ideograph;
	word-break: break-all;
	margin-top: 0;
	line-height: 2.666;
}

@media screen and (max-width:768px) {
	#home .text-statement {
		line-height: 2.333;
	}
}

#home .text-statement:nth-of-type(n+2) {
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	#home .text-statement:nth-of-type(n+2) {
		margin-top: 6rem;
	}
}

#home .button-statement {
	margin-top: 2.5rem;
}

@media screen and (max-width:768px) {
	#home .button-statement {
		position: absolute;
		bottom: 0;
		left: 0;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		margin-top: 0;
	}
}

#home .section-product {
	position: relative;
	padding: 10rem 0 0;
}

#home .section-product__inner {
	position: relative;
	z-index: 9;
}

#home .list-product-menu {
	display: -ms-flexbox;
	display: flex;
	margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
	#home .list-product-menu {
		display: block;
		margin-top: 6rem;
	}
}

#home .list-product-menu__item {
	position: relative;
	width: 50%;
	color: #fff;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__item {
		width: 100%;
	}
}

#home .list-product-menu__item>a {
	width: 100%;
	height: 60rem;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 4rem;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	text-decoration: none;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__item>a {
		height: 86rem;
		padding: 3rem;
	}
}

#home .list-product-menu__item>a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: #000;
	opacity: 0;
	z-index: 1;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-product-menu__item>a.is-on:before {
	opacity: .6;
}

#home .list-product-menu__item--alog>a {
	background-image: url(../../images/en/home/img_product_cover01.jpg);
}

#home .list-product-menu__item--alog .list-product-menu__heading:before {
	background: #0f6e5a;
}

#home .list-product-menu__item--nac>a {
	background-image: url(../../images/en/home/img_product_cover02.jpg);
}

#home .list-product-menu__item--nac .list-product-menu__heading:before {
	background: #4482ac;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__item:nth-of-type(n+2) {
		margin-top: 4rem;
	}
}

#home .list-product-menu__slogan {
	position: absolute;
	top: 5rem;
	left: 4rem;
	font-size: 1.8rem;
	letter-spacing: .1em;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__slogan {
		top: 10rem;
		left: 3rem;
		font-size: 3rem;
	}
}

#home .list-product-menu__heading {
	position: relative;
	padding: .5rem 0 3rem 3.5rem;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__heading {
		padding: .5rem 0 4rem 5.6rem;
	}
}

#home .list-product-menu__heading:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.2rem;
	height: calc(100% - 3rem);
	content: '';
	display: block;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__heading:before {
		width: 1.8rem;
		height: calc(100% - 4rem);
	}
}

#home .list-product-menu__heading:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36rem;
	height: 1px;
	content: '';
	display: block;
	background: #fff;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__heading:after {
		width: 63rem;
	}
}

#home .list-product-menu__heading span {
	display: block;
	line-height: 1;
}

#home .list-product-menu__heading span:nth-of-type(1) {
	font-size: 2.4rem;
	font-weight: 700;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__heading span:nth-of-type(1) {
		font-size: 3.4rem;
	}
}

#home .list-product-menu__heading span:nth-of-type(2) {
	margin-top: 1rem;
	font-family: Work Sans, sans-serif;
	font-size: 3.4rem;
	letter-spacing: .1em;
}

@media screen and (max-width:768px) {
	#home .list-product-menu__heading span:nth-of-type(2) {
		margin-top: 2rem;
		font-size: 5.4rem;
	}
}

#home .list-product-menu__text {
	position: relative;
	margin-top: 2.5rem;
	z-index: 9;
}

#home .button-product-document {
	width: 100%;
	max-width: calc(100% - 12rem);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: -7.1rem;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .button-product-document {
		width: 100%;
		max-width: calc(100% - 6rem);
		margin-left: auto;
		margin-right: auto;
	}
}

#home .button-product-document--alog {
	background: #0f6e5a;
}

#home .button-product-document--nac {
	background: #4482ac;
}

#home .button-product-document a {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	height: 14.2rem;
	padding: 0 3rem;
	color: #fff;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .button-product-document a.is-on {
	opacity: .6;
}

#home .button-product-document__text {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	height: 5.9rem;
	margin-right: 4.5rem;
	padding-left: 7.2rem;
}

@media screen and (max-width:768px) {
	#home .button-product-document__text {
		padding-left: 7.6rem;
		font-size: 2.4rem;
		line-height: 1.6;
	}
}

#home .button-product-document__text:before {
	width: 5.9rem;
	height: 5.9rem;
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 2.9rem);
	left: 0;
	box-sizing: border-box;
	content: '';
	display: block;
	border: solid 1px #fff;
	background: url(../../images/en/common/arw_white.svg) no-repeat center center;
	background-size: .8rem auto;
}

@media screen and (max-width:768px) {
	#home .button-product-document__text:before {
		background-size: 1rem auto;
	}
}

#home .button-product-document__image {
	width: 19.2rem;
}

#home .section-case {
	position: relative;
	padding: 10rem 0;
}

#home .section-case__inner {
	position: relative;
	z-index: 9;
}

#home .carousel-case {
	margin-top: 6rem;
}

#home .section-seminar {
	position: relative;
	padding: 10rem 0;
	background: #f7f8f9;
}

#home .section-seminar__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .section-seminar__inner {
		padding: 0 6.5rem;
	}
}

#home .list-seminar {
	display: -ms-flexbox;
	display: block;
	margin-top: 6rem;
}

#home ul.list-seminar:after {
	content: "";
	clear: both;
	display: block;
}

@media screen and (max-width:768px) {
	#home .list-seminar {
		display: block;
	}
}

#home .list-seminar__item {
	width: 24rem;
	display: block;
	float: left;
	margin-right: 4.6rem;
	min-height: 32rem;
}

@media screen and (max-width:768px) {
	#home .list-seminar__item {
		width: 100%;
		margin-right: 0;
	}
}

#home .list-seminar__item:nth-of-type(4n) {
	margin-right: 0;
}

@media screen and (max-width:768px) {
	#home .list-seminar__item:nth-of-type(n+2) {
		margin-top: 7rem;
	}
}

#home .list-seminar__item a {
	position: relative;
	display: block;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-seminar__item a.is-on {
	opacity: .6;
}

#home .list-seminar__item.is-alog .list-seminar-product__item {
	background: #0f6e5a;
}

#home .list-seminar__item.is-alog .group-seminar-date {
	color: #0f6e5a;
}

#home .list-seminar__item.is-alog .group-seminar-date__heading {
	border-color: #0f6e5a;
}

#home .list-seminar__item.is-nac .list-seminar-product__item {
	background: #4482ac;
}

#home .list-seminar__item.is-nac .group-seminar-date {
	color: #4482ac;
}

#home .list-seminar__item.is-nac .group-seminar-date__heading {
	border-color: #4482ac;
}

#home .list-seminar__item.is-end a:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '\7D42\4E86\3057\307E\3057\305F';
	padding: .5rem;
	color: #fff;
	background: rgba(27, 63, 92, .8);
	font-size: 1rem;
	line-height: 1;
}

@media screen and (max-width:768px) {
	#home .list-seminar__item.is-end a:before {
		padding: 1rem;
		font-size: 2rem;
	}
}

#home .list-seminar__image img {
	width: 100%;
}

#home .list-seminar__category {
	position: relative;
	margin-top: 2rem;
	padding-left: 2.5rem;
	font-size: 1.3rem;
	line-height: 1;
}

#home .list-seminar__category:before {
	width: 2rem;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	left: 0;
	content: '';
	display: block;
}

#home .list-seminar__heading {
	margin-top: 1rem;
	line-height: 1.5;
}

@media screen and (max-width:768px) {
	#home .list-seminar__heading {
		margin-top: 1.6rem;
		line-height: 1.8;
	}
}

#home .list-seminar-product {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	color: #fff;
	font-size: 1rem;
	letter-spacing: .02em;
	line-height: 1;
	text-align: center;
}

@media screen and (max-width:768px) {
	#home .list-seminar-product {
		font-size: 2rem;
	}
}

#home .list-seminar-product__item {
	width: 50%;
	margin-top: 1px;
	padding: .5rem 0;
}

@media screen and (max-width:768px) {
	#home .list-seminar-product__item {
		padding: 1rem;
	}
}

#home .list-seminar-product__item:nth-of-type(2n) {
	width: calc(50% - 1px);
	margin-left: 1px;
}

#home .group-seminar-date {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 1.4rem;
}

@media screen and (max-width:768px) {
	#home .group-seminar-date {
		margin-top: 2.4rem;
	}
}

#home .group-seminar-date__heading {
	display: inline-block;
	margin-right: .6rem;
	padding: 1px 1rem;
	border: solid 1px #000;
	font-size: 1.1rem;
}

@media screen and (max-width:768px) {
	#home .group-seminar-date__heading {
		margin-right: 1.6rem;
		font-size: 2rem;
	}
}

#home .group-seminar-date__text {
	display: inline-block;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	#home .group-seminar-date__text {
		font-size: 2.4rem;
	}
}

#home .section-information {
	position: relative;
	padding: 10rem 0;
	color: #fff;
	background: #000 url(../../images/en/home/bg_information.jpg) no-repeat center center;
	background-size: cover;
}

#home .section-information__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .section-information__inner {
		padding: 0 3rem;
	}
}

#home .column-information {
	display: block;
	margin-top: 6rem;
}

@media screen and (max-width:768px) {
	#home .column-information {
		display: block;
		margin-top: 8rem;
	}
}

#home .column-information__item {
	position: relative;
	width: 50rem;
}

@media screen and (max-width:768px) {
	#home .column-information__item {
		width: 100%;
	}
}

#home .column-information__item:nth-of-type(n+2) {
	margin-left: 10rem;
}

@media screen and (max-width:768px) {
	#home .column-information__item:nth-of-type(n+2) {
		margin: 10rem 0 0;
	}
}

#home .heading-information {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	align-items: flex-end;
	line-height: 1;
}

#home .heading-information__en {
	display: inline-block;
	margin-right: 1.6rem;
	font-family: Work Sans, sans-serif;
	font-size: 2.8rem;
}

@media screen and (max-width:768px) {
	#home .heading-information__en {
		margin-right: 2rem;
		font-size: 4.4rem;
	}
}

#home .heading-information__ja {
	display: inline-block;
	padding-bottom: .2rem;
}

@media screen and (max-width:768px) {
	#home .heading-information__ja {
		font-size: 2.4rem;
		padding-bottom: .4rem;
	}
}

#home .button-more-information {
	position: absolute;
	top: .5rem;
	right: 0;
	font-size: 1.3rem;
}

@media screen and (max-width:768px) {
	#home .button-more-information {
		font-size: 2.6rem;
	}
}

#home .button-more-information a {
	position: relative;
	display: inline-block;
	padding-left: 4.5rem;
	color: #fff;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
	#home .button-more-information a {
		padding-left: 5.1rem;
	}
}

#home .button-more-information a.is-on {
	opacity: .6;
}

#home .button-more-information a:before {
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 100%;
	position: absolute;
	top: calc(50% - 1.5rem);
	left: 0;
	box-sizing: border-box;
	content: '';
	display: block;
	border: solid 1px #fff;
	background: url(../../images/en/common/arw_small_white.svg) no-repeat center center;
	background-size: .5rem auto;
}

@media screen and (max-width:768px) {
	#home .button-more-information a:before {
		width: 3.5rem;
		height: 3.5rem;
		border-radius: 100%;
		top: calc(50% - 1.7rem);
		background-size: .7rem auto;
	}
}

#home .list-information {
	margin-top: 5rem;
	line-height: 2;
}

@media screen and (max-width:768px) {
	#home .list-information {
		line-height: 1.8;
	}
}

#home .list-information__item {
	display: -ms-flexbox;
	display: flex;
	margin-top: 1.2rem;
	padding-bottom: 1.2rem;
	border-bottom: 1px solid #585858;
}

@media screen and (max-width:768px) {
	#home .list-information__item {
		margin-top: 2rem;
		padding-bottom: 2rem;
	}
}

#home .list-information__date {
	width: 11rem;
}

@media screen and (max-width:768px) {
	#home .list-information__date {
		width: 18rem;
		letter-spacing: 0;
	}
}

#home .list-information__text {
	width: calc(100% - 11rem);
}

@media screen and (max-width:768px) {
	#home .list-information__text {
		width: calc(100% - 18rem);
	}
}

#home .list-information__text a {
	color: #fff;
	text-decoration: none;
}

#home .list-information__text a.is-on {
	text-decoration: underline;
}

#home .section-company {
	position: relative;
	padding: 10rem 0;
}

#home .section-company__inner {
	width: 100%;
	max-width: 110rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 9;
}

@media screen and (max-width:768px) {
	#home .section-company__inner {
		padding: 0 3rem;
	}
}

#home .list-company-menu {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 4rem;
}

@media screen and (max-width:768px) {
	#home .list-company-menu {
		display: block;
		margin-top: 6rem;
	}
}

#home .list-company-menu__item {
	width: 52rem;
	margin-top: 2rem;
	margin-right: 6rem;
}

@media screen and (max-width:768px) {
	#home .list-company-menu__item {
		width: 100%;
		margin-right: 0;
	}
}

#home .list-company-menu__item:nth-of-type(2n) {
	margin-right: 0;
}

#home .list-company-menu__item a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	background: #f4f4f4;
	text-align: center;
	text-decoration: none;
	transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-company-menu__item a.is-on {
	opacity: .6;
}

#home .list-company-menu__image {
	width: 50%;
}

#home .list-company-menu__heading {
	width: 50%;
}

#home .list-company-menu__heading span {
	display: block;
	line-height: 1;
}

#home .list-company-menu__heading span:nth-of-type(1) {
	font-size: 2rem;
}

@media screen and (max-width:768px) {
	#home .list-company-menu__heading span:nth-of-type(1) {
		font-size: 3.4rem;
	}
}

#home .list-company-menu__heading span:nth-of-type(2) {
	margin-top: 1rem;
	color: #1b3f5c;
	font-family: Work Sans, sans-serif;
	font-size: 1rem;
	letter-spacing: .1em;
}

@media screen and (max-width:768px) {
	#home .list-company-menu__heading span:nth-of-type(2) {
		margin-top: 2rem;
		font-size: 2rem;
	}
}

#solutions .layout-container {
	padding-top: 11.2rem;
}

@media screen and (max-width:768px) {
	#solutions .layout-container {
		padding-top: 10rem;
	}
}

#solutions.is-scrolled-down .layout-container {
	padding-top: 4.4rem;
}

@media screen and (max-width:768px) {
	#solutions.is-scrolled-down .layout-container {
		padding-top: 10rem;
	}
}

.freeprogramBanner {
	margin: 30px auto 10px;
	text-align: center;
}

.group-rs_point08 {
	width: 100%;
	display: flex;
}

.group-rs_point08 li {
	width: 50%;
}

.group-rs_point08_box {
	width: 100%;
	background: #eef4f6;
	padding: 15px;
}

.group-rs_point08_box .fontbold {
	font-weight: bold;
}

@media screen and (max-width:768px) {
	.group-rs_point08 {
		flex-direction: column;
	}

	.group-rs_point08 li {
		width: 100%;
	}
}

.innovation_member {
	width: 100%;
	text-align: left;
}

.innovation_member li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.innovation_member img {
	width: 250px;
	height: 250px;
	object-fit: contain;
}

.innovation_member p {
	width: 70%;
}

.innovation_member .fontbold {
	font-weight: bold;
}

.innovation_member .fontlarge {
	font-size: 120%;
}

@media screen and (max-width:768px) {
	.innovation_member li {
		width: 95%;
		align-items: center;
		margin: 0 auto 60px;
		flex-direction: column;
	}

	.innovation_member img {
		max-width: 250px;
		height: auto;
		width: 50%;
		margin-bottom: 20px;
	}

	.innovation_member p {
		width: 100%;
	}
}


.bn_recruit_pc {
	display: block;
	margin: 10px auto;
	width: 100%;
}

.bn_recruit_sp {
	display: none;
	margin: 10px auto;
	width: 100%;
}

@media screen and (max-width:600px) {

	.bn_recruit_pc {
		display: none;
		margin: 10px auto;
		width: 100%;
	}

	.bn_recruit_sp {
		display: block;
		margin: 10px auto;
		width: 100%;
	}
}

.section-content.alog-news {
	padding: 8rem 0 0;
}

.list-information {
	display: block;
	width: 1000px;
	margin: 10px auto 20px;
}

.list-information__date {
	width: 15%;
}

.list-information__text {
	width: 85%;
}

.alog-news div {
	width: 1100px;
	background: #f7f8f9;
	padding: 20px;
	margin: 0 auto;
}

.message-alignRight {
	text-align: right;
	margin-top: 4rem;
}