body {
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.04em;
}

.br-sp {
	display: none;
}

.br-pc {
	display: block;
}

/* リキッドレイアウト対応 */

html {
	font-size: 1.3333333333vw;
}

/* pcの電話番号発信対応 */

/* ホバー */

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

html.is-fixed {
	overflow: hidden;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

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

.btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #C01A1A;
	border-radius: 3.75rem;
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .2);
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	height: 60px;
	height: 3.75rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 500px;
	max-width: 31.25rem;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
}

.btn:after {
	background-attachment: scroll;
	background-image: url(../../assets/images/common/arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 20px;
	height: 1.25rem;
	position: absolute;
	right: 20px;
	right: 1.25rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 20px;
	width: 1.25rem;
}

.btn:hover {
	background: #122558;
	-webkit-box-shadow: 0 0 1rem rgba(255, 255, 255, .2);
	box-shadow: 0 0 1rem rgba(255, 255, 255, .2);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.btn:hover:after {
	-webkit-transform: translate(10px, -50%);
	transform: translate(10px, -50%);
}

.cta {
	background-attachment: scroll;
	background-image: url(../../assets/images/common/contact-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	padding: 5rem 0;
	position: relative;
}

.cta:before {
	background: rgba(18, 37, 88, .8);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.cta__title {
	color: #fff;
	font-size: 32px;
	font-size: 2rem;
	position: relative;
	text-align: center;
}

.cta__text {
	color: #fff;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	padding-top: 15px;
	padding-top: 0.9375rem;
	position: relative;
	text-align: center;
}

.cta__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.error {
	min-height: calc(100vh - 6.5625rem);
	padding: 120px 0;
	padding: 7.5rem 0;
}

.error__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.error__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 80px;
	margin-top: 5rem;
}

.footer {
	background: #122558;
	color: #fff;
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
	padding-top: 40px;
	padding-top: 2.5rem;
	text-align: center;
}

.footer__text {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
}

.footer__line {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100px;
	width: 6.25rem;
}

.footer__line:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.hamburger {
	display: none;
}

.hamburger span {
	background: #122558;
	border-radius: 0.125rem;
	height: 2px;
	position: absolute;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.hamburger span:first-child {
	top: 5px;
	top: 0.3125rem;
	width: 100%;
}

.hamburger span:last-child {
	bottom: 5px;
	bottom: 0.3125rem;
	width: 80%;
}

.hamburger.active span:first-child {
	top: 9px;
	top: 0.5625rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.hamburger.active span:last-child {
	bottom: 9px;
	bottom: 0.5625rem;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 100%;
}

.header {
	background: #fff;
	border-radius: 6.25rem;
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	left: 50%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-left: 0.9375rem;
	position: fixed;
	top: 10px;
	top: 0.625rem;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 95%;
	z-index: 10;
}

.header__flex {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header__logo {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__logo img {
	width: 72px;
	width: 4.5rem;
}

.header__logo span {
	color: #122558;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
}

.header__lists {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__link {
	color: #122558;
	display: block;
	font-weight: 700;
	padding: 10px 15px;
	padding: 0.625rem 0.9375rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header__list:last-child .header__link {
	background: #C01A1A;
	border-radius: 6.25rem;
	color: #fff;
	margin-left: 15px;
	margin-left: 0.9375rem;
	padding: 10px 35px;
	padding: 0.625rem 2.1875rem;
}

.header__link:hover {
	color: #C01A1A;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header__list:last-child .header__link:hover {
	background: #122558;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1250px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.pagetop {
	background: #C01A1A;
	border-radius: 2.5rem;
	bottom: 50px;
	bottom: 3.125rem;
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	cursor: pointer;
	height: 64px;
	height: 4rem;
	opacity: 0;
	position: fixed;
	right: 22px;
	right: 1.375rem;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	width: 64px;
	width: 4rem;
	z-index: 50;
}

.pagetop:after {
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
	content: "";
	display: block;
	height: 15px;
	height: 0.9375rem;
	left: 50%;
	position: absolute;
	top: 55%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 15px;
	width: 0.9375rem;
}

.pagetop:hover {
	background: #122558;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

.pagetop.active {
	opacity: 1;
}

.sp-nav {
	background: #fff;
	border-radius: 0.625rem;
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	color: #122558;
	display: none;
	left: 50%;
	margin-left: auto;
	margin-right: auto;
	min-height: calc(100% - 4.6875rem);
	padding: 15px;
	padding: 0.9375rem;
	position: fixed;
	top: 65px;
	top: 4.0625rem;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 95%;
	z-index: 10;
}

.sp-nav__link {
	color: #122558;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 20px 0;
	padding: 1.25rem 0;
	text-align: center;
}

.sp-nav__list:not(:first-child) .sp-nav__link {
	border-top: 1px solid #f0f0f0;
}

.sp-nav__list:last-child .sp-nav__link {
	background: #C01A1A;
	border-radius: 2.5rem;
	border-top: 0;
	color: #fff;
	margin-top: 10px;
	margin-top: 0.625rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.sp-nav__list:last-child .sp-nav__link:hover {
	background: #122558;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.form {
	background: #EDEDF2;
	border-radius: 0.625rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-top: 3.75rem;
	max-width: 900px;
	max-width: 56.25rem;
	padding: 60px 75px;
	padding: 3.75rem 4.6875rem;
}

.form__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-size: 1rem;
	position: relative;
}

.form__item:not(:first-child) {
	margin-top: 30px;
	margin-top: 1.875rem;
}

.form__name {
	font-size: 16px;
	font-size: 1rem;
	margin-right: 50px;
	margin-right: 3.125rem;
	padding-top: 15px;
	padding-top: 0.9375rem;
	width: 190px;
	width: 11.875rem;
}

.required {
	background: #F14A32;
	border-radius: 0.125rem;
	color: #fff;
	font-size: 12px;
	font-size: 0.75rem;
	margin-left: 15px;
	margin-left: 0.9375rem;
	padding: 2px 4px;
	padding: 0.125rem 0.25rem;
}

.form__input,
.form__textarea {
	background: #fff;
	border-radius: 0.25rem;
	-webkit-box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	padding: 15px 20px;
	padding: 0.9375rem 1.25rem;
	width: 100%;
}

.form__textarea {
	height: 150px;
	height: 9.375rem;
}

.form__select {
	background: #fff;
	border-radius: 0.25rem;
	-webkit-box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	max-width: 300px;
	max-width: 18.75rem;
	position: relative;
	width: 80%;
	z-index: 1;
}

.form__select select {
	padding: 10px 15px;
	padding: 0.625rem 0.9375rem;
	width: 100%;
}

.form__select:after {
	border-color: #B1BAC0 transparent transparent transparent;
	border-style: solid;
	border-width: 9px 7.5px 0 7.5px;
	border-width: 0.5625rem 0.46875rem 0 0.46875rem;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	right: 20px;
	right: 1.25rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 0;
	z-index: -1;
}

.form__policy-wrap {
	width: calc(100% - 15.3125rem);
}

.form__policy {
	background: #fff;
	border-radius: 0.25rem;
	-webkit-box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	height: 160px;
	height: 10rem;
	width: 100%;
}

.form__policy-inner {
	font-size: 14px;
	font-size: 0.875rem;
	height: calc(100% - 1.25rem);
	line-height: 1.7;
	word-wrap: break-word;
	overflow-y: auto;
	padding: 25px 28px;
	padding: 1.5625rem 1.75rem;
	text-align: justify;
}

.form__policy h2 {
	font-size: 16px;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 10px;
	margin-bottom: 0.625rem;
}

.form__policy p {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.8;
	margin-bottom: 14px;
	margin-bottom: 0.875rem;
}

.form__policy ul {
	list-style-type: disc;
	margin-bottom: 14px;
	margin-bottom: 0.875rem;
	padding-left: 30px;
	padding-left: 1.875rem;
}

.form__policy li {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.8;
}

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

.form__policy-check {
	font-size: 16px;
	font-size: 1rem;
	padding-top: 20px;
	padding-top: 1.25rem;
}

.form__checkbox {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	background: #fff;
	border-radius: 0.1875rem;
	height: 20px;
	height: 1.25rem;
	left: -5px;
	left: -0.3125rem;
	margin-right: 10px;
	margin-right: 0.625rem;
	position: relative;
	top: 6px;
	top: 0.375rem;
	width: 20px;
	width: 1.25rem;
}

.form__checkbox:after {
	border-radius: 0.1875rem;
	-webkit-box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	box-shadow: 0, 0, 1rem, rgba(0, 0, 0, .03);
	content: "";
	cursor: pointer;
	display: inline-block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.form__checkbox:checked:after {
	border-bottom: 4px solid #122558;
	border-bottom: 0.25rem solid #122558;
	border-right: 4px solid #122558;
	border-right: 0.25rem solid #122558;
	content: "";
	display: block;
	height: 20px;
	height: 1.25rem;
	-webkit-transform: rotate(45deg) translate(1px, -5px);
	transform: rotate(45deg) translate(1px, -5px);
	width: 12px;
	width: 0.75rem;
}

.form__btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 60px;
	height: 3.75rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
	max-width: 500px;
	max-width: 31.25rem;
	position: relative;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
}

.form__btn input {
	background: #C01A1A;
	border-radius: 3.75rem;
	color: #fff;
	font-weight: 700;
	height: 100%;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 100%;
}

.form__btn:after {
	background-attachment: scroll;
	background-image: url(../../assets/images/common/arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 20px;
	height: 1.25rem;
	position: absolute;
	right: 20px;
	right: 1.25rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 20px;
	width: 1.25rem;
}

.form__btn input:hover {
	background: #122558;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.form__btn:hover:after {
	-webkit-transform: translate(10px, -50%);
	transform: translate(10px, -50%);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #BFC0C3;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #BFC0C3;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #BFC0C3;
}

input::placeholder,
textarea::placeholder {
	color: #BFC0C3;
}

.wpcf7-form-control-wrap {
	width: calc(100% - 15.3125rem);
}

.wpcf7-spinner {
	display: none !important;
}

.mv {
	background: #C01A1A;
	padding-bottom: 60px;
	padding-bottom: 3.75rem;
	padding-left: 15%;
	position: relative;
}

.mv__img {
	margin-left: auto;
	position: relative;
	width: 100%;
}

.mv__img:before {
	content: "";
	display: block;
	padding-top: 52.8%;
}

.mv__img img {
	-o-object-fit: cover;
	border-radius: 0 0 0 3.125rem;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}

.mv__img:after {
	background: rgba(18, 37, 88, .3);
	border-radius: 0 0 0 3.125rem;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.mv__text {
	bottom: 120px;
	bottom: 7.5rem;
	color: #fff;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	left: 7%;
	letter-spacing: 0.08em;
	line-height: 2;
	position: absolute;
}

.top-business-item {
	background: #fff;
	border-radius: 0.625rem;
	padding: 40px 20px;
	padding: 2.5rem 1.25rem;
	position: relative;
	width: calc(33.33333% - 1.66667rem);
}

.top-business-item:not(:first-child) {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.top-business-item__number {
	color: #122558;
	font-family: "Open Sans", sans-serif;
	font-size: 60px;
	font-size: 3.75rem;
	font-weight: 700;
	left: 50%;
	position: absolute;
	top: -50px;
	top: -3.125rem;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.top-business-item__img {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 146px;
	height: 9.125rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: auto;
}

.top-business-item:nth-child(1) .top-business-item__img img {
	width: 227px;
	width: 14.1875rem;
}

.top-business-item:nth-child(2) .top-business-item__img img {
	width: 214px;
	width: 13.375rem;
}

.top-business-item:nth-child(3) .top-business-item__img img {
	width: 204px;
	width: 12.75rem;
}

.top-business-item__title {
	color: #122558;
	font-size: 28px;
	font-size: 1.75rem;
	font-weight: 700;
	padding-top: 25px;
	padding-top: 1.5625rem;
	text-align: center;
}

.top-business-item__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.8;
	padding-top: 15px;
	padding-top: 0.9375rem;
}

.top-business-item__arrow {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #C01A1A;
	border-radius: 0.625rem 0 0.625rem 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 40px;
	height: 2.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 40px;
	width: 2.5rem;
}

.top-business-item__arrow img {
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 20px;
	width: 1.25rem;
	z-index: 1;
}

.top-business-item:hover .top-business-item__arrow {
	background: #122558;
}

.top-business-item:hover .top-business-item__arrow img {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.top-business {
	background: #8C96B0;
}

.top-business__title {
	color: #fff;
}

.top-business__text {
	color: #fff;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2;
	padding-top: 40px;
	padding-top: 2.5rem;
	text-align: center;
}

.top-business__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 80px;
	margin-top: 5rem;
}

.top-company {
	background: #F8F6F6;
	padding-bottom: 120px;
	padding-bottom: 7.5rem;
}

.top-company__table {
	margin-top: 40px;
	margin-top: 2.5rem;
	width: 100%;
}

.top-company__table th,
.top-company__table td {
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	padding: 20px 50px;
	padding: 1.25rem 3.125rem;
}

.top-company__table th {
	background: #8C96B0;
	border-radius: 0.25rem 0 0 0.25rem;
	color: #fff;
	width: 300px;
	width: 18.75rem;
}

.top-company__table td {
	background: #fff;
	border-radius: 0 0.25rem 0.25rem 0;
	width: calc(100% - 18.75rem);
}

.top-contact {
	background: #F8F6F6;
	padding-bottom: 80px;
	padding-bottom: 5rem;
}

.top-contact__title-wrap {
	background-attachment: scroll;
	background-image: url(../../assets/images/top/top-contact-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0 120px;
	padding: 5rem 0 7.5rem;
	position: relative;
}

.top-contact__title-wrap:before {
	background: rgba(18, 37, 88, .6);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-contact__title {
	color: #fff;
	position: relative;
}

.top-contact__content {
	background: #fff;
	border-radius: 0.625rem;
	-webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	box-shadow: 0 0 1rem rgba(0, 0, 0, .1);
	margin-top: -40px;
	margin-top: -2.5rem;
	padding: 60px 150px;
	padding: 3.75rem 9.375rem;
	position: relative;
}

.top-contact__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
}

.top-link-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #122558;
	background-color: #122558;
	background-image: repeating-linear-gradient(-45deg, #111, #111 5px, transparent 0, transparent 14px);
	border-radius: 0.625rem;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 120px 0;
	padding: 7.5rem 0;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: calc(50% - 1.25rem);
}

.top-link-btn:last-child {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.top-link-btn__text-en {
	font-family: "Roboto", sans-serif;
	font-size: 32px;
	font-size: 2rem;
	letter-spacing: 0.08em;
}

.top-link-btn__text {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
}

.top-link-btn__arrow {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #C01A1A;
	border-radius: 0.625rem 0 0.625rem 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 40px;
	height: 2.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	right: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 40px;
	width: 2.5rem;
}

.top-link-btn__arrow img {
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	width: 20px;
	width: 1.25rem;
	z-index: 1;
}

.top-link-btn:hover {
	background: #8C96B0;
}

.top-link-btn:hover .top-link-btn__arrow {
	background: #122558;
}

.top-link-btn:hover .top-link-btn__arrow img {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.top-link {
	background: #F8F6F6;
	padding: 80px 0;
	padding: 5rem 0;
}

.top-link__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.top-news-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px 0;
	padding: 1.25rem 0;
}

.top-news-item:not(:first-child) {
	border-top: 1px solid #122558;
}

.top-news-item__date {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	margin-right: 40px;
	margin-right: 2.5rem;
}

.top-news-item__title {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
}

.top-news__btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-top: 3.75rem;
}

.top-news {
	background: #8C96B0;
	overflow: hidden;
	position: relative;
}

.top-news__title {
	color: #fff;
}

.top-news__items {
	background: #fff;
	border-radius: 0.625rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-top: 2.5rem;
	max-width: 900px;
	max-width: 56.25rem;
	padding: 40px;
	padding: 2.5rem;
	width: 100%;
}

.top-news:before {
	background-attachment: scroll;
	background-image: url(../../assets/images/common/logo-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 797px;
	height: 49.8125rem;
	left: -15%;
	position: absolute;
	top: -20%;
	width: 988px;
	width: 61.75rem;
}

.top-section {
	padding: 80px 0;
	padding: 5rem 0;
}

.top-section__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
}

.top-section__title span {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
}

@media (min-width: 1200px) {

html {
	font-size: 16px;
}

}

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

.br-sp {
	display: block;
}

.br-pc {
	display: none;
}

html {
	font-size: 15px;
}

a[href^="tel:"] {
	pointer-events: none;
}

a:hover {
	opacity: 0.8;
}

.btn {
	font-size: 1rem;
	height: 3.125rem;
}

.cta {
	padding: 3.75rem 0;
}

.cta__title {
	font-size: 1.5rem;
}

.cta__text {
	font-size: 0.875rem;
	padding-top: 0.5rem;
}

.cta__btn {
	margin-top: 1.25rem;
}

.error {
	min-height: calc(100vh - 5.3125rem);
	padding: 3.75rem 0;
}

.error__text {
	font-size: 0.875rem;
}

.error__btn {
	margin-top: 2.5rem;
}

.footer {
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.footer__text {
	font-size: 0.875rem;
}

.footer__line {
	padding-bottom: 0.625rem;
}

.hamburger {
	display: block;
	height: 1.25rem;
	position: relative;
	width: 1.875rem;
}

.header {
	padding: 0.625rem 0.9375rem;
}

.header__nav {
	display: none;
}

.header__logo img {
	width: 2.5rem;
}

.header__logo span {
	font-size: 1rem;
}

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

.pagetop {
	bottom: 1.875rem;
	height: 3.375rem;
	right: 1rem;
	width: 3.375rem;
}

.pagetop:after {
	height: 0.75rem;
	width: 0.75rem;
}

.form {
	border-radius: 0.3125rem;
	margin-top: 1.875rem;
	padding: 1.875rem 0.625rem;
}

.form__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.form__item:not(:first-child) {
	margin-top: 1.0625rem;
}

.form__name {
	font-size: 0.9375rem;
	margin-right: 0;
	padding-bottom: 0.625rem;
	padding-top: 0;
	width: 100%;
}

.required {
	font-size: 0.6875rem;
	margin-left: 0.625rem;
}

.form__input,
.form__textarea {
	padding: 0.9375rem 0.9375rem;
	width: 100%;
}

.form__textarea {
	height: 16.875rem;
}

.form__select {
	max-width: 17.8125rem;
	width: 86%;
}

.form__select select {
	padding: 0.3125rem 0.625rem;
}

.form__policy-wrap {
	width: 100%;
}

.form__policy {
	height: 10.625rem;
}

.form__policy-inner {
	font-size: 0.8125rem;
	line-height: 1.6;
	padding: 0.9375rem 1.25rem;
}

.form__policy h2 {
	font-size: 0.9375rem;
}

.form__policy p {
	font-size: 0.8125rem;
}

.form__policy li {
	font-size: 0.8125rem;
}

.form__policy-check {
	font-size: 0.9375rem;
	padding-top: 0.75rem;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	font-size: 0.875rem;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-size: 0.875rem;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-size: 0.875rem;
}

input::placeholder,
textarea::placeholder {
	font-size: 0.875rem;
}

.wpcf7-form-control-wrap {
	width: 100%;
}

.mv {
	padding-bottom: 1.875rem;
}

.mv__img:before {
	padding-top: 120%;
}

.mv__img img {
	border-radius: 0 0 0 1.5625rem;
}

.mv__text {
	bottom: 3.75rem;
	font-size: 1rem;
}

.top-business-item {
	border-radius: 0.3125rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 21.875rem;
	padding: 1.25rem 0.625rem;
	width: 100%;
}

.top-business-item:not(:first-child) {
	margin-left: auto;
	margin-top: 2.5rem;
}

.top-business-item__title {
	font-size: 1.5rem;
	padding-top: 0.8125rem;
}

.top-business-item__text {
	font-size: 0.875rem;
	padding-top: 0.5rem;
}

.top-business-item__arrow {
	border-radius: 0.3125rem 0 0.3125rem 0;
}

.top-business__text {
	font-size: 0.875rem;
	padding-top: 1.25rem;
}

.top-business__items {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 2.5rem;
}

.top-company {
	padding-bottom: 3.75rem;
}

.top-company__table {
	margin-top: 1.25rem;
}

.top-company__table th,
.top-company__table td {
	font-size: 0.875rem;
	padding: 0.9375rem 0.625rem;
}

.top-company__table th {
	border-radius: 0.125rem 0 0 0.125rem;
	width: 6.25rem;
}

.top-company__table td {
	border-radius: 0 0.125rem 0.125rem 0;
	width: calc(100% - 6.25rem);
}

.top-contact {
	padding-bottom: 2.5rem;
}

.top-contact__title-wrap {
	padding: 2.5rem 0 3.75rem;
}

.top-contact__content {
	border-radius: 0.3125rem;
	margin-top: -2.5rem;
	padding: 1.875rem 0.625rem;
}

.top-contact__text {
	font-size: 0.875rem;
}

.top-link-btn {
	padding: 3.75rem 0;
	width: 100%;
}

.top-link-btn:last-child {
	margin-left: 0;
	margin-top: 1.25rem;
}

.top-link-btn__text-en {
	font-size: 1.5rem;
}

.top-link-btn__text {
	font-size: 0.875rem;
}

.top-link {
	padding: 2.5rem 0;
}

.top-link__btns {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.top-news-item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0.625rem 0;
}

.top-news-item__date {
	font-size: 0.875rem;
	margin-right: 0;
}

.top-news-item__title {
	font-size: 0.875rem;
}

.top-news__btn {
	margin-top: 1.875rem;
}

.top-news__items {
	margin-top: 1.25rem;
	padding: 1.25rem;
}

.top-news:before {
	height: 24.875rem;
	width: 30.875rem;
}

.top-section {
	padding: 2.5rem 0;
}

.top-section__title {
	font-size: 1.5rem;
}

.top-section__title span {
	font-size: 1rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=styles.css.map */
