@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500;600;700&display=swap');

/* --------------------------------
 * base
 * -------------------------------- */
:root {
	--color-blue: #187FC4;
	--color-orange: #EA6918;
	--color-lblue: #EBF6F5;
	--color-lgray: #F0F0F0;
	--color-white: #FFF;
	--lineHeight14: 1.4;
	--lineHeight16: 1.6;
	--gap: 40px;
}

body {
	width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-size: 15px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	color: #4D4D4D;
}

a:hover img {
	opacity: 0.7;
}

img {
	/*chome画像ぼやけ回避処理*/
	image-rendering: -webkit-optimize-contrast;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.btn {
	animation: yureru-s 2s infinite;
}

@keyframes yureru-s {
	0% {
		transform: translate(2px, 0px);
	}

	5% {
		transform: translate(-2px, 0px);
	}

	10% {
		transform: translate(2px, 0px);
	}

	15% {
		transform: translate(-2px, 0px);
	}

	20% {
		transform: translate(2px, 0px);
	}

	25% {
		transform: translate(-2px, 0px);
	}

	30% {
		transform: translate(0px, 0px);
	}
}

section {
	padding: 100px 0 100px;
}

.flex {
	display: flex;
	justify-content: space-between;
}

.jc-c {
	justify-content: center;
}

.a-center {
	align-items: center;
}

.a-fs {
	align-items: flex-start;
}

.a-end {
	align-items: end;
}

.l-col {
	display: grid;
	grid-template-columns: 1fr;
}

.l-col--2 {
	grid-template-columns: 1fr 1fr;
}

.l-col--3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.fw-bold {
	font-weight: bold;
}

.l-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.l-inner.w840 {
	max-width: 880px;
}

.w510 {
	max-width: 510px;
}

.mb0 {
	margin-bottom: 0 !important;
}

.c-blue {
	color: var(--color-blue);
}

.c-title {
	text-align: center;
	line-height: var(--lineHeight01);
	margin-bottom: 60px;
}

.c-title__sub {
	font-size: 1.333rem;
	font-weight: bold;
	font-family: 'Open Sans';
	color: var(--color-blue);
	text-transform: uppercase;
	letter-spacing: 0;
}

.c-title__main {
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 14px;
	line-height: var(--lineHeight14);
}

.c-title__main .small {
	font-size: 1.733rem;
	display: block;
}

.c-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 360px;
	font-size: 1.25rem;
	font-weight: 500;
	text-align: center;
	padding: 16px;
	margin: 70px auto 0;
	height: 4.8rem;
	border-radius: 4.8rem;
	color: var(--color-white);
	background: var(--color-orange);
	border: 2px solid var(--color-orange);
	transition: .3s;

}

.c-btn:hover {
	border-color: var(--color-orange);
	color: var(--color-orange);
	background: var(--color-white);
}

.u-sp {
	display: none;
}


.point__bg01 {
	position: absolute;
	background: url(../image/img_content_parts01.png) no-repeat center center / contain;
	z-index: -1;
	width: 206px;
	height: 210px;
	right: 0;
	top: 0;
}

.point__bg02 {
	position: absolute;
	background: url(../image/img_content_parts02.png) no-repeat center center / contain;
	z-index: -1;
	width: 194px;
	height: 232px;
	left: 0;
	bottom: 0;
}

@media screen and (max-width: 767px) {
	body {
		font-size: 13px;
	}

	section {
		padding: 60px 0 70px;
	}

	.l-col--2 {
		grid-template-columns: 1fr;
	}

	.l-col--3 {
		grid-template-columns: 1fr;
	}

	.c-title {
		margin-bottom: 40px;
	}

	.c-title__sub {
		font-size: 0.875rem;
	}

	.c-title__main {
		font-size: 1.692rem;
		margin-top: 2px;
	}

	.c-title__main .small {
		font-size: 1.5rem;
	}

	.u-pc {
		display: none;
	}

	.u-sp {
		display: block;
	}

	.c-btn {
		font-size: 1.125rem;
		max-width: 85%;
		height: 4.4rem;
		border-radius: 4.4rem;
		margin: 40px auto 0;
	}

	.point__bg01 {
		width: calc(206px *0.7);
		height: calc(210px *0.7);
		right: -40px;
	}

	.point__bg02 {
		width: calc(194px *0.7);
		height: calc(232px *0.7);
		left: -40px;
	}
}

/* --------------------------------
 * header
 * -------------------------------- */
.header {
	padding: 20px 20px 0 12px;
	width: 100%;
	background-color: transparent;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99;
}

.header img {
	max-width: 112px;
}

@media screen and (max-width: 767px) {
	.header {
		padding: 14px 14px 0;
	}

	.header img {
		max-width: 94px;
	}
}

/* --------------------------------
 * mainvisual
 * -------------------------------- */
.mainvisual {
	padding: 108px 0 70px;
	overflow: hidden;
	background: url(../image/img_kv_bg.png) no-repeat center center / cover;
}

.mainvisual .l-inner {
	position: relative;
	z-index: 2;
}

.mainvisual__text {
	width: 43.6%;
}

.mainvisual__catch {
	font-size: 2rem;
	font-weight: bold;
	line-height: var(--lineHeight01);
}

.mainvisual__main {
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.3;
}

.mainvisual__main .small {
	font-size: 3rem;
	display: block;
	margin-bottom: 6px;
}

.mainvisual__sub {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: var(--lineHeight14);
	margin: 20px 0;
}

.mainvisual__note {
	font-size: 0.625rem;
	margin-top: 12px;
}

.mainvisual__image {
	flex: 1;
	margin: 0;
	text-align: center;
}

.mainvisual__btn {
	margin-top: 28px;
}

.mainvisual__btn .c-btn {
	max-width: 300px;
	margin: 0 auto 0 0;
}

.mainvisual__bg01 {
	position: absolute;
	background: url(../image/img_kv_parts01.png) no-repeat center center / contain;
	z-index: -1;
	width: 794px;
	height: 1076px;
	right: -50vw;
	bottom: -480px;
}

.mainvisual__bg02 {
	position: absolute;
	background: url(../image/img_kv_parts02.png) no-repeat center center / contain;
	z-index: -1;
	width: 651px;
	height: 560px;
	left: -47vw;
	top: -220px;
}

@media screen and (max-width: 1024px) {
	.mainvisual__main {
		font-size: 3rem;
	}

	.mainvisual__main .small {
		font-size: 2rem;
	}

	.mainvisual__sub {
		font-size: 1.384rem;
	}
}

@media screen and (max-width: 767px) {
	.mainvisual {
		padding: 80px 0 50px;
	}

	.mainvisual .l-inner {
		flex-direction: column-reverse;
	}

	.mainvisual__text {
		width: 100%;
	}

	.mainvisual__main {
		text-align: center;
		font-size: 3.076rem;
	}

	.mainvisual__main .small {
		font-size: 2.153rem;
	}

	.mainvisual__image {
		margin-top: 20px;
	}

	.mainvisual__sub {
		text-align: center;
		font-size: 1.384rem;
	}

	.mainvisual__btn .c-btn {
		margin: 0 auto;
	}

	.mainvisual__note {
		text-align: center;
	}

	.mainvisual__bg01 {
		width: calc(794px * .7);
		height: calc(1076px * .7);
		right: -97vw;
		bottom: -50px;
	}

	.mainvisual__bg02 {
		width: calc(651px * .7);
		height: calc(560px * .7);
		left: -89vw;
		top: -200px;
	}
}

/* --------------------------------
 * point01
 * -------------------------------- */
.point01__item {
	width: calc(33.333% - 26.666px);
	padding: 50px 36px;
	border: 2px solid #D3DEF1;
	box-shadow: 4px 4px 0px 0 #D3DEF1;
	border-radius: 20px;
	position: relative;
}

.point01__title {
	background: var(--color-blue);
	color: var(--color-white);
	text-align: center;
	border-radius: 1.5em;
	font-size: 1.333rem;
	font-weight: bold;
	padding: 6px;
	position: absolute;
	width: 80%;
	left: 0;
	right: 0;
	top: -24px;
	margin: 0 auto;
}

.point01__img {
	height: 150px;
	display: flex;
	align-items: center
}

.point01__text {
	background: var(--color-lgray);
	margin: 30px auto 0;
	padding: 16px;
	border-radius: 12px;
	text-align: center;
}

.point01__text ul {
	text-align: left;
	max-width: 16em;
	margin: 0 auto;
}

.point01__text dt {
	font-weight: bold;
	text-align: center;
}

.point01__text dd {
	margin-top: 4px;
	line-height: var(--lineHeight16);
}

.point01__text .c-blue {
	font-size: 1.2rem;
}

/* 20241001　※税別　css */
.zeibetsu {
	font-size: 11px;
	color: #4D4D4D;
	font-weight: 400;
}

.point01__text-zeibetsu {
	background: var(--color-lgray);
	margin: 30px auto 0;
	padding: 14px;
	border-radius: 12px;
	text-align: center;
}

.point01__text-zeibetsu ul {
	text-align: left;
	max-width: 16em;
	margin: 0 auto;
}

.point01__text-zeibetsu dt {
	font-weight: bold;
	text-align: center;
}

.point01__text-zeibetsu dd {
	margin-top: 4px;
	line-height: var(--lineHeight16);
}

.point01__text-zeibetsu .c-blue {
	font-size: 1.2rem;
}

.point01__text-zeibetsu .zeibetsu {
	font-size: 9px;
}


@media screen and (max-width: 1024px) {
	.point01__item {
		padding: 50px 24px;
	}

	.point01__title {
		font-size: 1.2rem;
	}

	.point01__text {
		margin: 20px auto 0;
	}

	/* 20241001　※税別　css */
	.point01__text-zeibetsu {
		margin: 20px auto 0;
	}

	.point01__text-zeibetsu .zeibetsu {
		font-size: 11px;
	}
}

@media screen and (max-width: 767px) {
	.point01__list {
		flex-direction: column;
		margin-top: -40px;
	}

	.point01__item {
		width: 100%;
		margin-top: 60px;
		padding: 50px 24px 24px;
	}

	.point01__img {
		height: auto;
	}

	/* 20241001　※税別　css */
	.point01__text-zeibetsu ul {
		max-width: 19em;
	}

	.point01__text-zeibetsu .zeibetsu {
		font-size: 11px;
	}
}


/* --------------------------------
 * point02
 * -------------------------------- */
.point02 {
	background: var(--color-blue);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.point02 .c-title {
	text-align: left;
	color: #fff;
}

.point02 .c-title__sub {
	color: #D2DDF1;
}

.point02__box {
	background: var(--color-white);
	border-radius: 20px;
	padding: 40px;
	flex: 1;
	max-width: 510px;
}

.point02__text01 {
	gap: 10px;
}

.point02__text01 li {
	color: var(--color-blue);
	background: var(--color-lblue);
	font-size: 1.866rem;
	font-weight: bold;
	line-height: 1.2;
	padding: 8px 16px;
	border-radius: 12px;
}

.point02__text02 {
	color: var(--color-blue);
	font-size: 5.333rem;
	font-weight: bold;
	line-height: 1;
	margin-left: 16px;
}

.point02__sub {
	font-size: 0.8rem;
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 1024px) {
	.point02__text01 li {
		font-size: 1.538rem;
	}
}

@media screen and (max-width: 767px) {
	.point02 .l-inner {
		flex-direction: column;
	}

	.point02 .c-title {
		text-align: center;
		margin: 0 auto 36px;
	}

	.point02__box {
		width: 100%;
		max-width: none;
		padding: 30px;
	}

	.point02__main {
		flex-direction: column;
	}

	.point02__text01.l-col {
		grid-template-columns: 1fr 1fr;
	}

	.point02__text01 li {
		font-size: 1.538rem;
	}

	.point02__text02 {
		margin: 16px auto 0;
		font-size: 4.923rem;
	}
}

/* --------------------------------
 * point03
 * -------------------------------- */
.point03 .c-title {
	text-align: left;
}

.point03__text {
	color: var(--color-blue);
	font-size: 6rem;
	font-weight: bold;
	line-height: 1;
}

.point03__text small {
	font-size: 3rem;
}

.point03__note {
	font-size: 0.8rem;
	margin-left: 10px;
}

@media screen and (max-width: 1024px) {
	.point03 .w510 {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.point03 .l-inner {
		flex-direction: column;
	}

	.point03 .c-title {
		text-align: center;
		margin: 0 auto 36px;
	}

	.point03 .w510 {
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: none;
		margin-top: 20px;
	}

	.point03__text {
		font-size: 5.538rem;
		margin-bottom: 10px;
	}
}

/* --------------------------------
 * point04
 * -------------------------------- */
.point04 {
	background: var(--color-lblue);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.point04 .point__bg01 {
	background: url(../image/img_content_parts03.png) no-repeat center center / contain;
}

.point04 .point__bg02 {
	background: url(../image/img_content_parts04.png) no-repeat center center / contain;
}

.point04 .c-title {
	text-align: left;
}

.point04__text {
	color: var(--color-blue);
	font-size: 6.466rem;
	font-weight: bold;
	line-height: 1;
}

.point04__text small {
	font-size: 3rem;
}

.point04__note {
	font-size: 0.8rem;
}

.point04__list {
	gap: 20px;
}

.point04__item {
	background: var(--color-white);
	box-shadow: 4px 4px 0px 0 #D3DEF1;
	border-radius: 0 20px 20px 20px;
	text-align: center;
	padding: 30px 16px 40px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 0 auto;
}

.point04__item:before {
	content: "";
	position: absolute;
	left: -2px;
	top: -2px;
	border-bottom: 3em solid transparent;
	border-left: 3em solid var(--color-blue);
	position: absolute;
	z-index: 2;
}

.point04__title {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: var(--lineHeight14);
	margin-bottom: 16px;

}

.point04__title .big {
	font-size: 1.6rem;
}

.point04__list02 {
	gap: 5px;
}

.point04__item02 {
	background: var(--color-blue);
	color: var(--color-white);
	font-size: 1.2rem;
	font-weight: 500;
	border-radius: 6px;
	padding: 4px;
}

.point04__text {
	font-size: 1.6rem;
	line-height: 1.2;
}

.point04__text .big {
	font-size: 3.6rem;
	display: block
}

@media screen and (max-width: 767px) {
	.point04 .l-inner {
		flex-direction: column;
	}

	.point04 .c-title {
		text-align: center;
		margin: 0 auto 36px;
	}

	.point04__list {
		width: 100%;
		max-width: none;
	}

	.point04__list02 {
		grid-template-columns: 1fr 1fr;
	}

	.point04__text {
		display: flex;
		align-items: end;
		justify-content: center;
		font-size: 1.384rem;
	}

	.point04__list02 {
		gap: 12px;
	}

	.point04__text .big {
		font-size: 2.769rem;
	}
}


/* --------------------------------
 * flow
 * -------------------------------- */
.flow__list {
	position: relative;
}

.flow__list:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 1.6rem;
	margin: 0 auto;
	background: var(--color-blue);
	height: 3px;
	width: calc(100% - 90px);
	z-index: -1;
}

.flow__item {
	text-align: center;
}

.flow__num {
	font-size: 1.333rem;
	font-weight: 500;
	font-family: 'Open Sans';
	color: var(--color-white);
	background: var(--color-blue);
	text-transform: uppercase;
	letter-spacing: 0;
	width: 3.2rem;
	height: 3.2rem;
	line-height: 3.2rem;
	border-radius: 3.2rem;
	margin: 0 auto;
}

.c-orange .flow__num {
	background: var(--color-orange);
}

.flow__img img {
	margin: 52px auto 30px;
	max-height: 80px;
	width: auto;
	text-align: center;
}

.flow__text {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: var(--lineHeight14);
}

.c-orange .flow__text {
	color: var(--color-orange);
}

.flow__text .small {
	display: block;
	font-size: 0.8rem;
	margin-top: 4px;
}

.flow__bgText {
	margin: 64px auto 0;
	max-width: 20em;
	text-align: center;
	padding: 10px;
	background: var(--color-blue);
	color: var(--color-white);
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
}

.flow__bgText:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -20px;
	width: 32px;
	height: 27px;
	background: url(../image/arw_flow.png) no-repeat center center / contain;

}

@media screen and (max-width: 1004px) {}

@media screen and (max-width: 767px) {
	.flow__list {
		flex-direction: column;
	}

	.flow__list:before {
		left: 1.6rem;
		right: auto;
		top: 50px;
		height: calc(100% - 100px);
		width: 2px;
	}

	.flow__item {
		display: flex;
		align-items: center;
	}

	.flow__item+.flow__item {
		margin-top: 40px;
	}

	.flow__num {
		margin: 0;
	}

	.flow__img {
		margin: 0 28px;
		height: 60px;
		flex: 1;
	}

	.flow__img img {
		margin: 0;
		max-height: 60px;
	}

	.flow__text {
		text-align: left;
		width: 43%;
	}

	.flow__bgText {
		font-size: 1.3rem;
		margin: 50px auto 0;
	}
}

/* --------------------------------
 * information
 * -------------------------------- */
.schedule {
	background: var(--color-lblue);
}

.schedule__text {
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
}

.schedule__text .c-blue {
	font-size: 1.866rem;
}

.schedule__img {
	background: var(--color-white);
	padding: 42px 59px;
	border-radius: 20px;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.schedule__text {
		font-size: 1.384rem;
		line-height: var(--lineHeight14);
	}

	.schedule__text .c-blue {
		font-size: 1.846rem;
	}

	.schedule__img {
		padding: 30px 20px;
	}
}

/* --------------------------------
 * support
 * -------------------------------- */
.support__list {
	gap: 40px;
}

.support__item {
	border: 2px solid #D3DEF1;
	border-radius: 0 20px 20px 20px;
	text-align: center;
	padding: 40px;
	position: relative;
}

.support__item:before {
	content: "";
	position: absolute;
	left: -2px;
	top: -2px;
	border-bottom: 4.5em solid transparent;
	border-left: 4.5em solid var(--color-blue);
	position: absolute;
	z-index: 2;
}

.support__title {
	text-align: center;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: var(--lineHeight16);
}

.support__title .small {
	display: block;
	font-size: 1.333rem;
}

.support__img {
	margin: 20px auto;
}

.support__img img {
	max-height: 170px;
	width: auto;
}

.support__text {
	font-size: 1.2rem;
	font-weight: bold;
	text-align: left;
	width: 11em;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.support__item {
		padding: 40px 32px;
	}

	.support__title .small {
		font-size: 1.153rem;
	}

	.support__text {
		font-size: 1rem;
	}
}

/* --------------------------------
 * voice
 * -------------------------------- */
.voice {
	background: var(--color-lblue);
}

.voice__box:nth-of-type(n + 1) {
	margin-top: 60px;
}

.voice__profile {
	width: 15%;
	text-align: center;
}

.voice__name {
	line-height: var(--lineHeight16);
	margin-top: 14px;
}

.voice__text {
	flex: 1;
	margin-left: 60px;
	background: var(--color-blue);
	color: var(--color-white);
	border-radius: 20px;
	padding: 26px 30px 32px;
	position: relative;
}

.voice__text:before {
	content: "";
	position: absolute;
	left: -21px;
	top: 30%;
	width: 34px;
	height: 42px;
	background: url(../image/arw_voice01.png) no-repeat center center / contain;
}

.voice__box:nth-of-type(odd) .voice__text:before {
	background: url(../image/arw_voice02.png) no-repeat center center / contain;
}

.voice__box:nth-of-type(odd) .voice__text {
	background: var(--color-white);
	color: var(--color-blue);
}

.voice__title {
	font-size: 1.333rem;
	font-weight: bold;
}

.voice__description {
	font-weight: 500;
	margin-top: 10px;
}

@media screen and (max-width: 767px) {
	.voice__box {
		flex-direction: column;
	}

	.voice__box:nth-of-type(n + 1) {
		margin-top: 40px;
	}

	.voice__profile {
		width: 100%;
	}

	.voice__name {
		font-size: 1rem;
	}

	.voice__img {
		max-width: 120px;
		margin: 0 auto;
	}

	.voice__text {
		margin: 30px auto 0;
	}

	.voice__text:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: -28px;
		width: 34px;
		height: 42px;
		background: url(../image/arw_voice01_sp.png) no-repeat center center / contain;
	}

	.voice__box:nth-of-type(odd) .voice__text:before {
		background: url(../image/arw_voice02_sp.png) no-repeat center center / contain;
	}

	.voice__title {
		line-height: var(--lineHeight16);
	}

	.voice__description {
		font-size: 1rem;
	}
}

/* --------------------------------
 * footer
 * -------------------------------- */
.footer {
	padding: 60px 0;
	text-align: center;
	font-size: 0.875rem;
}

.footer__list {
	justify-content: center;
	margin-top: 20px;
}

.footer__item+.footer__item {
	position: relative;
	padding-left: 1em;
	margin-left: 1em;
}

.footer__item+.footer__item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 22%;
	height: 1em;
	width: 1px;
	background: #131313;
}

.footer__item a {
	transition: .3s;
}

.footer__item a:hover {
	opacity: .7;
}

.footer__copyright {
	font-size: 0.687rem;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.footer {
		padding: 50px 0;
	}

	.footer__copyright {
		margin-top: 20px;
	}
}