@charset "UTF-8";
/* =============================================
TBS SPARKLE Clone - Main Stylesheet
============================================= */
/* -----------------------------
	CSS Variables (カスタムカラー)
----------------------------- */
:root {
	--sparkle-blue: #1e60f8;
	--sparkle-dark: #0f1115;
	--sparkle-black: #000000;
	--sparkle-gray: #1e2124;
	--gray-300: #d1d5db;
	--gray-400: #9ca3af;
	--gray-500: #6b7280;
	--gray-600: #4b5563;
	--gray-800: #1f2937;
	--gray-900: #111827;
}

/* 外部からのアンカーリンク時にヘッダー分のオフセットを確保 */
html {
	scroll-padding-top: 80px;
}
@media (max-width: 899px) {
	html {
		scroll-padding-top: 60px;
	}
}

/* ヘッダー上のスペースをリセット */
#pSERVICES #header {
	top: 0;
}

#pSERVICES #main_area {
	background-color: var(--sparkle-dark);
	color: white;
	line-height: 1.6;
	margin-top: 0;
	padding-top: 0;
}

/* -----------------------------
	CSS Icons (Lucide代替)
----------------------------- */
/* Mail Icon */
.icon-mail {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
}

.icon-mail::before {
	content: "";
	position: absolute;
	top: 20%;
	left: 0;
	width: 100%;
	height: 60%;
	border: 2px solid currentColor;
	border-radius: 2px;
}

.icon-mail::after {
	content: "";
	position: absolute;
	top: 20%;
	left: 50%;
	width: 50%;
	height: 50%;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	        transform: translateX(-50%) rotate(-45deg);
	-webkit-transform-origin: top center;
	        transform-origin: top center;
}

/* Arrow Right Icon */
.icon-arrow-right {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
}

.icon-arrow-right::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10%;
	width: 60%;
	height: 2px;
	background-color: currentColor;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.icon-arrow-right::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15%;
	width: 8px;
	height: 8px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}

/* Chevron Down Icon */
.icon-chevron-down {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	position: relative;
}

.icon-chevron-down::after {
	content: "";
	position: absolute;
	top: 30%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	-webkit-transform: translateX(-50%) rotate(45deg);
	        transform: translateX(-50%) rotate(45deg);
}

a {
	text-decoration: none;
	color: inherit;
}
a:hover {
	-webkit-transition: 0.16s ease-in-out;
	transition: 0.16s ease-in-out;
}

button:hover {
	-webkit-transition: 0.16s ease-in-out;
	transition: 0.16s ease-in-out;
}

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

ul {
	list-style: none;
}

/* -----------------------------
	Utility Classes
----------------------------- */
#pSERVICES #main_area .wrap,
.services_container {
	max-width: 1160px;
	margin: 0 auto;
	width: 100%;
}

#pSERVICES #main_area .hidden {
	display: none;
}

html {
	padding-top: 80px;
}
@media (max-width: 899px) {
	html {
		padding-top: 60px;
	}
}

/* #header #gNav > ul > li.n_CONTACT > a {
	background: #000;
} */

@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area {
		border-bottom: solid 2px #fff;
	}
}
@media only screen and (max-width: 899px) {
	#main_area {
		border-bottom: solid 2px #fff;
	}
}
#main_area * {
	margin: 0;
	padding: 0;
	outline: none;
	font: inherit;
	font-weight: inherit;
	font-family: inherit;
	-ms-text-size-adjust: none;
	    text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_area label, #main_area button {
	cursor: pointer;
}
#main_area picture {
	margin: 0;
	padding: 0;
	display: contents;
}
#main_area .display_tab {
	display: none;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .display_tab {
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .display_tab {
		display: none;
	}
}
#main_area .display_sp {
	display: none;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .display_sp {
		display: none;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .display_sp {
		display: block;
	}
}
#main_area .display_tab_sp {
	display: none;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .display_tab_sp {
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .display_tab_sp {
		display: block;
	}
}

#main_area .form * {
	margin: 0;
	padding: 0;
	outline: none;
	font: inherit;
	font-weight: inherit;
	font-family: inherit;
	-ms-text-size-adjust: none;
	    text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
#main_area .form form {
	display: block;
	position: relative;
}
#main_area .form label, #main_area .form button {
	cursor: pointer;
}
#main_area .form input,
#main_area .form select,
#main_area .form textarea {
	outline: none;
	font: inherit;
	font-size: inherit;
	font-family: inherit;
	-webkit-appearance: none;
	-webkit-text-size-adjust: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 0;
	-webkit-box-shadow: none;
	        box-shadow: none;
}
#main_area .form input[type=text],
#main_area .form input[type=email],
#main_area .form input[type=tel],
#main_area .form input[type=number],
#main_area .form input[type=password],
#main_area .form input[type=date],
#main_area .form input[type=url],
#main_area .form textarea {
	border: none;
	background-color: #EDEDED;
	margin-top: 5px;
	padding: 4px 12px 4px;
	width: 100%;
	height: 56px;
	font-size: 16px;
	line-height: normal;
	-webkit-transition: border-color 0.1s linear;
	transition: border-color 0.1s linear;
	border-radius: 2px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#main_area .form input[type=text]:hover,
#main_area .form input[type=email]:hover,
#main_area .form input[type=tel]:hover,
#main_area .form input[type=number]:hover,
#main_area .form input[type=password]:hover,
#main_area .form input[type=date]:hover,
#main_area .form input[type=url]:hover,
#main_area .form textarea:hover {
	border-color: #6a6a6a;
}
#main_area .form input[type=text]:focus,
#main_area .form input[type=email]:focus,
#main_area .form input[type=tel]:focus,
#main_area .form input[type=number]:focus,
#main_area .form input[type=password]:focus,
#main_area .form input[type=date]:focus,
#main_area .form input[type=url]:focus,
#main_area .form textarea:focus {
	border-color: #1cb57b;
}
#main_area .form input[type=text]:disabled,
#main_area .form input[type=email]:disabled,
#main_area .form input[type=tel]:disabled,
#main_area .form input[type=number]:disabled,
#main_area .form input[type=password]:disabled,
#main_area .form input[type=date]:disabled,
#main_area .form input[type=url]:disabled,
#main_area .form textarea:disabled {
	background-color: #f8f8f8;
	border-color: #dcdcdc;
	color: #707070;
}
#main_area .form input[type=text]::-webkit-input-placeholder,
#main_area .form input[type=email]::-webkit-input-placeholder,
#main_area .form input[type=tel]::-webkit-input-placeholder,
#main_area .form input[type=number]::-webkit-input-placeholder,
#main_area .form input[type=password]::-webkit-input-placeholder,
#main_area .form input[type=date]::-webkit-input-placeholder,
#main_area .form input[type=url]::-webkit-input-placeholder,
#main_area .form textarea::-webkit-input-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:-moz-placeholder,
#main_area .form input[type=email]:-moz-placeholder,
#main_area .form input[type=tel]:-moz-placeholder,
#main_area .form input[type=number]:-moz-placeholder,
#main_area .form input[type=password]:-moz-placeholder,
#main_area .form input[type=date]:-moz-placeholder,
#main_area .form input[type=url]:-moz-placeholder,
#main_area .form textarea:-moz-placeholder {
	color: #707070;
}
#main_area .form input[type=text]::-moz-placeholder,
#main_area .form input[type=email]::-moz-placeholder,
#main_area .form input[type=tel]::-moz-placeholder,
#main_area .form input[type=number]::-moz-placeholder,
#main_area .form input[type=password]::-moz-placeholder,
#main_area .form input[type=date]::-moz-placeholder,
#main_area .form input[type=url]::-moz-placeholder,
#main_area .form textarea::-moz-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:-ms-input-placeholder,
#main_area .form input[type=email]:-ms-input-placeholder,
#main_area .form input[type=tel]:-ms-input-placeholder,
#main_area .form input[type=number]:-ms-input-placeholder,
#main_area .form input[type=password]:-ms-input-placeholder,
#main_area .form input[type=date]:-ms-input-placeholder,
#main_area .form input[type=url]:-ms-input-placeholder,
#main_area .form textarea:-ms-input-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:-moz-placeholder, #main_area .form input[type=email]:-moz-placeholder, #main_area .form input[type=tel]:-moz-placeholder, #main_area .form input[type=number]:-moz-placeholder, #main_area .form input[type=password]:-moz-placeholder, #main_area .form input[type=date]:-moz-placeholder, #main_area .form input[type=url]:-moz-placeholder, #main_area .form textarea:-moz-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:-ms-input-placeholder, #main_area .form input[type=email]:-ms-input-placeholder, #main_area .form input[type=tel]:-ms-input-placeholder, #main_area .form input[type=number]:-ms-input-placeholder, #main_area .form input[type=password]:-ms-input-placeholder, #main_area .form input[type=date]:-ms-input-placeholder, #main_area .form input[type=url]:-ms-input-placeholder, #main_area .form textarea:-ms-input-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:placeholder-shown,
#main_area .form input[type=email]:placeholder-shown,
#main_area .form input[type=tel]:placeholder-shown,
#main_area .form input[type=number]:placeholder-shown,
#main_area .form input[type=password]:placeholder-shown,
#main_area .form input[type=date]:placeholder-shown,
#main_area .form input[type=url]:placeholder-shown,
#main_area .form textarea:placeholder-shown {
	color: #707070;
}
#main_area .form input[type=text].error,
#main_area .form input[type=email].error,
#main_area .form input[type=tel].error,
#main_area .form input[type=number].error,
#main_area .form input[type=password].error,
#main_area .form input[type=date].error,
#main_area .form input[type=url].error,
#main_area .form textarea.error,
#main_area .form select.error {
	color: #e03854;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 1px 1px #f00 inset;
	        box-shadow: 0 0 1px 1px #f00 inset;
}
#main_area .form input[type=text]:disabled,
#main_area .form input[type=email]:disabled,
#main_area .form input[type=tel]:disabled,
#main_area .form input[type=number]:disabled,
#main_area .form input[type=password]:disabled,
#main_area .form input[type=date]:disabled,
#main_area .form input[type=url]:disabled,
#main_area .form textarea:disabled,
#main_area .form select:disabled {
	border-color: #dcdcdc;
	color: #707070;
	-webkit-box-shadow: 0 0 1px #f8f8f8 inset;
	        box-shadow: 0 0 1px #f8f8f8 inset;
}
#main_area .form input[type=text]:disabled:-moz-placeholder, #main_area .form input[type=email]:disabled:-moz-placeholder, #main_area .form input[type=tel]:disabled:-moz-placeholder, #main_area .form input[type=number]:disabled:-moz-placeholder, #main_area .form input[type=password]:disabled:-moz-placeholder, #main_area .form input[type=date]:disabled:-moz-placeholder, #main_area .form input[type=url]:disabled:-moz-placeholder, #main_area .form textarea:disabled:-moz-placeholder, #main_area .form select:disabled:-moz-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:disabled:-ms-input-placeholder, #main_area .form input[type=email]:disabled:-ms-input-placeholder, #main_area .form input[type=tel]:disabled:-ms-input-placeholder, #main_area .form input[type=number]:disabled:-ms-input-placeholder, #main_area .form input[type=password]:disabled:-ms-input-placeholder, #main_area .form input[type=date]:disabled:-ms-input-placeholder, #main_area .form input[type=url]:disabled:-ms-input-placeholder, #main_area .form textarea:disabled:-ms-input-placeholder, #main_area .form select:disabled:-ms-input-placeholder {
	color: #707070;
}
#main_area .form input[type=text]:disabled:placeholder-shown,
#main_area .form input[type=email]:disabled:placeholder-shown,
#main_area .form input[type=tel]:disabled:placeholder-shown,
#main_area .form input[type=number]:disabled:placeholder-shown,
#main_area .form input[type=password]:disabled:placeholder-shown,
#main_area .form input[type=date]:disabled:placeholder-shown,
#main_area .form input[type=url]:disabled:placeholder-shown,
#main_area .form textarea:disabled:placeholder-shown,
#main_area .form select:disabled:placeholder-shown {
	color: #707070;
}
#main_area .form .form-field.error input[type=text],
#main_area .form .form-field.error input[type=email],
#main_area .form .form-field.error input[type=tel],
#main_area .form .form-field.error input[type=number],
#main_area .form .form-field.error input[type=password],
#main_area .form .form-field.error input[type=date],
#main_area .form .form-field.error input[type=url],
#main_area .form .form-field.error textarea,
#main_area .form .form-field.error select {
	color: #e03854;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 1px 1px #f00 inset;
	        box-shadow: 0 0 1px 1px #f00 inset;
}
#main_area .form label {
	cursor: pointer;
}
#main_area .form .form-field {
	width: 100%;
	display: block;
}
#main_area .form .form-field__title {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 16px;
}
#main_area .form .form-field_privacy {
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	color: #fff;
}
#main_area .form .form-field_privacy a {
	overflow-wrap: break-word;
	word-break: break-all;
	white-space: normal;
	color: #fff;
}
#main_area .form .required .form-field__title::after {
	content: "必須";
	background: #C70909;
	border-radius: 2px;
	padding: 2px 5px 3px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-style: normal;
	font-weight: 700;
	font-size: 11px;
	line-height: 1.75;
	letter-spacing: 0;
	color: #fff;
	display: block;
}
#main_area .form .required span.required {
	background: #C70909;
	border-radius: 2px;
	padding: 2px 5px 3px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-style: normal;
	font-weight: 700;
	font-size: 11px;
	line-height: 1.75;
	letter-spacing: 0;
	color: #fff;
	margin-left: 16px;
	vertical-align: middle;
	display: inline-block;
}
#main_area .form .form-field + .form-field {
	margin-top: 16px;
}
#main_area .form .input[type=checkbox] {
	-webkit-appearance: auto;
	   -moz-appearance: auto;
	        appearance: auto;
}
#main_area .form .agree,
#main_area .form .form--agree {
	margin-top: 8px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#main_area .form .agree input[type=checkbox],
#main_area .form .form--agree input[type=checkbox] {
	position: relative;
	z-index: -1;
}
#main_area .form .agree .input-text,
#main_area .form .form--agree .input-text {
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 5px;
}
#main_area .form .agree .input-text::before,
#main_area .form .form--agree .input-text::before {
	content: "";
	background: url(../img/icon_checkbox_blank.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: block;
}
#main_area .form .agree input[type=checkbox]:checked + .input-text::before,
#main_area .form .form--agree input[type=checkbox]:checked + .input-text::before {
	background-image: url(../img/icon_checkbox_checked.svg);
}
#main_area .form .agree_bottomformError.formError {
	top: 17px;
}
#main_area .form button {
	border: none;
	background: #FF3C1E;
	border-radius: 14px;
	margin: 32px auto 0;
	max-width: 324px;
	width: 100%;
	height: 64px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: normal;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	color: #FFFCFC;
}
#main_area .form button:hover {
	background: #CD3119;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .form button {
		font-size: 1.953125vw;
		height: 6.25vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .form button {
		font-size: 5.3333333333vw;
		height: 17.0666666667vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .form .form-field_privacy {
		font-size: clamp(12px,  3.7333333333vw , 14px);
	}
}
@media only screen and (max-width: 899px) {
	#main_area .form .form-field_privacy {
		font-size: clamp(12px,  3.7333333333vw , 14px);
	}
}

#main_area .cta {
	/* background: #173CBC; */
	background: #1051e2;
	padding: 0 20px;
	color: #fff;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta {
		padding: 40px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta {
		padding: 40px 20px;
	}
}
#main_area .cta ul {
	margin: 0 auto;
	max-width: 1160px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
#main_area .cta ul li {
	padding: 40px 0;
	width: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta ul li {
		padding: 0 18px;
		width: 100%;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta ul li {
		padding: 0;
		width: 100%;
		display: block;
	}
}
#main_area .cta ul li + li {
	border-left: solid 1px rgba(255, 255, 255, 0.4);
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta ul li + li {
		border-top: solid 1px rgba(255, 255, 255, 0.4);
		border-left: none;
		margin-top: 32px;
		padding-top: 32px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta ul li + li {
		border-top: solid 1px rgba(255, 255, 255, 0.4);
		border-left: none;
		margin-top: 32px;
		padding-top: 32px;
	}
}
#main_area .cta ul li p {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.33;
	text-align: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta ul li p {
		font-size: 1.5625vw;
		line-height: 1.5;
		letter-spacing: 0;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta ul li p {
		font-size: 4.2666666667vw;
		line-height: 1.5;
		letter-spacing: 0;
	}
}
#main_area .cta ul a {
	background-color: #fff;
	border-radius: 12px;
	margin: 24px auto 0;
	padding: 17px;
	max-width: 324px;
	width: 100%;
	display: block;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: normal;
	letter-spacing: 0;
	text-align: center;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .cta ul a {
		padding: 12px;
		max-width: 100%;
		font-size: 1.7578125vw;
		line-height: 2;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .cta ul a {
		padding: 12px;
		max-width: 100%;
		font-size: 4.8vw;
		line-height: 2;
	}
}
#main_area .cta ul a:hover {
	background-color: #D9D9D9;
}
#main_area .cta ul a.button_red {
	background-color: #FF3C1E;
	color: #fff;
}
#main_area .cta ul a.button_red:hover {
	background-color: #CD3119;
}

#pSERVICES #main_area .wrap {
	max-width: 1440px;
}

#pSERVICES #main_area .firstview .wrap {
	max-width: 100%;
}

#main_area .firstview {
	background: #fff url(../img/firstview_bg.jpg) no-repeat center;
	background-size: cover;
	color: #fff;
	position: relative;
	overflow: hidden;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview {
		background-image: none;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview {
		background-image: none;
	}
}
#main_area .firstview > * {
	position: relative;
	z-index: 1;
}
#main_area .firstview .mask-bg {
	display: none;
}
#main_area .firstview .wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview .wrap {
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview .wrap {
		display: block;
	}
}
#main_area .firstview__main, #main_area .firstview__form {
	min-height: calc(100vh - 80px);
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__main, #main_area .firstview__form {
		min-height: auto;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__main, #main_area .firstview__form {
		min-height: auto;
		display: block;
	}
}
#main_area .firstview__main {
	padding: 56px 100px 40px;
	width: calc(100% - 408px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__main {
		padding: 46px 100px 30px;
		width: calc(100% - 50.3703703704vh);
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__main {
		padding: 3.8888888889vw 6.9444444444vw 2.7777777778vw;
		width: calc(100% - 28.3333333333vw);
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__main {
		background: #fff url(../img/firstview_bg_sp.min.jpg) no-repeat center;
		background-size: cover;
		padding: 40px 20px;
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__main {
		background: #fff url(../img/firstview_bg_sp.min.jpg) no-repeat center;
		background-size: cover;
		padding: 40px 20px;
		width: 100%;
	}
}
#main_area .firstview__main--wrap {
	width: 100%;
	position: relative;
}
#main_area .firstview__main h1 {
	background: #0F58FB;
	padding: 0 16px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: block;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2;
	color: #fff;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__main h1 {
		padding: 0 1.975308642vh;
		font-size: 1.975308642vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__main h1 {
		padding: 0 1.1111111111vw;
		font-size: 1.25vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__main h1 {
		padding: 0 1.5625vw;
		font-size: 1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__main h1 {
		padding: 0 4.2666666667vw;
		font-size: 4.2666666667vw;
	}
}
#main_area .firstview__main .h2-sub {
	margin: 20px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.75;
	color: #0F58FB;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__main .h2-sub {
		font-size: 1.975308642vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__main .h2-sub {
		font-size: 1.25vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__main .h2-sub {
		margin: 18px 0 0;
		font-size: 1.46484375vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__main .h2-sub {
		margin: 18px 0 0;
		font-size: 4vw;
	}
}
#main_area .firstview__main .title-main {
	margin: 20px 0 0;
	width: 100%;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__main .title-main {
		width: 80%;
	}
}
#main_area .firstview__points {
	margin: 40px 0 0;
	max-width: 550px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 6px 0;
}
#main_area .firstview__points li {
	background: #fff;
	padding: 6px 18px 4px;
	margin: 0 0 0 -6px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	color: #0F58FB;
	letter-spacing: 0;
	white-space: nowrap;
	-webkit-clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
	        clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
}
#main_area .firstview__form {
	/* background: #173CBC; */
	background: #1051e2;
	padding: 45px 36px;
	width: 408px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form {
		width: 50.3703703704vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form {
		padding: 3.125vw 2.5vw;
		width: 28.3333333333vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form {
		/* background: #173CBC; */
		background: #1051e2;
		padding: 45px 20px;
		width: 100%;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form {
		/* background: #173CBC; */
		background: #1051e2;
		padding: 45px 20px;
		width: 100%;
		display: block;
	}
}
#main_area .firstview__form--wrap {
	width: 100%;
}
#main_area .firstview__form--title {
	margin: 0 auto;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	letter-spacing: 0;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	gap: 0;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--title {
		font-size: 1.975308642vh;
		gap: 0.2469135802vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--title {
		font-size: 1.1111111111vw;
		gap: 0.1388888889vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--title {
		font-size: 1.5625vw;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 0.9765625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--title {
		font-size: 4.2666666667vw;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		gap: 2.6666666667vw;
	}
}
#main_area .firstview__form--title::before, #main_area .firstview__form--title::after {
	content: "";
	background: #fff;
	width: 1px;
	height: 2em;
	display: block;
	position: relative;
	top: -0.3em;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--title::before, #main_area .firstview__form--title::after {
		top: -0.2em;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--title::before, #main_area .firstview__form--title::after {
		top: -0.2em;
	}
}
#main_area .firstview__form--title::before {
	left: -0.5em;
	-webkit-transform: rotate(-30deg);
	        transform: rotate(-30deg);
}
#main_area .firstview__form--title::after {
	right: -0.5em;
	-webkit-transform: rotate(30deg);
	        transform: rotate(30deg);
}
#main_area .firstview__form--title span span {
	text-decoration: underline;
	text-underline-offset: 8px;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--title span span {
		text-underline-offset: 0.987654321vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--title span span {
		text-underline-offset: 0.5555555556vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--title span span {
		text-underline-offset: 0.78125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--title span span {
		text-underline-offset: 2.1333333333vw;
	}
}
#main_area .firstview__form--catchphrase {
	margin: 16px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	color: #fff;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--catchphrase {
		margin: 1.975308642vh 0 0;
		font-size: 2.962962963vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--catchphrase {
		margin: 1.1111111111vw 0 0;
		font-size: 1.6666666667vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--catchphrase {
		margin: 1.5625vw 0 0;
		font-size: 2.34375vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--catchphrase {
		margin: 4.2666666667vw 0 0;
		font-size: 6.4vw;
	}
}
#main_area .firstview__form--inputs {
	background: #fff;
	border-radius: 20px;
	margin: 16px 0 0;
	padding: 24px;
	display: block;
	position: relative;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--inputs {
		border-radius: 2.4691358025vh;
		margin: 1.975308642vh 0 0;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--inputs {
		border-radius: 1.3888888889vw;
		margin: 1.1111111111vw 0 0;
		padding: 1.6666666667vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--inputs {
		border-radius: 1.953125vw;
		margin: 1.5625vw 0 0;
		padding: 32px 24px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--inputs {
		border-radius: 5.3333333333vw;
		margin: 4.2666666667vw 0 0;
		padding: 32px 24px;
	}
}
#main_area .firstview__form--inputs .form-field {
	position: relative;
}
#main_area .firstview__form--inputs .form-field + .form-field {
	margin-top: 24px;
	/* @media screen and (min-width:1441px) {
		margin-top: functions.calcVhPcFV(24);
	}
	@media screen and (max-width:1440px) {
		margin-top: functions.calcVwPc(24);
	} */
}
#main_area .firstview__form--inputs .form--title {
	display: none;
}
#main_area .firstview__form--inputs input[type=text] {
	margin: 0 auto;
	height: 38px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	color: #000;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--inputs input[type=text] {
		height: 4.6913580247vh;
		font-size: 1.7283950617vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--inputs input[type=text] {
		height: 2.6388888889vw;
		font-size: 0.9722222222vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--inputs input[type=text] {
		height: 3.7109375vw;
		font-size: 1.3671875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--inputs input[type=text] {
		height: 10.1333333333vw;
		font-size: 3.7333333333vw;
	}
}
#main_area .firstview__form--inputs .formError {
	margin: 0 !important;
	position: static !important;
	top: 0 !important;
	left: 0 !important;
}
#main_area .firstview__form--inputs .form--agree {
	margin: 0 auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	text-align: center;
}
#main_area .firstview__form--inputs .form--agree input[type=checkbox] {
	width: 10px;
	height: 10px;
	position: relative;
	left: -10px;
	z-index: -1;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--inputs .form--agree input[type=checkbox] {
		width: 1.2345679012vh;
		height: 1.2345679012vh;
		left: -1.2345679012vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--inputs .form--agree input[type=checkbox] {
		width: 0.6944444444vw;
		height: 0.6944444444vw;
		left: -0.6944444444vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--inputs .form--agree input[type=checkbox] {
		width: 0.9765625vw;
		height: 0.9765625vw;
		left: -0.9765625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--inputs .form--agree input[type=checkbox] {
		width: 2.6666666667vw;
		height: 2.6666666667vw;
		left: -2.6666666667vw;
	}
}
#main_area .firstview__form--inputs .form--agree li {
	position: relative;
	overflow: hidden;
}
#main_area .firstview__form--inputs .form--agree .input-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 5px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	color: #000;
	position: relative;
	top: -16px;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--inputs .form--agree .input-text {
		gap: 0.6172839506vh;
		font-size: 1.4814814815vh;
		top: -1.975308642vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--inputs .form--agree .input-text {
		gap: 0.3472222222vw;
		font-size: 0.8333333333vw;
		top: -1.1111111111vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--inputs .form--agree .input-text {
		gap: 0.48828125vw;
		font-size: 1.171875vw;
		top: -1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--inputs .form--agree .input-text {
		gap: 1.3333333333vw;
		font-size: 3.2vw;
		top: -4.2666666667vw;
	}
}
#main_area .firstview__form--inputs .form--agree .input-text::before {
	content: "";
	background: url(../img/icon_checkbox_blank.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: block;
}
@media screen and (min-width: 1441px) {
	#main_area .firstview__form--inputs .form--agree .input-text::before {
		width: 2.4691358025vh;
		height: 2.4691358025vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .firstview__form--inputs .form--agree .input-text::before {
		width: 1.3888888889vw;
		height: 1.3888888889vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .firstview__form--inputs .form--agree .input-text::before {
		width: 1.953125vw;
		height: 1.953125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .firstview__form--inputs .form--agree .input-text::before {
		width: 5.3333333333vw;
		height: 5.3333333333vw;
	}
}
#main_area .firstview__form button {
	max-width: 100% !important;
	width: 100% !important;
}

@media screen and (min-width: 1199px) {
	#main_area .firstview__form {
		container-type: size;
	}
}

@container (min-height: 100vh) {
	@media screen and (min-width: 1199px) {
		#main_area .firstview__form--wrap {
			min-height: 100%;
		}
	}
}
#main_area .anchorlinks {
	background: #333;
}
#main_area .anchorlinks ul {
	padding: 19px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .anchorlinks ul {
		padding: 16px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .anchorlinks ul {
		padding: 16px 20px;
	}
}
#main_area .anchorlinks ul li {
	display: contents;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .anchorlinks ul li {
		padding: 16px 0;
		width: 33%;
		text-align: center;
		display: block;
	}
	#main_area .anchorlinks ul li:nth-child(1), #main_area .anchorlinks ul li:nth-child(2) {
		width: 50%;
	}
	#main_area .anchorlinks ul li:nth-child(n+3) {
		border-top: solid 1px #555;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .anchorlinks ul li {
		padding: 16px 0;
		width: 33%;
		text-align: center;
		display: block;
	}
	#main_area .anchorlinks ul li:nth-child(1), #main_area .anchorlinks ul li:nth-child(2) {
		width: 50%;
	}
	#main_area .anchorlinks ul li:nth-child(n+3) {
		border-top: solid 1px #555;
	}
}
#main_area .anchorlinks ul a {
	padding: 0 1.8055555556vw 12px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-height: 48px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: min(1.25vw, 18px);
	line-height: 2;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .anchorlinks ul a {
		padding: 0 0 8px;
		max-width: 100%;
		min-height: auto;
		width: 100%;
		font-size: 1.5625vw;
		letter-spacing: 0;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .anchorlinks ul a {
		padding: 0 0 8px;
		max-width: 100%;
		min-height: auto;
		width: 100%;
		font-size: 3.7333333333vw;
		letter-spacing: 0;
	}
}
#main_area .anchorlinks ul a::after {
	content: "";
	background: url(../img/icon_anchorlinks.svg) no-repeat center;
	background-size: contain;
	width: 12px;
	height: 8px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	        transform: translate3d(-50%, 0, 0);
}
#main_area .anchorlinks ul li + li a {
	border-left: solid 2px #555;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .anchorlinks ul li + li a {
		border-width: 1px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .anchorlinks ul li + li a {
		border-width: 1px;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .anchorlinks ul li:nth-child(3) a,
	#main_area .anchorlinks ul li:nth-child(6) a,
	#main_area .anchorlinks ul li:nth-child(9) a {
		border: none;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .anchorlinks ul li:nth-child(3) a,
	#main_area .anchorlinks ul li:nth-child(6) a,
	#main_area .anchorlinks ul li:nth-child(9) a {
		border: none;
	}
}

#main_area .aboutus {
	background: #fff;
	padding: 120px 20px;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus {
		padding: 80px 20px;
	}
}
#main_area .aboutus > * {
	position: relative;
	z-index: 1;
}
#main_area .aboutus hgroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#main_area .aboutus hgroup h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	display: block;
	color: #000;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus hgroup h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus hgroup h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .aboutus hgroup .auxiliary {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.12;
	text-align: center;
	color: #000;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus hgroup .auxiliary {
		font-size: 4.6875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus hgroup .auxiliary {
		font-size: 12.8vw;
	}
}
#main_area .aboutus hgroup .catchphrase {
	margin: 32px auto 0;
	width: 100%;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.25;
	text-align: center;
	color: #000;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.8em;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus hgroup .catchphrase {
		margin-top: 24px;
		font-size: 2.34375vw;
		line-height: 1.3333333333;
		letter-spacing: 0;
		gap: 0;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus hgroup .catchphrase {
		margin-top: 24px;
		font-size: 6.4vw;
		line-height: 1.3333333333;
		letter-spacing: 0;
		gap: 0;
	}
}
#main_area .aboutus hgroup .catchphrase::before, #main_area .aboutus hgroup .catchphrase::after {
	content: "";
	background: #000;
	min-width: 1em;
	width: 1em;
	height: 1px;
	display: block;
}
#main_area .aboutus hgroup .catchphrase-sub {
	margin: 20px auto 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	color: #000;
	-webkit-box-ordinal-group: 5;
	-webkit-order: 4;
	    -ms-flex-order: 4;
	        order: 4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus hgroup .catchphrase-sub {
		margin-top: 16px;
		font-size: 1.7578125vw;
		line-height: 1.5555555556;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus hgroup .catchphrase-sub {
		margin-top: 16px;
		font-size: 4.8vw;
		line-height: 1.5555555556;
	}
}
#main_area .aboutus hgroup .read {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: left;
	color: #000;
	-webkit-box-ordinal-group: 6;
	-webkit-order: 5;
	    -ms-flex-order: 5;
	        order: 5;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus hgroup .read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus hgroup .read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .aboutus__list {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 38px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus__list {
		margin-top: 32px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus__list {
		margin-top: 32px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		gap: 20px;
	}
}
#main_area .aboutus__list li {
	width: calc((100% - 114px) / 4);
	display: block;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .aboutus__list li {
		width: calc((100% - 20px) / 2);
	}
}
@media only screen and (max-width: 899px) {
	#main_area .aboutus__list li {
		width: calc((100% - 20px) / 2);
	}
}
#main_area .aboutus__list img {
	max-width: 100%;
	width: 100%;
	height: auto;
	display: block;
}

#main_area .example {
	background-color: #333;
	padding: 120px 20px;
	color: #fff;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example {
		padding: 80px 20px;
	}
}
#main_area .example > * {
	position: relative;
	z-index: 1;
}
#main_area .example hgroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#main_area .example hgroup h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	display: block;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example hgroup h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example hgroup h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .example hgroup .auxiliary {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.12;
	text-align: center;
	color: #fff;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example hgroup .auxiliary {
		font-size: 4.6875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example hgroup .auxiliary {
		font-size: 12.8vw;
	}
}
#main_area .example__list {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 40px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 40px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 40px;
	}
}
#main_area .example__list--cell {
	width: calc((100% - 80px) / 3);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	text-align: left;
	color: #fff;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list--cell {
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list--cell {
		width: 100%;
	}
}
#main_area .example__list .category {
	background: #0F58FB;
	padding: 1px 6px 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.83;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: block;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list .category {
		font-size: 1.171875vw;
		line-height: 1.8333333333;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list .category {
		font-size: 3.2vw;
		line-height: 1.8333333333;
	}
}
#main_area .example__list h3 {
	margin-top: 16px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list h3 {
		font-size: 1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list h3 {
		font-size: 4.2666666667vw;
	}
}
#main_area .example__list picture {
	margin: 12px auto 0;
	/* background: #0F58FB; */
	/* background: #173CBC; */
	background: #1051e2;
	width: 100%;
	text-align: center;
	display: block;
	position: relative;
	overflow: visible;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
#main_area .example__list img {
	margin: 0 auto;
	max-width: 100%;
	width: auto;
	max-height: 203px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list img {
		max-height: 18.45703125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list img {
		max-height: 50.4vw;
	}
}
#main_area .example__list p {
	margin: 11px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0;
	-webkit-box-ordinal-group: 5;
	-webkit-order: 4;
	    -ms-flex-order: 4;
	        order: 4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__list p {
		margin-top: 8px;
		font-size: 1.46484375vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__list p {
		margin-top: 8px;
		font-size: 4vw;
		line-height: 1.6;
	}
}
#main_area .example__cta {
	background: -webkit-gradient(linear, left bottom, left top, from(#444444), to(#444444)), -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), #FFFFFF;
	background: linear-gradient(0deg, #444444, #444444), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #FFFFFF;
	margin: 64px 0 0;
	padding: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	color: #fff;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__cta {
		margin: 48px 0 0;
		padding: 20px;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__cta {
		margin: 48px 0 0;
		padding: 20px;
		display: block;
	}
}
#main_area .example__cta p {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 32px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: normal;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__cta p {
		font-size: 1.953125vw;
		line-height: 1.4;
		text-align: center;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__cta p {
		font-size: 5.3333333333vw;
		line-height: 1.4;
		text-align: center;
		display: block;
	}
}
#main_area .example__cta--mkr {
	background: #0F58FB;
	padding: 8px 12px;
	display: block;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__cta--mkr {
		margin: 0 auto 16px;
		padding: 1px 12px 0;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		font-size: 1.953125vw;
		line-height: 2;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__cta--mkr {
		margin: 0 auto 16px;
		padding: 1px 12px 0;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		font-size: 5.3333333333vw;
		line-height: 2;
	}
}
#main_area .example__cta--button {
	background: #FF3C1E;
	border-radius: 14px;
	padding: 12px;
	width: 324px;
	height: 64px;
	display: block;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 40px;
	text-align: center;
	color: #FFFCFC;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .example__cta--button {
		margin: 24px auto 0;
		padding: 0 12px;
		width: 100%;
		height: 5.859375vw;
		font-size: 1.7578125vw;
		line-height: 3.3333333333;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .example__cta--button {
		margin: 24px auto 0;
		padding: 0 12px;
		width: 100%;
		height: 16vw;
		font-size: 4.8vw;
		line-height: 3.3333333333;
	}
}
#main_area .example__cta--button:hover {
	background-color: #CD3119;
}

#main_area .member {
	background: #fff;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member {
		padding: 80px 20px;
	}
}
#main_area .member > * {
	position: relative;
	z-index: 1;
}
#main_area .member hgroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#main_area .member hgroup h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	display: block;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member hgroup h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member hgroup h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .member hgroup .auxiliary {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.12;
	text-align: center;
	color: #000;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member hgroup .auxiliary {
		font-size: 4.6875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member hgroup .auxiliary {
		font-size: 12.8vw;
	}
}
#main_area .member hgroup .read {
	margin: 32px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: center;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member hgroup .read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member hgroup .read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .member__list {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 40px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
#main_area .member__list--cell {
	background: #EDEDED;
	padding: 24px;
	width: calc((100% - 80px) / 3);
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member__list--cell {
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member__list--cell {
		width: 100%;
	}
}
#main_area .member__list--cell > div {
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}
#main_area .member__list h3 {
	margin: 12px auto 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member__list h3 {
		margin-top: 12px;
		font-size: 1.5625vw;
		line-height: 1.25;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member__list h3 {
		margin-top: 12px;
		font-size: 4.2666666667vw;
		line-height: 1.25;
	}
}
#main_area .member__list img {
	margin: 0 auto;
	width: 80px;
	height: 80px;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
#main_area .member__list p {
	margin: 16px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7142857143;
	letter-spacing: 0;
	text-align: left;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .member__list p {
		font-size: 1.3671875vw;
		line-height: 1.7142857143;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .member__list p {
		font-size: 3.7333333333vw;
		line-height: 1.7142857143;
	}
}

#main_area .pricing {
	background: #EDEDED;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing {
		padding: 80px 20px;
	}
}
#main_area .pricing > * {
	position: relative;
	z-index: 1;
}
#main_area .pricing hgroup h2 {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing hgroup h2 {
		font-size: 3.125vw;
		line-height: 1.25;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing hgroup h2 {
		font-size: 8.5333333333vw;
		line-height: 1.25;
		text-align: center;
	}
}
#main_area .pricing hgroup .read {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing hgroup .read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing hgroup .read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .pricing__cta {
	background: #fff;
	margin: 56px auto 0;
	padding: 32px;
	width: 100%;
	text-align: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing__cta {
		margin-top: 32px;
		padding: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing__cta {
		margin-top: 32px;
		padding: 20px;
	}
}
#main_area .pricing__cta p {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.6666666667;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing__cta p {
		font-size: 1.953125vw;
		line-height: 1.4;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing__cta p {
		font-size: 5.3333333333vw;
		line-height: 1.4;
	}
}
#main_area .pricing__cta .strong {
	color: #0F58FB;
}
#main_area .pricing__cta a {
	margin: 32px auto 0;
	padding: 12px;
	background: #000;
	border-radius: 14px;
	max-width: 430px;
	width: 100%;
	min-height: 64px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .pricing__cta a {
		font-size: 1.7578125vw;
		line-height: 1.5555555556;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .pricing__cta a {
		font-size: 4.8vw;
		line-height: 1.5555555556;
	}
}

#main_area .workflow {
	background: #fff;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow {
		padding: 80px 20px;
	}
}
#main_area .workflow > * {
	position: relative;
	z-index: 1;
}
#main_area .workflow hgroup h2 {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow hgroup h2 {
		font-size: 3.125vw;
		line-height: 1.25;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow hgroup h2 {
		font-size: 8.5333333333vw;
		line-height: 1.25;
		text-align: center;
	}
}
#main_area .workflow hgroup .read {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow hgroup .read {
		margin-top: 24px;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow hgroup .read {
		margin-top: 24px;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .workflow p.notes {
	margin: 40px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 1.5;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow p.notes {
		font-size: 1.171875vw;
		line-height: 1.5;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow p.notes {
		font-size: 3.2vw;
		line-height: 1.5;
	}
}
#main_area .workflow__list {
	margin: 56px 0 0;
	position: relative;
	z-index: 0;
	counter-reset: workflowNum 0;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list {
		margin-top: 32px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list {
		margin-top: 32px;
	}
}
#main_area .workflow__list:before {
	content: "";
	background: #0F58FB;
	width: 1px;
	display: block;
	position: absolute;
	top: 70px;
	bottom: 0;
	left: 70px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list:before {
		top: 32px;
		left: 32px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list:before {
		top: 32px;
		left: 32px;
	}
}
#main_area .workflow__list--cell {
	width: 100%;
	min-height: 140px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 56px;
	position: relative;
	z-index: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list--cell {
		min-height: 64px;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 16px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list--cell {
		min-height: 64px;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 16px;
	}
}
#main_area .workflow__list--cell:before {
	counter-increment: workflowNum 1;
	content: counter(workflowNum, decimal-leading-zero) " ";
	background: #fff;
	border: solid 1px #0F58FB;
	width: 140px;
	height: 140px;
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 56px;
	line-height: normal;
	color: #0F58FB;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list--cell:before {
		width: 64px;
		height: 64px;
		font-size: 24px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list--cell:before {
		width: 64px;
		height: 64px;
		font-size: 24px;
	}
}
* + #main_area .workflow__list--cell {
	margin-top: 40px;
}
#main_area .workflow__list--cell:last-child:after {
	content: "";
	background: #fff;
	width: 10px;
	position: absolute;
	top: 10px;
	bottom: 0;
	left: 65px;
	z-index: 0;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list--cell:last-child:after {
		top: 10px;
		left: 27px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list--cell:last-child:after {
		top: 10px;
		left: 27px;
	}
}
#main_area .workflow__list--cell--text {
	width: calc(100% - 56px - 140px);
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list--cell--text {
		width: calc(100% - 16px - 64px);
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list--cell--text {
		width: calc(100% - 16px - 64px);
	}
}
#main_area .workflow__list h3 {
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.3333333333;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list h3 {
		font-size: 2.34375vw;
		line-height: 1.2;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list h3 {
		font-size: 6.4vw;
		line-height: 1.2;
	}
}
#main_area .workflow__list h3 span {
	font-size: 18px;
	line-height: 1.7777777778;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list h3 span {
		font-size: 1.5625vw;
		line-height: 1.5;
		margin-top: 3px;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list h3 span {
		font-size: 4.2666666667vw;
		line-height: 1.5;
		margin-top: 3px;
		display: block;
	}
}
#main_area .workflow__list p {
	margin: 16px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .workflow__list p {
		font-size: 1.46484375vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .workflow__list p {
		font-size: 4vw;
		line-height: 1.6;
	}
}
#main_area .workflow__list p.notes {
	margin: 8px 0 0;
}

#main_area .faq {
	background: #EDEDED;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq {
		padding: 80px 20px;
	}
}
#main_area .faq > * {
	position: relative;
	z-index: 1;
}
#main_area .faq hgroup h2 {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq hgroup h2 {
		font-size: 3.125vw;
		line-height: 1.25;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq hgroup h2 {
		font-size: 8.5333333333vw;
		line-height: 1.25;
		text-align: center;
	}
}
#main_area .faq hgroup .read {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq hgroup .read {
		margin-top: 24px;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq hgroup .read {
		margin-top: 24px;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .faq__list {
	margin: 56px 0 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 24px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list {
		margin-top: 32px;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list {
		margin-top: 32px;
		gap: 20px;
	}
}
#main_area .faq__list--cell {
	background: #fff;
	padding: 40px;
	width: 100%;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--cell {
		padding: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--cell {
		padding: 20px;
	}
}
#main_area .faq__list--question {
	min-height: 56px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 24px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--question {
		min-height: auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 12px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--question {
		min-height: auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 12px;
	}
}
#main_area .faq__list--question:before {
	content: "Q";
	background: #0F58FB;
	width: 56px;
	height: 56px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: normal;
	color: #fff;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--question:before {
		width: 3.90625vw;
		height: 3.90625vw;
		font-size: 1.953125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--question:before {
		width: 10.6666666667vw;
		height: 10.6666666667vw;
		font-size: 5.3333333333vw;
	}
}
#main_area .faq__list--question h3 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 24px;
	line-height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--question h3 {
		font-size: 1.953125vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--question h3 {
		font-size: 5.3333333333vw;
		line-height: 1.6;
	}
}
#main_area .faq__list--answer {
	border-top: solid 1px #D1D1D1;
	margin-top: 24px;
	padding-top: 24px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
}
#main_area .faq__list--answer p {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--answer p {
		font-size: 1.46484375vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--answer p {
		font-size: 4vw;
		line-height: 1.6;
	}
}
#main_area .faq__list--answer:before {
	content: "A.";
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.4;
	color: #0F58FB;
	white-space: nowrap;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__list--answer:before {
		font-size: 1.7578125vw;
		line-height: 1.5555555556;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__list--answer:before {
		font-size: 4.8vw;
		line-height: 1.5555555556;
	}
}
#main_area .faq__button {
	background: #000;
	border-radius: 14px;
	margin: 56px 0 0 auto;
	padding: 5px 24px;
	max-width: 334px;
	width: 100%;
	height: 64px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: normal;
	letter-spacing: 0.3px;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	    -ms-flex-pack: left;
	        justify-content: left;
	text-align: left;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .faq__button {
		max-width: 100%;
		height: 6.25vw;
		font-size: 1.46484375vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .faq__button {
		max-width: 100%;
		height: 17.0666666667vw;
		font-size: 4vw;
	}
}
#main_area .faq__button:after {
	content: "";
	background: url(../img/icon_arrow_white.svg) no-repeat center;
	background-size: contain;
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	-webkit-transform: translate3d(0, -50%, 0);
	        transform: translate3d(0, -50%, 0);
}
#main_area .faq__button:hover {
	background-color: #555555;
}

#main_area .servicelist {
	background: #fff;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist {
		padding: 80px 20px;
	}
}
#main_area .servicelist > * {
	position: relative;
	z-index: 1;
}
#main_area .servicelist h2 {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist h2 {
		font-size: 3.125vw;
		line-height: 1.25;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist h2 {
		font-size: 8.5333333333vw;
		line-height: 1.25;
		text-align: center;
	}
}
#main_area .servicelist__list {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 40px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
#main_area .servicelist__list--cell {
	background: #EDEDED;
	padding: 40px;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-align: left;
	gap: 40px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist__list--cell {
		padding: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist__list--cell {
		padding: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
#main_area .servicelist__list--cell--text {
	width: calc(100% - 40px - 386px);
}
#main_area .servicelist__list--cell--picture {
	width: 386px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist__list--cell--text, #main_area .servicelist__list--cell--picture {
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist__list--cell--text, #main_area .servicelist__list--cell--picture {
		width: 100%;
	}
}
#main_area .servicelist__list--cell--title {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.6666666667;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist__list--cell--title {
		font-size: 1.953125vw;
		line-height: 1.8;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist__list--cell--title {
		font-size: 5.3333333333vw;
		line-height: 1.8;
	}
}
#main_area .servicelist__list--cell--read {
	margin: 16px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .servicelist__list--cell--read {
		margin-top: 8px;
		font-size: 1.46484375vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .servicelist__list--cell--read {
		margin-top: 8px;
		font-size: 4vw;
		line-height: 1.6;
	}
}

#main_area .services {
	background: #fff url(../img/services_bg.jpg) no-repeat top center;
	background-size: cover;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services {
		background-image: url(../img/services_bg_sp.min.jpg);
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services {
		background-image: url(../img/services_bg_sp.min.jpg);
		padding: 80px 20px;
	}
}
#main_area .services > * {
	position: relative;
	z-index: 1;
}
#main_area .services hgroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#main_area .services hgroup h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	display: block;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services hgroup h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services hgroup h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .services hgroup .auxiliary {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.12;
	text-align: center;
	color: #000;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services hgroup .auxiliary {
		font-size: 4.6875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services hgroup .auxiliary {
		font-size: 12.8vw;
	}
}
#main_area .services hgroup .read {
	margin: 32px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: center;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services hgroup .read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services hgroup .read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .services__list {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 40px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 40px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 40px;
	}
}
#main_area .services__list--cell {
	width: calc((100% - 80px) / 3);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	text-align: left;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list--cell {
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list--cell {
		width: 100%;
	}
}
#main_area .services__list h3 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.1666666667;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list h3 {
		font-size: 1.953125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list h3 {
		font-size: 5.3333333333vw;
	}
}
#main_area .services__list picture {
	margin: 24px auto 0;
	/* background: #0F58FB; */
	/* background: #173CBC; */
	background: #1051e2;
	width: 100%;
	text-align: center;
	display: block;
	position: relative;
	overflow: visible;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list picture {
		margin-top: 16px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list picture {
		margin-top: 16px;
	}
}
#main_area .services__list img {
	margin: 0 auto;
	max-width: 100%;
	width: auto;
	max-height: 203px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list img {
		max-height: 18.45703125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list img {
		max-height: 50.4vw;
	}
}
#main_area .services__list p {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__list p {
		margin-top: 16px;
		font-size: 1.46484375vw;
		line-height: 1.6;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__list p {
		margin-top: 16px;
		font-size: 4vw;
		line-height: 1.6;
	}
}
#main_area .services h3.title {
	margin-top: 80px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
	text-align: center;
	color: #000;
}
#main_area .services p.h3-sub {
	margin-top: 8px;
	font-family: "Ryo Gothic PlusN";
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
	color: #000;
}
#main_area .services p.h3-sub + p.read {
	margin: 32px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: left;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services p.h3-sub + p.read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services p.h3-sub + p.read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .services__coverage {
	margin: 56px auto 0;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 37px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__coverage {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__coverage {
		margin-top: 32px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 20px;
	}
}
#main_area .services__coverage--cell {
	background: #fff;
	padding: 24px;
	width: calc((100% - 111px) / 4);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__coverage--cell {
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__coverage--cell {
		width: 100%;
	}
}
#main_area .services__coverage h4 {
	margin: 16px auto 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5555555556;
	text-align: center;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__coverage h4 {
		margin-top: 12px;
		font-size: 1.5625vw;
		line-height: 1.25;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__coverage h4 {
		margin-top: 12px;
		font-size: 4.2666666667vw;
		line-height: 1.25;
	}
}
#main_area .services__coverage img {
	margin: 0 auto;
	width: auto;
	height: 48px;
	display: block;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
#main_area .services__coverage p {
	margin: 12px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: left;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .services__coverage p {
		font-size: 1.3671875vw;
		line-height: 1.7142857143;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .services__coverage p {
		font-size: 3.7333333333vw;
		line-height: 1.7142857143;
	}
}

#main_area .about {
	background: #EDEDED;
	padding: 120px 20px;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about {
		padding: 80px 20px;
	}
}
#main_area .about > * {
	position: relative;
	z-index: 1;
}
#main_area .about hgroup h2 {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 40px;
	line-height: 1.4;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about hgroup h2 {
		font-size: 3.125vw;
		line-height: 1.25;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about hgroup h2 {
		font-size: 8.5333333333vw;
		line-height: 1.25;
		text-align: center;
	}
}
#main_area .about hgroup .read {
	margin: 24px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about hgroup .read {
		margin-top: 24px;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: left;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about hgroup .read {
		margin-top: 24px;
		font-size: 4vw;
		line-height: 1.6;
		text-align: left;
	}
}
#main_area .about table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	empty-cells: show;
	margin: 56px 0 0;
	width: 100%;
	table-layout: fixed;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about table {
		margin-top: 32px;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about table {
		margin-top: 32px;
		display: block;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px), only screen and (max-width: 899px) {
	#main_area .about thead, #main_area .about tbody, #main_area .about tr {
		display: block;
	}
}
#main_area .about th, #main_area .about td {
	border-style: solid none;
	border-width: 1px;
	border-color: #D1D1D1;
	padding: 24px 20px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: left;
	vertical-align: top;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about th, #main_area .about td {
		padding-left: 2px;
		padding-right: 2px;
		font-size: 1.46484375vw;
		line-height: 1.6;
		display: block;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about th, #main_area .about td {
		padding-left: 2px;
		padding-right: 2px;
		font-size: 4vw;
		line-height: 1.6;
		display: block;
	}
}
#main_area .about th {
	width: 228px;
	font-weight: 700;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about th {
		border-style: solid none none;
		padding-bottom: 8px;
		width: 100%;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about th {
		border-style: solid none none;
		padding-bottom: 8px;
		width: 100%;
	}
}
#main_area .about td {
	width: calc(100% - 228px);
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about td {
		border-style: none none solid;
		width: 100%;
		padding-top: 0;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about td {
		border-style: none none solid;
		width: 100%;
		padding-top: 0;
		letter-spacing: 0;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .about tr + tr th {
		border-top-style: none;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .about tr + tr th {
		border-top-style: none;
	}
}

#main_area .download {
	/* background: #173CBC; */
	background: #1051e2;
	padding: 120px 20px;
	color: #fff;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download {
		padding: 80px 20px;
	}
}
#main_area .download > * {
	position: relative;
	z-index: 1;
}
#main_area .download hgroup {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}
#main_area .download hgroup h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	display: block;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download hgroup h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download hgroup h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .download hgroup .auxiliary {
	font-family: brother-1816, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 80px;
	line-height: 1.12;
	text-align: center;
	color: #fff;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download hgroup .auxiliary {
		font-size: 4.6875vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download hgroup .auxiliary {
		font-size: 12.8vw;
	}
}
#main_area .download hgroup .read {
	margin: 32px 0 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.75;
	text-align: center;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download hgroup .read {
		margin: 24px 0 0;
		font-size: 1.46484375vw;
		line-height: 1.6;
		text-align: center;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download hgroup .read {
		margin: 24px 0 0;
		font-size: 4vw;
		line-height: 1.6;
		text-align: center;
	}
}
#main_area .download__form {
	margin: 56px auto 0;
	padding: 56px;
	background: #fff;
	max-width: 100%;
	width: 1040px;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form {
		margin-top: 32px;
		padding: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form {
		margin-top: 32px;
		padding: 20px;
	}
}
#main_area .download__form .form-field + .form-field {
	border-top: solid 1px #D1D1D1;
	margin: 32px 0 0;
	padding: 32px 0 0;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form .form-field + .form-field {
		margin-top: 20px;
		padding-top: 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form .form-field + .form-field {
		margin-top: 20px;
		padding-top: 20px;
	}
}
#main_area .download__form .form-field {
	position: relative;
}
#main_area .download__form .form--title {
	display: none;
}
#main_area .download__form .form--agree {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}
#main_area .download__form .form--agree label {
	margin: 0 auto;
	padding-top: 20px;
	position: relative;
}
#main_area .download__form .form--agree input[type=checkbox] {
	width: 10px;
	height: 10px;
	position: relative;
	left: -10px;
	z-index: -1;
}
@media screen and (min-width: 1441px) {
	#main_area .download__form .form--agree input[type=checkbox] {
		width: 1.2345679012vh;
		height: 1.2345679012vh;
		left: -1.2345679012vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .download__form .form--agree input[type=checkbox] {
		width: 0.6944444444vw;
		height: 0.6944444444vw;
		left: -0.6944444444vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form .form--agree input[type=checkbox] {
		width: 0.9765625vw;
		height: 0.9765625vw;
		left: -0.9765625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form .form--agree input[type=checkbox] {
		width: 2.6666666667vw;
		height: 2.6666666667vw;
		left: -2.6666666667vw;
	}
}
#main_area .download__form .form--agree li {
	position: relative;
	overflow: hidden;
}
#main_area .download__form .form--agree .input-text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 5px;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: normal;
	color: #000;
	position: relative;
	top: -16px;
}
@media screen and (min-width: 1441px) {
	#main_area .download__form .form--agree .input-text {
		gap: 0.6172839506vh;
		font-size: 1.4814814815vh;
		top: -1.975308642vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .download__form .form--agree .input-text {
		gap: 0.3472222222vw;
		font-size: 0.8333333333vw;
		top: -1.1111111111vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form .form--agree .input-text {
		gap: 0.48828125vw;
		font-size: 1.171875vw;
		top: -1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form .form--agree .input-text {
		gap: 1.3333333333vw;
		font-size: 3.2vw;
		top: -4.2666666667vw;
	}
}
#main_area .download__form .form--agree .input-text::before {
	content: "";
	background: url(../img/icon_checkbox_blank.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	display: block;
}
@media screen and (min-width: 1441px) {
	#main_area .download__form .form--agree .input-text::before {
		width: 2.4691358025vh;
		height: 2.4691358025vh;
	}
}
@media screen and (max-width: 1440px) {
	#main_area .download__form .form--agree .input-text::before {
		width: 1.3888888889vw;
		height: 1.3888888889vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form .form--agree .input-text::before {
		width: 1.953125vw;
		height: 1.953125vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form .form--agree .input-text::before {
		width: 5.3333333333vw;
		height: 5.3333333333vw;
	}
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .download__form button {
		margin-top: 0;
		max-width: 100% !important;
		width: 100% !important;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .download__form button {
		margin-top: 0;
		max-width: 100% !important;
		width: 100% !important;
	}
}

#main_area .thanks {
	background: #fff;
	padding: 120px 20px;
	text-align: center;
	color: #000;
	position: relative;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .thanks {
		padding: 80px 20px;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .thanks {
		padding: 80px 20px;
	}
}
#main_area .thanks > * {
	position: relative;
	z-index: 1;
}
#main_area .thanks h2 {
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 2.2222222222;
	text-align: center;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .thanks h2 {
		font-size: 1.5625vw;
		line-height: 1.75;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .thanks h2 {
		font-size: 4.2666666667vw;
		line-height: 1.75;
	}
}
#main_area .thanks__read {
	margin: 20px auto 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.5;
	text-align: center;
	color: #000;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .thanks__read {
		font-size: 1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .thanks__read {
		font-size: 4.2666666667vw;
	}
	#main_area .thanks__read br {
		display: none;
	}
}
#main_area .thanks__button {
	margin: 42px auto 0;
	font-family: ryo-gothic-plusn, sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: normal;
	text-align: center;
}
@media only screen and (min-width: 900px) and (max-width: 1199px) {
	#main_area .thanks__button {
		font-size: 1.5625vw;
	}
}
@media only screen and (max-width: 899px) {
	#main_area .thanks__button {
		font-size: 4.2666666667vw;
	}
}
#main_area .thanks__button a {
	background: #FF3C1E;
	border-radius: 14px;
	margin: 0 auto;
	padding: 12px 32px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	color: #fff;
	display: block;
}
#main_area .thanks__button a br {
	display: none;
}
@media only screen and (max-width: 899px) {
	#main_area .thanks__button a br {
		display: block;
	}
}/*# sourceMappingURL=layout.css.map */