@charset "UTF-8";

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
p,
blockquote,
th,
td,
main,
figure {
	margin: 0;
	padding: 0;
}

table {
	font-size: 100%;
	font-family: inherit;
}

fieldset,
img {
	border: 0;
}

img,
svg {
	vertical-align: middle;
}

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

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 400;
}

ol,
ul {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

select,
input,
textarea {
	font-size: 100%;
}

header,
footer,
nav,
main,
section,
article,
figure,
aside,
picture {
	display: block;
}

.clearfix:after,
.row:after {
	content: '';
	display: table;
	clear: both;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* ========================================================
	template.css => テンプレート用CSS
======================================================== */
html {
	font-size: 62.5%;
}

body {
	background-color: #fff;
	font-size: 1rem;
	letter-spacing: 0.2em;
	line-height: 1.8;
	color: #1f1f1f;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

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

.slick-slider * {
	outline: none;
}

@media screen and (max-width: 750px) {
	img {
		max-width: 100%;
		height: auto;
	}
}

/* pc / sp
============================================================================================================ */
@media screen and (min-width: 751px),
print {

	.sp,
	.sps {
		display: none !important;
	}
}

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

	.pc,
	.sps {
		display: none !important;
	}
}

@media screen and (max-width: 370px) {
	.sps {
		display: block !important;
	}
}

:root {
	--base-color: #2864f0;
}

#container {
	font-size: 1.5rem;
}

/* ==================================
common parts
================================== */

.c-textlink a {
	position: relative;
	display: inline-block;
	padding-left: 12px;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0;
	color: #2864F0;
	text-decoration: none;
}

@media screen and (max-width: 750px) {
	.c-textlink a {
		padding-left: calc(18 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}
}

.c-textlink a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 8px;
	height: 10px;
	margin: auto;
	background-image: url("../img/icon_arrow_blue.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 750px) {
	.c-textlink a::before {
		top: calc(2 / 375 * 100vw);
		width: calc(6 / 375 * 100vw);
		height: calc(11 / 375 * 100vw);
	}
}

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

@media screen and (max-width: 750px) {
	.c-btnarea {
		flex-direction: column;
		margin-top: calc(-24 / 375 * 100vw);
	}
}

.c-btnarea .btn {
	margin: 0 16px;
}

@media screen and (max-width: 750px) {
	.c-btnarea .btn {
		margin: calc(24 / 375 * 100vw) 0 0;
	}
}

.c-btnarea .btn__link a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 60px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	border-radius: 16px;
	text-decoration: none;
	border: 2px solid #2864F0;
}

@media screen and (max-width: 750px) {
	.c-btnarea .btn__link a {
		width: calc(311 / 375 * 100vw);
		height: calc(60 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}
}

.c-btnarea .btn__link.white a {
	background-color: #fff;
	color: #2864F0;
}

.c-btnarea .btn__link.blue a {
	background-color: #2864F0;
	color: #fff;
}

.c__blue {
	color: var(--base-color);
}

.c__black {
	color: #1e1e1e;
}

/* ==================================
 header
================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	min-width: 1262px;
	background-color: #fff;
}

@media screen and (max-width: 750px) {
	.header {
		min-width: initial;
	}
}

.header__container {
	width: 100%;
	max-width: 1262px;
	height: 84px;
	padding: 0 20px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.header__container {
		height: calc(60 / 375 * 100vw);
		padding: calc(16 / 375 * 100vw);
	}
}

.header__logo {
	width: 180px;
}

@media screen and (max-width: 750px) {
	.header__logo {
		width: calc(120 / 375 * 100vw);
	}
}

.header--right {
	display: flex;
	align-items: center;
}

.header__tel {
	position: relative;
	top: -6px;
}

.header__tel .num {
	display: flex;
	align-items: center;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.04em;
	font-weight: bold;
	color: #2864F0;
}

.header__tel .num::before {
	content: "";
	width: 40px;
	height: 40px;
	display: block;
	background-image: url("../img/icon_tel.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.header__tel .note {
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0;
	text-indent: 7px;
}

.header__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 192px;
	height: 40px;
	margin-left: 40px;
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0;
	color: #fff;
	background-color: #2864F0;
	border-radius: 16px;
	text-decoration: none;
}

@media screen and (max-width: 750px) {
	.header__btn {
		width: calc(124 / 375 * 100vw);
		height: calc(32 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
	}
}

/* ==================================
 fv
================================== */
.main {
	margin-bottom: 50px;
	padding-top: 84px;
	min-width: 1262px;
}

@media screen and (max-width: 750px) {
	.main {
		min-width: initial;
		margin-bottom: 5vw;
		padding-top: calc(60 / 375 * 100vw);
		font-size: 1.3rem;
	}
}

.fv {
	overflow: hidden;
}

.fv__container {
	padding: 93px 0;
	background-color: #ebf3ff;
}

@media screen and (max-width: 750px) {
	.fv__container {
		padding: calc(16 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
	}
}

.fv__bg {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 1262px;
	padding: 0 20px;
	margin: 0 auto;
}

@media screen and (max-width: 750px) {
	.fv__bg {
		flex-direction: column;
		max-width: initial;
		padding: 0;
	}
}

.fv__band {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 360px;
	height: 40px;
	font-size: 16px;
	letter-spacing: 0;
	font-weight: 500;
	color: #FA6414;
	border: 1px solid #FA6414;
	border-radius: 2px;
	background-color: #fff;
}

@media screen and (max-width: 750px) {
	.fv__band {
		width: calc(343 / 375 * 100vw);
		height: calc(40 / 375 * 100vw);
		margin: auto;
		font-size: calc(12 / 375 * 100vw);
	}
}

.fv__title {
	margin-top: 30px;
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.04em;
	white-space: nowrap;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.fv__title {
		width: calc(343 / 375 * 100vw);
		font-size: calc(24 / 375 * 100vw);
		white-space: wrap;
		line-height: calc(36 / 24);
		margin: calc(24 / 375 * 100vw) auto 0;
	}
}

.fv__subtitle {
	margin-top: 38px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: calc(30 / 20);
}

@media screen and (max-width: 750px) {
	.fv__subtitle {
		margin: calc(24 / 375 * 100vw) auto 0;
		text-align: center;
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
	}
}

@media screen and (max-width: 750px) {
	.fv__img {
		margin-top: calc(21 / 375 * 100vw);
	}
}

.fv__btnarea {
	display: flex;
	margin-top: 38px;
}

@media screen and (max-width: 750px) {
	.fv__btnarea {
		flex-direction: column;
		margin-top: calc(-24 / 375 * 100vw);
	}
}

.fv__btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 32px;
}

@media screen and (max-width: 750px) {
	.fv__btn {
		margin-right: 0;
	}
}

.fv__btn__balloon {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
}

.fv__btn__link a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 60px;
	margin-top: 4px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	border: 2px solid #2864F0;
	border-radius: 16px;
}

@media screen and (max-width: 750px) {
	.fv__btn__link a {
		width: calc(311 / 375 * 100vw);
		height: calc(60 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		font-size: calc(16 / 375 * 100vw);
	}
}

.fv__btn__link.white a {
	color: #2864F0;
	background-color: #fff;
}

.fv__btn__link.blue a {
	color: #fff;
	background-color: #2864F0;
}

.fv__manager a {
	margin-top: 24px;
}

.fv--right {
	position: absolute;
	top: -13%;
	bottom: 0;
	right: -33px;
	width: 47%;
	max-width: 600px;
	margin: auto;
}

.fv__notes {
	width: 100%;
	max-width: 1262px;
	padding: 0 20px;
	margin: 16px auto 0;
	font-size: 12px;
	letter-spacing: 0;
	line-height: calc(18 / 12);
}

@media screen and (max-width: 750px) {
	.fv__notes {
		width: calc(343 / 375 * 100vw);
		max-width: initial;
		padding: 0;
		margin-top: calc(16 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		line-height: calc(18 / 12);
	}
}

/* ==================================
sec01
================================== */
.sec01 {
	margin-top: 129px;
	padding-bottom: 57px;
}

@media screen and (max-width: 750px) {
	.sec01 {
		margin-top: calc(47 / 375 * 100vw);
		padding-bottom: calc(40 / 375 * 100vw);
	}
}

.sec01__title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	letter-spacing: 0.04em;
	font-weight: 500;
	text-align: center;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.sec01__title {
		font-size: calc(18 / 375 * 100vw);
	}
}

.sec01__title::before {
	content: "";
	width: 80px;
	height: 80px;
	margin-right: 16px;
	background-repeat: no-repeat;
	background-image: url("../img/icon_balloon.png");
	background-position: center center;
	background-size: contain;
}

@media screen and (max-width: 750px) {
	.sec01__title::before {
		width: calc(48 / 375 * 100vw);
		height: calc(48 / 375 * 100vw);
		margin-right: calc(8 / 375 * 100vw);
	}
}

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

@media screen and (max-width: 750px) {
	.sec01__worry {
		display: block;
		position: relative;
	}
}

.sec01__worry__item--1 {
	width: 477px;
	margin-left: -90px;
}

@media screen and (max-width: 750px) {
	.sec01__worry__item--1 {
		width: auto;
		margin: 0;
	}
}

.sec01__worry__item--2 {
	width: 314px;
	margin-left: -20px;
}

@media screen and (max-width: 750px) {
	.sec01__worry__item--2 {
		width: auto;
		margin: 0;
	}
}

.sec01__worry__item--3 {
	width: 422px;
	margin-left: -40px;
}

@media screen and (max-width: 750px) {
	.sec01__worry__item--3 {
		width: auto;
		margin: 0;
	}
}

@media screen and (max-width: 750px) {
	.sec01__worry .slick-arrow {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		width: calc(17 / 375 * 100vw);
	}

	.sec01__worry .slick-arrow.prev-arrow {
		left: calc(7 / 375 * 100vw);
	}

	.sec01__worry .slick-arrow.next-arrow {
		right: calc(7 / 375 * 100vw);
	}
}

.sec01__arrow {
	width: 641px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.sec01__arrow {
		width: auto;
	}
}

.sec01__benefit {
	margin-top: 26px;
	font-size: 28px;
	letter-spacing: 0.04em;
	font-weight: 500;
	line-height: calc(42 / 28);
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec01__benefit {
		font-size: calc(18 / 375 * 100vw);
	}
}

/* ==================================
sec02
================================== */
.sec02 {
	background-color: #F7F5F5;
	padding: 80px 0;
}

@media screen and (max-width: 750px) {
	.sec02 {
		padding: calc(40 / 375 * 100vw) 0;
	}
}

.sec02__title {
	font-size: 34px;
	letter-spacing: 0.04em;
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec02__title {
		font-size: calc(20 / 375 * 100vw);
	}
}

.sec02__point {
	display: flex;
	justify-content: space-between;
	max-width: 1140px;
	margin: 40px auto 0;
}

@media screen and (max-width: 750px) {
	.sec02__point {
		flex-direction: column;
		max-width: initial;
		margin-top: calc(-16 / 375 * 100%);
	}
}

.sec02__point__item {
	width: calc(325 / 1140 * 100%);
}

@media screen and (max-width: 750px) {
	.sec02__point__item {
		width: calc(311 / 375 * 100vw);
		margin: calc(40 / 375 * 100vw) auto 0;
	}
}

.sec02__point__item .thumb .num {
	font-size: 48px;
	font-weight: 500;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec02__point__item .thumb .num {
		font-size: calc(48 / 375 * 100vw);
	}
}

.sec02__point__item .thumb .img {
	width: 100%;
	margin-top: -40px;
}

@media screen and (max-width: 750px) {
	.sec02__point__item .thumb .img {
		margin-top: calc(-44 / 375 * 100vw);
		;
	}
}

.sec02__point__item .textarea {
	position: relative;
	height: 323px;
	margin-top: 30px;
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea {
		height: auto;
		margin-top: calc(24 / 375 * 100vw);
	}
}

.sec02__point__item .textarea .title {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: calc(42 / 28);
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea .title {
		font-size: calc(20 / 375 * 100vw);
		line-height: calc(30 / 20);
	}
}

.sec02__point__item .textarea .subtitle {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea .subtitle {
		margin-top: calc(8 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}
}

.sec02__point__item .textarea .description {
	position: absolute;
	top: 123px;
	right: 0;
	left: 0;
	margin-top: 23px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: calc(24 / 16);
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea .description {
		position: static;
		margin-top: calc(24 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		font-weight: 400;
	}
}

.sec02__point__item .textarea .more a {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	font-size: 18px;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea .more a {
		position: static;
		margin-top: calc(24 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}
}

.sec02__point__item .textarea .more a::before {
	content: "";
	position: relative;
	top: 13px;
	width: 8px;
	height: 10px;
	margin-right: 10px;
	background-image: url("../img/icon_arrow_blue.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transform: rotate(90deg);
}

@media screen and (max-width: 750px) {
	.sec02__point__item .textarea .more a::before {
		width: calc(6 / 375 * 100vw);
		height: calc(11 / 375 * 100vw);
		margin-right: calc(12 / 375 * 100vw);
	}
}

/* ==================================
sec03
================================== */
.sec03__part.part--1 {
	margin-top: 93px;
}

@media screen and (max-width: 750px) {
	.sec03__part.part--1 {
		margin-top: calc(53 / 375 * 100vw);
	}
}

.sec03__part.part--2 {
	margin-top: 120px;
}

@media screen and (max-width: 750px) {
	.sec03__part.part--2 {
		margin-top: calc(53 / 375 * 100vw);
	}
}

.sec03__part.part--3 {
	margin-top: 113px;
	padding-bottom: 130px;
}

@media screen and (max-width: 750px) {
	.sec03__part.part--3 {
		margin-top: calc(53 / 375 * 100vw);
		padding-bottom: calc(80 / 375 * 100vw);
	}
}

.sec03__block {
	display: flex;
	justify-content: space-between;
	width: 1140px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.sec03__block {
		flex-direction: column;
		width: 100%;
	}
}

.sec03__left .top {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.sec03__left .top {
		width: calc(311 / 375 * 100vw);
		margin: auto;
		flex-direction: column;
		align-items: flex-start;
	}
}

.sec03__left .num {
	margin-right: 27px;
	font-size: 80px;
	font-weight: 500;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec03__left .num {
		font-size: calc(64 / 375 * 100vw);
	}
}

.sec03__left .label {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	background-color: #EBF3FF;
	border-radius: 24px;
	width: 360px;
	height: 48px;
	margin-top: 15px;
}

@media screen and (max-width: 750px) {
	.sec03__left .label {
		width: 100%;
		height: calc(48 / 375 * 100vw);
		margin-top: calc(-10 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}
}

.sec03__left .title {
	font-size: 40px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: calc(58 / 40);
}

@media screen and (max-width: 750px) {
	.sec03__left .title {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		font-size: calc(24 / 375 * 100vw);
		line-height: calc(36 / 24);
		white-space: nowrap;
	}
}

.sec03__left .description {
	max-width: 465px;
	margin-top: 50px;
	font-size: 16px;
	letter-spacing: 0;
	line-height: calc(24 / 16);
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	.sec03__left .description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		font-weight: 400;
	}
}

.sec03__left .c-textlink {
	margin-top: 32px;
}

@media screen and (max-width: 750px) {
	.sec03__left .c-textlink {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
	}
}

.sec03__right .img--1 {
	width: 630px;
	margin-top: 86px;
	margin-right: -41px;
	margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
	.sec03__right .img--1 {
		width: 100%;
		margin-right: 0;
		margin-bottom: 0;
		margin-top: calc(10 / 375 * 100vw);
	}
}

.sec03__right .img--2 {
	width: 525px;
	margin-top: -19px;
	margin-bottom: 40px;
}

@media screen and (max-width: 750px) {
	.sec03__right .img--2 {
		width: 100%;
		margin-top: calc(40 / 375 * 100vw);
		margin-bottom: 0;
	}
}

.sec03__right .img--3 {
	width: 640px;
	margin-top: 100px;
	margin-right: -41px;
	margin-bottom: 44px;
}

@media screen and (max-width: 750px) {
	.sec03__right .img--3 {
		width: 100%;
		margin-top: calc(25 / 375 * 100vw);
		margin-right: 0;
		margin-bottom: 0;
	}
}

.sec03__right .tab {
	width: 600px;
	margin-top: 86px;
}

.sec03__right .tab__head {
	border-bottom: 2px solid #D7D2D2;
}

.sec03__right .tab__head ul {
	display: flex;
	justify-content: center;
}

.sec03__right .tab__head li {
	padding: 0 24px 18px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
}

.sec03__right .tab__head li.active {
	position: relative;
}

.sec03__right .tab__head li.active::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	display: block;
	width: 85%;
	height: 4px;
	margin: auto;
	background-color: #2764EF;
}

/* ==================================
sec04
================================== */
.sec04 {
	background-color: #F7F5F6;
}

.sec04__container {
	width: 1020px;
	margin: auto;
	padding: 80px 0;
}

@media screen and (max-width: 750px) {
	.sec04__container {
		width: 100%;
		padding: calc(40 / 375 * 100vw) 0;
	}
}

.sec04__title {
	font-size: 34px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec04__title {
		font-size: calc(20 / 375 * 100vw);
	}
}

.sec04__description {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: calc(27 / 18);
}

@media screen and (max-width: 750px) {
	.sec04__description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		text-align: left;
		font-weight: 400;
	}
}

.sec04__img {
	margin-top: 40px;
}

@media screen and (max-width: 750px) {
	.sec04__img {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
	}
}

/* ==================================
sec05
================================== */
.sec05 {
	padding: 80px 0 70px;
}

@media screen and (max-width: 750px) {
	.sec05 {
		padding: calc(40 / 375 * 100vw) 0 calc(80 / 375 * 100vw);
	}
}

.sec05__title {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec05__title {
		font-size: calc(20 / 375 * 100vw);
		line-height: calc(30 / 20);
	}
}

.sec05__description {
	margin-top: 32px;
	font-size: 18px;
	font-weight: 500;
	line-height: calc(27 / 18);
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec05__description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		text-align: left;
		font-weight: 400;
	}
}

.sec05__point {
	display: flex;
	justify-content: center;
	margin-top: 22px;
}

@media screen and (max-width: 750px) {
	.sec05__point {
		flex-direction: column;
	}
}

.sec05__point__item:not(:last-child) {
	margin-right: 82px;
}

@media screen and (max-width: 750px) {
	.sec05__point__item:not(:last-child) {
		margin-right: 0;
		margin-bottom: calc(24 / 311 * 100%);
	}
}

.sec05__point__item .img {
	width: 160px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.sec05__point__item .img {
		width: calc(160 / 375 * 100vw);
	}
}

.sec05__point__item .title {
	margin-top: 24px;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0;
	font-weight: 700;
}

@media screen and (max-width: 750px) {
	.sec05__point__item .title {
		margin-top: calc(16 / 375 * 100vw);
		font-size: calc(18 / 375 * 100vw);
	}
}

.sec05__point__item .description {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	line-height: calc(24 / 16);
}

@media screen and (max-width: 750px) {
	.sec05__point__item .description {
		margin-top: calc(12 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		font-weight: 400;
	}
}

.sec05__notes {
	margin-top: 40px;
	text-align: center;
	font-size: 16px;
	letter-spacing: 0;
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	.sec05__notes {
		width: calc(311 / 375 * 100vw);
		margin: calc(40 / 375 * 100vw) auto 0;
		font-size: calc(14 / 375 * 100vw);
		text-align: left;
		font-weight: 400;
	}
}

.sec05 .c-btnarea {
	margin-top: 56px;
}

@media screen and (max-width: 750px) {
	.sec05 .c-btnarea {
		margin-top: calc(16 / 375 * 100vw);
	}
}

/* ==================================
sec06
================================== */
.sec06 {
	background-color: #FBFBFB;
	padding: 59px 0 86px;
}

@media screen and (max-width: 750px) {
	.sec06 {
		padding: calc(40 / 375 * 100vw) 0 calc(52 / 375 * 100vw);
	}
}

.sec06__title {
	font-size: 34px;
	text-align: center;
	letter-spacing: 0.04em;
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	.sec06__title {
		font-size: calc(20 / 375 * 100vw);
	}
}

.sec06__description {
	margin-top: 20px;
	font-size: 18px;
	letter-spacing: 0;
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec06__description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		text-align: left;
		font-size: calc(16 / 375 * 100vw);
	}
}

.sec06__user {
	display: flex;
	width: 1140px;
	margin: 30px auto 0;
}

@media screen and (max-width: 750px) {
	.sec06__user {
		flex-direction: column;
		width: 100%;
	}
}

.sec06__user__item {
	width: calc(100% / 3 - 40px * 2 /3);
}

@media screen and (max-width: 750px) {
	.sec06__user__item {
		width: calc(311 / 375 * 100vw);
		margin: auto;
	}
}

.sec06__user__item:not(:last-child) {
	margin-right: 40px;
}

@media screen and (max-width: 750px) {
	.sec06__user__item:not(:last-child) {
		margin-right: auto;
		margin-bottom: calc(40 / 375 * 100vw);
	}
}

.sec06__user__item .title {
	margin-top: 20px;
	font-size: 20px;
	letter-spacing: 0;
	font-weight: 700;
	line-height: calc(30 / 20);
}

@media screen and (max-width: 750px) {
	.sec06__user__item .title {
		margin-top: calc(24 / 375 * 100vw);
		font-size: calc(20 / 375 * 100vw);
		line-height: calc(30 / 20);
	}
}

.sec06__user__item .info {
	margin-top: 15px;
	font-size: 14px;
	letter-spacing: 0;
	line-height: calc(21 / 14);
}

@media screen and (max-width: 750px) {
	.sec06__user__item .info {
		margin-top: calc(24 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
		line-height: calc(21 / 14);
	}
}

.sec06 .c-btnarea {
	margin-top: 40px;
}

@media screen and (max-width: 750px) {
	.sec06 .c-btnarea {
		margin-top: calc(16 / 375 * 100vw);
	}
}

/* ==================================
sec07
================================== */
.sec07 {
	padding: 84px 0 80px;
	background-color: #EBF3FF;
}

@media screen and (max-width: 750px) {
	.sec07 {
		padding: calc(40 / 375 * 100vw) 0;
		overflow: hidden;
	}
}

.sec07__title {
	font-size: 34px;
	letter-spacing: 0.04em;
	font-weight: 500;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec07__title {
		font-size: calc(20 / 375 * 100vw);
		line-height: calc(30 / 20);
	}
}

.sec07__description {
	margin-top: 24px;
	font-size: 18px;
	letter-spacing: 0;
	font-weight: 500;
	line-height: calc(27 / 18);
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec07__description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto 0;
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		text-align: left;
	}
}

.sec07__flow {
	margin-top: 56px;
}

@media screen and (max-width: 750px) {
	.sec07__flow {
		margin-top: calc(40 / 375 * 100vw);
	}
}

.sec07__flow .title {
	font-size: 20px;
	text-align: center;
	font-weight: 700;
}

@media screen and (max-width: 750px) {
	.sec07__flow .listwrap {
		padding-left: calc(32 / 375 * 100vw);
	}
}

.sec07__flow .list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1140px;
	margin: 31px auto 0;
}

@media screen and (max-width: 750px) {
	.sec07__flow .list {
		width: auto;
		overflow-x: scroll;
	}
}

.sec07__flow .item {
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: center;
	width: 135px;
	height: 135px;
	border-radius: 50%;
	background-color: #fff;
	border: 1px solid #2764EF;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec07__flow .item {
		flex-shrink: 0;
		width: calc(120 / 375 * 100vw);
		height: auto;
		margin-right: calc(38 / 375 * 100vw);
	}
}

@media screen and (max-width: 750px) {
	.sec07__flow .item::before {
		content: "";
		display: block;
		padding-top: 100%;
	}
}

.sec07__flow .item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -29px;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	margin: auto;
	background-image: url("../img/icon_arrow_blue_2.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 750px) {
	.sec07__flow .item:not(:last-child)::after {
		right: calc(-33 / 375 * 100vw);
		width: calc(20 / 375 * 100vw);
		height: calc(20 / 375 * 100vw);
	}
}

.sec07__flow .item .num {
	margin-top: 17px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec07__flow .item .num {
		position: absolute;
		top: 0;
		margin-top: calc(10 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
	}
}

.sec07__flow .item .step {
	margin-top: 13px;
	font-size: 18px;
	letter-spacing: 0;
	font-weight: 500;
	line-height: calc(24 / 18);
}

@media screen and (max-width: 750px) {
	.sec07__flow .item .step {
		position: absolute;
		top: calc(35 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(21 / 16);
	}
}

.sec07__flow .item .step.up {
	margin-top: 2px;
}

@media screen and (max-width: 750px) {
	.sec07__flow .item .step.up {
		top: calc(31 / 375 * 100vw);
	}
}

.sec07__flow .note {
	margin-top: 31px;
	font-size: 16px;
	letter-spacing: 0;
	font-weight: 500;
	text-align: center;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.sec07__flow .note {
		width: calc(311 / 375 * 100vw);
		margin: calc(40 / 375 * 100vw) auto 0;
		text-align: left;
		line-height: calc(21 / 14);
	}
}

.sec07__support {
	width: 1140px;
	margin: 40px auto 0;
	padding: 40px 0 73px;
	background-color: #fff;
	border-radius: 16px;
}

@media screen and (max-width: 750px) {
	.sec07__support {
		width: calc(311 / 375 * 100vw);
		padding: calc(40 / 375 * 100vw) 0;
	}
}

.sec07__support .title {
	font-size: 28px;
	text-align: center;
	letter-spacing: 0.04em;
	font-weight: 700;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.sec07__support .title {
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
	}
}

.sec07__support .list {
	display: flex;
	justify-content: center;
	margin-top: 44px;
}

@media screen and (max-width: 750px) {
	.sec07__support .list {
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 calc(14 / 375 * 100vw);
		margin-top: calc(-8 / 311 * 100%);
	}
}

.sec07__support .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.sec07__support .item {
		width: calc(155 / 311 * 100%);
		margin-top: calc(32 / 311 * 100%);
	}
}

.sec07__support .item:not(:last-child) {
	margin-right: 47px;
}

@media screen and (max-width: 750px) {
	.sec07__support .item:not(:last-child) {
		margin-right: 0;
	}
}

.sec07__support .item .thumb {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec07__support .item .thumb {
		font-size: calc(18 / 375 * 100vw);
	}
}

.sec07__support .item .img {
	width: 98px;
	margin-top: 16px;
}

@media screen and (max-width: 750px) {
	.sec07__support .item .img {
		width: calc(98 / 375 * 100vw);
		margin-top: 0;
	}
}

.sec07__support .item .description {
	margin-top: 14px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	line-height: calc(24 / 16);
}

@media screen and (max-width: 750px) {
	.sec07__support .item .description {
		margin-top: calc(14 / 375 * 100vw);
		font-size: calc(14 / 375 * 100vw);
		line-height: calc(21 / 14);
	}
}

.sec07 .c-btnarea {
	margin-top: 56px;
}

@media screen and (max-width: 750px) {
	.sec07 .c-btnarea {
		margin-top: calc(16 / 375 * 100vw);
	}
}

/* ==================================
sec08
================================== */
.sec08 {
	padding: 120px 0 176px;
}

@media screen and (max-width: 750px) {
	.sec08 {
		padding: calc(80 / 375 * 100vw) 0;
	}
}

.sec08__title {
	font-size: 34px;
	letter-spacing: 0.04em;
	font-weight: 400;
	text-align: center;
}

@media screen and (max-width: 750px) {
	.sec08__title {
		font-size: calc(20 / 375 * 100vw);
	}
}

.sec08__faq {
	width: 1024px;
	margin: 56px auto 0;
	border-top: 1px solid #E1DCDC;
}

@media screen and (max-width: 750px) {
	.sec08__faq {
		width: calc(311 / 375 * 100vw);
		margin: calc(23 / 375 * 100vw) auto 0;
	}
}

.sec08__faq .item {
	padding: 25px 0 32px;
	border-bottom: 1px solid #E1DCDC;
}

@media screen and (max-width: 750px) {
	.sec08__faq .item {
		padding: calc(26 / 375 * 100vw) 0;
	}
}

.sec08__faq .item dt {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.sec08__faq .item dt {
		display: flex;
		align-items: flex-start;
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(27 / 16);
	}
}

.sec08__faq .item dt::before {
	content: "Q.";
	font-size: 24px;
	letter-spacing: 0.04em;
	font-weight: 500;
	margin-right: 8px;
	color: #2864F0;
}

@media screen and (max-width: 750px) {
	.sec08__faq .item dt::before {
		position: relative;
		top: calc(-5 / 375 * 100vw);
		font-size: calc(20 / 375 * 100vw);
		margin-right: calc(8 / 375 * 100vw);
	}
}

.sec08__faq .item dd {
	margin-top: 16px;
	font-size: 16px;
	letter-spacing: 0;
	line-height: calc(24 / 16);
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	.sec08__faq .item dd {
		margin-top: calc(16 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
		line-height: calc(24 / 16);
		font-weight: 400;
	}
}

.sec08__faq .item dd>a {
	color: #2864F0;
	text-decoration: underline;
}

/* ==================================
sec09
================================== */
.sec09 {
	margin-bottom: 80px;
}

@media screen and (max-width: 750px) {
	.sec09 {
		margin-bottom: calc(80 / 375 * 100vw);
	}
}

.sec09__container {
	width: 950px;
	padding: 40px 0;
	margin: auto;
	border-radius: 16px;
	background-color: #2864F0;
}

@media screen and (max-width: 750px) {
	.sec09__container {
		width: calc(343 / 375 * 100vw);
		padding: calc(40 / 375 * 100vw) 0;
	}
}

.sec09__title {
	font-size: 34px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	color: #fff;
}

@media screen and (max-width: 750px) {
	.sec09__title {
		font-size: calc(20 / 375 * 100vw);
	}
}

.sec09__description {
	margin: 24px 0 32px;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0;
	line-height: calc(24 / 16);
	color: #fff;
}

@media screen and (max-width: 750px) {
	.sec09__description {
		width: calc(311 / 375 * 100vw);
		margin: calc(24 / 375 * 100vw) auto;
		font-size: calc(16 / 375 * 100vw);
		text-align: left;
		font-weight: 400;
	}
}

@media screen and (max-width: 750px) {
	.sec09 .c-btnarea .btn {
		margin-top: calc(21 / 375 * 100vw);
	}
}


/* ==================================
footer
================================== */
.footer {
	min-width: 1262px;
}

@media screen and (max-width: 750px) {
	.footer {
		min-width: initial;
	}
}

.footer__top {
	background-color: #EAF3FF;
}

.footer__top__container {
	display: flex;
	justify-content: space-between;
	width: 720px;
	padding: 40px 0;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.footer__top__container {
		flex-direction: column;
		width: calc(311 / 375 * 100vw);
		padding: calc(40 / 375 * 100vw) 0;
	}
}

.footer__top .thumb {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.footer__top .thumb {
		font-size: calc(18 / 375 * 100vw);
	}
}

.footer__top .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 60px;
	margin-top: 24px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	background-color: #fff;
	border: 2px solid #2764F1;
	border-radius: 16px;
}

@media screen and (max-width: 750px) {
	.footer__top .btn a {
		width: 100%;
		margin-top: calc(16 / 375 * 100vw);
		height: calc(60 / 375 * 100vw);
		font-size: calc(16 / 375 * 100vw);
	}
}

.footer__top .tel .num {
	display: flex;
	margin-top: 15px;
	align-items: center;
	font-size: 34px;
	letter-spacing: 0.04em;
	font-weight: 500;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.footer__top .tel .num {
		margin-top: calc(6 / 375 * 100vw);
		font-size: calc(34 / 375 * 100vw);
	}
}

.footer__top .tel .num::before {
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	margin-right: 8px;
	background-image: url("../img/icon_tel_2.png");
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 750px) {
	.footer__top .tel .num::before {
		width: calc(35 / 375 * 100vw);
		height: calc(35 / 375 * 100vw);
		margin-right: calc(8 / 375 * 100vw);
	}
}

@media screen and (max-width: 750px) {
	.footer__top .tel .num a {
		text-decoration: none;
	}
}

@media screen and (max-width: 750px) {
	.footer__top .right {
		margin-top: calc(40 / 375 * 100vw);
	}

}

.footer__top .right .tel .note {
	margin-top: 15px;
	font-size: 12px;
	letter-spacing: 0;
	font-weight: 500;
	line-height: 1;
}

@media screen and (max-width: 750px) {
	.footer__top .right .tel .note {
		margin-top: calc(7 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		line-height: calc(18 / 12);
	}
}

.footer__top .left .note {
	margin-top: 21px;
	font-size: 12px;
	letter-spacing: 0;
	line-height: calc(18 / 12);
}

@media screen and (max-width: 750px) {
	.footer__top .left .note {
		margin-top: calc(16 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		line-height: calc(18 / 12);
	}
}

.footer__top .right .note {
	margin-top: 25px;
	font-size: 12px;
	letter-spacing: 0;
	line-height: calc(18 / 12);
}

@media screen and (max-width: 750px) {
	.footer__top .right .note {
		margin-top: calc(24 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
		line-height: calc(18 / 12);
	}
}

.footer__bottom {
	padding: 30px 0 57px;
	background-color: #F7F7F7;
}

@media screen and (max-width: 750px) {
	.footer__bottom {
		padding: calc(16 / 375 * 100vw) 0 calc(30 / 375 * 100vw);
	}
}

.footer__topback a {
	display: block;
	width: 25px;
	margin: auto;
}

@media screen and (max-width: 750px) {
	.footer__topback a {
		width: calc(28 / 375 * 100vw);
	}
}

.footer__corporate {
	display: flex;
	justify-content: center;
	margin-top: 72px;
}

@media screen and (max-width: 750px) {
	.footer__corporate {
		flex-direction: column;
		margin-top: calc(50 / 375 * 100vw);
	}
}

.footer__logo {
	width: 245px;
}

@media screen and (max-width: 750px) {
	.footer__logo {
		width: calc(245 / 375 * 100vw);
		margin: auto;
	}
}

.footer__info {
	margin-top: 11px;
	margin-left: 50px;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.footer__info {
		margin-top: calc(20 / 375 * 100vw);
		margin-left: 0;
		font-size: calc(14 / 375 * 100vw);
		text-align: center;
	}
}

@media screen and (max-width: 750px) {
	.footer__banner {
		width: calc(170 / 375 * 100vw);
		margin: calc(20 / 375 * 100vw) auto 0;
	}
}

@media screen and (max-width: 750px) {
	.footer__banner .item:not(:first-child) {
		margin-top: calc(12 / 375 * 100vw);
	}
}

.footer__list {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

@media screen and (max-width: 750px) {
	.footer__list {
		width: calc(311 / 375 * 100vw);
		margin: calc(40 / 375 * 100vw) auto 0;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 750px) {
	.footer__item {
		line-height: 1.4;
	}
}

.footer__item:nth-child(n+2):before {
	content: "/";
	margin-left: 0.4em;
}

@media screen and (max-width: 750px) {
	.footer__item:nth-child(n+2):before {
		margin-left: 0.8em;
		margin-right: 0.4em;
	}
}

.footer__link {
	font-size: 14px;
	letter-spacing: 0;
	color: #1f1f1f;
	text-decoration: none;
}

@media screen and (max-width: 750px) {
	.footer__link {
		font-size: calc(14 / 375 * 100vw);
	}
}

.footer__copyright {
	font-size: 14px;
	text-align: center;
	letter-spacing: 0;
}

@media screen and (max-width: 750px) {
	.footer__copyright {
		margin-top: calc(15 / 375 * 100vw);
		font-size: calc(12 / 375 * 100vw);
	}
}

/* ==================================
modal
================================== */
.modal {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 3000;
	display: none;
}

.modal::before {
	content: "";
	display: block;
	width: 100vw;
	height: 101vh;
	background-color: #464343;
	opacity: 0.5;
}

.modal__container {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 90%;
	max-width: 1024px;
	height: 763px;
	background-color: #fff;
	margin: auto;
	border-radius: 8px;
}

@media screen and (max-width: 750px) {
	.modal__container {
		height: calc(449 / 375 * 100vw);
	}
}

.modal__img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(596 / 1024 * 100%);
	transform: translate3d(-50%, -50%, 0);
}

@media screen and (max-width: 750px) {
	.modal__img {
		width: calc(312 / 375 * 100vw);
		transform: translate3d(-50%, -50%, 0);
	}
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

@media screen and (max-width: 750px) {
	.modal__close {
		top: calc(5 / 375 * 100vw);
		right: calc(5 / 375 * 100vw);
		width: calc(40 / 375 * 100vw);
		height: calc(40 / 375 * 100vw);
	}
}

.modal__close img {
	display: block;
	width: 21px;
	height: 21px;
}

@media screen and (max-width: 750px) {
	.modal__close img {
		width: calc(21 / 375 * 100vw);
		height: calc(21 / 375 * 100vw);
	}
}
