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

/* ======================================================
custom properties
====================================================== */
:root {
	--main-color: #4AA6E3;
	--main-font-size: 1.45rem;
  }

/* ======================================================
Reset
====================================================== */

* {
	box-sizing: border-box;
}

html {
	width: 100%;
	font-size: 62.5%;
}

img {
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

button:hover {
	opacity: 0.7;
}

a {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.5s;
}

a:hover {
	opacity: 0.7;
}

.color_main {
	color: var(--main-color);
}

strong {
	font-weight: bold;
}

/* ======================================================
Frame
====================================================== */
body {
	min-width: 320px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size:  var(--main-font-size);
	font-weight: 300;
	color: #464646;
	line-height: 2.06;
	letter-spacing: 0;
}

/*
* section
*/
.page_sec {
	padding: 25px 0 35px;
	overflow: hidden;
}

.inr {
	margin: 0 4%;
}

@media screen and (min-width: 801px) {
	.page_sec {
		padding: 80px 0 80px;
	}

	.inr {
		max-width: 1000px;
		padding: 0 20px;
		margin: 0 auto;
	}
}

/* ======================================================
Common
====================================================== */
@media screen and (max-width: 800px) {
	.pc {
		display: none;
	}

	.smt {
		display: block;
	}
}

@media screen and (min-width: 801px) {
	.pc {
		display: block;
	}

	.smt {
		display: none;
	}
}

/* ======================================================
header
====================================================== */

.header_top {
	background-color: var(--main-color);
	color: #fff;
}

.header_topInr {
	max-width: 1240px;
	height: 64px;
	padding: 0 20px;
	margin: 0 auto;
}

.header_topTtl {
	font-weight: bold;
}

.header_block {
	padding: 0;
}

.header_block_inr {
	max-width: 1240px;
	padding: 0 20px 0 15px;
	height: 78px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_logo {
	/*width: 130px;*/
	max-width: 280px;
	width: 22%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header_nav li {
	margin-bottom: 1px;
	color: #fff;
	font-weight: bold;
	text-align: left;
}

.help_tel {
	display: block;
	border-radius: 10px;
	background-color: #fff;
	overflow: hidden;
}

.help_img img {
	width: 100%;
}

.help_content {
	padding: 10px 20px 15px;
	text-align: center;
}

.header_block .help_content {
	font-size: 1.1rem;
}

.help_content &gt; * {
	font-weight: bold;
}

.help_ttl {
	font-size: 1.5rem;
}

.help_num {
	font-size: min(6.2vw,2.6rem);
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
}

.help_num::before {
	content: "";
	width: 30px;
	height: 30px;
	margin-right: 5px;
	background: url(../img/common/icn_tel.svg) no-repeat;
	background-size: contain;
	display: block;
}

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

	.header_topInr {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 20px 0 20px;
	}

	.header_topInr h1 {
		padding: 5px 0;
		font-size: min(3.5vw,1.35rem);
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header_topInr ul {
		display: none;
	}

	.header_mail {
		display: block;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: url(../img/common/icn_mail.svg) no-repeat;
		background-position: center;
		background-size: 25px 18px;
		background-color: var(--main-color);
	}

	.header_menu {
		position: fixed;
		overflow: scroll;
		background-color: var(--main-color);
		top: 64px;
		bottom: 0;
		left: 100vw;
		width: 100%;
		z-index: 9998;
		transition: opacity .6s , left .6s;
		opacity: 0;
	}
	.header_logo {
		max-width: 280px;
		width: 50%;
	}
	.header_nav li {
		/*background-color: #47B8E8;*/
		border-bottom: 1px solid #47B8E8;
	}
	.header_nav li a {
		display: block;
		padding: 20px 20px 20px 5vw;
		/*margin-bottom: 1px;*/
		color: #fff;
		font-weight: bold;
		text-align: left;
	}
	.header_btn {
		padding: 30px 20vw 30px 5vw;
	}
	.header_btn .btn {
		background-color: #fff;
		justify-content: flex-start;
		padding: 0 20px;
		height: 50px;
	}
	.header_btn .btn--mail {
		color: #4AA6E3;
		margin-bottom: 30px;
	}
	.header_btn .btn--mail::before {
		background-image: url(../img/common/icn_mail_b.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: 50% 50%;
	}
	.header_btn .btn--trial {
		color: #ED7A9B;
		margin-bottom: 15px;
	}
	.header_btn .btn--trial::before {
		content: "";
		display: block;
		margin-right: 10px;
	}
	.header_btn .btn span {
		font-weight: bold;
	}
}

@media screen and (min-width: 801px) {
	.header_top {
		padding: 0 20px;
	}

	.header_topInr {
		max-width: 1240px;
		padding: 0 3% 0 20px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		transform: translateX(-27px);
	}

	.header_topInr li {
		display: inline-block;
		padding: 0 10px;
		font-size: 1.2rem;
	}

	.header_block {
		background-color: #fff;
		transition: top 0.3s , left 0.3s ;
		padding: 0 20px;
		box-shadow: 0 3px 3px rgba(0, 0, 0, .16);
	}

	.header_block_inr {
		max-width: 1240px;
		padding: 0 0 0;
		margin: 0 auto;
	}

	.header_logo {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header_menu {
		background-color: transparent;
		display: flex;
		justify-content: flex-end;
		flex: 1;
	}

	.header_nav {
		flex: 1 1 auto;
		display: flex;
		gap: 0 20px;
		justify-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		padding: 0 3% 0 3%;
	}

	.header_nav li {
		margin: 0 3%;
		padding: 0;
		color: #969696;
		font-weight: bold;
	}

	.header_btn {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 55%;
		max-width: 420px;
		gap: 10px;
	}

	.header_btn .btn {
		padding: 10px 20px;
		height: 50px;
		max-width: 250px;
		line-height: 1.2;
	}

	.header_btn .btn span {
		font-weight: bold;
	}

	.header_block .help_tel {
		display: none;
	}

	.header_block.fixed {
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 9999;
	}

	.header_top.fixed {
		margin-bottom: 78px;
	}
}

/* スマホ開閉関係 */
.open {
	left: 15vw;
	opacity: 1;
}

.fixed {
	overflow: hidden;
}

.smt_toggle {
	display: none;
}

@media screen and (max-width: 800px) {
	.header_top.fixed {
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
	}

	.header_block.fixed  {
		margin-top: 64px;
	}
	.smt_toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: top 0.3s, right 0.3s;
	}

	.smt_toggle_txt {
		font-size: 1.4rem;
		font-weight: bold;
		font-family: 'Lato', sans-serif;
		margin:0 5px 0 15px;
	}

	.smt_toggle_btn {
		display: inline-block;
		height: 2px;
		width: 18px;
		background-color: #fff;
		position: relative;
	}

	.smt_toggle_btn::before,
	.smt_toggle_btn::after {
		content: "";
		height: 2px;
		left: 0;
		width: 18px;
		background-color: #fff;
		position: absolute;
		transition: 0.5s;
	}

	.smt_toggle_btn::before {
		top: -5px;
	}

	.smt_toggle_btn::after {
		bottom: -5px;
	}

	.change.smt_toggle_btn {
		background-color: transparent;
	}

	.change.smt_toggle_btn::before {
		top: -7px;
		left: 3px;
		transform: rotate(45deg);
		transform-origin: left;
	}

	.change.smt_toggle_btn::after {
		bottom: -6px;
		left: 3px;
		transform: rotate(-45deg);
		transform-origin: left;
	}
}

/* ======================================================
breadcrumbs
====================================================== */
.breadcrumbs {
	font-size: 1.35rem;
	max-width: 1240px;
	padding: 15px 15px 0;
	margin: 0 auto;
}

.breadcrumbs ol {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 5px 0;
}

.breadcrumbs ol li:not(:last-child)::after {
	content: '&gt;';
	padding: 0 13px;
	color: #555;
}

@media screen and (max-width: 800px) {
	.breadcrumbs {
		display: none;
	}
}

/* ======================================================
footer
====================================================== */
.footer {
	background-color: #969696;
}
.footer_content {
	padding: 45px 0 45px;
}
.footer_box:not(:last-of-type) {
	margin-bottom: 30px;
}
.footer_ttl {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}
.footer_menu {
	display: flex;
	align-items: center;
	row-gap: 25px;
	flex-wrap: wrap;
}
.footer_menu li {
	margin-left: -1px;
	color: #fff;
	padding: 0 20px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	text-align: center;
	line-height: 1.4;
}

.footer_copyright {
	color: #fff;
	background-color: #585858;
	padding: 8px 0;
	text-align: center;
}
@media screen and (min-width: 801px) {
	.footer_content {
		padding: 45px 0 75px;
	}
	.footer_box:not(:last-of-type) {
		margin-bottom: 60px;
	}
	.footer_copyright {
		text-align: left;
	}
}


/* ======================================================
各ページ共通パーツ
====================================================== */

.txt_wrap {
	display: inline-block;
	font-weight: unset;
}

/* footer contact
---------------------------------------------------------------------- */
.contact {
	background-color: #E8F6FC;
	padding: 20px 0 10px;
}

.contact_ttl {
	color: var(--main-color);
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.contact_img {
	border-radius: 10px;
	margin-bottom: 10px;
	overflow: hidden;
}

.contact .help_content {
	padding: 15px 0 20px;
}

.contact .help_ttl {
	font-size: 1.8rem;
	font-weight: bold;
}

.contact .btn {
	font-size: 1.75rem;
}

.contact .help_num {
    font-size: min(10vw, 4.1rem);
	line-height: 1;
}

.contact .help_txt {
    font-size: 1.55rem;
    font-weight: bold;
}

@media screen and (min-width: 801px) {
	.contact {
		padding: 40px 0 35px;
	}

	.contact_ttl {
		font-size: 3.6rem;
		margin-bottom: 20px;
	}

	.contact_container {
		max-width: 855px;
		margin: 0 auto;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.contact_img {
		width: 362px;
		margin:0 20px 0 0;
	}

	.contact_content {
		flex: 0 0 400px;
	}

	.contact .help_num {
		font-size: 4.4rem;
	}

	.contact .help_ttl {
		font-size: 2.1rem;
	}
}


/* ttl
---------------------------------------------------------------------- */
.page_ttl {
	font-size: 2.5rem;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
	padding-top: 35px;
	margin-bottom: 10px;
}
.page_ttl.page_ttl--actual {
	padding-top: 60px;
	background: url(../img/common/icn_actual.svg) no-repeat;
	background-position: center top;
	background-size: 37px auto;
}

.page_ttl.page_ttl--info {
	background: url(../img/common/icn_info.svg) no-repeat;
	background-position: center top;
	background-size: auto;
}

.page_ttl.page_ttl--fee {
	padding-top: 50px;
	background: url(../img/common/icn_fee.svg) no-repeat;
	background-position: center top;
	background-size: auto;
}

.page_ttl.page_ttl--function {
	padding-top: 60px;
	background: url(../img/common/icn_function.svg) no-repeat;
	background-position: center top;
	background-size: 37px auto;
}

.page_ttl.page_ttl--step {
	padding-top: 55px;
	background: url(../img/common/icn_step.svg) no-repeat;
	background-position: center top;
	background-size: 60px auto;
}

.page_ttl.page_ttl--help {
	padding-top: 60px;
	background: url(../img/common/icn_help.svg) no-repeat;
	background-position: center top;
	background-size: 53px auto;
}

.page_ttl.page_ttl--other {
	padding-top: 55px;
	background: url(../img/common/icn_other.svg) no-repeat;
	background-position: center top;
	background-size: 50px auto;
}

.page_ttl.page_ttl--case {
	padding-top: 40px;
	background: url(../img/common/icn_case.svg) no-repeat;
	background-position: center top;
	background-size: 40px auto;
}

.page_ttl.page_ttl--column {
	padding-top: 40px;
	background: url(../img/common/icn_column.svg) no-repeat;
	background-position: center top;
	background-size: 40px auto;
}

.sec_lead {
	font-weight: bold;
	text-align: center;
	line-height: 1.72;
}

@media screen and (min-width: 801px) {
	.page_ttl {
		padding-top: 40px;
	}
	.sec_lead {
		font-weight: bold;
		text-align: center;
		line-height: 2.06;
	}
}

/* btn
---------------------------------------------------------------------- */
.btn_area {
    display: flex;
	align-items: center;
    justify-content: center;
	flex-direction: column;
	max-width: 100%;
	gap: 20px;
}

.btn {
	box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 10px;
    height: 60px;
    border-radius: 50px;
    border: none;
    background-color: var(--main-color);
    color: #fff ;
    appearance: none;
    font-weight: bold;
    text-decoration: none;
    position: relative;
}

.btn.btn--mail {
	height: 50px;
}

.btn--mail::before {
	content: "";
    display: block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
	background-image: url(../img/common/icn_mail.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.btn.btn--trial {
	height: 50px;
}

.btn--trial::before {
	content: "";
    display: block;
    margin-right: 10px;
    width: 26px;
    height: 26px;
	background-image: url(../img/common/icn_trial.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.btn--arrow {
	position: relative;
	width: 330px;
	max-width: 100%;
	padding: 10px 30px;
}

.btn--arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    transition: right .3s;
    transform: translateY(-50%) rotate(45deg);
}

.btn--arrow:hover::before {
	right: 15px;
}

@media screen and (min-width: 801px) {
	.btn_area {
		display: flex;
		justify-content: center;
		flex-direction: row;
		max-width: 100%;
		gap: 20px;
	}
}

/* anime
  ---------------------------------------------------------------------- */
.scrollup {
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
}

.upview {
	-moz-animation: scrollup 0.6s linear 0s 1 normal forwards;
	-webkit-animation: scrollup 0.6s linear 0s 1 normal forwards;
	-o-animation: scrollup 0.6s linear 0s 1 normal forwards;
	-ms-animation: scrollup 0.6s linear 0s 1 normal forwards;
}

@media (min-width: 801px) {
	.upview.uv2 {
		-moz-animation: scrollup 0.6s linear 0.3s 1 normal forwards;
		-webkit-animation: scrollup 0.6s linear 0.3s 1 normal forwards;
		-o-animation: scrollup 0.6s linear 0.3s 1 normal forwards;
		-ms-animation: scrollup 0.6s linear 0.3s 1 normal forwards;
	}

	.upview.uv3 {
		-moz-animation: scrollup 0.6s linear 0.6s 1 normal forwards;
		-webkit-animation: scrollup 0.6s linear 0.6s 1 normal forwards;
		-o-animation: scrollup 0.6s linear 0.6s 1 normal forwards;
		-ms-animation: scrollup 0.6s linear 0.6s 1 normal forwards;
	}

	.upview.uv4 {
		-moz-animation: scrollup 0.6s linear 0.9s 1 normal forwards;
		-webkit-animation: scrollup 0.6s linear 0.9s 1 normal forwards;
		-o-animation: scrollup 0.6s linear 0.9s 1 normal forwards;
		-ms-animation: scrollup 0.6s linear 0.9s 1 normal forwards;
	}

	.upview.uv5 {
		-moz-animation: scrollup 0.6s linear 1.2s 1 normal forwards;
		-webkit-animation: scrollup 0.6s linear 1.2s 1 normal forwards;
		-o-animation: scrollup 0.6s linear 1.2s 1 normal forwards;
		-ms-animation: scrollup 0.6s linear 1.2s 1 normal forwards;
	}

	.upview.uv6 {
		-moz-animation: scrollup 0.6s linear 1.5s 1 normal forwards;
		-webkit-animation: scrollup 0.6s linear 1.5s 1 normal forwards;
		-o-animation: scrollup 0.6s linear 1.5s 1 normal forwards;
		-ms-animation: scrollup 0.6s linear 1.5s 1 normal forwards;
	}
}

@keyframes scrollup {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.scrollleft {
	opacity: 0;
	transform: translateX(-20px);
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	-ms-transform: translateX(-20px);
	-o-transform: translateX(-20px);
}

.leftview {
	-moz-animation: scrollleft 1s linear 0s 1 normal forwards;
	-webkit-animation: scrollleft 1s linear 0s 1 normal forwards;
	-o-animation: scrollleft 1s linear 0s 1 normal forwards;
	-ms-animation: scrollleft 1s linear 0s 1 normal forwards;
}

@keyframes scrollleft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}


.scrollright {
	opacity: 0;
	transform: translateX(20px);
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	-ms-transform: translateX(20px);
	-o-transform: translateX(20px);
}

.rightview {
	-moz-animation: scrollright 1s linear 0s 1 normal forwards;
	-webkit-animation: scrollright 1s linear 0s 1 normal forwards;
	-o-animation: scrollright 1s linear 0s 1 normal forwards;
	-ms-animation: scrollright 1s linear 0s 1 normal forwards;
}

@keyframes scrollright {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.show {
	opacity: 0;
	transition: 1s;
	animation-name: show;
	animation-delay: 0s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes show {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


.mv_box {
	animation-name: mv_ttl;
	animation-delay: 0s;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

@keyframes mv_ttl {
	0% {
		transform: scale(1);
	}

	40% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	60% {
		transform: scale(1);
	}

	100% {
		transform: scale(1);
	}
}</pre></body></html>