/******************************
■ヘッダー
■フッター
■トップページ
■メディアクエリ　ブレイクポイント
*******************************/

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

body{
	overflow-x: hidden;
}
img {
	display: block;
    width: 100%;
}

/*全体幅*/
*, *:before, *:after { box-sizing: border-box;}

/*フォント*/
/*NotoSansJP*/
@font-face {
	font-family: 'NotoSansJP';
	src: url('../fonts/NotoSansJP-Regular.woff2') format('woff2'),
		 url('../fonts/NotoSansJP-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'NotoSansJP';
	src: url('../fonts/NotoSansJP-Medium.woff2') format('woff2'),
		 url('../fonts/NotoSansJP-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'NotoSansJP';
	src: url('../fonts/NotoSansJP-Bold.woff2') format('woff2'),
		 url('../fonts/NotoSansJP-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
		 url('../fonts/Roboto-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Roboto';
	src: url('../fonts/Roboto-Bold.woff2') format('woff2'),
		 url('../fonts/Roboto-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
		 url('../fonts/Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}


div,a,p,span {
	font-family: "Roboto", "NotoSansJP";
	font-weight: 400;
}
h1,h2,h3,h4,h5 {
	font-family: "Roboto", "NotoSansJP";
	font-weight: 700;
}


/* ヘッダー
------------------------------------------------------------*/
#header {
	position: sticky;
	top: 0;
	padding: 1.182vw 6.251vw;
	background: #262626;
	z-index: 999;
}

.site_title {
	width: 18.612vw;
}

.header_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*Header CTA*/
.header_cta {
	display: flex;
}

.cta_btn {
	border-radius: 6.945vw;
	color: #fff;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta_btn.tel {
	background: #F27F01;
	margin-right: 1.043vw;
	padding: 0.695vw 1.39vw 0.5vw;
	display: block;
}

.cta_btn.line {
	background: #01C401;
	padding: 0.834vw 1.598vw;
}

.cta_btn.tel img {
	width: 0.765vw;
}

.cta_btn.line img {
	width: 1.807vw;
}

.cta_tel_num {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta_tel_num span {
	font-weight: 700;
	font-size: 1.39vw;
	letter-spacing: 0.06em;
	line-height: 1;
}

.header_cta .cta_btn {
	width: 14.098vw;
}

.cta_tel_caption {
	font-size: 0.834vw;
	line-height: 1.32vw;
	letter-spacing: 0.06em;
	text-align: center;
	font-weight: 400;
}

.cta_btn.line span {
	font-weight: 700;
	font-size: 1.39vw;
	line-height: 1.876vw;
	letter-spacing: 0.02em;
}

/*ナビゲーション*/
.nav_menu ul {
	display: flex;
	gap: 2vw;
}

.nav_menu ul li a {
	text-decoration: none;
	color: #555;
	font-size: 1.55vw;
}

/* フッター
------------------------------------------------------------*/
#footer {
	padding-top: 27.917vw;
	padding-bottom: 2.084vw;
	background: #1F4378;
}

.footer_copyright {
	text-align: center;
	font-weight: 400;
	font-size: 1.112vw;
	line-height: 1.32vw;
	color: #FFFFFF;
}


/* FV
------------------------------------------------------------*/
.fv {
	margin-bottom: -1.182vw;
}
.fv_container {
	position: relative;
}
.fv_catch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #1F4378;
	font-weight: 400;
	font-size: 1.668vw;
	line-height: 2.501vw;
	text-align: center;
	color: #fff;
	padding: 0.487vw 0;
}
.fv_catch .emphasis {
	font-weight: 700;
	color: #FFF500;
}
.fv_contents {
	position: absolute;
	top: 13.334vw;
	left: 9.029vw;
	opacity: 0;
}
.fv_contents.fade_in {
	opacity: 0;
	animation-name: FVfadein;
	animation-duration: 0.8s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.3s;
}

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

	100% {
		opacity: 1;
	}
}
.fv_title {
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.fv_title1 {
	position: relative;
	font-weight: 700;
	font-size: 6.598vw;
	line-height: 1;
	letter-spacing: -0.08em;
	color: #FFFFFF;
	padding-left: 11.598vw;
}
.fv_title1 img {
	position: absolute;
	top: -3.473vw;
	left: -1vw;
	width: 13.473vw;
}
.fv_title2 {
	font-weight: 700;
	font-size: 8.89vw;
	line-height: 1.15;
	color: #FFF500;
}
.fv_title3 {
	font-weight: 600;
	font-size: 4.168vw;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #FFF500;
	margin-bottom: 1.8vw;
}
.fv_title4 {
	font-weight: 400;
	font-size: 2.223vw;
	line-height: 3.473vw;
	color: #FFFFFF;
	margin-bottom: 1.945vw;
}
.fv_title4 .emphasis {
	font-weight: 700;
}
.fv_cta {
	position: relative;
}

.fv_line_icon {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 6.668vw;
	z-index: 1;
}

.fv_cta_btn {
	display: block;
	width: 27.431vw;
	height: 5.348vw;
	border-radius: 6.945vw;
	background: #00C500;
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	margin-left: 2.64vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

.fv_cta_caption {
	font-weight: 700;
	font-size: 0.973vw;
	line-height: 1.32vw;
	text-align: center;
	color: #FFFFFF;
}

.fv_cta_caption .emphasis {
	color: #FFF500;
	font-weight: 700;
}

.fv_cta_text {
	position: relative;
}

.fv_cta_text span {
	font-weight: 700;
	font-size: 1.668vw;
	line-height: 2.293vw;
	letter-spacing: 0.02em;
	color: #FFFFFF;
}

.fv_cta_text img {
	position: absolute;
	top: 50%;
	right: -2.57vw;
	transform: translateY(-50%);
	width: 1.251vw;
}
/*Recruitment*/
.recruitment_inner {
	width: 63.89vw;
	margin: auto;
	padding-bottom: 4.862vw;
}

.section_title {
	margin-bottom: 3.473vw;
}

.section_label {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.695vw;
}

.section_label img {
	width: 2.918vw;
}

.section_label span {
	font-weight: 400;
	font-size: 1.39vw;
	line-height: 2.084vw;
	letter-spacing: 0.04em;
	color: #262626;
	margin: 0 0.904vw;
}

.section_h2 {
	font-weight: 700;
	font-size: 2.779vw;
	line-height: 3.751vw;
	color: #31458E;
	text-align: center;
}

.recruitment_text {
	background: #F5F5F5;
	padding: 2.084vw;
	text-align: center;
}

.recruitment_text p {
	line-height: 25px;
	font-weight: 400;
	font-size: 1.251vw;
	line-height: 1.737vw;
	color: #262626;
}

/*About*/
.about1_outer {
	background: #1F4378;
	position: relative;
}
.about1_outer:after {
	content: "";
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 11.043vw;
	height: 5.348vw;
	background: #1F4378;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.about1_inner {
	width: 81.945vw;
	margin: auto;
	padding: 6.945vw 0;
}

.section_title.white span {
	color: #fff;
}

.section_title.white .section_h2 {
	color: #fff;
}

.about1_main {
	display: flex;
	justify-content: space-between;
}

.about1_contents {
	width: 37.987vw;
	flex-shrink: 0;
}

.about1_contents_label {
	font-weight: 500;
	font-size: 1.39vw;
	line-height: 2.015vw;
	color: #FFFFFF;
	margin-bottom: 0.487vw;
}

.about1_contents_title {
	font-weight: 600;
	font-size: 2.223vw;
	line-height: 2.709vw;
	color: #C7CDE8;
	margin-bottom: 1.39vw;
}

.about1_contents p {
	font-weight: 400;
	font-size: 1.251vw;
	line-height: 2.084vw;
	letter-spacing: 0.01em;
	color: #FFFFFF;
}

.about1_image {
	width: 37.778vw;
}

.about2 {
	padding-top: 12.293vw;
}

.about2_title {
	font-size: 2.779vw;
	line-height: 3.751vw;
	text-align: center;
	color: #31458E;
	font-weight: 700;
	margin-bottom: 3.473vw;
}

.about2_title span {
	font-weight: 700;
	font-size: 4.445vw;
	line-height: 5.557vw;
}

.about2_title .underline {
	position: relative;
}

.about2_title .underline:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0.4vw;
	z-index: -1;
	width: 99%;
	height: 0.765vw;
	background: #F3D228;
	left: 49.5%;
	transform: translateX(-50%);
}

.about2_text {
	text-align: center;
	margin-bottom: 6.945vw;
}

.about2_text p {
	font-size: 1.251vw;
	line-height: 1.737vw;
	color: #262626;
}

.about3 {
	background: #F5F5F5;
}

.about3_inner {
	width: 81.945vw;
	margin: auto;
	padding: 6.945vw 0;
}

.about3_title {
	font-weight: 700;
	font-size: 2.779vw;
	line-height: 3.751vw;
	text-align: center;
	color: #31458E;
	margin-bottom: 2.779vw;
}

.about3_copy {
	font-weight: 600;
	font-size: 1.945vw;
	line-height: 2.501vw;
	text-align: center;
	color: #262626;
	margin-bottom: 2.084vw;
}

.about3_text {
	width: 63.89vw;
	margin: 0 auto 4.862vw;
}

.about3_text p {
	font-weight: 400;
	font-size: 1.251vw;
	line-height: 1.737vw;
	color: #262626;
}

.about3_items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about3_item.flex {
	display: flex;
}
.about3_item_contents {
	width: 16.4vw;
}

.about3_item_title {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 2.223vw;
	line-height: 3.057vw;
	color: #2C2C2C;
	justify-content: center;
	margin-bottom: 0.695vw;
}

.about3_item_title img {
	width: 2.501vw;
	margin-right: 0.695vw;
}

.about3_item_text {
	font-weight: 400;
	font-size: 1.668vw;
	line-height: 2.084vw;
	color: #2C2C2C;
	text-align: center;
}

.about3_item_image {
	width: 17.154vw;
	position: absolute;
	top: 50%;
	right: 2vw;
	transform: translateY(-50%);
}

.about3_item {
	background: #fff;
	border: 2px solid #31458E;
	border-radius: 0.695vw;
	padding: 4.654vw 2.432vw 4.793vw;
	width: 18.959vw;
}

.about3_item:nth-child(1),
.about3_item:nth-child(2),
.about3_item:nth-child(3) {
	margin-bottom: 2.084vw;
	padding: 4.654vw 2.432vw 2.987vw;
}

.about3_item.item1,
.about3_item.item6 {
	width: 40vw;
	position: relative;
}

.about3_item.item6 .about3_item_text {
	width: 21vw;
	margin: auto;
}

/*Point*/
.point_outer {
	background: #1F4378;
}

.point_inner {
	width: 78.75vw;
	margin: auto;
	padding: 6.945vw 0 26.39vw;
}

.point_main {
	display: flex;
	justify-content: space-between;
}

.point_item {
	width: 38vw;
	border-radius: 0.695vw;
	background: #fff;
	padding: 2.779vw 2.64vw 1.598vw;
}

.point_item.summer {
	border: 2px solid #F5091F;
}

.point_item.winter {
	border: 2px solid #00A8DC;
}

.point_item.summer .point_item_title {
	background: #F5091F;
}

.point_item.winter .point_item_title {
	background: #00A8DC;
}

.point_item_title {
	font-weight: 700;
	font-size: 1.945vw;
	line-height: 2.64vw;
	color: #FFFFFF;
	text-align: center;
	margin-bottom: 1.598vw;
}

.point_item_title .emphasis {
	font-weight: 700;
	font-size: 4.445vw;
	line-height: 5.209vw;
	color: #FFDD0A;
}

.point_item_title .yellow {
	color: #FFDD0A;
	font-weight: 700;
}

.point_item_image {
	width: 30.209vw;
	margin: 0 auto 1.043vw;
}

.point_item ul li {
	font-weight: 500;
	font-size: 1.668vw;
	line-height: 2.432vw;
	letter-spacing: 0.01em;
	color: #2A424B;
	margin-bottom: 2.084vw;
	display: flex;
	align-items: start;
}

.point_item ul li img {
	width: 3.057vw;
	margin-right: 1.39vw;
}


/*CTA*/
.cta {
	margin-top: -19.445vw;
	margin-bottom: -18.057vw;
	position: relative;
}

.cta_outer {
	width: 82vw;
	margin: auto;
	background: url(/images/cta_bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.cta_inner {
	width: 64.306vw;
	margin: auto;
	padding: 5.557vw 0;
}

.cta .section_title {
	margin-bottom: 1.668vw;
}

.cta_caption {
	font-weight: 400;
	font-size: 1.529vw;
	line-height: 1.876vw;
	text-align: center;
	color: #FFFFFF;
	margin-bottom: 1.945vw;
}

.cta_items {
	display: flex;
	justify-content: space-between;
}

.cta_item {
	width: 29.862vw;
	background: #FFFFFF;
	border-radius: 1.043vw;
	padding: 2.57vw 0 1.876vw;
	text-align: center;
}

.cta_item_copy {
	font-weight: 500;
	font-size: 1.39vw;
	line-height: 2.084vw;
	color: #262626;
	margin-bottom: 0.695vw;
}

.cta .cta_tel_num img {
	width: 1.737vw;
	margin-right: 0.834vw;
}

.cta .cta_tel_num {
	justify-content: center;
}

.cta .cta_tel_num a {
	text-decoration: none;
	font-weight: 600;
	font-size: 2.779vw;
	line-height: 3.612vw;
	color: #262626;
}

.cta_item_caption {
	font-weight: 500;
	font-size: 1.112vw;
	line-height: 1.737vw;
	color: #262626;
}

.cta_item.line .cta_item_copy {
	margin-bottom: 1.251vw;
}

.cta_line_btn {
	width: 14.098vw;
	margin: auto;
}

.cta2,
.cta3 {
	margin-top: -22.014vw;
	margin-bottom: -15.487vw;
}

.cta.last {
	margin-top: -15.279vw;
	margin-bottom: -22.223vw;
}

/*Target*/
.target_outer {
	background: #F5F5F5;
}

.target_inner {
	width: 82vw;
	margin: auto;
	padding-top: 25vw;
	padding-bottom: 29vw;
}

.target_title {
	font-weight: 700;
	font-size: 2.779vw;
	line-height: 3.751vw;
	text-align: center;
	color: #2E4286;
	margin-bottom: 5.001vw;
}

.target_items {
	display: flex;
	justify-content: space-between;
	width: 70vw;
	margin: auto;
}

.target_item {
	width: 33.334vw;
	text-align: center;
	position: relative;
	padding: 2.987vw 1.112vw 1.6vw;
	background: #fff;
	border: 2px solid #2E4286;
	border-radius: 0.557vw;
}

.target_item_label {
	background: #2E4286;
	border-radius: 0.557vw;
	font-weight: 500;
	font-size: 1.251vw;
	line-height: 1.737vw;
	color: #FFFFFF;
	padding: 0.695vw 0;
	position: absolute;
	top: -1.529vw;
	left: 50%;
	transform: translateX(-50%);
	width: 26.042vw;
}

.target_item_image {
	width: 28.473vw;
	margin: 0 auto 1.39vw;
}

.target_item p {
	font-weight: 400;
	font-size: 1.112vw;
	line-height: 1.529vw;
	color: #2E4286;
}

/*Plan*/
.plan_inner {
	width: 69.5vw;
	margin: auto;
	padding-top: 22.431vw;
	padding-bottom: 6.945vw;
}

.plan .section_title {
	margin-bottom: 3.682vw;
}

.plan_contents {
	display: flex;
	justify-content: space-between;
	width: 44.098vw;
	margin: 0 auto 4.376vw;
}

.plan_contents_image {
	width: 7.362vw;
}

.plan_contents ul li {
	display: flex;
	align-items: center;
	font-weight: 400;
	font-size: 1.668vw;
	line-height: 2.432vw;
	letter-spacing: 0.01em;
	color: #262626;
	margin-bottom: 0.279vw;
}

.plan_contents ul li img {
	width: 3.057vw;
	margin-right: 1.945vw;
}

.plan_contents ul {
	padding-top: 0.348vw;
}

.plan_title_caption {
	text-align: center;
	font-size: 1.529vw;
	line-height: 1.876vw;
	margin-top: 2.084vw;
}

.plan_item {
	width: 100%;
	background: #F5F5F5;
	border-radius: 0.557vw;
	position: relative;
	text-align: center;
	padding: 5.209vw 5.209vw 2.779vw;
	margin-bottom: 6.945vw;
}

.plan_item:last-child {
	margin-bottom: 0;
	padding-bottom: 3.959vw;
}

.plan_item:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1.737vw;
	border-radius: 0.557vw 0.557vw 0px 0px;
}

.plan_item:nth-child(1)::before {
	background: #C7CDE8;
}

.plan_item:nth-child(2)::before {
	background: #6177C6;
}

.plan_item:last-child .plan_item_image {
	width: 13.682vw;
}
.plan_item:last-child .plan_item_contents {
	margin-bottom: 3.265vw;
}

.plan_item_btn.no_btn {
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	color: #31458E;
	background: transparent;
	padding: 0;
}

.plan_item:nth-child(3)::before {
	background: #2E4286;
	height: 0.904vw;
}

.plan_item_label {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.348vw;
}

.plan_item_label img {
	width: 2.918vw;
}

.plan_item_label span {
	margin: 0 0.904vw;
	font-weight: 400;
	font-size: 1.39vw;
	line-height: 2.084vw;
	letter-spacing: 0.04em;
	color: #262626;
}

.plan_item_title {
	font-weight: 700;
	font-size: 2.223vw;
	line-height: 3.057vw;
	color: #2E4286;
	margin-bottom: 1.39vw;
}

.plan_item_image {
	width: 17.709vw;
}

.plan_item_description {
	font-size: 1.529vw;
	line-height: 2.432vw;
	margin-bottom: 2.084vw;
}

.plan_item_contents {
	display: flex;
	background: #fff;
	border-radius: 0.557vw;
	margin-bottom: 2.084vw;
	padding: 2.084vw 2.779vw 2.084vw 2.084vw;
	justify-content: space-between;
}

.plan_item_list {
	width: 34.167vw;
}

.plan_item_list li {
	display: flex;
	align-items: center;
	font-size: 1.668vw;
	line-height: 2.015vw;
	letter-spacing: 0.01em;
}

.plan_item_list li img {
	width: 3.057vw;
	margin-right: 1.945vw;
}

.plan_item_copy {
	font-weight: 700;
	font-size: 1.668vw;
	line-height: 2.084vw;
	color: #2E4286;
	margin-bottom: 2.084vw;
}

.plan_item_btn {
	background: #2E4286;
	border-radius: 0.557vw;
	display: block;
	width: 18.057vw;
	margin: auto;
	font-weight: 500;
	font-size: 18px;
	line-height: 25px;
	color: #FFFFFF;
	text-decoration: none;
	padding: 1.182vw 0;
}

/*Support*/
.support_outer {
	background: #1F4378;
}

.support_inner {
	width: 82vw;
	margin: auto;
	padding-top: 6.945vw;
	padding-bottom: 29.237vw;
}

.support .section_title {
	margin-bottom: 4.029vw;
}

.support_items {
	display: flex;
	justify-content: space-between;
}

.support_item {
	width: 24.862vw;
}

.support_item_image {
	margin-bottom: 1.182vw;
}

.support_item_title {
	font-weight: 700;
	font-size: 1.668vw;
	line-height: 2.432vw;
	text-align: center;
	color: #F5F5F5;
	margin-bottom: 1.182vw;
}

.support_item p {
	font-weight: 400;
	font-size: 1.112vw;
	line-height: 1.529vw;
	color: #F5F5F5;
}

/*Flow*/
.flow_outer {
	background: #F5F5F5;
}

.flow_inner {
	width: 82vw;
	margin: auto;
	padding-top: 22.5vw;
	padding-bottom: 6.945vw;
}

.flow .section_title {
	margin-bottom: 3.751vw;
}

.flow_item {
	position: relative;
	margin-bottom: 4.723vw;
}
.flow_item:last-child {
	margin-bottom: 0;
}

.flow_item_label {
	position: absolute;
	top: 0;
	left: 0;
	width: 5.834vw;
	height: 5.834vw;
	background: #31458E;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.flow_item_num {
	font-weight: 500;
	font-size: 1.112vw;
	line-height: 1.39vw;
	text-align: center;
	color: #FFFFFF;
}
.flow_item_num .emphasis {
	font-size: 2.223vw;
	line-height: 2.084vw;
}
.flow_item_contents {
	width: 77.431vw;
	margin-left: auto;
	background: #DEE3FA;
	border-radius: 1.043vw;
	padding: 2.084vw 3.473vw 2.084vw 4.168vw;
}

.flow_item_title {
	font-weight: 500;
	font-size: 1.39vw;
	line-height: 1.876vw;
	color: #262626;
	margin-bottom: 1.043vw;
}

.flow_item_contents p, .flow_item_contents li {
	font-weight: 400;
	font-size: 1.112vw;
	line-height: 1.529vw;
	color: #262626;
}

.flow_item_contents li {
	list-style: disc;
	margin-left: 1vw;
}

.flow_item_contents li.style_none {
	list-style: none;
	margin-bottom: 2vw;
}

.flow_arrow {
	position: absolute;
	bottom: -2.64vw;
	left: 50%;
	transform: translateX(-50%);
	width: 2.501vw;
	z-index: 1;
}

/*QA*/
.qa_inner {
	width: 82vw;
	margin: auto;
	padding-top: 6.945vw;
	padding-bottom: 22.153vw;
}

.qa .section_title {
	margin-bottom: 6.737vw;
}

.qa_item {
	padding-bottom: 2.084vw;
	margin-bottom: 2.084vw;
	border-bottom: 2px solid #ABA8A8;
}

.qa_q {
	display: flex;
	align-items: center;
	padding-left: 1.459vw;
	margin-bottom: 1.737vw;
}

.q_label {
	font-weight: 600;
	font-size: 1.39vw;
	line-height: 1.39vw;
	letter-spacing: 0.03em;
	color: #262626;
	margin-right: 1.459vw;
}

.qa_a {
	display: flex;
	align-items: start;
	background: #F5F5F5;
	border-radius: 0.695vw;
	padding: 1.39vw 1.876vw 1.529vw;
}

.a_label {
	font-weight: 600;
	font-size: 1.529vw;
	line-height: 1.529vw;
	text-align: center;
	letter-spacing: 0.03em;
	color: #31458E;
	margin-right: 1.807vw;
}

.q_field {
	font-weight: 500;
	font-size: 1.39vw;
	line-height: 1.876vw;
	color: #262626;
}

.a_field {
	font-weight: 400;
	font-size: 1.112vw;
	line-height: 1.529vw;
	color: #262626;
}

.qa_item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

/*アニメーション*/
/*フェードインアニメーション*/
.scroll_in {
	opacity: 0;
}

.scroll_in.active {
	opacity: 0;
	animation-name: fadein;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
}
.scroll_in.active2 {
	opacity: 1;
	animation-name: fadein;
	animation-duration: 0s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0s;
}

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

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


/* メディアクエリ　ブレイクポイント
------------------------------------------------------------*/
/*メディアクエリ751以上【PCのみ】*/
@media only screen and (min-width: 751px) {
	.sp_only {
		display: none !important;
	}

}

/*メディアクエリ750以下【SPのみ】*/
@media only screen and (max-width: 750px) {
	.pc_only {
		display: none !important;
	}
	/*ヘッダー*/
	#header {
        padding: 4.134vw 0;
    }
    .site_title {
        width: 49.334vw;
        margin: auto;
    }
    .header_cta {
        display: none;
    }
	/*FV*/
	.fv_catch {
		position: static;
        padding: 2.001vw 0;
        font-size: 3.734vw;
        line-height: 5.334vw;
    }
	.fv_contents {
        top: 30.401vw;
        left: 50%;
        transform: translateX(-50%);
        width: 79.601vw;
    }
    .fv_title1 {
        font-size: 12.668vw;
		padding-left: 22.401vw;
		margin-bottom: 1vw;
    }
	.fv_title1 img {
        width: 25.868vw;
        left: -2vw;
        top: -7vw;
    }
	.fv_title1 small {
        font-size: 8.001vw;
    }
	.fv_title2 {
        font-size: 17.068vw;
        margin-bottom: 1vw;
    }
    .fv_title3 {
        font-size: 8.001vw;
        margin-bottom: 3.5vw;
    }
    .fv_title4 {
        font-size: 4.268vw;
        text-align: center;
		margin-bottom: 11.334vw;
    }
	.fv_cta_sp .cta_btn.tel {
        width: 70.667vw;
        margin: 0 auto 4.001vw;
        padding: 2.001vw 12.801vw;
        box-shadow: 0 5px 6px 0px #00000057;
    }
    .fv_cta_sp .cta_tel_num span {
        font-size: 5.334vw;
        line-height: 6.2vw;
    }
    .fv_cta_sp .cta_tel_caption {
        font-size: 2.668vw;
        line-height: 3.4vw;
    }
    .fv_cta_sp .cta_btn.tel img {
        width: 4.001vw;
    }
    .fv_cta_sp .cta_btn.line {
        width: 70.667vw;
        margin: 0 auto 4.001vw;
        padding: 3.334vw 17vw;
        box-shadow: 0 5px 6px 0px #00000057;
    }
    .fv_cta_sp .cta_btn.line img {
        width: 6.401vw;
    }
    .fv_cta_sp .cta_btn.line span {
        font-size: 4.668vw;
    }
	/*Floating*/
    .floating_cta {
        position: sticky;
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        background: #1F4378;
        padding: 2.001vw 1.601vw;
    }
    .floating_cta .cta_btn {
        width: 46.667vw;
    }
    .floating_cta .cta_tel_num span {
        font-weight: 700;
        font-size: 4.668vw;
        line-height: 1.1;
    }
    .floating_cta .cta_btn.tel img {
        width: 2.934vw;
    }
    .floating_cta .cta_btn.tel {
        padding: 2.2vw 4.268vw;
    }
    .floating_cta .cta_tel_caption {
        font-weight: 400;
        font-size: 2.668vw;
        line-height: 1.1;
    }
    .floating_cta .cta_btn.line {
        padding: 3.334vw 6.134vw;
    }
    .floating_cta .cta_btn.line img {
        width: 6.001vw;
    }
    .floating_cta .cta_btn.line span {
        font-size: 4.268vw;
        line-height: 5.868vw;
    }
	/*Recruitment*/
    .recruitment_inner {
        width: 90vw;
        padding-bottom: 12.001vw;
    }
    .section_title {
        margin-bottom: 6.668vw;
    }
    .section_label {
        margin-bottom: 1.334vw;
    }
    .section_label img {
        width: 5.601vw;
    }
    .section_label span {
        font-size: 2.668vw;
        line-height: 4.001vw;
        margin: 0 1.734vw;
    }
    .section_h2 {
        font-size: 4.801vw;
        line-height: 6.534vw;
    }
    .recruitment_text {
        padding: 4.001vw 8vw;
    }
    .recruitment_text p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
	/*About*/
    .about1_inner {
        width: 90vw;
        padding: 13.334vw 0;
    }
    .about .section_title {
        margin-bottom: 8.001vw;
    }
    .about1_main {
        flex-direction: column-reverse;
    }
    .about1_image {
        width: 100%;
        margin-bottom: 8.001vw;
    }
    .about1_contents {
        width: 100%;
    }
    .about1_contents_label {
        font-size: 2.668vw;
        line-height: 3.868vw;
        text-align: center;
        margin-bottom: 0.934vw;
    }
    .about1_contents_title {
        font-size: 4.268vw;
        line-height: 5.201vw;
        text-align: center;
        margin-bottom: 4.001vw;
    }
    .about1_contents p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
    .about1_outer::after {
        width: 22.268vw;
        height: 10.934vw;
    }
	.about2 {
        padding-top: 21.601vw;
    }
    .about2_title {
        font-size: 5.334vw;
        line-height: 7.201vw;
		margin-bottom: 6.668vw;
    }
    .about2_title span {
        font-size: 8.534vw;
        line-height: 10.668vw;
    }
	.about2_title .underline::after {
        height: 1.468vw;
        bottom: 0.6vw;
    }
    .about2_text {
        width: 90vw;
        margin: 0 auto 10.668vw;
    }
    .about2_text p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
	.about3_inner {
        width: 90vw;
        padding: 10.668vw 0;
    }
    .about3_title {
        font-size: 5.334vw;
        line-height: 7.201vw;
		margin-bottom: 6.668vw;
    }
	.about3_copy {
        font-size: 4.268vw;
        line-height: 6.001vw;
        margin-bottom: 4.001vw;
    }
    .about3_text {
        width: 100%;
        text-align: center;
        margin-bottom: 10.668vw;
    }
    .about3_text p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
	.about3_item {
        width: 42.667vw;
        margin-bottom: 4.001vw;
        border-radius: 1.334vw;
    }
    .about3_item.item1, .about3_item.item6 {
        width: 100%;
    }
    .about3_item:nth-child(1) {
        padding: 8.534vw 5.334vw 9.468vw;
    }
    .about3_item_contents {
        width: auto;
    }
    .about3_item_title {
        font-size: 4.268vw;
        line-height: 5.868vw;
        margin-bottom: 1.334vw;
    }
    .about3_item_title img {
        width: 4.801vw;
        margin-right: 1.334vw;
    }
    .about3_item_text {
        font-size: 3.201vw;
        line-height: 4.001vw;
    }
    .about3_item_image {
        width: 36vw;
        right: 5.201vw;
    }
    .about3_item:nth-child(1), .about3_item:nth-child(2), .about3_item:nth-child(3) {
        margin-bottom: 4.001vw;
    }
    .about3_item.item6 {
        margin-bottom: 0;
		padding: 11.068vw;
    }
	.about3_item.item2, .about3_item.item3, .about3_item.item4, .about3_item.item5 {
        padding: 8.801vw 0 8.134vw;
    }
    .about3_item.item6 .about3_item_text {
        width: 100%;
    }
	/*Point*/
    .point_inner {
        width: 72.8vw;
        padding: 10.668vw 0 82.8vw;
    }
    .point_main {
        display: block;
    }
    .point_item {
        width: 100%;
        padding: 5.334vw 5.068vw 12.534vw;
        border-radius: 1.334vw;
    }
	.point_item.winter {
		padding-bottom: 3vw;
	}
    .point_item_title {
        font-size: 3.734vw;
        line-height: 5.068vw;
        margin-bottom: 3.068vw;
    }
    .point_item_title .emphasis {
        font-size: 8.534vw;
        line-height: 10.001vw;
    }
    .point_item_image {
        width: 58vw;
        margin-bottom: 4.001vw;
    }
    .point_item ul li {
        font-size: 3.201vw;
        line-height: 4.668vw;
    }
    .point_item ul li img {
        width: 5.868vw;
        margin-right: 3.201vw;
    }
    .point_item.summer {
        margin-bottom: 6.668vw;
    }
	/*CTA*/
    .cta_outer {
        background: url(/images/cta_bg_sp.webp);
        width: 90vw;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .cta_inner {
        width: 74.8vw;
        padding: 10.668vw 0;
    }
    .cta .section_title {
        margin-bottom: 6.668vw;
    }
    .cta_caption {
        font-size: 3.201vw;
        line-height: 4.401vw;
        margin-bottom: 5.334vw;
    }
    .cta_items {
        display: block;
    }
    .cta_item {
        width: 100%;
		border-radius: 2.001vw;
    }
    .cta_item.tel {
        padding: 6.001vw 8.534vw;
        margin-bottom: 5.334vw;
    }
    .cta_item.line {
        padding: 6.534vw 4.934vw;
    }
    .cta_item_copy {
        font-size: 4.268vw;
        line-height: 4.001vw;
    }
    .cta_item.tel .cta_item_copy {
        margin-bottom: 4.001vw;
    }
    .cta_tel_num {
        position: relative;
    }
    .cta .cta_tel_num img {
        width: 8.401vw;
        position: absolute;
        top: 2.2vw;
        left: 1vw;
    }
    .cta .cta_tel_num a {
        font-size: 6.9vw;
        line-height: 9.868vw;
        margin-left: 10vw;
        letter-spacing: -0.1vw;
    }
    .cta_item_caption {
        font-size: 3.201vw;
        line-height: 3.201vw;
    }
    .cta_item.line .cta_item_copy {
        margin-bottom: 2.801vw;
    }
    .cta_line_btn {
        width: 51.2vw;
    }
    .cta_item.line .cta_btn {
        padding: 2.134vw 6.934vw;
    }
    .cta_item.line .cta_btn span {
        font-size: 4.668vw;
        line-height: 6.401vw;
    }
    .cta_item.line .cta_btn img {
        width: 6.801vw;
    }
	.cta.cta1 {
        margin-top: -69.601vw;
        margin-bottom: -65.201vw;
    }
	/*Target*/
    .target_inner {
        width: 90vw;
        padding-top: 75.867vw;
        padding-bottom: 86.8vw;
    }
    .target_title {
        font-size: 4.668vw;
        line-height: 6.534vw;
        margin-bottom: 9.601vw;
    }
    .target_items {
        display: block;
		width: 100%;
    }
    .target_item {
        width: 100%;
        border-radius: 1.068vw;
        padding: 7.068vw 10vw 4.001vw;
        margin-bottom: 9.201vw;
    }
    .target_item_label {
        font-size: 3.734vw;
        line-height: 5.068vw;
        width: 53.334vw;
        border-radius: 1.068vw;
        top: -2.934vw;
    }
    .target_item:last-child {
        margin-bottom: 0;
    }
    .target_item_image {
        width: 60vw;
        margin: 0 auto 4.001vw;
    }
    .target_item p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
	.cta.cta2 {
        margin-top: -74.267vw;
        margin-bottom: -60.534vw;
    }
	.plan_inner {
        width: 90vw;
        padding-top: 71.201vw;
        padding-bottom: 10.668vw;
    }
	/*Plan*/
    .plan .section_title {
        margin-bottom: 6.668vw;
    }
	.plan .section_h2 {
		font-size: 4.5vw;
		line-height: 6.534vw;
	}
	.plan_title_caption {
		font-size: 3.201vw;
		line-height: 3.868vw;
		margin-top: 2.668vw;
	}
    .plan_contents {
        width: 100%;
        margin-bottom: 8.534vw;
    }
    .plan_contents_image {
        width: 14.134vw;
    }
    .plan_contents ul li {
        font-size: 3.201vw;
        line-height: 4.668vw;
        margin-bottom: 0.8vw;
    }
    .plan_contents ul li img {
        width: 5.868vw;
    }
    .plan_items {
        display: block;
    }
    .plan_item {
        width: 73.334vw;
        margin: 0 auto 8.001vw;
        padding: 9.334vw 4.668vw 6.668vw;
        border-radius: 1.334vw;
    }
	.plan_item_description {
		font-size: 3.201vw;
		line-height: 4.401vw;
		text-align: left;
		margin-bottom: 4.001vw;
	}
	.plan_item_contents {
		flex-direction: column-reverse;
		padding: 2.001vw 3.201vw 3.334vw;
		margin-bottom: 6.668vw;
	}
	.plan_item:last-child .plan_item_contents {
		padding: 2.401vw 2.134vw 3.334vw 2.134vw;
		margin-bottom: 7.068vw;
	}
	.plan_item:last-child .plan_item_image {
		width: 26.268vw;
	}
    .plan_item_label {
        margin-bottom: 0.801vw;
    }
    .plan_item_label img {
        width: 7.201vw;
    }
    .plan_item_label span {
        font-size: 3.201vw;
        line-height: 4.801vw;
        margin: 0 2.134vw;
    }
    .plan_item_title {
        font-size: 3.734vw;
        line-height: 5.068vw;
        margin-bottom: 4.001vw;
    }
    .plan_item_image {
        width: 52.4vw;
        margin: 0 auto 2.668vw;
    }
	.plan_item_list {
		width: 100%;
	}
	.plan_item_list li {
		font-size: 3.201vw;
		line-height: 3.868vw;
		margin-bottom: 0.668vw;
	}
	.plan_item_list li img {
		width: 5.068vw;
	}
    .plan_item_copy {
        font-size: 3.734vw;
        line-height: 5.201vw;
        margin-bottom: 5.334vw;
    }
    .plan_item_btn {
        width: 45.334vw;
        font-size: 3.201vw;
        line-height: 4.401vw;
        border-radius: 1.334vw;
        padding: 3.068vw 0;
    }
    .plan_item::before {
        height: 4.134vw;
        border-radius: 1.334vw 1.334vw 0 0;
    }
    .plan_item:nth-child(3)::before {
        height: 3.334vw;
    }
    .plan_item:last-child {
        margin-bottom: 0;
		padding-bottom: 8.401vw;
    }
	.plan_item_btn.no_btn {
		font-size: 3.201vw;
		line-height: 4.401vw;
	}
	/*Support*/
    .support_inner {
        width: 90vw;
        padding-top: 10.668vw;
        padding-bottom: 81.467vw;
    }
    .support .section_title {
        margin-bottom: 9.068vw;
    }
    .support_items {
        display: block;
    }
    .support_item {
        width: 100%;
        margin-bottom: 10.534vw;
    }
    .support_item_image {
        width: 69.334vw;
        margin: 0 auto 4.001vw;
    }
    .support_item_title {
        font-size: 4.801vw;
        line-height: 6.934vw;
        margin-bottom: 4.001vw;
    }
    .support_item p {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
    .support_item:last-child {
        margin-bottom: 0;
    }
	.cta.cta3 {
        margin-top: -68vw;
        margin-bottom: -66.8vw;
    }
	/*Flow*/
	 .flow_inner {
        width: 90vw;
        padding-top: 77.334vw;
        padding-bottom: 10.668vw;
    }
    .flow .section_title {
        margin-bottom: 6.668vw;
    }
    .flow_item {
        margin-bottom: 10.401vw;
    }
    .flow_item_label {
        width: 11.201vw;
        height: 11.201vw;
    }
    .flow_item_num {
        font-size: 2.134vw;
        line-height: 2.668vw;
    }
    .flow_item_num .emphasis {
        font-size: 4.268vw;
        line-height: 4.001vw;
    }
    .flow_item_contents {
        margin-left: 8.668vw;
        width: 81.467vw;
        padding: 4.001vw 6.1vw 4.001vw 7.3vw;
    }
    .flow_item_title {
        font-size: 4.268vw;
        line-height: 5.868vw;
        margin-bottom: 2.001vw;
    }
    .flow_item_contents p,.flow_item_contents li {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
    .flow_arrow {
        width: 4.801vw;
        bottom: -6.401vw;
    }
	/*QA*/
    .qa_inner {
        width: 90vw;
        padding-top: 10.668vw;
        padding-bottom: 80vw;
    }
    .qa .section_title {
        margin-bottom: 6.668vw;
    }
    .qa_item {
        padding-bottom: 4.001vw;
        margin-bottom: 4.268vw;
    }
    .qa_q {
        padding-left: 0;
        margin-bottom: 2.668vw;
        align-items: start;
    }
    .q_label {
        font-size: 3.201vw;
        line-height: 3.201vw;
        margin-top: 0.3vw;
    }
    .q_field {
        font-size: 3.201vw;
        line-height: 4.401vw;
    }
    .qa_a {
        padding: 2.668vw;
        border-radius: 0;
    }
    .a_label {
        font-size: 2.934vw;
        line-height: 2.934vw;
        margin-right: 3.468vw;
    }
    .a_field {
        font-size: 2.668vw;
        line-height: 3.601vw;
    }
	.cta.last {
        margin-top: -66.8vw;
        margin-bottom: -68vw;
    }
    /*Footer*/
    #footer {
        padding-top: 81.467vw;
        padding-bottom: 6.668vw;
    }
    .footer_copyright {
        font-size: 2.668vw;
        line-height: 3.068vw;
    }

}

/*タブレット*/
@media screen and (min-width:751px) and (max-width:1366px) {}