@charset "utf-8";
/* CSS Document */
/***********************************************************
	index.css
************************************************************/

/*=================================================
メインエリア
==================================================*/
.mainArea {
	background-color: #f5f9fe;
	padding: 30px 0;
}
.mainArea .mainAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.mainArea .mainAreainnr h2 {
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.4;
}
.mainArea .mainAreainnr h2 span {
	font-size: 22px;
}
.mainArea .mainAreainnr .txt {
	font-weight: 600;
	text-align: center;
	margin: 0 0 20px;
	font-size: 16px;
}
.mainArea .mainAreainnr .txt span {
	color: #c44850;
}
.mainArea .mainAreainnr .txOne {
	text-align: center;
}
.mainArea .mainAreainnr .main_img {
	width: 100%;
	text-align: center;
}

/*-- mp4ファイル表示 ------------------*/
.mainArea .mainAreainnr .kv {
  position: relative;
	width: 100%;
	max-width: 1000px;   /* PC最大幅 */
	aspect-ratio: 1000 / 620;
	margin: 10px auto;
	overflow: hidden;
	background-color: #f5f9fe;
}
/* video本体 */
.mainArea .mainAreainnr .kv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.mainArea {
		padding: 60px 0;
	}
	.mainArea .mainAreainnr h2 {
		font-size: 42px;
	}
	.mainArea .mainAreainnr h2 span {
		font-size: 24px;
	}
	.mainArea .mainAreainnr .txt {
		margin: 0 0 40px;
		font-size: 18px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.mainArea .mainAreainnr {
		max-width: 1400px;
		margin: 0 auto;
	}

	.mainArea .mainAreainnr h2 {
		font-size: 46px;
	}
	.mainArea .mainAreainnr h2 span {
		font-size: 26px;
	}
	.mainArea .mainAreainnr .txt {
		margin: 0 0 40px;
		font-size: 20px;
	}
}
/*=================================================
イントロ部
==================================================*/
.intoroArea {
	background-color: #FFF;
}
.intoroArea .intoroAreainnr {
	box-sizing: border-box;
	padding: 0 10px;
}
.intoroArea .intoroAreainnr .intoroBox {
	border-radius: 10px;
	background-color: #f3f3f3;
	padding: 10px;
	margin: 20px 0;
}
.intoroArea .intoroAreainnr .intoroBox .assiList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content:center;
}
.intoroArea .intoroAreainnr .intoroBox .assiList li {
	width: 49%;
	margin: 10px 0;
	/*opacity: 0;*/
	text-align: center;
}
/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.intoroArea .intoroAreainnr .intoroBox {
		border-radius: 20px;
		padding: 20px;
		margin: 30px 0;
	}
	.intoroArea .intoroAreainnr .intoroBox .assiList li {
		width: 20%;
		margin: 10px 0;
	}
	.intoroArea .intoroAreainnr .intoroBox .assiList li:nth-child(odd) {
		margin-top: 60px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.intoroArea .intoroAreainnr {
		box-sizing: border-box;
		max-width: 1400px;
		margin: 0 auto;
	}
	.intoroArea .intoroAreainnr .intoroBox {
		border-radius: 20px;
		padding: 30px;
		margin: 40px 0;
	}
	.intoroArea .intoroAreainnr .intoroBox .assiList li:nth-child(odd) {
		margin-top: 100px;
	}
}
/*=================================================
さまざまな課題
==================================================*/
.taskArea {
	background-color: #f3f3f3;
}
.taskArea .taskAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.taskArea .taskAreainnr .causeList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.taskArea .taskAreainnr .causeList > li {
	background-color: #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	box-sizing: border-box;
	margin:0 0 15px 0;
	width: 100%;
	overflow: hidden;
	font-size: 14px;
}
.taskArea .taskAreainnr .causeList > li .boxtitle {
	background-color: #d7000f;
	color: #FFF;
	padding: 10px;
	text-align: center;
	font-size: 18px;
}
.taskArea .taskAreainnr .causeList > li .boxtitle i {
	color: #fce26a;
}
.taskArea .taskAreainnr .causeList > li .wap {
	padding: 10px;
}
.taskArea .taskAreainnr .causeList > li .wap .imgbox {
	background-color: #f7f7f7;
	border-radius: 8px;
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
}
.taskArea .taskAreainnr .causeList > li .wap .boxttl {
	font-size: 16px;
	margin: 15px 0;
	text-align: center;
	line-height: 1.4;
	color:#d83e43;
}

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.taskArea .taskAreainnr .causeList > li {
		border-radius: 12px;	
		width: 49%;
		margin:0 0 15px 0;
		font-size: 16px;
	}
	.taskArea .taskAreainnr .causeList > li .wap .imgbox {
		border-radius: 12px;
		padding: 15px;
		margin-bottom: 10px;
	}
	.taskArea .taskAreainnr .causeList > li .wap .boxttl {
		font-size: 18px;
		margin: 20px 0;
	}

}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {

	.taskArea .taskAreainnr {
		padding: 0 10px;
		max-width: 1400px;
		margin: 0 auto;
	}
	.taskArea .taskAreainnr .causeList > li {
		margin:0 0 30px 0;
		width: 31.5%;
	}
	.taskArea .taskAreainnr .causeList > li .wap {
		padding: 15px;
	}
	.taskArea .taskAreainnr .causeList > li .wap .boxttl {
		font-size: 18px;
	}
}

/*=================================================
攻撃を受けやすい4つのポイント/課題
==================================================*/
.task4ptArea {
	background-color: #FFF;
}
.task4ptArea .task4ptAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
/*-- 攻撃を受けやすい4つのポイント --*/
.task4ptArea .task4ptAreainnr .fourPointBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px 0;
	
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea {
	width: 100%;
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea .ttl {
    position: relative;
    line-height: 1.4;
    font-weight: bold;
	padding: 0 0 0 20px;
	font-size: 18px;
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea .ttl:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
	width: 10px;
	background-color: #d7000f;
    border-radius: 5px;
    content: "";
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl {
	padding: 10px;
	width: 100%;
	box-sizing: border-box;
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl dt {
	margin: 15px 0 5px 0;
	font-weight: 600;
}
.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl dd {
	padding: 0 0 0 15px;
	font-size: 16px;
}
.task4ptArea .task4ptAreainnr .fourPointBox .picArea {
	width: 100%;
	text-align: center;
}
/*-- 課題 --*/
.task4ptArea .task4ptAreainnr .causeList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.task4ptArea .task4ptAreainnr .causeList > li {
	background-color: #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	box-sizing: border-box;
	margin:0 0 15px 0;
	width: 100%;
	overflow: hidden;
	font-size: 14px;
}
.task4ptArea .task4ptAreainnr .causeList > li .boxtitle {
	background-color: #2b2828;
	color: #ffffcc;
	padding: 10px;
	text-align: center;
	font-size: 18px;
}

.task4ptArea .task4ptAreainnr .causeList > li .wap {
	padding: 10px;
}
.task4ptArea .task4ptAreainnr .causeList > li .wap .imgbox {
	background-color: #f7f7f7;
	border-radius: 8px;
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
}
.task4ptArea .task4ptAreainnr .causeList > li .wap .boxttl {
	font-size: 16px;
	margin: 15px 0;
	text-align: center;
	line-height: 1.4;
	color:#d83e43;
}
.task4ptArea .task4ptAreainnr .causeList > li .wap .txt {
	margin-bottom: 15px;
}


/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	/*-- 攻撃を受けやすい4つのポイント --*/
	.task4ptArea .task4ptAreainnr .fourPointBox {
		margin: 0 0 40px 0;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea .ttl {
		font-size: 28px;
		padding: 0 0 0 30px;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl {
		padding: 15px;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl dt {
		margin: 20px 0 5px 0;
	}
	/*-- 課題 --*/
	.task4ptArea .task4ptAreainnr .causeList > li {
		border-radius: 12px;	
		width: 49%;
		margin:0 0 15px 0;
		font-size: 16px;
		/*-- .txtの高さを揃える為 --*/
		display: flex;
		flex-direction: column;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap {
		/*-- .txtの高さを揃える為 --*/
		display: flex;
  		flex-direction: column;
		width: 100%;
		flex: 1;
		box-sizing: border-box;
		/*-- */
	}
	.task4ptArea .task4ptAreainnr .causeList > li .boxtitle {
		font-size: 22px;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap .imgbox {
		border-radius: 12px;
		padding: 15px;
		margin-bottom: 10px;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap .boxttl {
		font-size: 18px;
		margin: 20px 0;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap .txt {
		/*-- .txtの高さを揃える為 --*/
		flex-grow: 1;
	}

}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.task4ptArea .task4ptAreainnr {
		padding: 0 10px;
		max-width: 1400px;
		margin: 0 auto;
	}
	/*-- 攻撃を受けやすい4つのポイント --*/
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea {
		width: 49%;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea .ttl {
		font-size: 30px;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .txtArea dl {
		padding: 20px;
		width: 90%;
	}
	.task4ptArea .task4ptAreainnr .fourPointBox .picArea {
		width: 50%;
		text-align: center;
	}
	/*-- 課題 --*/
	.task4ptArea .task4ptAreainnr .causeList > li {
		margin:0 0 30px 0;
		width: 31.5%;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap {
		padding: 15px;
	}
	.task4ptArea .task4ptAreainnr .causeList > li .wap .boxttl {
		font-size: 18px;
	}
}



/*=================================================
	ソリューションエリア
==================================================*/
.solutionArea {
	background-color: #f5f9fe;
}
.solutionArea .solutionAreainnr {
	padding: 0 10px;
}
.solutionArea .solutionAreainnr .soluList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.solutionArea .solutionAreainnr .soluList li {
	box-sizing: border-box;
	margin:0 0 15px 0;
	width: 100%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	padding: 10px;
	background-color: #FFF;
}
.solutionArea .solutionAreainnr .soluList li .solut {
	color: #FFF;
	font-weight:600;
	text-align: center;
	padding: 5px;
	border-radius: 20px;
	margin-bottom: 5px;
	background-color: #d83e43;
}
/*
.solutionArea .solutionAreainnr .soluList li:nth-child(1) .solut {
	background-color: #d83e43;
}
.solutionArea .solutionAreainnr .soluList li:nth-child(2) .solut {
	background-color: #3ed886;
}
.solutionArea .solutionAreainnr .soluList li:nth-child(3) .solut {
	background-color: #3e71d8;
}
*/
.solutionArea .solutionAreainnr .soluList li .imgbox {
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
}
.solutionArea .solutionAreainnr .soluList li .cat {
	font-size: 16px;
	margin:10px 0;
	font-weight: 600;
	text-align: center;
	line-height: 1.4;
	background-color: #f7f7f8;
	padding: 10px 5px;
	border-radius: 6px;
}
.solutionArea .solutionAreainnr .soluList li .ttl {
	font-size: 16px;
	margin-bottom: 10px;
	text-align: center;
	line-height: 1.4;
	background-color: #fcfae7;
	padding: 10px 5px;
	border-radius: 6px;
	transition: .2s linear;
}
.solutionArea .solutionAreainnr .soluList li .txt {
	margin-bottom: 10px;
	font-size: 14px;
}
.solutionArea .solutionAreainnr .soluList li .txtbox {
	background-color: #f4f4f6;
	border-radius: 6px;
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}
.solutionArea .solutionAreainnr .soluList li .txtbox span {
	color: #d83e43;
}
.solutionArea .solutionAreainnr .soluList li .triangle {
	width: 0;
    height: 0;
    margin: 0 auto;
    border-top: 20px solid #d83e43;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
}
/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.solutionArea .solutionAreainnr .soluList li {
		width: 49%;
		border-radius: 12px;	
		padding: 10px;
		margin:0 0.5% 15px 0.5%;
		display: flex;
		flex-direction: column;
	}
	.solutionArea .solutionAreainnr .soluList li .imgbox {
		margin-bottom: 10px;
	}
	.solutionArea .solutionAreainnr .soluList li .cat {
		font-size: 18px;
	}
	.solutionArea .solutionAreainnr .soluList li .ttl {
		font-size: 18px;
	}
	.solutionArea .solutionAreainnr .soluList li .txt {
		font-size: 16px;
		margin-bottom: 10px;
		flex-grow: 1;
	}
	.solutionArea .solutionAreainnr .soluList li .txtbox {
		font-size: 20px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {

	.solutionArea .solutionAreainnr {
		max-width: 1400px;
		margin: 0 auto;
	}
	.solutionArea .solutionAreainnr .soluList li {
		width: 31.5%;
		padding: 15px;
	}
	.solutionArea .solutionAreainnr .soluList li .ttl {
		font-size: 20px;
	}
	.solutionArea .solutionAreainnr .soluList li .txtbox {
		font-size: 22px;
	}
}


/*=================================================
	選ばれる理由
==================================================*/
.chosenArea {
	background-color: #FFF;
}
.chosenArea .chosenAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.chosenArea .chosenAreainnr .chosenbox {
	border-radius: 15px;
	background-color: #f5f9fe;
	padding: 15px;
	margin: 20px auto;
}
.chosenArea .chosenAreainnr .chosenbox p {
	font-weight: 600;
}
.chosenArea .chosenAreainnr .chosenbox p span {
	color: #d83e43;
}
/*---   ------*/
.chosenArea .chosenAreainnr .chosenList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.chosenArea .chosenAreainnr .chosenList li {
	box-sizing: border-box;
	margin:0 0 15px 0;
	width: 100%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	padding: 10px;
	background-color: #FFF;
}
.chosenArea .chosenAreainnr .chosenList li .solut {
	color: #FFF;
	font-weight:600;
	text-align: center;
	padding: 5px;
	border-radius: 20px;
	margin-bottom: 5px;
	background-color: #d83e43;
}

.chosenArea .chosenAreainnr .chosenList li .imgbox {
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
}
.chosenArea .chosenAreainnr .chosenList li .ttl {
	font-size: 16px;
	margin-bottom: 10px;
	text-align: center;
	line-height: 1.4;
	background-color: #fcfae7;
	padding: 10px 5px;
	border-radius: 6px;
	transition: .2s linear;
}
.chosenArea .chosenAreainnr .chosenList li .txt {
	margin-bottom: 10px;
	font-size: 14px;
}
.chosenArea .chosenAreainnr .chosenList li .txtbox {
	background-color: #f4f4f6;
	border-radius: 6px;
	text-align: center;
	padding: 10px;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}
.chosenArea .chosenAreainnr .chosenList li .txtbox span {
	color: #d83e43;
}

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.chosenArea .chosenAreainnr .chosenbox {
		border-radius: 20px;
		padding: 30px;
		margin: 30px auto;
	}
	/*---  ----*/
	.chosenArea .chosenAreainnr .chosenList li {
		width: 49%;
		border-radius: 12px;	
		padding: 10px;
		margin:0 0.5% 15px 0.5%;
		display: flex;
		flex-direction: column;
	}
	.chosenArea .chosenAreainnr .chosenList li .imgbox {
		margin-bottom: 10px;
	}
	.chosenArea .chosenAreainnr .chosenList li .ttl {
		font-size: 18px;
	}
	.chosenArea .chosenAreainnr .chosenList li .txt {
		font-size: 16px;
		margin-bottom: 10px;
		flex-grow: 1;
	}
	.chosenArea .chosenAreainnr .chosenList li .txtbox {
		font-size: 20px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.chosenArea .chosenAreainnr {
		max-width: 1200px;
		margin: 0 auto;
	}
	.chosenArea .chosenAreainnr .chosenbox {
		border-radius: 30px;
		padding: 40px;
		margin: 40px auto;
	}
	/*---  ----*/
	.chosenArea .chosenAreainnr .chosenList li {
		width: 23.5%;
		padding: 15px;
	}
	.chosenArea .chosenAreainnr .chosenList li .ttl {
		font-size: 20px;
	}
	.chosenArea .chosenAreainnr .chosenList li .txtbox {
		font-size: 22px;
	}
}
/*=================================================
	業種
==================================================*/
.industryArea {
	background-color: #edf6fc;
}
.industryArea .industryAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.industryArea .industryAreainnr .industryList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.industryArea .industryAreainnr .industryList li {
	width: 49%;
	box-sizing: border-box;
	padding: 10px;
	margin: 0 0 15px 0;
	border-radius: 6px;
	background-color: #FFF;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	border:#CCCCCC 1px solid;
}
.industryArea .industryAreainnr .industryList li .ttl {
	text-align: center;
	font-size: 16px;
	margin: 0 0 20px;
}
.industryArea .industryAreainnr .industryList li .pic {
	text-align: center;
}
/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.industryArea .industryAreainnr .industryList li {
		width: 32%;
		padding: 20px;
		margin: 0 0 20px 0;;
	}
	.industryArea .industryAreainnr .industryList li .ttl {
		font-size: 18px;
		margin: 0 0 20px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.industryArea .industryAreainnr {
		max-width: 1000px;
		margin: 0 auto;
	}


}
/*=================================================
コラム
==================================================*/
.columnArea {
	background-color: #FFF;
}
.columnArea .columnAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.columnArea .columnAreainnr .columnList {
	list-style: none;
	/*display: flex;
	flex-wrap: wrap;
	justify-content: space-between;*/
	padding: 0;
	margin: 0;
}
.columnArea .columnAreainnr .columnList li {
	box-sizing: border-box;
	width: 100%;
	margin: 15px 0;
}
.columnArea .columnAreainnr .columnList li a {
	display: block;
}
.columnArea .columnAreainnr .columnList li .pic {
	text-align: center;
	margin-bottom: 15px;
}
.columnArea .columnAreainnr .columnList li .txt {
	font-size: 16px;
}

.columnArea .columnAreainnr .columnList li a img {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.columnArea .columnAreainnr .columnList li a img:hover {
  opacity: 0.7;
}


/* Swiper用 */
.columnSwiper {
	position: relative;
  	overflow: hidden;
}
/* ページネーション */
.columnSwiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	/*.columnArea .columnAreainnr .columnList li {
		box-sizing: border-box;
		width: 49%;
		margin: 30px 0;
	}*/
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.columnArea {
		padding: 70px 0;
	}
	.columnArea .columnAreainnr {
		max-width: 1400px;
		margin: 0 auto;
	}
	/*.columnArea .columnAreainnr .columnList li {
		box-sizing: border-box;
		width: 32%;
		margin: 30px 0;
	}*/


}

/*=================================================
導入までのフォロー/ハンズオントレーニング
==================================================*/
.stepFlow01Area .stepFlow01Areainnr {
	padding: 0 10px;
	box-sizing: border-box;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li {
	width: 100%;
	position: relative;
	background-color: #FFF;
	margin: 0 0 30px 0;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
/*--　矢印設定 --*/
.stepFlow01Area .stepFlow01Areainnr .stepflow li:after {
        content: "";
        position: absolute;
	    width: 0;
  		height: 0;
	    bottom: -20px;
	    right: 0;
  		left: 0;
  		margin: 0 auto;
        border-top: 20px solid #9092DD;
  		border-right: 20px solid transparent;
  		border-left: 20px solid transparent;
        z-index: 1;
 }
/* 矢印　カラーの設定*/
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(1):after {
	border-top: 20px solid #9092DD;
  	border-right: 20px solid transparent;
  	border-left: 20px solid transparent;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(2):after {
	border-top: 20px solid #5577FE;
  	border-right: 20px solid transparent;
  	border-left: 20px solid transparent;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(3):after {
	border-top: 20px solid #3e71d8;
  	border-right: 20px solid transparent;
  	border-left: 20px solid transparent;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(4):after {
	border-top:none;
  	border-right:none;
  	border-left:none;
}

/* タイトル設定*/
.stepFlow01Area .stepFlow01Areainnr .stepflow li .ttlstep {
	color: #FFF;
	text-align: center;
	padding: 20px 5px;
	font-size: 20px;
}
/* タイトル　カラーの設定*/
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(1) .ttlstep {
	background-color: #9092DD;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(2) .ttlstep {
	background-color: #5577FE;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(3) .ttlstep {
	background-color: #3e71d8;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(4) .ttlstep {
	background-color: #d83e43;
}
/* ボックスインナー */
.stepFlow01Area .stepFlow01Areainnr .stepflow li .innr {
	padding: 15px;
}
.stepFlow01Area .stepFlow01Areainnr .stepflow li .innr .ttl {
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
}
/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.stepFlow01Area .stepFlow01Areainnr .stepflow {
		margin: 40px 0;
	}
	/* タイトル設定*/
	.stepFlow01Area .stepFlow01Areainnr .stepflow li .ttlstep {
		color: #FFF;
		text-align: center;
		padding: 10px 5px;
		font-size: 24px;
	}
	/* ボックスインナー */
	.stepFlow01Area .stepFlow01Areainnr .stepflow li .innr {
		padding: 20px 15px;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li .innr .ttl {
		font-size: 17px;
		margin-bottom: 15px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.stepFlow01Area .stepFlow01Areainnr {
		box-sizing: border-box;
		margin: 0 auto;
		max-width: 1400px;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li {
		width: 24%;
		position: relative;
		background-color: #FFF;
		margin: 0;
	}
	/* 矢印設定*/
	.stepFlow01Area .stepFlow01Areainnr .stepflow li:after {
        content: "";
        position: absolute;
	    width: 0;
  		height: 0;
		top: 10px;
        right: -20px;
		left:inherit;
  		margin: 0;
        border-top: 20px solid transparent;
  		border-right:none;
  		border-left: 20px solid #9092DD;
        z-index: 1;
 	}
	/* 矢印　カラーの設定*/
	.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(1):after {
		border-top: 20px solid transparent;
  		border-right:none;
  		border-left: 30px solid #9092DD;
		border-bottom: 20px solid transparent;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(2):after {
		border-top: 20px solid transparent;
  		border-right:none;
  		border-left: 30px solid #5577FE;
		border-bottom: 20px solid transparent;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(3):after {
		border-top: 20px solid transparent;
  		border-right:none;
  		border-left: 30px solid #3e71d8;
		border-bottom: 20px solid transparent;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li:nth-child(4):after {
		border-top:none;
  		border-right:none;
  		border-left:none;
		border-bottom:none;
	}
	.stepFlow01Area .stepFlow01Areainnr .stepflow li .innr .ttl {
		font-size: 20px;
	}
}

/*=================================================
FAQ
==================================================*/
.faqArea {
	background-color: #f3f3f3;
}
.faqAreainnr {
	padding: 0 10px;
	box-sizing: border-box;
}

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	.faqAreainnr {
		max-width: 1000px;
		margin: 0 auto;
	}
}
/*=================================================
faqアコーディオン
==================================================*/
.accordion {
	margin: 10px 0 30px;
}

/* 必須 */
.accordion-content {
  display: none;
}

.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition:transform 0.3s;
  cursor: pointer;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 600;;
}
/* プラスマイナス */
.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#E60012;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content .innr {
  padding: 12px 20px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* hover */
.accordion-header:hover {
  background-color: #eeeeee;
}

/* QとA */
.circleWap {
	color: #FFF;
	height: 100%;
	width: auto;
	display: flex;
	align-items: center;
	margin-right: 20px;
	text-align: center;
}
.circleWap .circleQ {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #2b2828;
	font-size: 20px;
}
.circleWap .circleA {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #c44850;
	font-size: 20px;
}

/*****************************************************
	768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
	.accordion {
		margin: 0 0 60px;
	}
	.accordion-header {
 		padding: 22px 45px 20px 20px;
  		margin: 15px 0 0;
  	}
	.accordion-content .innr {
  		padding: 22px 20px 20px;
	}
	.circleWap .circleQ {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 28px;
}
	.circleWap .circleA {
		width: 60px;
		height: 60px;
		line-height: 60px;
		font-size: 28px;
	}
}
/*****************************************************
	1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
}



/*=================================================

==================================================*/

/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
	
}