[data-target] {
	cursor: pointer;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #1A1A1A;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	outline: none;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

video {
	height: auto;
	max-width: 100%;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid #eee;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

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

address {
	font-style: normal;
}

form {
	margin: 0;
	padding: 0;
}

form button {
	-webkit-appearance: none;
	background-color: #125B8F;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

form button:hover {
	opacity: 0.6;
}

input,
textarea {
	-webkit-appearance: none;
	background-image: none;
	border: 1px solid #707070;
	border-radius: 0;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 8px;
	width: 100%;
}

[type="submit"],
[type="button"] {
	-webkit-appearance: none;
	background-color: #125B8F;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

[type="submit"]:hover,
[type="button"]:hover {
	opacity: 0.6;
}

[type="radio"] {
	display: none;
}

[type="radio"] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 16px 0 0;
	padding: 0 0 0 30px;
	position: relative;
}

[type="radio"] + span::before {
	background: #fff;
	border: 1px solid #CDD6DD;
	border-radius: 50%;
	content: "";
	display: block;
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
}

[type="radio"] + span::after {
	opacity: 0;
	transition: opacity 0.3s ease 0s;
}

[type="radio"]:checked + span::after {
	background: #3B4043;
	border-radius: 50%;
	content: "";
	display: block;
	height: 10px;
	left: 8px;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

[type="checkbox"] {
	display: none;
}

[type="checkbox"] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 16px 0 0;
	padding: 0 0 0 40px;
	position: relative;
	transition: all 1s ease 0s;
}

[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #CDD6DD;
	border-radius: 0;
	content: "";
	display: block;
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
}

[type="checkbox"] + span::after {
	opacity: 0;
	transition: opacity 0.3s ease 0s;
}

[type="checkbox"]:checked + span::after {
	background: transparent url(../img/common/check-icon.png) no-repeat top center/contain;
	content: "";
	height: 16px;
	left: 6px;
	margin-top: 0.2em;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url(../img/common/select-arrow.png);
	background-position: right 6px center;
	background-repeat: no-repeat;
	background-size: 24px;
	border: 1px solid #707070;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 0.4em 2.4em 0.4em 0.8em;
}

.inner {
	height: inherit;
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
	width: 1000px;
}

.access-info {
	border-bottom: 1px solid #125B8F;
	border-top: 1px solid #125B8F;
	padding: 32px 24px 24px;
	text-align: center;
}

.access-info__lead {
	color: #125B8F;
	font-weight: 700;
}

.access-info__body {
	color: #1a1a1a;
	font-size: 14px;
	margin: 8px auto 0;
	max-width: 100%;
	width: 682px;
}

.air-card {
	display: flex;
	flex-wrap: wrap;
}

.air-card__body {
	display: flex;
	flex-direction: column;
	width: 60%;
}

.air-card__labels {
	display: flex;
	flex-wrap: wrap;
}

.air-card__label {
	margin-bottom: 8px;
	margin-right: 42px;
}

.air-card__lead {
	font-size: 14px;
	margin-top: 4px;
}

.air-card__company {
	margin-top: auto;
}

.air-card__img {
	display: flex;
	width: 40%;
}

.air-card__img01 {
	width: 50%;
}

.air-card__img02 {
	margin-left: auto;
	width: 50%;
}

.btn-product {
	align-items: center;
	background: #125B8F;
	border: 1px solid #125B8F;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: flex;
	font-size: 17px;
	font-weight: 700;
	height: 73px;
	justify-content: center;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: 230px;
}

.btn-product:hover {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--vcsel .btn-product.btn-product--vcsel {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--channel .btn-product.btn-product--channel {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--active .btn-product.btn-product--active {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--edfa .btn-product.btn-product--edfa {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--portable .btn-product.btn-product--portable {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--rotaryjoint .btn-product.btn-product--rotaryjoint {
	background: #fff;
	color: #125B8F;
}

.vcsel-products--switch .btn-product.btn-product--switch {
	background: #fff;
	color: #125B8F;
}

.btn {
	-webkit-appearance: none;
	background-color: #125B8F;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

.btn:hover {
	opacity: 0.6;
}

.contact-btn {
	-webkit-appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #CCD1D5;
	border-radius: 0;
	box-shadow: none;
	color: #1A1A1A;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	margin: 0;
	padding: 6px 16px 6px 42px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.contact-btn svg {
	left: 20px;
	margin-top: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 15.34px;
}

.contact-btn svg path {
	fill: #1a1a1a;
	border-color: #125B8F;
	transition: all 0.3s ease 0s;
}

.contact-btn:hover {
	background: #125B8F;
	color: #fff;
}

.contact-btn:hover svg path {
	fill: #fff;
}

.btn-arrow {
	-webkit-appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid #fff;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 16px 62px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.btn-arrow svg {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.btn-arrow svg path {
	fill: #fff;
}

.btn-arrow:hover {
	background: #fff;
	color: #080C24;
}

.btn-arrow:hover svg path {
	fill: #080C24;
}

.btn-arrow-blue {
	-webkit-appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #125B8F;
	border-radius: 0;
	box-shadow: none;
	color: #125B8F;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 16px 32px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.btn-arrow-blue svg {
	margin-bottom: -2px;
	margin-left: 8px;
	transition: all 0.3s ease 0s;
	width: 21.6px;
}

.btn-arrow-blue svg path {
	fill: #125B8F;
	transition: all 0.3s ease 0s;
}

.btn-arrow-blue:hover {
	background-color: #125B8F;
	color: #fff;
}

.btn-arrow-blue:hover svg path {
	fill: #fff;
}

.btn-arrow-blue.btn-arrow-blue--about {
	padding: 16px 28px 16px 28px;
}

.btn-arrow-back {
	-webkit-appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #125B8F;
	border-radius: 0;
	box-shadow: none;
	color: #125B8F;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	padding: 16px 66px 16px 90px;
	position: relative;
	text-align: left;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.btn-arrow-back svg {
	left: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 21.6px;
}

.btn-arrow-back svg path {
	fill: #125B8F;
	transition: all 0.3s ease 0s;
}

.btn-arrow-back:hover {
	background-color: #125B8F;
	color: #fff;
}

.btn-arrow-back:hover svg path {
	fill: #fff;
}

.btn-submit {
	-webkit-appearance: none;
	background: #125B8F url(../img/common/arrow-submit.png) no-repeat center right 26px/18.19px 14.14px;
	border: 1px solid #125B8F;
	border-radius: 0;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	font-weight: 700;
	margin: 0;
	padding: 22px 50px;
	position: relative;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: 236px;
}

.btn-gray {
	background: #aaa;
}

.checkbox + span {
	color: #125B8F;
	font-size: 12px;
}

.checkbox + span a {
	transition: all 0.3s ease 0s;
}

.checkbox + span a:hover {
	opacity: 0.6;
}

.company-box {
	padding: 0 0 0 38px;
	position: relative;
}

.company-box__head {
	background: #fff;
	border: 1px solid #125B8F;
	height: 117px;
	left: 0;
	padding-top: 20px;
	position: absolute;
	text-align: center;
	top: -40px;
	width: 49px;
}

.company-box__body {
	background: #eceff2;
	display: inline-block;
	max-width: 100%;
	padding: 24px 74px 32px;
	width: 665px;
}

.company-box--small .company-box__body {
	width: 665px;
}

.company-box--middle .company-box__body {
	width: 763px;
}

.company-box--large .company-box__body {
	width: 808px;
}

.company-card {
	background: #eceff2;
	font-family: "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	padding: 32px 24px 16px;
	position: relative;
}

.company-card__title {
	background: #fff;
	border: 1px solid #125B8F;
	font-size: 18px;
	left: 12px;
	letter-spacing: 0.1em;
	padding: 3px 16px;
	position: absolute;
	top: -15px;
}

.company-card__content {
	font-size: 16px;
	letter-spacing: 0.02em;
}

.company-label-card {
	background: transparent url(../img/vcsel/head-bg.jpg) no-repeat top center/cover;
	display: inline-block;
	padding: 16px 32px;
}

.company-label-logo-card {
	align-items: center;
	background: transparent url(../img/vcsel/head-bg.jpg) no-repeat top center/cover;
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	min-width: 580px;
	padding: 16px 26px;
}

.company-label-logo-card__left {
	width: 263px;
}

.company-label-logo-card__right {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding-left: 26px;
}

.company-label-logo {
	align-items: center;
	background: #fff;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	min-height: 54px;
	min-width: 263px;
	padding: 12px 16px;
	text-align: center;
}

.company-label-logo__text {
	font-size: 12px;
	font-weight: 700;
	margin-right: 20px;
	vertical-align: middle;
}

.company-label-logo__img img {
	vertical-align: bottom;
}

.company-label {
	background: #fff;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	padding: 2px 8px;
}

.company-link {
	background: #fff;
	background: #125B8F;
	border: 1px solid #125B8F;
	color: #fff;
	display: inline-block;
	height: 119px;
	min-width: 236px;
	padding: 22px 16px 16px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.company-link span {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 6px;
}

.company-link svg path {
	fill: #fff;
	transition: all 0.3s ease 0s;
}

.company-link:hover,
.company-link.company-link--active {
	background: #fff;
	color: #125B8F;
}

.company-link:hover svg path,
.company-link.company-link--active svg path {
	fill: #125B8F;
}

.company-links--about .company-link.company-link--about {
	background: #fff;
	color: #125B8F;
}

.company-links--about .company-link.company-link--about svg path {
	fill: #125B8F;
}

.company-links--message .company-link.company-link--message {
	background: #fff;
	color: #125B8F;
}

.company-links--message .company-link.company-link--message svg path {
	fill: #125B8F;
}

.company-links--history .company-link.company-link--history {
	background: #fff;
	color: #125B8F;
}

.company-links--history .company-link.company-link--history svg path {
	fill: #125B8F;
}

.company-links--access .company-link.company-link--access {
	background: #fff;
	color: #125B8F;
}

.company-links--access .company-link.company-link--access svg path {
	fill: #125B8F;
}

.company-link__right {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.company-link__right svg path {
	color: #fff;
}

.company-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.company-links__link {
	margin-bottom: 18px;
	margin-right: 18px;
	width: calc(25% - 18px * 3 / 4);
}

.company-links__link:last-child {
	margin-right: 0;
}

.company-list {
	font-size: 14px;
}

.company-list__row {
	border-bottom: 1px solid #CCD1D5;
	color: #6F7579;
	display: flex;
	line-height: 1.375;
	padding: 8px 0;
}

.company-list__row dt {
	color: #125B8F;
	font-weight: 700;
	width: 100px;
}

.company-list__row dd {
	color: #1A1A1A;
	width: calc(100% - 100px);
}

.company-list--english .company-list__row dt {
	width: 126px;
}

.company-list--english .company-list__row dd {
	width: calc(100% - 126px);
}

.company-title {
	color: #125B8F;
	font-size: 24px;
	font-weight: 700;
}

.dl-list__row {
	border-bottom: 1px dashed #CCD1D5;
	color: #6F7579;
	display: flex;
	line-height: 1.375;
	padding: 8px 0;
}

.dl-list__row dt {
	font-weight: 700;
	width: 100px;
}

.dl-list__row dd {
	width: calc(100% - 100px);
}

.drawer {
	z-index: 40;
}

.drawer-icon {
	cursor: pointer;
	display: inline-block;
	position: relative;
	text-align: center;
	z-index: 41;
}

.drawer-icon::after {
	color: #424242;
	content: "MENU";
	display: none;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 4px;
	text-align: center;
}

.drawer-bars {
	display: inline-block;
	height: 19px;
	position: relative;
	vertical-align: bottom;
	width: 25px;
}

.drawer-bar {
	background: #424242;
	border-radius: 3px;
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.3s linear 0s;
	width: 100%;
}

.drawer-bar:nth-of-type(1) {
	top: 0;
}

.drawer-bar:nth-of-type(2) {
	top: 8px;
}

.drawer-bar:nth-of-type(3) {
	top: 16px;
}

.m-close .drawer-bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(-45deg);
}

.m-close .drawer-bar:nth-of-type(2) {
	background: transparent;
}

.m-close .drawer-bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(45deg);
}

.drawer-content {
	background: #fff;
	bottom: auto;
	color: #424242;
	height: 100%;
	left: auto;
	max-width: 90%;
	overflow: auto;
	position: fixed;
	right: 0;
	text-align: left;
	top: 0;
	transform: translateX(105%);
	transition: all 0.5s ease 0s;
	width: 200px;
	z-index: 50;
}

.drawer-content.is-checked {
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	transform: translateX(0);
}

.drawer-content--left {
	left: 0;
	right: auto;
	transform: translateX(-105%);
}

.drawer-content--top {
	bottom: auto;
	height: 100%;
	max-width: 100%;
	padding-bottom: 32px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 16px;
	top: 0;
	transform: translateY(-105%);
	width: 100%;
}

.drawer-content__icon {
	position: absolute;
	right: 10px;
	top: 10px;
}

.english-contact {
	padding-bottom: 66px;
	padding-top: 44px;
	text-align: center;
}

.english-contact__title {
	font-size: 20px;
	font-weight: 700;
}

.english-contact__address {
	line-height: 1.875;
	margin-top: 10px;
}

.english-contact__tel {
	margin-top: 8px;
}

.english-contact__fax {
	margin-top: 8px;
}

.english-contact_logo {
	margin-top: 28px;
}

.flag-title {
	border-bottom: 1px solid #125B8F;
	padding: 0 0 16px;
}

.flag-title img {
	vertical-align: bottom;
}

.flag-title.flag-title--no-border {
	border-bottom: none;
}

.history-list__row {
	align-items: center;
	border-bottom: 1px solid #CCD1D5;
	display: flex;
	padding: 6px 0;
}

.history-list__row dt {
	color: #125B8F;
	font-size: 13px;
	width: 124px;
}

.history-list__row dd {
	font-size: 16px;
	width: calc(100% - 124px);
}

.input {
	border: 1px solid #CDD6DD;
	font-size: 12px;
	padding: 14px;
}

.input:-moz-placeholder-shown {
	color: #CDD6DD;
}

.input:-ms-input-placeholder {
	color: #CDD6DD;
}

.input:placeholder-shown {
	color: #CDD6DD;
}

.input::-webkit-input-placeholder {
	color: #CDD6DD;
}

.input:-ms-input-placeholder {
	color: #CDD6DD;
}

.label-heading {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.16667;
	padding-left: 44px;
	position: relative;
}

.label-heading::before {
	background: transparent url(../img/common/label-icon.png) no-repeat top center/contain;
	content: "";
	height: 16.68px;
	left: 0;
	margin-top: 2px;
	position: absolute;
	top: 5px;
	width: 27.91px;
}

.label-heading.label-heading--small {
	font-size: 20px;
}

.lineup-images__caption {
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 10px;
	text-align: center;
}

.lineup-images__items {
	display: flex;
}

.lineup-images__item {
	width: 33.3%;
}

.lineup-images__item.lineup-images__item--one {
	width: 100%;
}

.lineup-images__item img {
	vertical-align: bottom;
}

.lineup-item-image {
	display: inline-block;
	text-align: center;
}

.lineup-item-image img {
	vertical-align: bottom;
}

.lineup-item-image__caption {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.42857;
	margin-bottom: 12px;
}

.lineup-item {
	display: flex;
	flex-wrap: wrap;
}

.lineup-item__body {
	display: flex;
	flex-direction: column;
	padding: 0 60px 0 0;
	width: calc(100% - 200px);
}

.lineup-item--column-one .lineup-item__body {
	width: 100%;
}

.lineup-item--tow-image .lineup-item__body {
	width: 56.4%;
}

.lineup-item__title + .lineup-item__title {
	margin-top: 10px;
}

.lineup-item__title.lineup-item__title--last {
	margin-top: 0.6em;
}

.lineup-item__lead {
	font-size: 14px;
	margin-top: 16px;
}

.lineup-item__table {
	margin-top: 16px;
	width: 154px;
}

.lineup-item__table table {
	table-layout: fixed;
}

.lineup-item__table table td {
	text-align: center;
}

.lineup-item__table.lineup-item__table--tow-column {
	width: 284px;
}

.lineup-item__img {
	margin-left: auto;
	text-align: center;
	width: 200px;
}

.lineup-item--column-one .lineup-item__img {
	width: 100%;
}

.lineup-item--tow-image .lineup-item__img {
	width: 43.6%;
}

.lineup-item__row {
	display: flex;
	flex-wrap: wrap;
}

.lineup-item__column {
	margin-bottom: 48px;
	margin-right: 24px;
	width: calc(50% - 24px / 2);
}

.lineup-item__column:nth-child(2n) {
	margin-right: 0;
}

.opt-head {
	background: transparent url(../img/opt/head-bg@2x.jpg) no-repeat bottom right/cover;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	padding: 96px 60px 80px;
}

.opt-head.opt-head--semi {
	background-image: url(../img/semi/head-bg.jpg);
}

.opt-head.opt-head--powder {
	background-image: url(../img/powder/head-bg.jpg);
}

.opt-head.opt-head--air {
	background-image: url(../img/air/head-bg.jpg);
}

.opt-head__title {
	font-size: 28px;
	font-weight: 500;
	width: 38%;
}

.opt-head__text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.85714;
	padding-left: 60px;
	width: 62%;
}

.opt-item {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.opt-item:hover {
	opacity: 0.6;
}

.opt-item__img {
	text-align: center;
}

.opt-item__body {
	background: #125B8F;
	padding: 22px 16px 16px;
	text-align: center;
}

.opt-item__title {
	align-items: center;
	color: #fff;
	display: flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1.29412;
	min-height: 50px;
	text-align: center;
	width: 100%;
}

.opt-item__company {
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 24px;
	width: 124px;
}

.opt-part-info {
	color: #fff;
}

.opt-part-info__lead {
	font-size: 12px;
	font-weight: 500;
}

.opt-part-info__title {
	font-size: 28px;
	font-weight: 400;
	line-height: 1.07143;
	margin-top: 0;
}

.opt-part-info__content {
	font-size: 14px;
	line-height: 1.42857;
	margin-top: 18px;
}

.opt-part-info__sub-head {
	font-size: 14px;
	font-weight: 700;
	margin-top: 1em;
}

.opt-part-info__list {
	font-size: 14px;
	margin-top: 0;
	overflow: hidden;
}

.opt-part-info__list li {
	float: left;
	margin-right: 1em;
}

.page-heading {
	border-bottom: 1px solid #125B8F;
	color: #125B8F;
	font-size: 24px;
	line-height: 1.25;
	padding: 0 0 6px;
}

.page-sub-title {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 8px;
	position: relative;
	text-align: center;
}

.page-sub-title::after {
	background: #707070;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 30px;
}

.phone {
	display: inline-block;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	padding-left: 26px;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.phone span {
	font-size: 16px;
	margin-right: 0.5em;
}

.phone::before {
	background: transparent url(../img/common/phone-icon.png) no-repeat top center/contain;
	content: "";
	height: 27px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.product-card {
	background: transparent url(../img/vcsel/head-bg.jpg) no-repeat top center/cover;
	padding: 46px 106px;
}

.product-item {
	display: flex;
	flex-direction: column;
}

.product-item__img {
	text-align: center;
}

.product-item__body {
	font-size: 12px;
	line-height: 2;
	margin-bottom: 8px;
	margin-top: 24px;
}

.product-item__title {
	border-bottom: 1px solid #125B8F;
	border-top: 1px solid #125B8F;
	color: #125B8F;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-top: auto;
	padding: 12px 38px 12px 12px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.product-item__title svg {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 21.6px;
}

.product-item__title svg path {
	fill: #125B8F;
}

.product-item__title:hover {
	opacity: 0.6;
}

.radio + span {
	font-size: 14px;
	font-weight: 400;
}

.responsive-table {
	overflow: auto;
}

.responsive-table th,
.responsive-table td {
	white-space: nowrap;
}

.select {
	background: transparent url(../img/common/select-arrow.png) no-repeat center right 18px/8.62px 6.1px;
	border: 1px solid #CDD6DD;
	font-size: 12px;
	padding: 14px 40px 14px 14px;
	width: 100%;
}

.select::-ms-expand {
	display: none;
}

.select option:first-child {
	color: #CDD6DD;
}

.semi-card {
	border-top: 1px solid #125B8F;
	display: flex;
	flex-wrap: wrap;
	padding: 58px 0;
}

.semi-card__body {
	display: flex;
	flex-direction: column;
	padding-right: 32px;
	width: calc(100% - 200px);
}

.semi-card--tow-image .semi-card__body {
	width: 56.4%;
}

.semi-card__title {
	font-size: 30px;
	font-weight: 200;
	line-height: 1.6;
}

.semi-card__labels {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 24px;
	margin-top: 24px;
}

.semi-card__label {
	margin-bottom: 8px;
	margin-right: 32px;
}

.semi-card__label:last-child {
	margin-right: 0;
}

.semi-card__img {
	width: 200px;
}

.semi-card--tow-image .semi-card__img {
	width: 43.6%;
}

.semi-card__company {
	margin-top: auto;
	text-align: right;
}

.semi-item {
	border-top: 1px dashed #CCD1D5;
	display: flex;
	flex-wrap: wrap;
	margin-top: 48px;
	padding-top: 28px;
}

.semi-item__left {
	padding-right: 42px;
	width: 56.1%;
}

.semi-item__right {
	width: 43.9%;
}

.semi-item__lead {
	font-size: 30px;
	font-weight: 200;
	line-height: 1.26667;
}

.semi-item__image {
	margin-top: 12px;
}

.semi-item__more {
	margin-top: 46px;
	width: 100%;
}

.semi-item__btn-title {
	font-size: 14px;
	text-align: center;
}

.semi-item__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 18px;
}

.semi-item__button {
	margin-bottom: 18px;
	margin-right: 18px;
}

.semi-item__button .btn-arrow-blue {
	padding-left: 25px;
	padding-right: 24px;
}

.table {
	border: 1px solid #000;
	table-layout: auto;
}

.table th,
.table td {
	border: 1px solid #000;
	font-size: 14px;
	padding: 3px 10px;
}

.table th {
	background: #e7e6e6;
	font-weight: 700;
	text-align: center;
}

.table td.is-new::after {
	background: #125B8F;
	border-radius: 2px;
	color: #fff;
	content: "NEW!";
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	margin-left: 12px;
	padding: 2px 4px 3px;
}

.table a {
	color: #125B8F;
	transition: all 0.3s ease 0s;
}

.table a:hover {
	opacity: 0.6;
}

.textarea {
	border: 1px solid #CDD6DD;
	font-size: 12px;
	height: 140px;
	padding: 14px;
	width: 100%;
}

.totop {
	height: 48px;
	transition: all 0.3s ease 0s;
	width: 48px;
}

.totop img {
	vertical-align: bottom;
}

.totop:hover {
	opacity: 0.6;
}

.vcsel-coming-items {
	display: flex;
	justify-content: center;
}

.vcsel-head {
	background: transparent url(../img/vcsel/head-bg.jpg) no-repeat top center/cover;
	display: flex;
}

.vcsel-head__left {
	padding: 56px 36px;
	width: 48.8%;
}

.vcsel-head__right {
	margin-left: auto;
	padding: 36px 28px;
	width: 48.4%;
}

.vcsel-item {
	padding: 24px 32px;
	text-align: center;
}

.vcsel-item__title {
	font-size: 14px;
	font-weight: 700;
}

.vcsel-item__img {
	margin-top: 18px;
}

.vcsel-lineup-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.vcsel-lineup-items__item {
	width: 16.6%;
}

.vcsel-lineup__lead {
	font-size: 14px;
	margin-top: 16px;
}

.vcsel-lineup__table {
	margin-top: 26px;
}

.vcsel-lineup__items {
	margin-top: 34px;
	margin-bottom: 34px;
}

.vcsel-lineup__type {
	font-size: 30px;
	font-weight: 300;
	margin: 22px 0 32px;
}

.vcsel-news-card {
	background: #fff;
	border: 1px solid #125B8F;
	padding: 16px 16px 10px;
}

.vcsel-news-card__img {
	text-align: center;
}

.vcsel-news-card__title {
	font-size: 12px;
	font-weight: 70;
	font-weight: 700;
	line-height: 1.66667;
	margin-top: 10px;
	text-align: center;
}

.vcsel-news {
	background: #eceff2;
	border: 1px solid #125B8F;
	border-radius: 8px;
	display: flex;
	padding: 16px 30px 20px;
}

.vcsel-news__lead {
	font-size: 14px;
	margin-top: 4px;
}

.vcsel-news__table {
	margin-top: 18px;
}

.vcsel-news__left {
	margin-right: 30px;
	width: calc(58% - 30px);
}

.vcsel-news__right {
	width: 42%;
}

.vcsel-news__cards {
	display: flex;
}

.vcsel-news__card {
	margin-right: 24px;
	width: calc(50% - 24px * 1 / 2);
}

.vcsel-news__card:last-child {
	margin-right: 0;
}

.vcsel-products__title {
	line-height: 1;
	text-align: center;
}

.vcsel-products__title img {
	vertical-align: bottom;
}

.vcsel-products__lead {
	font-size: 14px;
	font-weight: 700;
	margin-top: 0;
	text-align: center;
}

.vcsel-products__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 28px;
}

.vcsel-products__item {
	margin-bottom: 28px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
}

.vixar-card__label {
	align-items: center;
	display: flex;
	position: relative;
	text-align: center;
}

.vixar-card__label span {
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	min-width: 124px;
	text-align: center;
	z-index: 2;
}

.vixar-card__label span.is-large {
	min-width: 224px;
}

.vixar-card__label::before,
.vixar-card__label::after {
	background: #fff;
	content: "";
	flex-grow: 1;
	height: 1px;
	width: 100%;
}

.vixar-card__label::before {
	margin-right: 18px;
}

.vixar-card__label::after {
	margin-left: 18px;
}

.vixar-card__content {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	margin-top: 12px;
}

.vixar-card__body {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.42857;
	padding-right: 24px;
	width: calc(100% - 140px);
	letter-spacing: -0.6px;
}

.vixar-card--tow-image .vixar-card__body {
	width: 54.84694%;
}

.vixar-card__img {
	margin-left: auto;
	width: 140px;
}

.vixar-card--tow-image .vixar-card__img {
	display: flex;
	margin-left: auto;
	width: 38.64796%;
}

.vixar-card--tow-image .vixar-card__img img {
	margin-right: 22px;
}

.vixar-card--tow-image .vixar-card__img img:last-child {
	margin-right: 0;
}

.about__inner {
	padding-bottom: 130px;
	padding-top: 72px;
}

.about__content {
	display: flex;
	flex-direction: row-reverse;
}

.about__text {
	display: flex;
	flex-direction: column;
	padding-right: 86px;
	width: 60%;
}

.about__text p {
	font-size: 18px;
	line-height: 1.66667;
	margin-bottom: 1em;
}

.about__buttons {
	display: flex;
	flex-wrap: wrap;
	margin-top: auto;
}

.about__button {
	margin-right: 42px;
	margin-top: 16px;
	width: calc(50% - 42px / 2);
}

.about__button:last-child {
	margin-right: 0;
}

.about__image {
	text-align: center;
	width: 40%;
}

.access__inner {
	padding-bottom: 106px;
	padding-top: 64px;
}

.access__content {
	display: flex;
	flex-wrap: wrap;
	margin-top: 42px;
}

.access__map {
	width: 57.2%;
}

.access__iframe {
	padding-top: 93.53147%;
	position: relative;
	width: 100%;
}

.access__iframe iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.access__btn {
	margin-top: 32px;
	text-align: center;
}

.access__img {
	margin-left: auto;
	text-align: center;
	width: 38.1%;
}

.access__info {
	margin-bottom: 84px;
	margin-top: 46px;
}

.air__card {
	border-bottom: 1px solid #125B8F;
	padding-bottom: 66px;
	padding-top: 56px;
}

.air__card:last-child {
	border-bottom: none;
}

.air__company {
	margin-top: auto;
}

.air__labels {
	display: flex;
	flex-wrap: wrap;
}

.air__label {
	margin-bottom: 8px;
	margin-right: 16px;
}

.common-contact {
	border-top: 1px solid #CCD1D5;
	text-align: center;
}

.common-contact__inner {
	max-width: 100%;
	padding-bottom: 50px;
	padding-top: 46px;
	width: 600px;
}

.common-contact__title {
	font-size: 20px;
	font-weight: 700;
}

.common-contact__lead {
	margin-top: 6px;
}

.common-contact__links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 22px;
}

.common-contact__link {
	margin-right: 16px;
	width: calc(50% - 16px / 2);
}

.common-contact__link:last-child {
	margin-right: 0;
}

.common-contact__logo {
	margin-top: 52px;
	text-align: center;
}

.common-contact__logo img {
	width: 62px;
}

.common-contact__address {
	color: #125B8F;
	line-height: 1.42857;
	margin-top: 22px;
}

.common-partner {
	background: transparent url(../img/common/partner-bg.jpg) no-repeat top center/cover;
	margin: 0 calc(50% - 50vw);
	padding: 46px calc(50vw - 50%) 104px;
	width: 100vw;
}

.common-partner__items {
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	padding: 14px 42px 48px;
}

.common-partner__item {
	margin-right: 54px;
	width: calc(25% -  54px * 3 / 4);
}

.common-partner__item:last-child {
	margin-right: 0;
}

.common-partner__image {
	text-align: center;
}

.common-partner__area {
	color: #125B8F;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.common-partner__name {
	color: #125B8F;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-top: 3px;
	text-align: center;
}

.company__inner {
	padding-bottom: 106px;
	padding-top: 94px;
}

.company__box {
	margin-bottom: 54px;
}

.company__title {
	color: #125B8F;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 24px;
	margin-top: 84px;
}

.company__lists {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 106px;
}

.company__list {
	margin-right: 76px;
	width: calc(50% - 76px / 2);
}

.company__list:last-child {
	margin-right: 0;
}

.confirm__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 32px;
}

.confirm__button {
	margin-right: 42px;
}

.confirm__button:last-child {
	margin-right: 0;
}

.confirm__form table {
	border: none;
	table-layout: fixed;
}

.confirm__form table th,
.confirm__form table td {
	border: none;
	border-bottom: 1px dashed #CDD6DD;
	padding-bottom: 16px;
	padding-top: 16px;
}

.confirm__form table th {
	width: 300px;
}

.confirm__error {
	color: #8f1212;
	font-weight: 700;
	margin-top: 1.5em;
}

.contact-form__row {
	display: flex;
	margin-top: 24px;
}

.contact-form__left {
	margin-right: 36px;
	width: calc(33.3333333% - 36px * 2 / 3);
}

.contact-form__center {
	margin-right: 36px;
	width: calc(33.3333333% - 36px * 2 / 3);
}

.contact-form__right {
	width: calc(33.3333333% - 36px * 2 / 3);
}

.contact-form__item {
	margin-bottom: 24px;
}

.contact-form__label {
	color: #1a1a1a;
	display: block;
	font-size: 14px;
	margin-bottom: 8px;
}

.contact-form__label.contact-form__label--required::after {
	background: #8f1212;
	color: #ffffff;
	color: #fff;
	content: "必須";
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	margin-left: 8px;
	padding: 2px 0;
	text-align: center;
	width: 40px;
}

.contact-form__textarea {
	margin-top: 16px;
}

.contact-form__check {
	margin-top: 40px;
	text-align: center;
}

.contact-form__btn {
	margin-top: 18px;
	text-align: center;
}

.contact-form__attention {
	color: #8F1212;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 20px;
}

.contact__inner {
	padding-bottom: 90px;
	padding-top: 60px;
}

.contact__head {
	display: flex;
}

.contact__lead {
	color: #125B8F;
	font-size: 14px;
	line-height: 1.5;
}

.contact__tel {
	margin-left: auto;
}

.contact__tel-lead {
	color: #6F7579;
	font-size: 12px;
}

.contact__tel-link {
	margin-top: 6px;
	text-align: right;
}

.contact__box {
	border: 2px solid #CDD6DD;
	border-radius: 6px;
	margin-top: 20px;
	padding: 40px 36px;
}

.contact__box p {
	margin-bottom: 1em;
}

.contact__box p:last-child {
	margin-bottom: 0;
}

.contact__title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.drawer-content__item a {
	text-decoration: none;
}

.english__inner {
	padding-bottom: 0;
	padding-top: 56px;
}

.english__row {
	display: flex;
}

.english__left {
	margin-right: 76px;
	width: calc(50% - 76px / 2);
}

.english__right {
	margin-right: 0;
	padding-right: 56px;
	width: calc(50% - 76px / 2);
}

.english__title {
	color: #125B8F;
	font-size: 30px;
	font-weight: 700;
}

.english__list {
	margin-top: 22px;
}

.english__body {
	margin-top: 20px;
}

.english__body p {
	margin-bottom: 1em;
}

.english__body p:last-child {
	margin-bottom: 0;
}

.english__partner {
	margin-top: 102px;
}

.footer-menu {
	background: #125B8F;
}

.footer-menu__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	min-height: 84px;
	padding-bottom: 30px;
	padding-top: 30px;
	position: relative;
}

.footer-menu__item {
	margin-right: 36px;
}

.footer-menu__item:last-child {
	margin-right: 0;
}

.footer-menu__item a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.footer-menu__item a:hover {
	opacity: 0.6;
}

.footer-menu__totop {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.footer__inner {
	padding-bottom: 13px;
	padding-top: 13px;
}

.footer__copy {
	color: #125B8F;
	font-size: 11px;
	text-align: center;
}

.header {
	background: #fff;
	border-top: 5px solid #125B8F;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	height: 200px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	width: 100%;
	z-index: 20;
}

.header.header-en {
	height: 114px;
}

.header__inner {
	align-items: center;
	display: flex;
	height: auto;
	padding-bottom: 20px;
	padding-top: 22px;
}

.header__right {
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
}

.header__tel {
	margin-right: 24px;
}

.tel-link {
	color: #080808;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	padding-left: 35px;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.tel-link::before {
	background: transparent url(../img/common/tel-icon.png) no-repeat top center/contain;
	content: "";
	height: 26px;
	left: 0;
	margin-top: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
}

.lang-link {
	border-bottom: 1px solid #1A1A1A;
	font-weight: 700;
	line-height: 1;
	padding: 0 8px 4px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.lang-link:hover {
	opacity: 0.6;
}

.header-nav {
	background: #fff;
	border-top: 1px solid #CCD1D5;
	height: 80px;
}

.header-nav__inner {
	display: flex;
	padding-bottom: 24px;
	padding-top: 24px;
}

.header-nav__item {
	border-right: 1px solid #CCD1D5;
	padding-bottom: 6px;
	padding-top: 6px;
	text-align: center;
	width: 148px;
}

.header-nav__item:first-child {
	border-left: 1px solid #CCD1D5;
}

.header-nav__item a {
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.header-nav__item a:hover {
	color: #125B8F;
}

.header-nav--top .header-nav__item .header-nav__link--top {
	color: #125B8F;
}

.header-nav--news .header-nav__item .header-nav__link--news {
	color: #125B8F;
}

.header-nav--about .header-nav__item .header-nav__link--about {
	color: #125B8F;
}

.header-nav--company .header-nav__item .header-nav__link--company {
	color: #125B8F;
}

.header-nav--products .header-nav__item .header-nav__link--products {
	color: #125B8F;
}

.header-nav--contact .header-nav__item .header-nav__link--contact {
	background: #125b8f;
	color: #fff;
	opacity: 1;
}

.header-nav--contact .header-nav__item .header-nav__link--contact svg path {
	fill: #fff;
	border-color: #125B8F;
}

.header-nav__item.header-nav__item--btn {
	border-right: none;
	flex-grow: 1;
	padding-bottom: 0;
	padding-top: 0;
	text-align: right;
}

.header-nav__item.header-nav__item--btn a:hover {
	color: #fff;
	opacity: 1;
}

.header-drawer {
	display: none;
	position: fixed;
	right: 16px;
	top: 38px;
}

.drawer-content__items {
	margin-top: 24px;
}

.drawer-content__item {
	border-bottom: 1px solid #CCD1D5;
}

.drawer-content__item:first-child {
	border-top: 1px solid #CCD1D5;
}

.drawer-content__item a {
	display: block;
	padding: 16px 24px;
	position: relative;
}

.drawer-content__item a::after {
	background: transparent url(../img/arrow-right-black.png) no-repeat top center/contain;
	content: "";
	height: 16.8px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 21.6px;
}

.drawer-content__contact {
	margin-top: 24px;
	text-align: center;
}

.drawer-content__tel {
	margin-top: 24px;
	text-align: center;
}

.history__inner {
	padding-bottom: 106px;
	padding-top: 64px;
}

.history__list {
	margin-bottom: 102px;
	margin-top: 26px;
}

.message__inner {
	padding-bottom: 106px;
	padding-top: 64px;
}

.message__head {
	color: #125B8F;
	font-size: 24px;
	font-weight: 700;
}

.message__head img {
	vertical-align: bottom;
}

.message__content {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 114px;
	margin-top: 24px;
}

.message__text {
	width: 61.2%;
}

.message__img {
	margin-left: auto;
	width: 34.6%;
}

.mv-page {
	background: transparent url(../img/common/mv-page.jpg) no-repeat top center/cover;
	margin-top: 200px;
}

.mv-page__inner {
	padding-bottom: 68px;
	padding-top: 50px;
}

.mv-page__title {
	color: #fff;
	font-size: 32px;
	font-weight: 400;
	position: relative;
}

.mv-page__title::after {
	background: transparent url(../img/common/mv-bar.png) no-repeat top center/contain;
	content: "";
	height: 14px;
	left: 0;
	position: absolute;
	top: calc(100% + 5px);
	width: 66.5px;
}

.mv-top {
	background: transparent url(../img/common/mv-top.jpg) no-repeat top center/cover;
	height: 628px;
	margin-top: 200px;
	position: relative;
}

.mv-top.mv-top--english {
	height: 428px;
	margin-top: 114px;
}

.mv-top__content {
	border: 7px solid #fff;
	left: 50%;
	max-width: 88%;
	padding: 42px 30px 36px;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 682px;
}

.mv-top__title img {
	width: 582px;
}

.mv-top__lead {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
}

.news__inner {
	padding-bottom: 88px;
	padding-top: 38px;
}

.news__item {
	margin-bottom: 40px;
}

.news__item:last-child {
	margin-bottom: 0;
}

.news__title {
	color: #125B8F;
	font-size: 32px;
}

.news__lists {
	margin-top: 22px;
}

.opt__inner {
	padding-bottom: 32px;
	padding-top: 68px;
}

.opt__title {
	margin-top: 36px;
}

.opt__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 44px;
}

.opt__item {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	margin-bottom: 52px;
	margin-right: 20px;
	width: calc(25% - 20px * 3 / 4);
}

.opt__item:nth-child(4n) {
	margin-right: 0;
}

.opt__item:last-child {
	margin-right: 0;
}

.opt__lineup {
	margin-top: 16px;
}

.page__inner {
	padding-bottom: 52px;
	padding-top: 62px;
}

.page__title {
	margin-bottom: 30px;
}

.powder__images {
	display: flex;
	margin-top: 32px;
}

.powder__image {
	margin-right: 30px;
}

.powder__image:last-child {
	margin-right: 0;
}

.powder__cards {
	margin-top: 36px;
}

.powder__card {
	margin-bottom: 26px;
}

.powder__text {
	font-size: 14px;
	line-height: 2.14286;
	margin-top: 12px;
}

.powder__more {
	font-size: 14px;
	margin-top: 28px;
}

.powder__buttons {
	display: flex;
	flex-wrap: wrap;
	margin-top: 18px;
}

.powder__button {
	margin-bottom: 16px;
	margin-right: 16px;
}

.powder__button:last-child {
	margin-right: 0;
}

.powder__product {
	margin-top: 68px;
}

.products__inner {
	padding-bottom: 32px;
	padding-bottom: 0;
	padding-top: 68px;
}

.products__about {
	background: transparent url(../img/products/about-bg.jpg) no-repeat top center/cover;
	color: #fff;
}

.products__about-content {
	margin-left: auto;
	max-width: 100%;
	padding: 76px 90px 76px 0;
	width: 548px;
}

.products__about--body {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.85714;
	margin-top: 36px;
	max-width: 100%;
	width: 374px;
}

.products__parts {
	margin-top: 68px;
}

.products__parts-items {
	display: flex;
	flex-wrap: wrap;
}

.products__parts-item {
	margin-right: 26px;
	width: calc(25% - 26px * 3 / 4);
}

.products__parts-item:last-child {
	margin-right: 0;
}

.products__partner {
	margin-top: 106px;
}

.semi__lead {
	font-size: 30px;
	font-weight: 200;
	line-height: 1.6;
	margin-top: 36px;
}

.semi__text {
	font-size: 14px;
	line-height: 2.14286;
	margin-top: 12px;
}

.semi__btn {
	margin-top: 18px;
}

.semi__product {
	margin-top: 64px;
}

.semi__cards {
	margin-top: 72px;
}

.single__inner {
	padding-bottom: 52px;
	padding-top: 62px;
}

.single__title {
	font-weight: 400;
	margin-bottom: 30px;
}

.single__back {
	margin-top: 60px;
	text-align: center;
}

.single__content01 {
	display: flex;
	flex-direction: row-reverse;
}

.single__content01 .single__left {
	width: 216px;
}

.single__content01 .single__right {
	padding-right: 32px;
	width: calc(100% - 216px);
}

.single__content02 {
	display: flex;
}

.single__content02 .single__left {
	padding-right: 32px;
	width: 50%;
}

.single__content02 .single__right {
	width: 50%;
}

.single__catch {
	text-align: center;
}

.single__more {
	margin-top: 12px;
}

.single__sub-head {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0.2em;
	margin-top: 1.3em;
}

.single__list {
	margin-top: 36px;
}

.single__list li {
	border-bottom: 1px dashed #CCD1D5;
	color: #6F7579;
	line-height: 1.375;
	padding: 8px 0;
}

.single__img-title {
	padding-left: 164px;
	position: relative;
}

.single__img-title.single__img-title--noimg {
	padding-left: 0;
}

.single__img-title img {
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 124px;
}

.single__img-title span {
	font-size: 20px;
	font-weight: 700;
}

.single__box {
	width: 100%;
}

.single__link-lists {
	list-style-type: disc;
	padding-left: 20px;
}

.single__link-lists li {
	font-size: 14px;
	margin-bottom: 0.2em;
}

.single__link-lists li a {
	transition: all 0.3s ease 0s;
}

.single__link-lists li a:hover {
	opacity: 0.6;
}

.site-brand {
	display: flex;
}

.site-brand__img {
	width: 46px;
}

.site-brand__img img {
	vertical-align: bottom;
}

.site-brand__text {
	padding-left: 28px;
	padding-top: 24px;
}

.site-brand__title {
	display: block;
	font-size: 16px;
	font-weight: 700;
}

.site-brand__title a {
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.site-brand__title a:hover {
	opacity: 0.6;
}

.site-brand__lead {
	display: block;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	margin-top: 6px;
}

.top-about {
	background: transparent url(../img/top/about-bg.jpg) no-repeat top center/cover;
	color: #fff;
}

.top-about__inner {
	padding-bottom: 82px;
	padding-top: 72px;
}

.top-about__content {
	margin-left: auto;
	max-width: 100%;
	padding-right: 46px;
	width: 620px;
}

.top-about__title img {
	width: 574px;
}

.top-about__body {
	font-size: 14px;
	font-weight: 500;
	line-height: 2.14286;
	margin-top: 52px;
}

.top-about__btn {
	margin-top: 32px;
	text-align: center;
}

.top-items__inner {
	padding-bottom: 186px;
	padding-top: 48px;
}

.top-items__title {
	font-size: 18px;
	font-weight: 700;
	padding-bottom: 12px;
	position: relative;
	text-align: center;
}

.top-items__title::after {
	background: #707070;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 30px;
}

.top-items__partner {
	display: flex;
	flex-wrap: wrap;
	margin-top: 38px;
}

.top-items__partner-left {
	width: 50%;
}

.top-items__partner-left img {
	vertical-align: bottom;
}

.top-items__partner-right {
	padding-left: 150px;
	width: 50%;
}

.partners {
	display: flex;
	flex-wrap: wrap;
}

.partner {
	margin-bottom: 30px;
	margin-right: 18px;
	width: calc(50% - 18px * 1 / 2);
}

.partner:nth-child(2n) {
	margin-right: 0;
}

.partner__img {
	text-align: center;
}

.partner__img img {
	vertical-align: bottom;
}

.partner__body {
	font-weight: 700;
	text-align: center;
}

.partner__area {
	font-size: 12px;
	line-height: 1;
}

.partner__name {
	font-size: 18px;
	line-height: 1;
	margin-top: 2px;
}

.top-items__parts {
	margin-top: 116px;
}

.items {
	display: flex;
	flex-wrap: wrap;
}

.item {
	margin-right: 20px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: calc(25% - 20px * 3 / 4);
}

.item:last-child {
	margin-right: 0;
}

.item:hover {
	opacity: 0.6;
}

.item__img {
	text-align: center;
}

.item__img img {
	vertical-align: bottom;
}

.item__title {
	font-size: 18px;
	font-weight: 700;
	margin-top: 24px;
	position: relative;
	text-align: center;
}

.item__title svg {
	margin-bottom: -2px;
	margin-left: 8px;
}

.item__title svg path {
	fill: #1A1A1A;
}

.news-lists__inner {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 42px;
	padding-top: 52px;
}

.top-news__head {
	width: 110px;
}

.heading__title {
	line-height: 1;
}

.heading__title img {
	vertical-align: bottom;
	width: 48px;
}

.heading__lead {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-top: 14px;
}

.top-news__items {
	width: calc(100% - 110px);
}

.news-lists li {
	border-bottom: 1px dashed #C1C1C1;
	padding: 10px 0;
}

.news-lists li:first-child {
	border-top: 1px dashed #C1C1C1;
}

.news-lists li a {
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.news-lists li a:hover {
	opacity: 0.6;
}

.vcsel__inner {
	padding-bottom: 0;
	padding-top: 72px;
}

.vcsel__title {
	margin-bottom: 26px;
	margin-top: 50px;
}

.vcsel__lead {
	font-size: 30px;
	font-weight: 200;
	margin: 22px 0 32px;
}

.vcsel__label-heading {
	margin: 22px 0 32px;
}

.vcsel__news-box {
	margin-top: 34px;
}

.vcsel__products {
	background: #ECEFF2;
	margin: 70px calc(50% - 50vw) 0;
	overflow: hidden;
	padding: 38px calc(50vw - 50%) 20px;
	width: 100vw;
}

.vcsel__lineup-item {
	margin-bottom: 68px;
}

.vcsel__lineup-item:last-child {
	margin-bottom: 0;
}

.vcsel__lineup-images {
	display: flex;
	flex-wrap: wrap;
	margin-top: 52px;
	text-align: center;
}

.vcsel__lineup-image:nth-child(1) {
	width: 73.679%;
}

.vcsel__lineup-image:nth-child(2) {
	margin-left: auto;
	width: 22.3%;
}

.vcsel-news__list {
	font-size: 14px;
	list-style-type: decimal;
	margin-top: 1em;
	padding-left: 20px;
}

.vcsel-news__list li {
	margin-bottom: 0.2em;
}

.vcsel-news__list li:last-child {
	margin-bottom: 0;
}

.u-nowrap {
	white-space: nowrap;
}

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

.lineup-item__column .label-heading {
	font-size: 18px;
}

.hidden-tab {
	display: none;
}

}

@media (min-width: 1000px) {

.hidden-pc {
	display: none;
}

}

@media (max-width: 999px) {

.inner {
	padding-left: 24px;
	padding-right: 24px;
}

.access-info__body {
	text-align: justify;
	text-justify: inter-ideograph;
}

.air-card__company {
	margin-top: 24px;
}

.btn-product {
	font-size: 14px;
	width: 164px;
}

.company-label-logo-card {
	min-width: initial;
}

.company-label-logo-card__right {
	margin-top: 12px;
	padding-left: 0;
	width: 100%;
}

.company-links__link:nth-child(2n) {
	margin-right: 0;
}

.label-heading {
	font-size: 20px;
}

.opt-head {
	padding: 52px 24px;
}

.opt-head__title {
	font-size: 22px;
}

.opt-head__text {
	padding-left: 24px;
}

.opt-item__body {
	padding: 22px 8px 16px;
}

.opt-item__title {
	font-size: 13px;
	min-height: 40px;
}

.opt-part-info__title {
	font-size: 24px;
}

.product-item__title {
	text-align: justify;
	text-justify: inter-ideograph;
}

.semi-item__left {
	padding-right: 28px;
}

.vcsel-lineup-items__item {
	width: 33.3%;
}

.vcsel-lineup__type {
	font-size: 24px;
}

.about__text {
	padding-right: 42px;
}

.about__text p {
	font-size: 16px;
}

.about__button {
	width: auto;
}

.english__left {
	margin-right: 32px;
	width: calc(50% - 32px / 2);
}

.english__right {
	padding-right: 0;
}

.english__title {
	font-size: 24px;
}

.footer-menu__totop {
	right: 24px;
}

.header {
	height: 104px;
}

.header__inner {
	padding-bottom: 16px;
	padding-top: 16px;
}

.header__right {
	display: none;
}

.header-nav {
	display: none;
}

.header-drawer {
	display: block;
	top: 38px;
}

.mv-page {
	margin-top: 104px;
}

.mv-top {
	height: 500px;
	margin-top: 104px;
}

.powder__image {
	margin-right: 20px;
}

.site-brand__text {
	padding-top: 16px;
}

.top-items__inner {
	padding-bottom: 80px;
	padding-top: 4.8vw;
}

.top-items__partner-right {
	padding-left: 30px;
}

.top-items__parts {
	margin-top: 62px;
}

.item__title {
	font-size: 16px;
	padding-right: 30px;
	position: relative;
	text-align: justify;
	text-justify: inter-ideograph;
}

.item__title svg {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.vcsel__lead {
	font-size: 24px;
}

}

@media (max-width: 767px) {

.inner {
	padding-left: 16px;
	padding-right: 16px;
}

.access-info__lead {
	text-align: justify;
	text-justify: inter-ideograph;
}

.air-card__body {
	display: block;
	width: 100%;
}

.air-card__company {
	margin-top: 24px;
}

.air-card__img {
	justify-content: center;
	margin-top: 24px;
	width: 100%;
}

.air-card__img02 {
	margin-left: 0;
}

.btn-product {
	font-size: 12px;
	white-space: nowrap;
}

.btn-arrow-blue {
	font-size: 14px;
	padding-left: 28px;
	padding-right: 28px;
}

.btn-arrow-blue.btn-arrow-blue--about {
	padding-left: 24px;
	padding-right: 24px;
}

.company-box {
	padding-left: 30px;
}

.company-box__head {
	height: 110px;
	padding-top: 18px;
	width: 40px;
}

.company-box__body {
	padding: 16px;
	width: 100%;
}

.company-label-logo-card {
	padding: 12px;
}

.company-label-logo-card__left {
	width: 100%;
}

.company-label-logo-card__right {
	margin-top: 12px;
	padding-left: 0;
	text-align: justify;
	text-justify: inter-ideograph;
	width: 100%;
}

.company-links__link {
	margin-bottom: 16px;
	margin-right: 0;
	width: 100%;
}

.company-links__link:last-child {
	margin-top: 0;
}

.flag-title img {
	height: 38px;
	width: auto;
}

.history-list__row dt {
	width: 94px;
}

.history-list__row dd {
	width: calc(100% - 94px);
}

.label-heading {
	font-size: 18px;
}

.label-heading.label-heading--small {
	font-size: 17px;
}

.lineup-item__body {
	display: block;
	padding-right: 0;
	width: 100%;
}

.lineup-item--tow-image .lineup-item__body {
	width: 100%;
}

.lineup-item__img {
	margin-top: 32px;
	text-align: center;
	width: 100%;
}

.lineup-item--tow-image .lineup-item__img {
	width: 100%;
}

.lineup-item__column {
	margin-bottom: 24px;
	margin-right: 0;
	width: 100%;
}

.lineup-item__column:last-child {
	margin-bottom: 0;
}

.opt-head__title {
	font-size: 20px;
	width: 100%;
}

.opt-head__text {
	margin-top: 24px;
	padding-left: 0;
	width: 100%;
}

.opt-item__title {
	min-height: initial;
}

.opt-part-info__title {
	font-size: 24px;
}

.page-heading {
	font-size: 20px;
}

.page-sub-title {
	font-size: 20px;
}

.product-card {
	padding: 24px 16px;
}

.product-item {
	display: block;
}

.product-item__body {
	margin-top: 12px;
}

.semi-card {
	padding-bottom: 32px;
	padding-top: 32px;
}

.semi-card__body {
	display: block;
	padding-right: 0;
	width: 100%;
}

.semi-card--tow-image .semi-card__body {
	width: 100%;
}

.semi-card__title {
	font-size: 24px;
}

.semi-card__img {
	margin-top: 32px;
	text-align: center;
	width: 100%;
}

.semi-card--tow-image .semi-card__img {
	width: 100%;
}

.semi-card__company {
	margin-top: 24px;
	text-align: left;
}

.semi-item__left {
	padding-right: 0;
	width: 100%;
}

.semi-item__right {
	margin-top: 24px;
	text-align: center;
	width: 100%;
}

.semi-item__lead {
	font-size: 24px;
}

.semi-item__image {
	text-align: center;
}

.semi-item__btn-title {
	text-align: left;
}

.semi-item__buttons {
	justify-content: start;
}

.semi-item__button .btn-arrow-blue {
	padding-left: 24px;
	padding-right: 40px;
}

.vcsel-coming-items {
	display: block;
}

.vcsel-coming-items__item {
	margin-bottom: 16px;
}

.vcsel-coming-items__item:last-child {
	margin-bottom: 0;
}

.vcsel-head {
	display: block;
	padding: 36px 16px;
}

.vcsel-head__left {
	padding: 0;
	width: 100%;
}

.vcsel-head__right {
	margin-top: 36px;
	padding: 0;
	width: 100%;
}

.vcsel-item {
	padding: 16px;
}

.vcsel-lineup-items__item {
	width: 50%;
}

.vcsel-lineup__type {
	font-size: 18px;
}

.vcsel-news {
	display: block;
	padding-left: 16px;
	padding-right: 16px;
}

.vcsel-news__left {
	width: 100%;
}

.vcsel-news__right {
	margin-top: 32px;
	width: 100%;
}

.vcsel-news__card {
	margin-right: 16px;
	width: calc(50% - 16px * 1 / 2);
}

.vcsel-products__items {
	margin-left: -8px;
	margin-right: -8px;
	margin-top: 24px;
}

.vcsel-products__item {
	margin-bottom: 16px;
	padding-left: 4px;
	padding-right: 4px;
}

.vixar-card__label::before {
	margin-right: 10px;
}

.vixar-card__label::after {
	margin-left: 10px;
}

.vixar-card__body {
	margin-top: 16px;
	padding-right: 0;
	width: 100%;
}

.vixar-card--tow-image .vixar-card__body {
	width: 100%;
}

.vixar-card__img {
	text-align: center;
	width: 100%;
}

.vixar-card--tow-image .vixar-card__img {
	width: 100%;
}

.vixar-card--tow-image .vixar-card__img img {
	margin-right: 2px;
	width: calc(50% - 2px / 2);
}

.about__inner {
	padding-bottom: 60px;
	padding-top: 42px;
}

.about__content {
	display: block;
}

.about__text {
	display: block;
	margin-top: 34px;
	padding-right: 0;
	width: 100%;
}

.about__text p {
	font-size: 15px;
}

.about__buttons {
	display: block;
}

.about__button {
	margin-right: 0;
	margin-top: 16px;
	text-align: center;
	width: 100%;
}

.about__button:first-child {
	margin-top: 0;
}

.about__image {
	width: 100%;
}

.access__map {
	width: 100%;
}

.access__img {
	margin-top: 32px;
	width: 100%;
}

.air__card {
	padding-bottom: 32px;
	padding-top: 32px;
}

.common-contact__title {
	font-size: 18px;
}

.common-contact__lead {
	font-size: 14px;
	text-align: justify;
	text-justify: inter-ideograph;
}

.common-contact__link {
	margin-bottom: 16px;
	margin-right: 0;
	width: 100%;
}

.common-contact__link:last-child {
	margin-bottom: 0;
}

.common-partner__items {
	display: block;
}

.common-partner__item {
	margin-bottom: 32px;
	margin-right: 0;
	width: 100%;
}

.common-partner__item:last-child {
	margin-bottom: 0;
}

.company__inner {
	padding-bottom: 60px;
	padding-top: 56px;
}

.company__title {
	font-size: 20px;
	margin-bottom: 16px;
	margin-top: 62px;
}

.company__list {
	margin-right: 0;
	width: 100%;
}

.contact-form__row {
	display: block;
}

.contact-form__left {
	margin-right: 0;
	width: 100%;
}

.contact-form__center {
	margin-right: 0;
	width: 100%;
}

.contact-form__right {
	width: 100%;
}

.contact-form__radio label {
	display: block;
	margin-bottom: 8px;
}

.contact-form__radio label:last-child {
	margin-bottom: 0;
}

.contact__inner {
	padding-bottom: 60px;
	padding-top: 40px;
}

.contact__head {
	display: block;
}

.contact__lead {
	font-size: 13px;
}

.contact__tel {
	margin-left: 0;
	margin-top: 16px;
}

.contact__tel-link {
	text-align: left;
}

.contact__box {
	padding: 24px 16px;
}

.english__inner {
	padding-top: 40px;
}

.english__row {
	display: block;
}

.english__left {
	margin-right: 0;
	width: 100%;
}

.english__right {
	margin-top: 32px;
	padding-right: 0;
	width: 100%;
}

.english__title {
	font-size: 20px;
}

.english__partner {
	margin-top: 80px;
}

.footer-menu__inner {
	justify-content: start;
	padding-bottom: 8px;
	padding-right: 80px;
	padding-top: 16px;
}

.footer-menu__item {
	margin-bottom: 8px;
}

.footer-menu__totop {
	right: 16px;
}

.header {
	height: 70px;
}

.header__inner {
	padding-bottom: 8px;
	padding-right: 50px;
	padding-top: 8px;
}

.header__right {
	display: none;
}

.header-nav {
	display: none;
}

.header-drawer {
	display: block;
	right: 16px;
	top: 22px;
}

.history__inner {
	padding-bottom: 60px;
	padding-top: 40px;
}

.history__list {
	margin-top: 16px;
}

.message__inner {
	padding-bottom: 60px;
	padding-top: 40px;
}

.message__head img {
	width: 60px;
}

.message__content {
	margin-top: 24px;
}

.message__text {
	width: 100%;
}

.message__img {
	margin-top: 32px;
	text-align: center;
	width: 100%;
}

.mv-page {
	margin-top: 70px;
}

.mv-page__inner {
	padding-bottom: 48px;
	padding-top: 34px;
}

.mv-page__title {
	font-size: 24px;
}

.mv-top {
	height: 300px;
	margin-top: 88px;
}

.mv-top.mv-top--english {
	height: 300px;
}

.mv-top__content {
	padding: 24px 12px;
}

.mv-top__lead {
	font-size: 16px;
	margin-top: 16px;
}

.news__title {
	font-size: 24px;
}

.news__lists {
	margin-top: 16px;
}

.opt__inner {
	padding-bottom: 60px;
	padding-top: 40px;
}

.opt__items {
	display: block;
	margin-top: 32px;
}

.opt__item {
	margin-bottom: 32px;
	margin-right: 0;
	width: 100%;
}

.opt__item:last-child {
	margin-bottom: 0;
}

.powder__images {
	margin-top: 24px;
}

.powder__image {
	margin-right: 2px;
}

.powder__product {
	margin-top: 52px;
}

.products__inner {
	padding-bottom: 60px;
	padding-bottom: 0;
	padding-top: 40px;
}

.products__about-content {
	padding: 60px 16px;
}

.products__about--body {
	font-size: 12px;
	margin-top: 32px;
}

.products__parts-item {
	margin-bottom: 42px;
	margin-right: 0;
	width: 100%;
}

.products__parts-item:last-child {
	margin-bottom: 0;
}

.products__partner {
	margin-top: 84px;
}

.semi__lead {
	font-size: 24px;
	margin-top: 24px;
}

.semi__cards {
	margin-top: 32px;
}

.single__inner {
	padding-bottom: 52px;
	padding-top: 34px;
}

.single__back {
	margin-top: 100px;
}

.single__content01 {
	display: block;
}

.single__content01 .single__left {
	width: 100%;
}

.single__content01 .single__right {
	margin-top: 32px;
	padding-right: 0;
	width: 100%;
}

.single__content02 {
	display: block;
}

.single__content02 .single__left {
	padding-right: 0;
	width: 100%;
}

.single__content02 .single__right {
	margin-top: 32px;
	width: 100%;
}

.single__list {
	margin-top: 16px;
}

.single__img-title {
	padding-left: 82px;
}

.single__img-title img {
	width: 62px;
}

.single__img-title span {
	font-size: 16px;
}

.site-brand__img {
	width: 32px;
}

.site-brand__text {
	padding-left: 14px;
	padding-top: 10px;
}

.site-brand__title {
	font-size: 13px;
}

.site-brand__lead {
	font-size: 11px;
	margin-top: 3px;
}

.site-brand__lead img {
	width: 236px;
}

.top-about__content {
	padding-right: 0;
	width: 100%;
}

.top-about__body {
	font-size: 12px;
	margin-top: 32px;
}

.top-items__inner {
	padding-bottom: 40px;
	padding-top: 40px;
}

.top-items__partner {
	margin-bottom: 42px;
	margin-top: 24px;
}

.top-items__partner-left {
	width: 100%;
}

.top-items__partner-right {
	margin-top: 24px;
	padding-left: 0;
	width: 100%;
}

.top-items__parts {
	margin-top: 24px;
}

.item {
	margin-bottom: 20px;
	margin-right: 20px;
	width: calc(50% - 20px * 1 / 2);
}

.item:nth-child(2n) {
	margin-right: 0;
}

.item__title {
	font-size: 14px;
	margin-top: 16px;
	padding-right: 30px;
}

.news-lists__inner {
	padding-bottom: 40px;
	padding-top: 40px;
}

.top-news__head {
	width: 100%;
}

.top-news__items {
	margin-top: 24px;
	width: 100%;
}

.news-lists li a {
	font-size: 14px;
}

.vcsel__inner {
	padding-top: 40px;
}

.vcsel__lead {
	font-size: 18px;
}

.vcsel__news-box {
	margin-top: 24px;
}

.vcsel__lineup-images {
	margin-top: 32px;
	text-align: center;
}

.vcsel__lineup-image:nth-child(1) {
	width: 100%;
}

.vcsel__lineup-image:nth-child(2) {
	margin-left: 0;
	margin-top: 16px;
	width: 100%;
}

.hidden-sp {
	display: none;
}

}

@media (max-width: 375px) {

.vcsel-products__item {
	width: 50%;
}

}

.privacy-policy {
}

.privacy-policy h3 {margin: 2em 0 1em;font-size: 1.1em;}
.privacy-policy p {margin-bottom: 1em;}
.privacy-policy p.name {text-align: right;}

.privacy-policy dl {border: 1px solid #125b8f;padding: 1em 2em;border-radius: 8px;}
.privacy-policy dl dt {width: 12em;float: left;clear: both;color: #125b8f;}
.privacy-policy dl dd {
    margin-left: 13em;
}

@media (max-width: 375px) {
	.privacy-policy dl dt,
	.privacy-policy dl dd {
		float:none;
		width:auto;
		margin:auto;
		}
}
.board-type {
border-radius: 8px;
    display: flex;
    padding: 16px 30px 20px;
}
.board-list {
	margin-top: 1em;
}
.board-list li {
	padding: 10px 0;
}
.board-type__box{
	margin-top: 34px;
}
.board-type__left {
	margin-right: 30px;
	width: calc(58% - 30px);
}
.board-type__right {
	width: 60%;
}
.news_list ul li{
list-style: disc;

}
.news_list ul {

	margin-left: 20px;
}

.news_list p {
margin-top: 20px;
}