<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 400;
	src: url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 500;
	src: url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format('opentype');
	font-display: swap;
}

@font-face {
	font-family: "Noto Sans JP";
	font-style: normal;
	font-weight: 700;
	src: url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'), url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
	font-display: swap;
}

/*============================================================
common
==============================================================*/
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: .1em;
	line-height: 1.5;
	color: #212137;
}
a {
	text-decoration: none;
	color: #212137;
}
img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: auto;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
ul {
	list-style: none;
}
.cf::after {
	content: "";
	display: block;
	clear: both;
}
.center {
	text-align: center;
}
.left {
	float: left;
}
.right {
	float: right;
}
.pc {
	display: inherit;
}
.sp {
	display: none;
}
.inner {
	width: 1000px;
	margin: auto;
}
.inner_large {
	max-width: 1340px;
	margin: auto;
	padding: 0 20px;
}
.inner_small {
	max-width: 764px;
	margin: auto;
	padding: 0 20px;
}
.cta_btn {
	position: relative;
	display: inline-block;
	height: 46px;
	margin: 12px 0;
	padding: 0 42px;
	vertical-align: bottom;
	font-weight: 500;
	line-height: 46px;
	color: #fff;
	background: #4dc6f3;
	background: linear-gradient(90deg, rgba(77,198,243,1) 0%, rgba(0,79,153,1) 100%);
	border-radius: 23px;
	overflow: hidden;
}
.cta_btn::before {
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	left: 0;
	margin: auto;
	background: #4dc6f3;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.cta_btn:hover::before {
	width: 100%;
}
.cta_btn span {
	position: relative;
}
.text {
	line-height: 1.75;
}
.h2_ttl {
	margin-bottom: 10px;
	font-size: 3.6rem;
	color: #004f99;
}
.h2_ttl_sub {
	margin-bottom: 40px;
	font-family: futura-pt, sans-serif;
	font-size: 1.4rem;
	color: #004f99;
}
.overlay {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: #f2f6fa;
	pointer-events: none;
	opacity: 1;
	z-index: 9999;
	transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.active .overlay {
	opacity: 0;
}

/*============================================================
content
==============================================================*/
.header {
	position: fixed;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	z-index: 10;
}
.header_list {
	display: flex;
	justify-content: flex-end;
}
.header_logo {
	position: absolute;
	top: 10px;
	left: 20px;
	margin: auto;
	padding: 20px;
	border-radius: 10px;
	background: #fff;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.header_logo img {
	width: 72px;
}
.header_logo.change {
	top: 7px;
}
.header_tel {
	display: flex;
	margin: 9px 15px 9px 0;
	font-weight: bold;
}
.header_tel_icon {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: #fff url(../img/header_tel.png) no-repeat center / 25px 33px;
	border: 2px solid #212137;
	border-radius: 5px;
}
.header_tel_content {
	margin-left: 10px;
}
.header_tel_num {
	font-size: 3rem;
	line-height: 1;
}
.header_tel_txt {
	font-size: 1.4rem;
}
.main {
	overflow: hidden;
}
#mv {
	margin-top: 70px;
	height: 600px;
	background: url(../img/mv_img.jpg) no-repeat center right;
}
.mv_ttl {
	margin-bottom: 20px;
	padding-top: 215px;
	font-size: 3.6rem;
	line-height: 1.3;
}
.mv_ttl_large {
	font-size: 6rem;
	color: #004f99;
}
.mv_txt {
	max-width: 450px;
	font-size: 1.4rem;
}
#about {
	overflow: hidden;
}
.about_intro {
	padding: 120px 0;
}
.about_ttl {
	margin-bottom: 50px;
	font-size: 3rem;
	color: #004f99;
}
.about_txt {
	font-size: 1.8rem;
	font-weight: 500;
}
.about_box {
	position: relative;
}
.about_img {
	position: absolute;
	left: 0;
	top: 0;
	margin: auto;
}
.about_img img {
	margin-left: 0;
}
.about_content {
	position: relative;
	max-width: 780px;
	top: 160px;
	right: 0;
	margin-bottom: 160px;
	margin-right: 0;
	margin-left: auto;
	padding: 60px 78px;
	background: #fff;
	border-radius: 80px 0 0 80px;
}
.about_content::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 100%;
	top: 0;
	bottom: 0;
	right: -20px;
	margin: auto;
	background: #fff;
}
#merit {
	padding: 60px 0 120px;
}
.merit_txt {
	margin-bottom: 60px;
}
.merit_img {
	margin-bottom: 60px;
}
.cta_btn_box .cta_btn {
	position: relative;
	width: 100%;
	max-width: 432px;
	height: 62px;
	margin: auto;
	padding: 0;
	font-size: 2.4rem;
	line-height: 62px;
	border-radius: 31px;
}
.cta_btn_box .cta_btn::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
#case {
	position: relative;
	overflow: hidden;
	padding: 0 0 80px;
	background: url(../img/case_bg.jpg) no-repeat center top 180px / cover;
}
.case_box {
	position: relative;
	max-width: 650px;
	padding: 60px 80px 178px 0;
	background: #f2f6fa;
	border-radius: 0 80px 80px 0;
}
.case_box::before {
	content: "";
	position: absolute;
	width: calc((100vw - 1000px) / 2);
	height: 100%;
	top: 0;
	bottom: 0;
	left: calc((100vw - 1000px) / 2 * -1);
	background: #f2f6fa;
}
.case_txt {
	margin-bottom: 30px;
}
.case_dot {
	position: relative;
}
.slick-dots {
	position: relative;
	bottom: 0;
	width: 100%;
	margin: 0;
	text-align: left;
}
.slick-dots li {
	margin: 0 30px 0 0;
}
.slick-dots li button:before {
	content: "";
	background: #004f99;
	border-radius: 50%;
}
.slick-next, .slick-prev {
	width: 40px;
	height: 40px;
	background: #fff;
	border: 2px solid #004f99;
	border-radius: 50%;
	z-index: 2;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.slick-next {
	right: 20px;
}
.slick-prev {
	left: 20px;
}
.slick-next:focus, .slick-prev:focus {
	background: #fff;
}
.slick-next:hover, .slick-prev:hover {
	background: #004f99;
}
.slick-next::before, .slick-prev::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	border-top: 2px solid #004f99;
	border-right: 2px solid #004f99;
	opacity: 1;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.slick-next::before {
	right: 5px;
	transform: translateY(-50%) rotate(45deg);
}
.slick-prev::before {
	left: 5px;
	transform: translateY(-50%) rotate(-135deg);
}
.slick-next:hover::before, .slick-prev:hover::before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.case_list {
	position: relative;
	top: -148px;
}
.slick-slide {
	width: 500px;
	margin: 30px;
	padding: 40px;
	background: #fff;
	border-radius: 40px;
	box-shadow: 0px 0px 20px 0px rgba(28,28,28,0.1);
}
.case_list_num {
	margin-bottom: 10px;
	font-family: futura-pt, sans-serif;
	font-size: 1.8rem;
	color: #004f99;
}
.case_list_ttl {
	font-size: 2.2rem;
}
.case_list_txt {
	margin-bottom: 20px;
}
.case_reso {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.case_reso_item {
	width: 40%;
	margin-bottom: 2%;
	padding: 10px;
	background: #f2f6fa;
	border-radius: 10px;
}
.case_reso_item:nth-child(2n) {
	width: 58%;
}
.case_reso_ttl {
	margin-bottom: 5px;
	text-align: center;
	font-weight: bold;
}
.case_reso_box {
	display: flex;
	justify-content: center;
	align-items: center;
}
.case_reso_img {
	margin-right: 8px;
}
.case_reso_img.img01 img {
	width: 68px;
}
.case_reso_img.img02 img {
	width: 32px;
}
.case_reso_img.img03 img {
	width: 40px;
}
.case_reso_img.img04 img {
	width: 24px;
}
.case_reso_img.img05 img {
	width: 39px;
}
.case_reso_txt {
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: 0;
}
.case_reso_txt .large {
	font-size: 3.6rem;
}
#flow {
	background: #f2f6fa;
}
.flow_box {
	position: relative;
	top: -120px;
	padding: 120px 80px 0;
	background: #f2f6fa;
	border-radius: 80px 0 0 0;
}
.flow_box::before {
	content: "";
	position: absolute;
	width: calc((100vw - 1000px) / 2);
	height: 100%;
	top: 0;
	bottom: 0;
	right: calc((100vw - 1000px) / 2 * -1);
	background: #f2f6fa;
}
.flow_list {
	display: flex;
	justify-content: space-between;
}
.flow_list_item {
	width: 25%;
	max-width: 180px;
	margin-bottom: 60px;
	border-bottom: 2px solid #004f99;
}
.flow_list_num {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
	font-family: futura-pt, sans-serif;
	font-size: 2.4rem;
	text-indent: .1em;
	color: #004f99;
}
.flow_list_num::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #004f99;
}
.flow_list_num span {
	position: relative;
	display: inline-block;
	padding: 0 3px;
	background: #f2f6fa;
}
.flow_list_img {
	margin-bottom: 25px;
}
.flow_list_img img {
	width: 158px;
}
.flow_list_ttl {
	margin-bottom: 20px;
	font-size: 1.8rem;
	color: #004f99;
}
.flow_list_txt {
	margin-bottom: 20px;
}
.flow_list_arrow {
	position: relative;
}
.flow_list_arrow::before, .flow_list_arrow::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: 100px;
	right: -7px;
	margin: auto;
	border-top: 2px solid #004f99;
	border-right: 2px solid #004f99;
	transform: rotate(45deg);
}
.flow_list_arrow::after {
	right: 3px;
}
#contact {
	padding: 120px 0;
}
.contact_ttl {
	margin-bottom: 30px;
	font-size: 2.4rem;
}
.contact_txt {
	margin-bottom: 60px;
}
.mktoForm {
	width: 100% !important;
}
.mktoForm .mktoLabel {
	width: 225px !important;
	font-size: 1.6rem;
}
.mktoForm .mktoFormCol {
	margin-bottom: 20px !important;
}
.mktoForm .mktoRadioList &gt; label, .mktoForm .mktoCheckboxList &gt; label {
	font-size: 1.4rem;
}
.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField {
	width: 478px !important;
}
.mktoForm textarea.mktoField {
	width: 478px !important;
	height: 120px !important;
}
.mktoButtonWrap.mktoRound {
	margin-left: 280px !important;
}
.mktoForm .mktoButtonWrap.mktoRound .mktoButton {
	background-image: linear-gradient(90deg, rgba(77,198,243,1) 0%, rgba(0,79,153,1) 100%) !important;
	padding: 10px 60px !important;
	border-radius: 100vw !important;
	font-size: 1.6rem !important;
	font-weight: bold !important;
}
.footer {
	padding: 20px 0;
	font-family: futura-pt, sans-serif;
	font-size: 1.4rem;
	color: #fff;
	background: #212137;
}

/*============================================================
inview
==============================================================*/
.inview {
	opacity: 0;
	transform: translateY(60px);
	transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.inview.fadein {
	opacity: 1;
	transform: translateY(0px);
}

/*============================================================
pagetop
==============================================================*/
.pagetop a {
	position: fixed;
	display: block;
	overflow: hidden;
	width: 60px;
	height: 60px;
	bottom: 60px;
	right: 20px;
	background: #004f99;
	border-radius: 50%;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 10;
	opacity: 0;
	pointer-events: none;
}
.pagetop.opacity a {
	opacity: 1;
	pointer-events: all;
}
.pagetop a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: #4dc6f3;
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.pagetop a:hover::before {
	height: 100%;
}
.pagetop a::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	transition: .6s cubic-bezier(0.19, 1, 0.22, 1);
}

/*============================================================
breakpoint 1040px
==============================================================*/
@media screen and (max-width: 1040px) {
	.case_box::before {
		width: 20px;
		left: -20px;
	}
	.flow_box::before {
		width: 20px;
		right: -20px;
	}
}

/*============================================================
breakpoint 768px
==============================================================*/
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
	.pc {
		display: none;
	}
	.sp {
		display: inherit;
	}
	.left, .right {
		float: none;
	}
	.inner, .inner_large, .inner_small {
		width: 94%;
		max-width: none;
		margin: auto;
		padding: 0;
	}
	.h2_ttl {
		margin-bottom: 5px;
		font-size: 2.4rem;
	}
	.h2_ttl_sub {
		margin-bottom: 30px;
		font-size: 1.2rem;
	}
	.cta_btn {
		margin: 7px 0;
		padding: 0 20px;
	}
	.header {
		height: 60px;
	}
	.header_logo {
		height: 60px;
		top: 0;
		left: 4px;
		padding: 16px;
	}
	.header_logo.change {
		top: 2px;
	}
	.header_logo img {
		width: 36px;
	}
	.header_tel {
		margin: 5px 10px 5px 0;
		height: 50px;
	}
	.header_tel_content {
		display: none;
	}
	#mv {
		margin-top: 60px;
		height: auto;
		background: url(../img/mv_img.jpg) no-repeat center / cover;
	}
	.mv_box {
		position: relative;
		top: 40vw;
		margin-bottom: 40vw;
		padding: 5vw;
		background: rgba(255,255,255,.8);
	}
	.mv_ttl {
		margin-bottom: 2vw;
		padding-top: 0;
		font-size:5vw;
	}
	.mv_ttl_large {
		font-size: 10vw;
	}
	.mv_txt {
		font-size: 3vw;
	}
	.about_intro {
		padding: 50px 0;
	}
	.about_ttl {
		margin-bottom: 25px;
		font-size: 2.4rem;
	}
	.about_txt {
		font-size: 1.6rem;
	}
	.about_content {
		top: 40vw;
		margin-bottom: 40vw;
		padding: 30px 0 30px 20px;
		border-radius: 40px 0 0 40px;
	}
	#merit {
		padding: 30px 0 60px;
	}
	.merit_txt {
		margin-bottom: 30px;
	}
	.merit_img {
		overflow-x: scroll;
		margin-bottom: 30px;
	}
	.merit_img img {
		width: 600px;
		max-width: none;
	}
	.cta_btn_box .cta_btn {
		height: 52px;
		padding: 0;
		font-size: 1.8rem;
		line-height: 52px;
		border-radius: 26px;
	}
	#case {
		padding: 0;
		background: url(../img/case_bg.jpg) no-repeat center top 90px / cover;
	}
	.case_box {
		padding: 30px 20px 90px 0;
		background: #f2f6fa;
		border-radius: 0 40px 40px 0;
	}
	.case_txt {
		margin-bottom: 15px;
	}
	.slick-dots li {
		margin: 0 15px 0 0;
	}
	.slick-dots li button {
		width: 15px;
		height: 15px;
	}
	.slick-dots li button:before {
		line-height: 15px;
		width: 15px;
		height: 15px;
	}
	.slick-next {
		right: 3%;
	}
	.slick-prev {
		left: 3%;
	}
	.case_list {
		top: -74px;
	}
	.slick-slide {
		width: 80vw;
		margin: 10px;
		padding: 20px;
		border-radius: 20px;
		box-shadow: 0px 0px 10px 0px rgba(28,28,28,0.1);
	}
	.case_list_num {
		margin-bottom: 10px 0;
		font-size: 1.6rem;
	}
	.case_list_ttl {
		font-size: 1.8rem;
	}
	.case_list_txt {
		margin-bottom: 10px;
	}
	.case_reso_item {
		width: 49%;
		margin-bottom: 2%;
		padding: 5px;
		background: #f2f6fa;
	}
	.case_reso_item:nth-child(2n) {
		width: 49%;
	}
	.case_reso_txt {
		font-size: 1.4rem;
	}
	.case_reso_txt .large {
		font-size: 2rem;
	}
	.flow_box {
		top: -60px;
		padding: 30px 10px 0;
		border-radius: 40px 0 0 0;
	}
	.flow_list {
		flex-wrap: wrap;
	}
	.flow_list_item {
		width: 48%;
		max-width: none;
		margin-bottom: 30px;
	}
	.flow_list_item:last-child {
		width: 100%;
	}
	.flow_list_num {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.flow_list_img {
		margin-bottom: 15px;
	}
	.flow_list_img img {
		width: 79px;
	}
	.flow_list_ttl {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.flow_list_txt {
		margin-bottom: 10px;
	}
	.flow_list_arrow {
		display: none;
	}
	.flow_list_arrow::before, .flow_list_arrow::after {
		top: -12px;
		bottom: auto;
		right: 0;
		left: 0;
		transform: rotate(135deg);
	}
	.flow_list_arrow::after {
		top: -20px;
		right: 0;
	}
	#contact {
		padding: 60px 0;
	}
	.contact_ttl {
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.contact_txt {
		margin-bottom: 30px;
	}
	.mktoForm .mktoLabel {
		width: 100% !important;
		font-size: 1.4rem;
	}
	.mktoForm .mktoFormCol {
		margin-bottom: 10px !important;
	}
	.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField {
		width: 100% !important;
	}
	.mktoButtonWrap.mktoRound {
		margin-left: 0 !important;
	}
	.mktoForm .mktoButtonWrap.mktoRound .mktoButton {
		width: 90vw;
	}
	.footer {
		padding: 15px 0;
		font-size: 1.2rem;
	}
	.pagetop a {
		width: 50px;
		height: 50px;
		bottom: 50px;
		right: 10px;
	}
}</pre></body></html>